/* ============================================================================
   NIZHARA Real Estate - Main Stylesheet
   Clean, organized CSS architecture - Based on backup styles
   ============================================================================ */

/* ========================================================================
   IMPORTS - Load all CSS modules in correct order
   ======================================================================== */

/* 1. Design Tokens - CSS Custom Properties */
@import url('variables.css');

/* 2. Reset & Base Styles */
@import url('reset.css');

/* 3. Layout System */
@import url('layout.css');

/* 4. Components */
@import url('components.css');

/* 5. Utilities */
@import url('utilities.css');

/* 6. Project Stats */
@import url('project-stats.css');

/* 7. Language Switcher Responsive */
@import url('language-switcher-responsive.css');

/* 8. Featured Properties */
@import url('featured-properties.css');

/* 10. Location Section */
@import url('location.css');

/* 11. Properties Map Section */
@import url('properties-map.css');

/* 12. Contact & Map Section */
@import url('contact-map.css');

/* 13. About Section */
@import url('about-section.css');

/* 14. Footer */
@import url('footer.css');

/* 15. Hero Mobile Optimization */
@import url('hero-mobile.css');

/* ========================================================================
   LAYOUT SYSTEM
   ======================================================================== */

/* Viewport-based container */
._container {
    width: 78.75vw;
    margin: 0 auto;
    max-width: none;
}

/* Anchor positioning */
.anchor {
    position: absolute;
    top: -4.896vw;
}

/* ========================================================================
   HEADER COMPONENT
   ======================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    height: 4.896vw;
    background: transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(0.26vw);
    -webkit-backdrop-filter: blur(0.26vw);
    border-bottom: 0.052vw solid rgba(31, 42, 68, 0.06);
    box-shadow: var(--shadow-header);
}

.header-container {
    width: 100%;
    height: 100%;
    padding: 0 2.604vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.521vw;
    width: auto;
}

.logo-icon {
    width: 2.604vw;
    height: 2.604vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-icon svg,
.logo-icon img {
    width: 100%;
    height: 100%;
    fill: var(--color-white);
    transition: var(--transition-base);
}

.header.scrolled .logo-icon svg,
.header.scrolled .logo-icon img {
    fill: var(--color-primary);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-text {
    font-weight: var(--font-weight-bold);
    font-size: 1.1vw;
    line-height: 1.1;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition-base);
    margin-bottom: 0.05vw;
}

.logo-subtitle {
    font-weight: var(--font-weight-medium);
    font-size: 0.55vw;
    line-height: 1;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: var(--transition-base);
    opacity: 0.85;
}

.header.scrolled .logo-text {
    color: var(--color-primary);
}

.header.scrolled .logo-subtitle {
    color: var(--color-highlight);
}

/* Navigation Menu */
.menu-wrapper {
    margin: 0 1.042vw 0 0;
    width: 100%;
    flex-shrink: 1;
}

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

.header-menu {
    display: flex;
    gap: 2.396vw;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item a {
    font-weight: var(--font-weight-normal);
    font-size: 0.833vw;
    line-height: 1.25vw;
    color: var(--color-white);
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-base);
}

.menu-item a:hover {
    color: var(--color-accent);
}

.header.scrolled .menu-item a {
    color: var(--color-primary);
}

.header.scrolled .menu-item a:hover {
    color: var(--color-highlight);
}

/* Header Phone */
.header-phone {
    font-weight: var(--font-weight-normal);
    font-size: 0.938vw;
    color: var(--color-white);
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.521vw 0.938vw;
    transition: var(--transition-base);
}

.header-phone:hover {
    color: var(--color-accent);
}

.header.scrolled .header-phone {
    color: var(--color-primary);
}

.header.scrolled .header-phone:hover {
    color: var(--color-highlight);
}

/* CTA Button */
.callback-btn {
    font-weight: var(--font-weight-normal);
    font-size: 0.833vw;
    line-height: 1.25vw;
    color: var(--color-white);
    text-transform: uppercase;
    border: 0.052vw solid var(--color-white);
    background: transparent;
    gap: 0.521vw;
    padding: 0.521vw 0.938vw 0.521vw 0.833vw;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
    margin: 0 1.042vw;
    border-radius: 0;
}

