/* ========================================
   WAVE ESTATE PROJECTS - LUXURY REAL ESTATE
   Premium CSS Styling
   ======================================== */

/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
    --primary-dark: #0f1419;
    --secondary-dark: #1a1f2e;
    --accent-gold: #d4af37;
    --accent-blue: #4a9fd8;
    --text-light: #e8e8e8;
    --text-gray: #a8a8a8;
    --border-light: rgba(212, 175, 55, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
}

/* ========================================
   GENERAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue), var(--accent-gold));
    width: 0%;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOutScreen 0.6s ease forwards 2.4s;
}

.loading-content {
    text-align: center;
    animation: slideUpContent 0.8s ease 0.2s both;
}

.loading-logo {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.loading-screen h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-light);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes fadeOutScreen {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes slideUpContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.luxury-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7) 0%, rgba(26, 31, 46, 0.6) 100%);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.luxury-navbar.scrolled {
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.98) 0%, rgba(26, 31, 46, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    padding: 0.5rem 0;
}

.navbar-logo {
    height: 48px;
    width: auto;
    max-width: 180px;
    display: block;
}

.footer-logo {
    height: 42px;
    max-width: 160px;
}

.footer-brand-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.luxury-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.luxury-logo i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.luxury-logo:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.nav-link-animate {
    position: relative;
    color: var(--text-light) !important;
    font-weight: 500;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem !important;
}

.nav-link-animate::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    transition: width 0.3s ease;
}

.nav-link-animate:hover::after,
.nav-link-animate.active::after {
    width: 100%;
}

.nav-link-animate:hover {
    color: var(--accent-gold) !important;
    transform: translateY(-2px);
}

.contact-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue)) !important;
    color: var(--primary-dark) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.whatsapp-icon {
    color: #25d366 !important;
    font-size: 1.3rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.whatsapp-icon:hover {
    transform: scale(1.15);
    background: rgba(37, 211, 102, 0.1);
}

.dropdown-menu-dark {
    background: rgba(15, 20, 25, 0.95);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(20px);
}

.dropdown-menu-dark .dropdown-item {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.dropdown-menu-dark .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 159, 216, 0.1));
    color: var(--accent-gold);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.3) 0%, rgba(26, 32, 51, 0.4) 100%),
                url('https://images.unsplash.com/photo-1512917774080-9991f1c52f56?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    will-change: transform;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, rgba(0, 0, 0, 0.2) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text-container {
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-top-label {
    animation: slideDown 0.8s ease;
}

.badge-luxury {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 1s ease 0.2s both;
}

.hero-title-word {
    display: inline-block;
    animation: fadeInScale 0.8s ease both;
}

.hero-title-word:nth-child(1) { animation-delay: 0.3s; }
.hero-title-word:nth-child(2) { animation-delay: 0.5s; }
.hero-title-word:nth-child(3) { animation-delay: 0.7s; }

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    animation: slideUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease 0.6s both;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-luxury {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-gold), #e8c547) !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    min-height: 56px;
    height: auto;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-luxury:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.btn-luxury:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-luxury span,
.btn-luxury i {
    display: inline-block;
    vertical-align: middle;
}

.btn-explore {
    background: linear-gradient(135deg, var(--accent-gold), #e8c547) !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-explore:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.btn-contact {
    background: linear-gradient(135deg, var(--accent-blue), #2a7db8) !important;
    color: white !important;
    box-shadow: 0 10px 40px rgba(74, 159, 216, 0.3);
}

.btn-contact:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(74, 159, 216, 0.5);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* ========================================
   HERO STATS
   ======================================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition-smooth);
    min-width: 150px;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.stat-counter {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    counter-increment: count var(--target);
}

.stat-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInScale 1s ease 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--accent-gold);
    border-radius: 13px;
    position: relative;
    animation: mouseMove 1.5s infinite;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s infinite;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -5px;
}

.arrow span {
    width: 2px;
    height: 12px;
    background: var(--accent-gold);
    display: block;
    animation: arrowBounce 1.5s infinite;
}

.arrow span:nth-child(2) { animation-delay: 0.1s; }
.arrow span:nth-child(3) { animation-delay: 0.2s; }

@keyframes mouseMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes wheelScroll {
    0% { opacity: 1; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes arrowBounce {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
section {
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.navbar-collapse {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.dropdown-menu {
    max-height: 60vh;
    overflow-y: auto;
}

.navbar-nav .nav-link {
    white-space: nowrap;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.navbar-collapse {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-menu {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.navbar-nav .nav-link {
    white-space: nowrap;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideDown 0.8s ease;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: linear-gradient(135deg, rgba(26, 32, 51, 0.5) 0%, rgba(15, 20, 25, 0.5) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 500px;
    height: 500px;
    width: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e5f 100%);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.about-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition-smooth);
    opacity: 1;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(74, 159, 216, 0.05));
    border-radius: 20px;
    border: 1px solid var(--border-light);
    pointer-events: none;
}

.about-content {
    padding: 2rem 0;
}

.about-counters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-counters > div {
    width: 100%;
}

@media (max-width: 991px) {
    .hero-background {
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-card,
    .property-card,
    .testimonial-card,
    .blog-card,
    .feature-card,
    .contact-card {
        margin: 0 auto;
    }

    .nav-link-animate {
        font-size: 0.9rem;
    }

    /* Mobile Navigation Logo - Reduce Size */
    .navbar-logo {
        height: 36px;
        max-width: 140px;
    }
}

