* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

/* Coming Soon Page */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    text-align: center;
    padding: 20px;
}

.coming-soon-container .content {
    color: white;
}

.coming-soon-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon-container .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.coming-soon-container .status {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Property Page */
.property-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.property-header.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a6c;
    transition: font-size 0.3s ease;
}

.property-header.scrolled .logo {
    font-size: 1.2rem;
}

.header-phone {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s, font-size 0.3s ease;
}

.header-phone:hover {
    color: #c9a961;
}

.property-header.scrolled .header-phone {
    font-size: 0.9rem;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #c9a961;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s, padding 0.3s ease;
}

.call-button:hover {
    background: #b8964d;
    transform: translateY(-2px);
}

.property-header.scrolled .call-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.call-icon {
    font-size: 1.2rem;
}

.property-content {
    padding: 2rem;
}

/* Photo Gallery Carousel */
.photo-gallery {
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide picture,
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1.5rem;
    font-size:2rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.carousel-slide.active .carousel-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes labelPulse {
    0% {
        transform: translateY(20px) scale(0.9);
        opacity: 0;
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    border-radius: 4px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #667eea;
}

.indicator:hover {
    background: #999;
}

/* Fullscreen Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #667eea;
}

.modal-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: background 0.3s;
    border-radius: 4px;
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.modal-btn.prev {
    left: 2rem;
}

.modal-btn.next {
    right: 2rem;
}

.modal-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.modal-counter .count {
    font-size: 0.9rem;
    opacity: 0.8;
}

.modal-counter .label {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Property Details */
.property-details h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.availability-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(46, 204, 113, 0.5);
    }
}

.location {
    font-size: 1.1rem;
    color: #1a2a6c;
    margin-bottom: 1.5rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
}

.location:hover {
    color: #c9a961;
    transform: translateX(3px);
    text-decoration: underline;
}

.price-section {
    display: flex;
    gap: 2rem;
    align-items: baseline;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #c9a961;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a6c;
}

.deposit {
    font-size: 1rem;
    color: #666;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-item .label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.amenities, .description {
    margin-bottom: 2rem;
}

.amenities h3, .description h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222;
}

.amenities ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.amenities li {
    padding: 0.5rem;
    color: #555;
}

.description p {
    color: #555;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #dee2e6;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.contact-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-button {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.contact-button:hover {
    transform: translateY(-2px);
}

.contact-button.phone {
    background: #1a2a6c;
    color: white;
}

.contact-button.whatsapp {
    background: #25D366;
    color: white;
}

/* Schedule Visit Section */
.schedule-section {
    background: linear-gradient(135deg, #1a2a6c 0%, #2c3e50 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(26, 42, 108, 0.2);
}

.schedule-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.schedule-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.25rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.note-content {
    flex: 1;
}

.note-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.note-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.schedule-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.schedule-button {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.3s;
    border: 2px solid white;
}

.schedule-button:hover {
    transform: translateY(-2px);
}

.schedule-button.phone {
    background: white;
    color: #1a2a6c;
}

.schedule-button.phone:hover {
    background: rgba(255, 255, 255, 0.9);
}

.schedule-button.whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.schedule-button.whatsapp:hover {
    background: #1fb855;
}

/* Floating Action Button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.fab-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fabPulse 2s ease-in-out infinite;
}

.fab-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    animation: none;
}

.fab-button.phone {
    background: linear-gradient(135deg, #1a2a6c 0%, #2c3e50 100%);
    color: white;
}

.fab-button.whatsapp {
    background: #25D366;
    color: white;
}

.fab-icon {
    font-size: 1.5rem;
}

@keyframes fabPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Map Section */
.map-section {
    margin-bottom: 2rem;
}

.map-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.map-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #1a2a6c;
    text-decoration: none;
    font-weight: 600;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
}

/* Share Section */
.share-section {
    margin-bottom: 2rem;
}

.share-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 1rem;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.copy {
    background: #1a2a6c;
    color: white;
}

.copy-message {
    margin-top: 1rem;
    color: #2ecc71;
    font-weight: 600;
}

/* Terms Section */
.terms-section {
    margin-bottom: 2rem;
}

.terms-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.terms-list li:last-child {
    border-bottom: none;
}

/* Footer */
.property-footer {
    text-align: center;
    padding: 2rem;
    background: #f8f9ff;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-container h1 {
        font-size: 2rem;
    }
    
    .coming-soon-container .tagline {
        font-size: 1.2rem;
    }
    
    .coming-soon-container .status {
        font-size: 1.5rem;
    }
    
    .property-content {
        padding: 1rem;
    }
    
    .property-header {
        padding: 1rem;
    }
    
    .property-header.scrolled {
        padding: 0.5rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .property-header.scrolled .logo {
        font-size: 1rem;
    }
    
    .header-phone {
        font-size: 0.85rem;
    }
    
    .property-header.scrolled .header-phone {
        font-size: 0.75rem;
    }
    
    .call-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .property-header.scrolled .call-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .call-icon {
        font-size: 1rem;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .carousel-btn.prev {
        left: 0.5rem;
    }
    
    .carousel-btn.next {
        right: 0.5rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
    
    .modal-btn {
        font-size: 2rem;
        padding: 0.5rem 1rem;
    }
    
    .modal-btn.prev {
        left: 0.5rem;
    }
    
    .modal-btn.next {
        right: 0.5rem;
    }
    
    .carousel-label {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .property-details h1 {
        font-size: 1.5rem;
        gap: 0.5rem;
    }
    
    .availability-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }
    
    .price-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-button {
        min-width: 100%;
    }
    
    .schedule-actions {
        flex-direction: column;
    }
    
    .schedule-button {
        min-width: 100%;
    }
    
    .schedule-note {
        padding: 1rem;
    }
    
    .note-icon {
        font-size: 1.5rem;
    }
    
    .floating-contact {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }
    
    .fab-button {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .fab-icon {
        font-size: 1.3rem;
    }
}


/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