.callback-btn .icon {
    width: 1.25vw;
    height: 1.25vw;
    display: flex;
}

.callback-btn .icon svg {
    fill: var(--color-white);
    transition: var(--transition-base);
}

.callback-btn:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.callback-btn:hover .icon svg {
    fill: var(--color-accent);
}

.callback-btn:active {
    color: var(--color-highlight);
    border-color: var(--color-highlight);
}

.callback-btn:active .icon svg {
    fill: var(--color-highlight);
}

.header.scrolled .callback-btn {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.header.scrolled .callback-btn .icon svg {
    fill: var(--color-primary);
}

.header.scrolled .callback-btn:hover {
    color: var(--color-highlight);
    border-color: var(--color-highlight);
}

.header.scrolled .callback-btn:hover .icon svg {
    fill: var(--color-highlight);
}

/* Language Switcher - Styles moved to language-switcher-responsive.css */

/* Mobile Menu (Hidden on Desktop) */
.burger {
    display: none;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.burger svg {
    width: 100%;
    height: 100%;
    fill: var(--color-white);
    transition: var(--transition-base);
}

.header.scrolled .burger svg {
    fill: var(--color-primary);
}

.mobile-menu {
    display: none;
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-primary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-slide img,
.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tint-desktop,
.tint-tablet {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.3;
    mix-blend-mode: multiply;
}

.tint-tablet {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(135deg,
            rgba(31, 42, 68, 0.4) 0%,
            rgba(31, 42, 68, 0.3) 30%,
            rgba(31, 42, 68, 0.2) 60%,
            rgba(31, 42, 68, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
}

/* Hero Logo */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-vector {
    width: 10.417vw;
    height: 10.417vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-vector img,
.hero-logo-vector svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0.208vw 0.833vw rgba(0, 0, 0, 0.3));
}

/* Hero Text */
.hero-text {
    font-weight: var(--font-weight-normal);
    font-size: 2.396vw;
    line-height: 2.865vw;
    color: var(--color-white);
    margin-bottom: 3.125vw;
    text-shadow: 0 0.208vw 0.833vw rgba(0, 0, 0, 0.3);
    max-width: 52.083vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-subtitle {
    display: block;
    font-weight: var(--font-weight-light);
    font-size: 1.675vw;
    line-height: 2.25vw;
    color: var(--color-white);
    margin-top: 0.521vw;
    text-shadow: 0 0.208vw 0.833vw rgba(0, 0, 0, 0.3);
}

/* Hero Tagline */
.hero-tagline {
    display: block;
    font-weight: var(--font-weight-normal);
    font-size: 1.25vw;
    line-height: 1.75vw;
    color: var(--color-accent);
    margin-top: 1.042vw;
    opacity: 0.9;
    text-shadow: 0 0.104vw 0.417vw rgba(0, 0, 0, 0.4);
    max-width: 45vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-style: italic;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 1.042vw;
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}

/* Base Button Styles - RECTANGULAR */
.btn {
    font-weight: var(--font-weight-medium);
    font-size: 0.833vw;
    line-height: 1.25vw;
    text-transform: uppercase;
    padding: 0.938vw;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.521vw;
    border-radius: 0;
}

.btn .text {
    display: inline-block;
}

.btn .icon {
    width: 1.25vw;
    height: 1.25vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn .icon svg {
    width: 100%;
    height: 100%;
    transition: var(--transition-base);
}

.btn-filled {
    color: var(--color-primary);
    background-color: var(--color-accent);
}

.btn-filled:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 42, 68, 0.3);
}


.btn-filled:hover .icon svg {
    fill: var(--color-white);
}

.btn-filled:active {
    background-color: var(--color-highlight);
    color: var(--color-white);
}

.btn-stroked {
    color: var(--color-white);
    border: 0.052vw solid var(--color-white);
    background: rgba(255, 255, 255, 0.28);
}

.btn-stroked .icon svg {
    fill: var(--color-white);
}

.btn-stroked:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-stroked:hover .icon svg {
    fill: var(--color-accent);
}

.btn-stroked:active {
    color: var(--color-highlight);
    border-color: var(--color-highlight);
}

.btn-stroked:active .icon svg {
    fill: var(--color-highlight);
}

/* Hero Features - Bottom Position */
.hero-features {
    position: absolute;
    bottom: 4vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 5.208vw;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.hero-feature {
    text-align: center;
    color: var(--color-white);
}

.hero-feature-value {
    font-weight: var(--font-weight-bold);
    font-size: 2.396vw;
    line-height: 2.865vw;
    color: var(--color-accent);
    margin-bottom: 0.521vw;
    text-shadow: 0 0.208vw 0.833vw rgba(0, 0, 0, 0.3);
}

.hero-feature-text {
    font-weight: var(--font-weight-normal);
    font-size: 0.833vw;
    line-height: 1.25vw;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 0.104vw 0.417vw rgba(0, 0, 0, 0.3);
}

.hero-pagination {
    position: absolute;
    bottom: 2.604vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.521vw;
}

.hero-dot {
    width: 0.625vw;
    height: 0.625vw;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 0.104vw solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--color-accent);
    border-color: var(--color-white);
}

/* ========================================================================
   SECTION STYLES
   ======================================================================== */
section {
    padding: 3vw 0;
    position: relative;
}

/* ========================================================================
   STANDARDIZED SECTION HEADERS - CONSISTENT VISUAL DESIGN
   ======================================================================== */

/* Base section header styles - applies to all sections */
.section-header {
    text-transform: uppercase;
    margin-bottom: 3.125vw;
    text-align: center;
    position: relative;
}

/* Beautiful decorative line under section headers */
.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(3rem, 5vw, 5rem);
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-highlight) 100%);
    border-radius: 2px;
}

.section-header .subtitle {
    font-weight: var(--font-weight-bold);
    font-size: 4.479vw;
    line-height: 5.365vw;
    color: transparent;
    -webkit-text-stroke: 0.052vw var(--color-accent);
    margin-bottom: -0.99vw;
    position: relative;
    z-index: 1;
    margin-left: 0 !important;
    text-align: center;
}

.section-header .title {
    font-weight: var(--font-weight-medium);
    font-size: 2.396vw;
    line-height: 2.865vw;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
    margin: 0;
    text-align: center;
}

/* Section-specific overrides - ensure consistency */
.categories-section .section-header,
.featured-properties-section .section-header,
.contact-section .section-header,
.objects-section .section-header,
.advantages-section .section-header,
.services-section .section-header,
.location-section .section-header,
.properties-map-section .section-header,
.contact-map-section .section-header {
    text-align: center;
    margin-bottom: 3.125vw !important;
}

.categories-section .section-header .subtitle,
.featured-properties-section .section-header .subtitle,
.contact-section .section-header .subtitle,
.objects-section .section-header .subtitle,
.advantages-section .section-header .subtitle,
.services-section .section-header .subtitle,
.location-section .section-header .subtitle,
.properties-map-section .section-header .subtitle,
.contact-map-section .section-header .subtitle {
    margin-left: 0 !important;
    text-align: center;
}

.section-text {
    font-weight: var(--font-weight-normal);
    font-size: 0.938vw;
    line-height: 1.406vw;
    color: var(--color-gray-600);
    max-width: 52.083vw;
    margin: 0 auto;
    text-align: center;
}

/* ========================================================================
   SLIDER SECTION
   ======================================================================== */
.slider-section {
    padding: 3vw 0;
    background: var(--color-white);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.property-slider {
    overflow: hidden;
    border-radius: 0;
}

.property-slide {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100vw;
}

.property-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.property-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(31, 42, 68, 0.9) 0%, transparent 100%);
    padding: 2.604vw;
    color: var(--color-white);
    max-width: 78.75vw;
    margin: 0 auto;
}