.counter-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.counter-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 31, 46, 0.8) 100%);
    border-bottom: 1px solid var(--border-light);
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.service-card:hover::before {
    top: 0;
    right: 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(74, 159, 216, 0.2));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(74, 159, 216, 0.4));
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    gap: 1rem;
}

/* ========================================
   PROPERTIES SECTION
   ======================================== */
.properties-section {
    background: linear-gradient(135deg, rgba(26, 32, 51, 0.5) 0%, rgba(15, 20, 25, 0.5) 100%);
}

.property-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.property-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.property-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.property-card:hover .property-image {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #e8c547);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-content {
    padding: 1.5rem;
}

.property-location {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.property-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.property-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.property-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.property-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-details i {
    color: var(--accent-gold);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.property-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.property-link:hover {
    transform: scale(1.15) rotate(45deg);
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-section {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 31, 46, 0.8) 100%);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-image {
    transform: scale(1.15) rotate(2deg);
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 20, 25, 0.95) 50%, rgba(15, 20, 25, 0.99) 100%);
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-content h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.project-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.project-location {
    color: var(--accent-gold);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    background: linear-gradient(135deg, rgba(26, 32, 51, 0.5) 0%, rgba(15, 20, 25, 0.5) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(74, 159, 216, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 159, 216, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-blue);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(74, 159, 216, 0.4), rgba(212, 175, 55, 0.2));
    transform: rotateY(360deg) scale(1.1);
    border-color: var(--accent-blue);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 31, 46, 0.8) 100%);
}

.category-card {
    background: linear-gradient(135deg, var(--glass-bg), rgba(74, 159, 216, 0.03));
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.category-card:hover::before {
    left: 0;
}

.category-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(-10deg);
    color: var(--accent-blue);
    background: rgba(74, 159, 216, 0.1);
    border-color: rgba(74, 159, 216, 0.3);
}

.category-card h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: linear-gradient(135deg, rgba(26, 32, 51, 0.5) 0%, rgba(15, 20, 25, 0.5) 100%);
    border-bottom: 1px solid var(--border-light);
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(74, 159, 216, 0.2));
    border: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-avatar-wrapper i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    font-size: 1rem;
}

.testimonial-stars i {
    color: var(--accent-gold);
}