.property-slide-title {
    font-size: 2.396vw;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.521vw;
    color: var(--color-accent);
}

.property-slide-description {
    font-size: 0.938vw;
    line-height: 1.406vw;
    margin-bottom: 1.042vw;
}

.property-slide-price {
    font-size: 1.563vw;
    font-weight: var(--font-weight-bold);
    color: var(--color-highlight);
}

/* Swiper Navigation */
.swiper-navigation {
    position: absolute;
    bottom: 2.604vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2.083vw;
}

.swiper-button-prev,
.swiper-button-next {
    width: 3.125vw;
    height: 3.125vw;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: static;
    margin: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 1.25vw;
    height: 1.25vw;
    stroke: var(--color-primary);
}

.swiper-pagination {
    position: static;
    width: auto;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    background: rgba(31, 42, 68, 0.8);
    padding: 0.521vw 1.042vw;
    border-radius: var(--radius-base);
}

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

/* Tablet Styles */
@media (max-width: 1200px) {
    .tint-desktop {
        display: none;
    }

    .tint-tablet {
        display: block;
    }

    /* Adjust vw units for smaller screens */
    .header {
        height: 6vw;
    }

    /* Tablet Logo Styles */
    .logo-text {
        font-size: 1.4vw;
        line-height: 1.1;
        margin-bottom: 0.08vw;
    }

    .logo-subtitle {
        font-size: 0.7vw;
        line-height: 1;
        letter-spacing: 0.1em;
    }

    .menu-item a,
    .header-phone,
    .current-lang .lang {
        font-size: 1.2vw;
    }

    .section-header .subtitle {
        font-size: 6vw;
        line-height: 7vw;
    }

    .section-header .title {
        font-size: 3.5vw;
        line-height: 4vw;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    ._container {
        width: 90vw;
        padding: 0 5vw;
    }

    .header {
        height: 70px;
        padding: 0 10px;
    }

    .header-container {
        padding: 0 10px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    /* Show mobile menu - Position on LEFT */
    .burger {
        display: flex !important;
        width: 2rem;
        height: 2rem;
        cursor: pointer;
        z-index: 1000;
        order: 1;
        margin-right: 0.25rem;
        align-items: center;
        justify-content: center;
    }

    .burger svg {
        width: 100%;
        height: 100%;
        fill: var(--color-white);
    }

    .header.scrolled .burger svg {
        fill: var(--color-primary);
    }

    /* Mobile Logo Styles - After burger */
    .logo {
        order: 2;
        justify-content: flex-start;
        margin-left: 0;
    }

    .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .logo-text {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 1px;
    }

    .logo-subtitle {
        font-size: 8px;
        line-height: 1;
        letter-spacing: 0.1em;
        color: var(--color-white);
        opacity: 1;
    }

    .header.scrolled .logo-subtitle {
        color: var(--color-primary);
    }

    /* Hide desktop menu wrapper but show callback button */
    .menu-wrapper:not(.mobile-menu) {
        display: none !important;
    }

    /* Show callback button on mobile - Rectangular with no border radius */
    .callback-btn {
        display: flex !important;
        order: 3;
        width: 3rem;
        height: 1.5rem;
        padding: 0;
        margin: 0 0.5rem;
        margin-left: auto;
        border: 1px solid var(--color-white);
        background: transparent;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
        transition: var(--transition-base);
    }

    .callback-btn .icon {
        width: 1rem;
        height: 1rem;
    }

    .callback-btn .text {
        display: none;
    }

    .callback-btn .icon svg {
        fill: var(--color-white);
        transition: var(--transition-base);
    }

    .header.scrolled .callback-btn {
        border-color: var(--color-primary);
    }

    .header.scrolled .callback-btn .icon svg {
        fill: var(--color-primary);
    }

    .callback-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--color-accent);
    }

    .callback-btn:hover .icon svg {
        fill: var(--color-accent);
    }

    .header.scrolled .callback-btn:hover {
        background: rgba(31, 42, 68, 0.1);
        border-color: var(--color-highlight);
    }

    .header.scrolled .callback-btn:hover .icon svg {
        fill: var(--color-highlight);
    }

    /* Language Switcher Mobile - Styles moved to language-switcher-responsive.css */
    .lang-switcher {
        display: block !important;
        order: 4;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-text {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 22px;
        margin-top: 8px;
    }

    .hero-tagline {
        font-size: 16px;
        line-height: 22px;
        margin-top: 15px;
        max-width: 90vw;
        padding: 0 20px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 250px;
        justify-content: center;
        font-size: 14px;
        padding: 15px;
        gap: 8px;
    }

    .hero-btns .btn .icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-btns .btn .icon svg {
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
        fill: currentColor;
    }

    /* Video Button Specific Styling */
    .btn-stroked .icon {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        padding: 4px;
        width: 28px;
        height: 28px;
    }

    .btn-stroked .icon svg {
        width: 14px;
        height: 14px;
        fill: var(--color-white);
        margin-left: 1px;
        /* Center the play triangle */
    }

    .btn-stroked:hover .icon,
    .btn-stroked:active .icon {
        background: rgba(217, 198, 163, 0.3);
        transform: scale(1.1);
    }

    .btn-stroked:hover .icon svg,
    .btn-stroked:active .icon svg {
        fill: var(--color-primary);
    }

    .hero-features {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        bottom: auto;
        left: auto;
    }

    .slider-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .property-slide {
        height: 50vh;
        min-height: 300px;
    }

    .property-slide-content {
        padding: 20px;
        max-width: 90vw;
    }

    section {
        padding: 60px 0;
    }

    .anchor {
        top: -70px;
    }

    /* Mobile typography */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-header .subtitle {
        font-size: 36px;
        line-height: 42px;
        margin-left: 0 !important;
        margin-bottom: -8px;
    }

    .section-header .title {
        font-size: 24px;
        line-height: 30px;
    }

    .section-header::after {
        bottom: -0.75rem;
        width: 3rem;
        height: 2px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-logo-vector {
        width: 80px;
        height: 80px;
    }

    .section-header .subtitle {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: -6px;
    }

    .section-header .title {
        font-size: 20px;
        line-height: 26px;
    }
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */
@media print {

    .header,
    .burger,
    .btn {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: auto;
        page-break-after: always;
    }

    section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
}

/* ========================================================================
   PERFORMANCE OPTIMIZATIONS
   ======================================================================== */

/* GPU acceleration for animations */
.hero-slide {
    will-change: transform;
}

/* ========================================================================
   HERO LOGO ANIMATION
   ======================================================================== */

/* Hero Logo Animation */
.hero-logo-animated {
    animation: heroLogoSpin 2.5s ease-out;
}

@keyframes heroLogoSpin {
    0% {
        transform: rotate(0deg) scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

/* ========================================================================
   PROPERTY TYPES SECTION - COLUMN LAYOUT
   ======================================================================== */
.property-types-section {
    padding: 3vw 0;
    background: var(--color-light-gray);
}

.property-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2vw;
    margin-top: 3vw;
}

.property-type-column {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-all);
    box-shadow: var(--shadow-md);
}

.property-type-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.property-type-column:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.property-type-column:hover::before {
    left: 100%;
}

.property-type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(31, 42, 68, 0.3) 0%,
            rgba(31, 42, 68, 0.5) 50%,
            rgba(31, 42, 68, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.5vw;
    transition: var(--transition-base);
}

.property-type-column:hover .property-type-overlay {
    background: linear-gradient(to bottom,
            rgba(31, 42, 68, 0.4) 0%,
            rgba(31, 42, 68, 0.6) 50%,
            rgba(31, 42, 68, 0.9) 100%);
}

.property-type-content {
    color: var(--color-white);
    width: 100%;
    position: relative;
    z-index: 2;
}

.property-type-title {
    font-size: 1.875vw;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 0.5vw;
    color: var(--color-accent);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.property-type-count {
    font-size: 1vw;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1vw;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.property-type-description {
    font-size: 0.938vw;
    line-height: 1.5;
    margin-bottom: 1.5vw;
    opacity: 0.9;
    max-width: 90%;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.property-type-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    padding: 0.75vw 1.5vw;
    background: rgba(217, 198, 163, 0.9);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-base);
    font-size: 0.833vw;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: var(--transition-all);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.property-type-btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 198, 163, 0.4);
}

.property-type-column:hover .property-type-btn {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.property-type-btn .arrow-icon {
    width: 1vw;
    height: 1vw;
    stroke: currentColor;
    transition: var(--transition-base);
}

.property-type-btn:hover .arrow-icon {
    transform: translateX(3px);
}

/* ========================================================================
   END OF MAIN STYLESHEET
   ======================================================================== */