.testimonial-text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 31, 46, 0.8) 100%);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-container:hover .video-thumbnail {
    transform: scale(1.1);
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.video-container:hover .play-button-wrapper {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.play-button:hover {
    transform: scale(1.2);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.5);
}

.video-content h2 {
    margin: 1.5rem 0;
}

.video-features {
    list-style: none;
    margin-top: 1.5rem;
}

.video-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.video-features i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: linear-gradient(135deg, rgba(26, 32, 51, 0.5) 0%, rgba(15, 20, 25, 0.5) 100%);
    border-top: 1px solid var(--border-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.2) rotate(5deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-icon:hover {
    transform: scale(1.2);
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 31, 46, 0.8) 100%);
    border-bottom: 1px solid var(--border-light);
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.blog-date, .blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date i, .blog-author i {
    color: var(--accent-gold);
}

.blog-title {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-excerpt {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.blog-link:hover {
    gap: 1rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: linear-gradient(135deg, rgba(26, 32, 51, 0.5) 0%, rgba(15, 20, 25, 0.5) 100%);
}

.accordion-item {
    background: transparent;
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: var(--accent-gold);
}

.accordion-button {
    background: var(--glass-bg);
    color: var(--text-light);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    transition: var(--transition-fast);
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 159, 216, 0.1));
    color: var(--accent-gold);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-gold);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-gray);
    border-top: 1px solid var(--border-light);
    padding: 1.5rem;
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: linear-gradient(135deg, rgba(12, 15, 20, 0.92) 0%, rgba(22, 29, 44, 0.92) 100%);
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.contact-card {
    background: rgba(17, 22, 33, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 28px;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(18px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(74, 159, 216, 0.2));
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(74, 159, 216, 0.4));
    transform: scale(1.15) rotate(10deg);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-detail {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(18, 24, 37, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.form-control-luxury {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border-radius: 18px;
    padding: 1.2rem 1.25rem;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.form-control-luxury:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    color: var(--text-light);
}

.form-control-luxury::placeholder {
    color: var(--text-gray);
}

.contact-form .btn-luxury.contact-submit-btn {
    padding: 1rem 1.5rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.contact-form .form-control-luxury,
.contact-form textarea.form-control-luxury {
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.12);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.newsletter-form {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    flex-wrap: nowrap;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    flex: 1;
    min-width: 0;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    border-color: transparent;
    color: white;
    outline: none;
}

.newsletter-section .btn-luxury {
    background: rgba(15, 20, 25, 0.9);
    color: var(--accent-gold);
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-section .btn-luxury:hover {
    background: rgba(15, 20, 25, 1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(10, 13, 18, 0.95) 100%);
    border-top: 1px solid var(--border-light);
    color: var(--text-light);
    padding-top: 3rem;
}

.footer-company h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-company p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(74, 159, 216, 0.2));
    border-color: var(--accent-gold);
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links i {
    color: var(--accent-gold);
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-newsletter input {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    outline: none;
}

.footer-newsletter button {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    border: none;
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

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

.footer-note {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    margin-top: 3rem;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-separator {
    color: var(--text-gray);
    margin: 0 1rem;
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.bottom-strip {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem 0.5rem;
    z-index: 1005;
    pointer-events: auto;
}

.bottom-strip-item {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 48px;
    padding: 0 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bottom-strip-phone {
    background: #b8860b;
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}

.bottom-strip-whatsapp {
    background: #25d366;
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.bottom-strip-item:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.bottom-strip-item:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.bottom-strip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.bottom-strip-item i {
    font-size: 1.1rem;
}

.bottom-strip-item span {
    display: inline-block;
    overflow-wrap: anywhere;
    white-space: normal;
    text-align: center;
    max-width: 100%;
}

@media (max-width: 767px) {
    .bottom-strip {
        bottom: 0;
        padding: 0 0.5rem 0.5rem;
        gap: 0.5rem;
    }

    .bottom-strip-item {
        min-height: 42px;
        padding: 0 1rem;
        font-size: 0.9rem;
    }

    .floating-buttons {
        display: none;
    }
}

@media (max-width: 480px) {
    .bottom-strip {
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0.9rem;
    }

    .bottom-strip-item {
        width: 100%;
        justify-content: center;
        border-radius: 0.75rem;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
    }

    .bottom-strip-item:first-child,
    .bottom-strip-item:last-child {
        border-radius: 0.75rem;
    }

    .bottom-strip-item span {
        font-size: 0.95rem;
    }

    /* Extra Small Mobile - Logo Even Smaller */
    .navbar-logo {
        height: 32px;
        max-width: 110px;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 80px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1000;
}

.floating-call,
.floating-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

.floating-call {
    background: linear-gradient(135deg, #f0b429, #d18c1a);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-call:hover,
.floating-whatsapp:hover,
.bottom-strip-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal-content-dark {
    background: rgba(15, 20, 25, 0.98);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(20px);
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Screens */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-buttons {
        gap: 1.5rem;
    }
}

/* Small Devices */
@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .hero-section {
        padding-top: 60px;
    }

    .luxury-navbar {
        padding: 0.8rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .nav-link-animate {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem !important;
    }

    .hero-title {
        font-size: 2.5rem;
        margin: 1.5rem 0;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-luxury {
        padding: 0.95rem 1.5rem;
        width: 100%;
        min-height: 56px;
        height: auto;
        white-space: normal;
    }

    .floating-buttons {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-card {
        min-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .video-container {
        height: 300px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .property-details {
        flex-direction: column;
        gap: 0.8rem;
    }

    .floating-whatsapp,
    .back-to-top {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 90px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form .form-control,
    .newsletter-section .btn-luxury {
        width: 100%;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .testimonial-avatar-wrapper {
        width: 50px;
        height: 50px;
    }

    .testimonial-avatar-wrapper i {
        font-size: 1.5rem;
    }

    .testimonial-stars {
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 50px;
        height: 2px;
    }

    .about-image-container {
        min-height: 300px;
        height: 300px;
    }

    .about-image {
        min-height: 300px;
    }

    .hero-top-label {
        margin-bottom: 1rem;
    }

    .badge-luxury {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-counter {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn-luxury {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .testimonials-carousel .col-lg-4 {
        max-width: 100%;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    .footer-bottom .row {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom .text-md-start,
    .footer-bottom .text-md-end {
        text-align: center !important;
    }

    .about-image-container {
        min-height: 400px;
        height: 400px;
    }

    .about-image {
        min-height: 400px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .property-card {
        margin-bottom: 2rem;
    }
}

/* ========================================
   ANIMATIONS FOR AOS
   ======================================== */
[data-aos="fade-up"],
[data-aos="fade-down"],
[data-aos="fade-left"],
[data-aos="fade-right"] {
    opacity: 0;
}

[data-aos="fade-up"].aos-animate,
[data-aos="fade-down"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
    opacity: 1;
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-warning {
    color: var(--accent-gold) !important;
}

.min-vh-100 {
    min-height: 100vh;
}

/* Smooth transitions */
* {
    --webkit-transition: var(--transition-smooth);
    transition: var(--transition-smooth);
}

/* Main Scrollbar Styling - Only for HTML */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--primary-dark);
}

/* Hide scrollbar for navbar and specific elements */
.navbar-collapse {
    scrollbar-width: none;
}

.navbar-collapse::-webkit-scrollbar {
    display: none;
}

/* Prevent horizontal scrollbar on body */
body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Main Scrollbar Styling - Only for HTML */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--primary-dark);
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 5px;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}


/* ========================================
   ADDITIONAL RESPONSIVE IMPROVEMENTS
   ======================================== */

/* Tablet improvements */
@media (max-width: 991px) {
    .hero-background {
        background-attachment: scroll;
    }

    .service-card,
    .feature-card,
    .category-card {
        padding: 2rem 1.5rem;
    }

    .project-card {
        height: 350px;
    }

    .hero-stats {
        gap: 2rem;
    }
}

/* Mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        min-width: 45%;
        max-width: 45%;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn-luxury {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }

    .floating-buttons {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }

    .floating-call,
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .floating-whatsapp,
    .back-to-top,
    .scroll-progress-bar,
    .loading-screen {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}


/* ========================================
   COMPREHENSIVE SCROLLBAR FIX - FINAL
   ======================================== */

/* Hide all scrollbars except main page scroll */
* {
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

/* Show only main page scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--primary-dark);
}

html::-webkit-scrollbar {
    width: 10px;
    display: block;
}

html::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 5px;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}


/* ========================================
   CUSTOM ALERT MESSAGES
   ======================================== */
.custom-alert {
    position: fixed;
    top: 100px;
    right: 30px;
    min-width: 350px;
    max-width: 500px;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-alert.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-alert.alert-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.95), rgba(32, 201, 151, 0.95));
    border: 1px solid rgba(40, 167, 69, 0.5);
}

.custom-alert.alert-error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(200, 35, 51, 0.95));
    border: 1px solid rgba(220, 53, 69, 0.5);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.alert-content i {
    font-size: 1.5rem;
}

.alert-content span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .custom-alert {
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: calc(100% - 30px);
    }
}


/* ========================================
   HERO FORM
   ======================================== */
.hero-form-container {
    background: rgba(15, 20, 25, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.hero-form-container:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
}

.hero-form-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-align: center;
}

.hero-form-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-form-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: var(--text-light);
    outline: none;
}

.hero-form-input::placeholder {
    color: rgba(232, 232, 232, 0.5);
}

.hero-form .btn-luxury {
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-top: 0.5rem !important;
    min-height: 56px !important;
    max-height: 56px !important;
    height: 56px !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-features-list i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-stats-inline {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-card-inline {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 1.75rem;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition-smooth);
    min-width: 120px;
}

.stat-card-inline:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.stat-card-inline h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-card-inline p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.hero-text-container {
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.15rem;
    text-align: left;
    max-width: 100%;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-form-container {
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-features-list {
        text-align: left;
    }
    
    .hero-stats-inline {
        justify-content: center;
    }
    
    .hero-text-container {
        text-align: center;
    }
    
    .hero-top-label {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-form-container {
        padding: 1.5rem;
    }
    
    .hero-form-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats-inline {
        gap: 1rem;
    }
    
    .stat-card-inline {
        min-width: 100px;
        padding: 1rem 1.25rem;
    }
    
    .stat-card-inline h3 {
        font-size: 1.5rem;
    }
}
