/* ====== CSS Reset & Variables ====== */
:root {
    --primary-color: #5e936c;
    --secondary-color: #23262f;
    --text-light: #ffffff;
    --text-dark: #23262f;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-overlay: rgba(35, 38, 47, 0.85);
    --gradient-primary: linear-gradient(135deg, #5e936c 0%, #5e936c 100%);
    --gradient-dark: linear-gradient(135deg, #23262f 0%, #34373e 100%);
    --gradient-overlay: linear-gradient(
        135deg,
        rgba(94, 147, 108, 0.9) 0%,
        rgba(35, 38, 47, 0.9) 100%
    );
    --shadow-light: 0 4px 20px rgba(94, 147, 108, 0.1);
    --shadow-medium: 0 8px 40px rgba(35, 38, 47, 0.15);
    --shadow-dark: 0 20px 60px rgba(35, 38, 47, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Premium Background Variables */
    --bg-premium-base: linear-gradient(
        145deg,
        #ffffff 0%,
        #fdfcf8 25%,
        #f9f6f0 50%,
        #f5f1e8 75%,
        #f0ebe0 100%
    );
    --bg-premium-light: linear-gradient(
        135deg,
        #ffffff 0%,
        #fefdf9 30%,
        #fcf8f2 70%,
        #f8f3ea 100%
    );
    --bg-premium-soft: linear-gradient(
        165deg,
        #fefefd 0%,
        #fcf9f4 35%,
        #f7f2e9 65%,
        #f2ece1 100%
    );

    /* Bokeh Colors */
    --bokeh-primary: rgba(94, 147, 108, 0.08);
    --bokeh-secondary: rgba(245, 241, 232, 0.12);
    --bokeh-accent: rgba(248, 243, 234, 0.15);
    --bokeh-subtle: rgba(252, 249, 244, 0.06);
}

/* ====== Common Title Styles ====== */

/* Shared Section Title Styles */
.section-title {
    font-family: "Museo Moderno", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

/* Shared Section Subtitle Styles */
.section-subtitle {
    font-size: 1.125rem;
    color: rgba(35, 38, 47, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* Shared Title Highlight Styles */
.title-highlight {
    background: linear-gradient(135deg, #3e5f44 0%, #3e5f44 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-highlight::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3e5f44 0%, #3e5f44 100%);
    border-radius: 2px;
    opacity: 0.6;
}

/* ====== Section-Specific Premium Backgrounds ====== */

/* Hero Section Background - Trắng với hiệu ứng gradient nhẹ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Areas Section Background - Nâu nhạt */
.areas-section {
    position: relative;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fdfcf8 12%,
        #f8f4ee 20%,
        #f3efea 28%,
        #eee9e3 36%,
        #e9e3dc 44%,
        #e4ddd4 52%,
        #dfd7cc 60%,
        #dad1c4 68%,
        #d5cbbc 76%,
        #d0c5b4 84%,
        #cbbfac 92%,
        #c6b9a4 100%
    );
    overflow: hidden;
}

.areas-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            circle at 20% 30%,
            var(--bokeh-areas) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 70%,
            var(--bokeh-areas) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 40%
        );
    background-size: 250px 250px, 350px 350px, 180px 180px;
    background-position: 0 0, 150px 150px, 200px 50px;
    z-index: -1;
    pointer-events: none;
}

.areas-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(198, 185, 164, 0.08) 80px,
            rgba(198, 185, 164, 0.08) 82px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 120px,
            rgba(255, 255, 255, 0.05) 120px,
            rgba(255, 255, 255, 0.05) 121px
        );
    z-index: -1;
    pointer-events: none;
}

/* Properties Section Background */
.properties-section {
    position: relative;
    background: var(--bg-properties);
    overflow: hidden;
}

.properties-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            circle at 30% 40%,
            var(--bokeh-properties) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 60%,
            var(--bokeh-properties) 0%,
            transparent 50%
        );
    background-size: 250px 250px, 350px 350px;
    background-position: 0 0, 200px 100px;
    z-index: 1;
    pointer-events: none;
}

.properties-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(100, 149, 237, 0.015) 60px,
        rgba(100, 149, 237, 0.015) 61px
    );
    z-index: 2;
    pointer-events: none;
}

/* Map Section Background */
.map-section {
    position: relative;
    background: var(--bg-map);
    overflow: hidden;
}

.map-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            circle at 20% 80%,
            var(--bokeh-map) 0%,
            transparent 50%
        ),
        radial-gradient(circle at 80% 20%, var(--bokeh-map) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px;
    background-position: 0 0, 100px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Contact Section Background */
.contact-section {
    position: relative;
    background: var(--bg-contact);
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            circle at 40% 20%,
            var(--bokeh-contact) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 60% 80%,
            var(--bokeh-contact) 0%,
            transparent 50%
        );
    background-size: 350px 350px, 280px 280px;
    background-position: 0 0, 180px 80px;
    z-index: 1;
    pointer-events: none;
}

.contact-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        30deg,
        transparent,
        transparent 50px,
        rgba(220, 20, 60, 0.01) 50px,
        rgba(220, 20, 60, 0.01) 51px
    );
    z-index: 2;
    pointer-events: none;
}

/* FAQ Section Background */
.faq-section {
    position: relative;
    background: var(--bg-faq);
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at 50% 50%,
        var(--bokeh-faq) 0%,
        transparent 50%
    );
    background-size: 400px 400px;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

/* ====== Section-Specific Background Variables ====== */
:root {
    --primary-color: #5e936c;
    --secondary-color: #23262f;
    --text-light: #ffffff;
    --text-dark: #23262f;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-overlay: rgba(35, 38, 47, 0.85);
    --gradient-primary: linear-gradient(135deg, #5e936c 0%, #5e936c 100%);
    --gradient-dark: linear-gradient(135deg, #23262f 0%, #34373e 100%);
    --gradient-overlay: linear-gradient(
        135deg,
        rgba(94, 147, 108, 0.9) 0%,
        rgba(35, 38, 47, 0.9) 100%
    );
    --shadow-light: 0 4px 20px rgba(94, 147, 108, 0.1);
    --shadow-medium: 0 8px 40px rgba(35, 38, 47, 0.15);
    --shadow-dark: 0 20px 60px rgba(35, 38, 47, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Section Background Variables */
    --bg-hero: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --bg-areas: linear-gradient(135deg, #ffffff 0%, #fdfcf8 50%, #f9f6f0 100%);
    --bg-properties: linear-gradient(
        145deg,
        #f8f9fa 0%,
        #ffffff 50%,
        #f1f3f4 100%
    );
    --bg-map: linear-gradient(135deg, #fefefe 0%, #f5f5f5 100%);
    --bg-contact: linear-gradient(
        135deg,
        #f9f6f0 0%,
        #ffffff 50%,
        #f5f1e8 100%
    );
    --bg-faq: linear-gradient(135deg, #ffffff 0%, #fcf8f2 100%);

    /* Bokeh Colors for each section */
    --bokeh-areas: rgba(198, 185, 164, 0.15);
    --bokeh-properties: rgba(100, 149, 237, 0.05);
    --bokeh-map: rgba(34, 139, 34, 0.06);
    --bokeh-contact: rgba(220, 20, 60, 0.05);
    --bokeh-faq: rgba(138, 43, 226, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Museo Moderno", "Inter", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fdfcf8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ====== Button Styles ====== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.btn:hover {
    background-color: #5e936c;
    border-color: #5e936c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(94, 147, 108, 0.2);
}

/* Button Size Variants */
.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: calc(var(--border-radius) + 4px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: calc(var(--border-radius) - 2px);
}

/* Button Style Variants */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #5e936c;
    border-color: #5e936c;
}

/* Full width buttons */
.btn.w-100 {
    width: 100%;
}

/* Button loading state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-light);
}

/* ====== Floating Header ====== */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(252, 250, 246, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(94, 147, 108, 0.15);
    box-shadow: 0 8px 32px rgba(94, 147, 108, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.floating-header.scrolled {
    padding: 0.25rem 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 244, 238, 0.99) 100%
    );
    box-shadow: 0 12px 40px rgba(94, 147, 108, 0.2);
    border-bottom-color: rgba(94, 147, 108, 0.25);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 60px;
    transition: height 0.3s ease;
}

.floating-header.scrolled .header-content {
    height: 50px;
}

/* Enhanced Brand Styling */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #5e936c;
    transition: all 0.3s ease;
    position: relative;
}

.brand:hover {
    color: #5e936c;
    transform: translateY(-1px);
}

.brand-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: none !important;
    padding: 0 !important;
}

.brand-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.brand:hover .brand-icon::before {
    transform: translateX(100%);
}

.brand-icon i {
    display: none !important; /* Ẩn icon để hiển thị logo image */
}

.brand-icon .logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.brand:hover .brand-icon {
    transform: scale(1.05);
    box-shadow: none !important;
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(94, 147, 108, 0.3),
        transparent 70%
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand:hover .icon-glow {
    opacity: 1;
}

.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    background: linear-gradient(135deg, #5e936c, #5e936c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(94, 147, 108, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Modern Navigation */
.header-nav {
    display: flex;
    gap: 0.5rem;
}

.header-nav .nav-link {
    position: relative;
    color: rgba(94, 147, 108, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-text {
    position: relative;
    z-index: 2;
    color: #3e5f44;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.header-nav .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(94, 147, 108, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.header-nav .nav-link:hover {
    color: #5e936c;
    background: rgba(94, 147, 108, 0.15);
}

.header-nav .nav-link:hover::before {
    opacity: 1;
}

.header-nav .nav-link:hover .nav-indicator {
    width: 60%;
}

/* Enhanced Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 0.25rem;
}

.btn-action {
    width: 38px;
    height: 38px;
    border: none;
    background: rgba(94, 147, 108, 0.1);
    border: 1px solid rgba(94, 147, 108, 0.2);
    color: rgba(94, 147, 108, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-action::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-action i {
    font-size: 0.9rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-action:hover {
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 147, 108, 0.3);
}

.btn-action:hover::before {
    opacity: 1;
}

/* Modern Hamburger Menu */
.menu-toggle {
    width: 38px;
    height: 38px;
    background: rgba(94, 147, 108, 0.1);
    border: 1px solid rgba(94, 147, 108, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
    background: rgba(94, 147, 108, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: rgba(94, 147, 108, 0.9);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Enhanced Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(35, 38, 47, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 244, 238, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: -10px 0 30px rgba(94, 147, 108, 0.2);
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(94, 147, 108, 0.2);
    background: rgba(248, 244, 238, 0.3);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-brand .brand-icon {
    width: 60px;
    height: 60px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.mobile-brand .brand-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5e936c;
    background: linear-gradient(135deg, #5e936c, #5e936c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-close {
    width: 36px;
    height: 36px;
    background: rgba(94, 147, 108, 0.1);
    border: 1px solid rgba(94, 147, 108, 0.2);
    border-radius: 8px;
    color: rgba(94, 147, 108, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close:hover {
    background: rgba(94, 147, 108, 0.2);
    color: var(--primary-color);
}

.mobile-nav {
    flex: 1;
    padding: 2rem 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(94, 147, 108, 0.85);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 3px solid transparent;
}

.mobile-nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #5e936c;
    background: rgba(94, 147, 108, 0.15);
    border-left-color: var(--primary-color);
    transform: translateX(8px);
}

.mobile-nav-link:hover::before {
    width: 3px;
}

.mobile-contact {
    padding: 1.5rem;
    border-top: 1px solid rgba(94, 147, 108, 0.2);
    background: rgba(248, 244, 238, 0.3);
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(94, 147, 108, 0.3);
}

.mobile-contact-btn:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 147, 108, 0.4);
}

.mobile-contact-btn i {
    font-size: 1.1rem;
}

/* Header Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }

    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        background: rgba(94, 147, 108, 0.1);
        border: 1px solid rgba(94, 147, 108, 0.2);
    }

    .menu-toggle:hover {
        background: rgba(94, 147, 108, 0.2);
        border-color: var(--primary-color);
        transform: scale(1.05);
    }

    .hamburger-line {
        background: rgba(94, 147, 108, 0.9);
    }

    .mobile-menu {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 244, 238, 0.99) 100%
        );
        border-top: 1px solid rgba(94, 147, 108, 0.2);
        box-shadow: 0 10px 30px rgba(94, 147, 108, 0.2);
    }
}

@media (max-width: 480px) {
    .floating-header {
        padding: 0.75rem 0;
    }

    .header-content {
        padding: 0 0.75rem;
    }

    .brand-text {
        font-size: 1.125rem;
    }

    .brand-icon {
        width: 55px;
        height: 55px;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .brand-icon i {
        display: none !important;
    }

    .brand-icon .logo-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .menu-toggle {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-content {
        padding: 1.5rem 1rem;
    }

    .mobile-nav {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .mobile-nav-link {
        padding: 1rem;
        border-radius: 8px;
        border-bottom: none;
        margin-bottom: 0.25rem;
    }
}

/* ====== Main Content Sections ====== */
main {
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: visible;
    z-index: 2;
    display: flex;
    align-items: center;
}

/* Căn giữa theo chiều dọc cho tất cả các section */
.hero-section,
.areas-section,
.properties-section,
.map-section,
.contact-section,
.faq-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Đảm bảo container và content bên trong cũng được căn giữa */
.hero-section .container,
.areas-section .container,
.properties-section .container,
.map-section .container,
.contact-section .container,
.faq-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Căn giữa cho slide-content */
.slide-content {
    width: 100%;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* ====== Section Content Z-Index ====== */
.hero-section .container,
.areas-section .container,
.properties-section .container,
.map-section .container,
.contact-section .container,
.faq-section .container {
    position: relative;
    z-index: 10;
}

.hero-section .hero-content,
.areas-section .section-header,
.properties-section .section-header,
.map-section .section-header,
.contact-section .contact-content,
.faq-section .text-center {
    position: relative;
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        min-height: auto;
        padding: 3rem 0;
    }

    .slide-content {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-section,
    .areas-section,
    .properties-section,
    .map-section,
    .contact-section,
    .faq-section {
        min-height: auto;
        padding: 3rem 0;
    }
}

/* ====== Hero Section ====== */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        min-height: 100vh;
        background-attachment: scroll;
    }

    .hero-section .container {
        padding: 3rem 20px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* Desktop Responsive */
@media (min-width: 1025px) {
    .hero-section {
        min-height: 100vh;
        background-attachment: fixed;
    }

    .hero-section .container {
        padding: 4rem 15px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.6;
    }
}

/* Hero Section Background - Single Image */
.hero-bg-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Mobile Background Optimization */
@media (max-width: 768px) {
    .hero-bg-image {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }
}

/* Tablet Background Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-bg-image {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

/* Desktop Background Optimization */
@media (min-width: 1025px) {
    .hero-bg-image {
        background-attachment: fixed;
        background-size: cover;
        background-position: center center;
    }
}

/* Overlay cho text - Responsive */
.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(35, 38, 47, 0.8) 0%,
        rgba(35, 38, 47, 0.6) 50%,
        rgba(35, 38, 47, 0.8) 100%
    );
    z-index: -1;
}

/* Mobile Overlay */
@media (max-width: 768px) {
    .hero-section .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(35, 38, 47, 0.85) 0%,
            rgba(35, 38, 47, 0.7) 50%,
            rgba(35, 38, 47, 0.85) 100%
        );
    }
}

/* Tablet Overlay */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(35, 38, 47, 0.8) 0%,
            rgba(35, 38, 47, 0.6) 50%,
            rgba(35, 38, 47, 0.8) 100%
        );
    }
}

/* Desktop Overlay */
@media (min-width: 1025px) {
    .hero-section .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(35, 38, 47, 0.75) 0%,
            rgba(35, 38, 47, 0.5) 50%,
            rgba(35, 38, 47, 0.75) 100%
        );
    }
}

.hero-content {
    opacity: 1;
    transform: none;
}

.hero-title {
    font-family: "Museo Moderno", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.title-line {
    display: block;
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #3e5f44 0%, #3e5f44 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    opacity: 1;
    transform: none;
}

.floating-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Tablet Responsive for Cards */
@media (min-width: 769px) and (max-width: 1024px) {
    .floating-cards {
        flex-direction: column;
        gap: 1.2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .card-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-icon i {
        font-size: 1.3rem;
    }

    .card-info h6 {
        font-size: 0.95rem;
    }

    .card-info p {
        font-size: 0.85rem;
    }
}

/* Desktop Cards */
@media (min-width: 1025px) {
    .floating-cards {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 450px;
    }

    .card-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.4rem;
    }
}

.card-item {
    background: linear-gradient(
        135deg,
        rgba(94, 147, 108, 0.9) 0%,
        rgba(80, 125, 92, 0.85) 100%
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: none;
    opacity: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.card-item:nth-child(1) {
    animation-delay: none;
}
.card-item:nth-child(2) {
    animation-delay: none;
}
.card-item:nth-child(3) {
    animation-delay: none;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5e936c 0%, #5e936c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.card-info h6 {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.card-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ====== Areas Section ====== */
.areas-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9f6f0 50%, #fdfcf8 100%);
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
    z-index: 2;
}

.areas-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.4" fill="%238b7247" opacity="0.025"/><circle cx="70" cy="50" r="0.3" fill="%238b7247" opacity="0.02"/><circle cx="50" cy="80" r="0.5" fill="%238b7247" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.areas-section .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Areas section uses common styles - no overrides needed */

.areas-carousel {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.areasSwiper {
    padding: 15px 0 45px 0;
    overflow: hidden;
}

.areasSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3;
    transform: scale(0.85);
    filter: blur(2px);
}

/* Slide ở giữa (active) */
.areasSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 10;
}

/* 2 slides bên cạnh slide active */
.areasSwiper .swiper-slide-next,
.areasSwiper .swiper-slide-prev {
    opacity: 0.6;
    transform: scale(0.9);
    filter: blur(1px);
    z-index: 5;
}

/* Slides ngoài bìa (ẩn hoàn toàn) */
.areasSwiper
    .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(
        .swiper-slide-prev
    ) {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(3px);
    pointer-events: none;
}

.area-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transform: translateY(0);
    opacity: 1;
    transition: var(--transition-spring);
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 147, 108, 0.1);
}

.area-card.in-view {
    transform: translateY(0);
    opacity: 1;
}

.area-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    flex: 1;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    transform: scale(1.02);
}

.area-card:hover .area-image img {
    transform: scale(1.08);
}

.area-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.85));
    padding: 2rem;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.area-card:hover .area-overlay {
    transform: translateY(0);
}

.area-info h3 {
    font-family: "Museo Moderno", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(
        135deg,
        rgba(94, 147, 108, 0.9),
        rgba(94, 147, 108, 0.9)
    );
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.area-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.area-link:hover {
    color: var(--text-light);
    border-bottom-color: var(--primary-color);
    transform: translateX(5px);
}

.area-link::after {
    content: "→";
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.area-link:hover::after {
    transform: translateX(5px);
}

/* Areas Swiper Controls */
.areasSwiper .swiper-pagination {
    bottom: 20px;
}

.areasSwiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: var(--transition-smooth);
}

.areasSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(94, 147, 108, 0.5);
}

.areasSwiper .swiper-button-next,
.areasSwiper .swiper-button-prev {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    color: var(--primary-color);
    margin-top: -28px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.areasSwiper .swiper-button-next:hover,
.areasSwiper .swiper-button-prev:hover {
    background: var(--text-light);
    transform: scale(1.1);
    box-shadow: var(--shadow-dark);
}

.areasSwiper .swiper-button-next::after,
.areasSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 600;
}

.areasSwiper .swiper-button-next {
    right: 20px;
}

.areasSwiper .swiper-button-prev {
    left: 20px;
}

.areasSwiper .swiper-button-disabled {
    opacity: 0.3;
    transform: scale(0.9);
}

/* Enhanced hover effects */
.area-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.area-card:hover {
    transform: translateY(-10px);
}

/* ====== Areas Carousel Responsive Styles ====== */
@media (max-width: 1024px) {
    .areas-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .areas-section .section-header {
        margin-bottom: 2.5rem;
    }

    .area-card {
        height: 320px;
    }

    .area-info p {
        font-size: 0.95rem;
    }

    .areasSwiper .swiper-button-next,
    .areasSwiper .swiper-button-prev {
        width: 48px;
        height: 48px;
        margin-top: -24px;
    }
}

@media (max-width: 768px) {
    .areas-section {
        padding: 2.5rem 0;
        min-height: auto;
    }

    .areas-section .section-header {
        margin-bottom: 2rem;
    }

    .areas-section .section-title {
        /* Uses common .section-title styles with mobile override */
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .area-card {
        height: 300px;
    }

    .area-info h3 {
        font-size: 1.3rem;
        padding: 6px 12px;
    }

    .area-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .area-link {
        font-size: 0.9rem;
    }

    .area-overlay {
        padding: 1.5rem;
    }

    .areasSwiper .swiper-button-next,
    .areasSwiper .swiper-button-prev {
        width: 44px;
        height: 44px;
        margin-top: -22px;
    }

    .areasSwiper .swiper-button-next {
        right: 10px;
    }

    .areasSwiper .swiper-button-prev {
        left: 10px;
    }

    .areas-carousel {
        margin-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .areas-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .areas-section .section-header {
        margin-bottom: 1.5rem;
    }

    .areas-section .section-title {
        /* Uses common .section-title styles with small mobile override */
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .area-card {
        height: 280px;
    }

    .area-info h3 {
        font-size: 1.2rem;
        padding: 6px 10px;
        margin-bottom: 0.4rem;
    }

    .area-info p {
        font-size: 0.85rem;
    }

    .area-overlay {
        padding: 1.2rem;
    }

    .areasSwiper .swiper-button-next,
    .areasSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .areasSwiper .swiper-button-next::after,
    .areasSwiper .swiper-button-prev::after {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .areas-section {
        padding: 1.5rem 0;
        min-height: auto;
    }

    .areas-section .section-header {
        margin-bottom: 1.2rem;
    }

    .areas-section .section-title {
        /* Uses common .section-title styles with extra small mobile override */
        font-size: clamp(1.4rem, 4vw, 2rem);
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .area-card {
        height: 260px;
    }

    .area-info h3 {
        font-size: 1rem;
        padding: 5px 8px;
        margin-bottom: 0.3rem;
    }

    .area-info p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .area-link {
        font-size: 0.85rem;
    }

    .area-overlay {
        padding: 1rem;
    }

    .areasSwiper .swiper-button-next,
    .areasSwiper .swiper-button-prev {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }

    .areasSwiper .swiper-button-next::after,
    .areasSwiper .swiper-button-prev::after {
        font-size: 0.9rem;
    }

    .areasSwiper .swiper-pagination {
        bottom: 15px;
    }

    .areasSwiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .areas-carousel {
        margin-top: 1rem;
    }
}

/* ====== Map Section ====== */
.map-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9f6f0 50%, #fdfcf8 100%);
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
    z-index: 2;
}

.map-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.4" fill="%238b7247" opacity="0.025"/><circle cx="70" cy="50" r="0.3" fill="%238b7247" opacity="0.02"/><circle cx="50" cy="80" r="0.5" fill="%238b7247" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Map section uses common styles - no overrides needed */

.map-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    margin-top: 2rem;
    transform: translateY(0);
    opacity: 1;
    transition: var(--transition-spring);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 147, 108, 0.1);
}

.map-container.in-view {
    transform: translateY(0);
    opacity: 1;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.map-frame {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    position: relative;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(94, 147, 108, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.map-frame:hover::before {
    opacity: 1;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-lg);
}

.map-frame:hover iframe {
    filter: brightness(1.05) contrast(1.02);
}

.map-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 280px;
    margin: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(94, 147, 108, 0.15);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    transform: translateY(0);
    opacity: 1;
    backdrop-filter: blur(10px);
}

.info-card.in-view {
    transform: translateY(0);
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(94, 147, 108, 0.25);
}

@keyframes cardPulse {
    0%,
    100% {
        box-shadow: var(--shadow-light);
    }
    50% {
        box-shadow: var(--shadow-medium);
    }
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.info-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.info-content {
    text-align: center;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: "Museo Moderno", sans-serif;
}

.info-content p {
    color: #4a4a4a;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    /* Hero Section Mobile Full Height */
    .hero-section {
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-attachment: scroll !important;
    }

    /* Hero Section Mobile Styles */
    .hero-section .container {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 80vh;
        padding: 2rem 15px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
    }

    .hero-title {
        text-align: center;
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto 1.5rem auto;
        font-size: 1rem;
        line-height: 1.4;
    }
    .floating-cards {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: stretch;
        gap: 0.5rem;
        margin: 1.5rem auto 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        flex-wrap: nowrap;
    }

    .card-item {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        padding: 0.8rem 0.3rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        visibility: visible;
        opacity: 1;
        height: auto;
        min-height: 90px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .card-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.2);
    }

    .card-item .card-info {
        margin-top: 0.4rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .card-item .card-info p {
        display: none;
    }

    .card-item .card-info h6 {
        font-size: 0.7rem;
        font-weight: 600;
        line-height: 1.1;
        margin: 0;
        color: #ffffff;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .card-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 0.3rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #5e936c, #4a7c59);
        border-radius: 50%;
        flex-shrink: 0;
        box-shadow: 0 2px 6px rgba(94, 147, 108, 0.3);
        transition: all 0.3s ease;
    }

    .card-icon i {
        font-size: 1.1rem;
        color: white;
    }

    .card-item:hover .card-icon {
        transform: scale(1.05);
        box-shadow: 0 3px 8px rgba(94, 147, 108, 0.4);
    }
}

/* Mobile Cards Layout Enhancement */
@media (max-width: 768px) {
    .hero-section .d-lg-none.floating-cards {
        display: flex !important;
        justify-content: space-evenly !important;
        align-items: stretch !important;
        flex-direction: row !important;
        margin: 1.5rem auto 0 auto !important;
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0.5rem !important;
    }

    .hero-section .row {
        justify-content: center;
        margin: 0;
    }

    .hero-section .col-lg-7 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
}

/* Very Small Mobile Optimization */
@media (max-width: 480px) {
    .floating-cards {
        gap: 0.3rem !important;
        padding: 0 0.5rem !important;
        margin: 1rem auto 0 auto !important;
    }

    .card-item {
        padding: 0.6rem 0.2rem !important;
        min-height: 80px !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .card-icon {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 0.2rem !important;
    }

    .card-icon i {
        font-size: 1rem !important;
    }

    .card-info h6 {
        font-size: 0.65rem !important;
        line-height: 1 !important;
        margin: 0 !important;
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }

    .hero-section .container {
        padding: 1.5rem 10px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.2rem !important;
    }
}

/* Small Mobile (iPhone 6/7/8) */
@media (min-width: 481px) and (max-width: 576px) {
    .floating-cards {
        gap: 0.4rem !important;
        padding: 0 0.8rem !important;
    }

    .card-item {
        padding: 0.7rem 0.3rem !important;
        min-height: 85px !important;
    }

    .card-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .card-icon i {
        font-size: 1.05rem !important;
    }

    .card-info h6 {
        font-size: 0.68rem !important;
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
}

/* Regular Mobile (iPhone X and similar) */
@media (min-width: 577px) and (max-width: 768px) {
    .floating-cards {
        gap: 0.5rem !important;
        padding: 0 1rem !important;
    }

    .card-item {
        padding: 0.8rem 0.3rem !important;
        min-height: 90px !important;
    }

    .card-icon {
        width: 35px !important;
        height: 35px !important;
    }

    .card-icon i {
        font-size: 1.1rem !important;
    }

    .card-info h6 {
        font-size: 0.7rem !important;
    }
}
@media (max-width: 768px) {
    .d-lg-none .card-item {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: none !important;
        height: auto !important;
        min-height: 90px !important;
    }

    .d-lg-none .card-item:nth-child(1),
    .d-lg-none .card-item:nth-child(2),
    .d-lg-none .card-item:nth-child(3) {
        animation: none !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex: 1 1 0 !important;
    }

    /* Card content alignment */
    .floating-cards.d-lg-none .card-item {
        justify-content: flex-start !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Icon consistency */
    .floating-cards.d-lg-none .card-icon {
        width: 35px !important;
        height: 35px !important;
        flex-shrink: 0 !important;
    }

    /* Text consistency */
    .floating-cards.d-lg-none .card-info h6 {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
        word-wrap: break-word !important;
    }
}

/* Map Section Responsive */
@media (max-width: 1024px) {
    .map-section {
        padding: 3rem 0;
    }

    .map-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .map-frame {
        max-width: 100%;
        height: 350px;
    }

    .map-info {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 200px;
        max-width: none;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 2.5rem 0;
    }

    .map-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .map-frame {
        height: 300px;
        max-width: 100%;
    }

    .map-info {
        flex-direction: column;
        gap: 1rem;
    }

    .info-card {
        flex: 1 1 auto;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        align-items: center;
        padding: 1.25rem;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(94, 147, 108, 0.15);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-light);
        min-width: 0;
        max-width: none;
    }

    .info-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
        background: rgba(255, 255, 255, 1);
    }
    .info-content {
        text-align: left;
    }
    .info-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        background: var(--gradient-primary);
        color: var(--secondary-color);
        border-radius: var(--border-radius);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-light);
        flex-shrink: 0;
    }

    .info-content h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
        font-family: "Playfair Display", serif;
    }

    .info-content p {
        color: rgba(35, 38, 47, 0.8);
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }
}

/* Properties Section Mobile */
@media (max-width: 768px) {
    .properties-section {
        padding: 1.5rem 0;
    }

    .properties-carousel {
        margin-top: 1rem;
    }

    .property-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 1rem 0;
    }

    .map-section .section-header {
        margin-top: 1.5rem;
    }

    .section-header .section-title {
        /* Uses common .section-title styles with responsive override */
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .map-wrapper {
        margin: 1rem 0.25rem 0;
        border-radius: 10px;
    }

    .map-frame {
        height: 200px;
        border-radius: 10px 10px 0 0;
    }

    .map-info {
        padding: 1rem;
        gap: 0.875rem;
        border-radius: 0 0 10px 10px;
    }

    .info-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0.875rem;
        gap: 0.75rem;
        border-radius: 8px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        border-radius: 8px;
        margin-bottom: 0;
    }

    .info-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .info-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .map-section {
        padding: 0.75rem 0;
    }

    .map-section .section-header {
        margin-top: 1.25rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .section-header .section-title {
        /* Uses common .section-title styles with smaller responsive override */
        font-size: clamp(1.2rem, 7vw, 1.6rem);
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .map-wrapper {
        margin: 0.75rem 0.125rem 0;
    }

    .map-frame {
        height: 180px;
    }

    .map-info {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .info-card {
        padding: 0.75rem;
        gap: 0.625rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 6px;
    }

    .info-content h4 {
        font-size: 0.9rem;
    }

    .info-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 1rem 0;
    }

    .map-frame {
        height: 200px;
    }

    .map-info {
        padding: 1rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .info-icon {
        margin-bottom: 0.5rem;
    }

    /* Properties Section Very Small Mobile */
    .properties-section {
        padding: 1rem 0;
    }

    .property-image {
        height: 140px;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }
}

/* ====== Remove Underlines from Links ====== */
a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}

/* Remove underline from all interactive elements */
.nav-link,
.area-link,
.property-link,
.btn,
.brand,
.mobile-nav-link,
.mobile-contact-btn {
    text-decoration: none !important;
}

.nav-link:hover,
.area-link:hover,
.property-link:hover,
.btn:hover,
.brand:hover,
.mobile-nav-link:hover,
.mobile-contact-btn:hover {
    text-decoration: none !important;
}

/* ====== Properties Section ====== */
.properties-section {
    background: linear-gradient(135deg, #f9f6f0 0%, #ffffff 50%, #fdfcf8 100%);
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.properties-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.3" fill="%238b7247" opacity="0.02"/><circle cx="75" cy="45" r="0.4" fill="%238b7247" opacity="0.025"/><circle cx="45" cy="75" r="0.5" fill="%238b7247" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.properties-section .container {
    position: relative;
    z-index: 2;
}

.properties-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

/* Properties section uses common styles - no overrides needed */

.properties-section .section-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-view-all {
    background: var(--gradient-primary);
    color: #fafafa;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.btn-view-all:hover::before {
    left: 100%;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #5e936c 0%, #5e936c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 147, 108, 0.3);
    color: #fdfdfd;
    text-decoration: none;
}

.properties-carousel {
    margin-top: 2rem;
    position: relative;
}

/* Ensure equal heights for property cards */
.propertiesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.property-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(94, 147, 108, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.property-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 280px; /* Ensure minimum height for content consistency */
}

.property-title {
    font-family: "Museo Moderno", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.property-location i {
    color: var(--primary-color);
}

.property-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666;
}

.property-detail i {
    color: var(--primary-color);
}

.property-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.property-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1; /* This will expand to fill available space */
    display: flex;
    align-items: flex-start; /* Align text to top of flex area */
}

.property-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.property-actions .btn {
    flex: 1;
}

.property-actions .btn-outline {
    flex: none;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====== No Results State ====== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h5 {
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.no-results p {
    font-size: 0.9rem;
}

/* ====== Enhanced Swiper Styles ====== */
.properties-carousel .swiper-pagination {
    bottom: -50px;
}

.properties-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: var(--transition-smooth);
}

.properties-carousel .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.properties-carousel .swiper-button-next,
.properties-carousel .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--text-light);
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    color: var(--primary-color);
    margin-top: -24px;
    transition: var(--transition-smooth);
}

.properties-carousel .swiper-button-next:hover,
.properties-carousel .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

.properties-carousel .swiper-button-next::after,
.properties-carousel .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 600;
}

/* ====== Loading States ====== */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btn-loading-spin 1s ease infinite;
}

@keyframes btn-loading-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ====== Enhanced Form Styles ====== */
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(94, 147, 108, 0.1);
}

.form-group select:invalid,
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

/* ====== Toast Notifications ====== */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: 16px 24px;
    max-width: 400px;
    border-left: 4px solid var(--primary-color);
}

.toast-success {
    border-left-color: #10b981;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-info {
    border-left-color: #3b82f6;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.toast-content i {
    font-size: 1.2rem;
    color: #10b981;
}

.toast-error .toast-content i {
    color: #ef4444;
}

.toast-info .toast-content i {
    color: #3b82f6;
}

/* ====== Accessibility ====== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for better keyboard navigation */
.btn:focus-visible,
.nav-dot:focus-visible,
.contact-option:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ====== Performance Optimizations ====== */
.premium-background,
.premium-bokeh {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.bokeh-circle {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ====== Reduced Motion Support ====== */
@media (prefers-reduced-motion: reduce) {
    .bokeh-circle {
        animation: none;
    }

    .premium-background::after {
        animation: none;
    }

    .float-gentle {
        animation: none;
    }
}

/* ====== Enhanced Glass Effect for Cards ====== */
.property-card,
.area-card,
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(94, 147, 108, 0.1);
}

.property-card:hover,
.area-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ====== Subtle Animations ====== */
@keyframes subtle-pulse {
    0%,
    100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

.premium-background::after {
    animation: subtle-pulse 30s ease-in-out infinite;
}

/* ====== Section Dividers ====== */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(94, 147, 108, 0.3) 20%,
        rgba(94, 147, 108, 0.6) 50%,
        rgba(94, 147, 108, 0.3) 80%,
        transparent 100%
    );
    margin: 4rem 0;
    position: relative;
}

.section-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(94, 147, 108, 0.4);
}

/* ====== Enhanced Section Separators ====== */
.section-separator {
    position: relative;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(94, 147, 108, 0.2) 25%,
        rgba(94, 147, 108, 0.4) 50%,
        rgba(94, 147, 108, 0.2) 75%,
        transparent 100%
    );
    margin: 0;
    z-index: 10;
}

.section-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(94, 147, 108, 0.5);
}

/* ====== Mobile Optimizations ====== */
@media (max-width: 768px) {
    .areas-section::before,
    .properties-section::before,
    .map-section::before,
    .contact-section::before,
    .faq-section::before {
        background-size: 150px 150px, 200px 200px;
    }

    .areas-section::after,
    .properties-section::after,
    .contact-section::after {
        background-size: 30px 30px;
    }
}

/* ====== Certificate Badge Styles ====== */
.certificate-badge {
    display: inline-flex;
    align-items: center;
    margin: 1.5rem 0;
}

.certificate-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(94, 147, 108, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 16px rgba(94, 147, 108, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.certificate-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px;
}

.certificate-text {
    display: flex;
    flex-direction: column;
}

.cert-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .certificate-wrapper {
        padding: 0.875rem 1.25rem;
        gap: 0.5rem;
        border-radius: 10px;
    }

    .certificate-image {
        width: 36px;
        height: 36px;
    }

    .cert-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .certificate-wrapper {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        border-radius: 8px;
    }

    .certificate-image {
        width: 32px;
        height: 32px;
    }

    .cert-label {
        font-size: 0.75rem;
    }
}

/* ====== Elegant Section Borders & Dividers ====== */

/* Section Border Base */
.section-border {
    position: relative;
    overflow: hidden;
}

/* Top Border for sections */
.section-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(94, 147, 108, 0.3) 20%,
        rgba(94, 147, 108, 0.6) 50%,
        rgba(94, 147, 108, 0.3) 80%,
        transparent 100%
    );
    z-index: 10;
}

/* Bottom Border for sections */
.section-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(94, 147, 108, 0.2) 20%,
        rgba(94, 147, 108, 0.4) 50%,
        rgba(94, 147, 108, 0.2) 75%,
        transparent 100%
    );
    z-index: 10;
}

/* Modern Section Divider */
.section-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(94, 147, 108, 0.1) 10%,
        rgba(94, 147, 108, 0.3) 30%,
        rgba(94, 147, 108, 0.5) 50%,
        rgba(94, 147, 108, 0.3) 70%,
        rgba(94, 147, 108, 0.1) 90%,
        transparent 100%
    );
    margin: 0;
    overflow: hidden;
}

.section-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Elegant Separator Line */
.elegant-separator {
    position: relative;
    height: 1px;
    background: rgba(94, 147, 108, 0.2);
    margin: 2rem 0;
    overflow: hidden;
}

.elegant-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(
        circle,
        rgba(94, 147, 108, 0.4) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Decorative Border with Dots */
.decorative-border {
    position: relative;
    padding: 1rem 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(94, 147, 108, 0.05) 50%,
        transparent 100%
    );
}

.decorative-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: -30px 0 0 rgba(94, 147, 108, 0.6),
        30px 0 0 rgba(94, 147, 108, 0.6), -60px 0 0 rgba(94, 147, 108, 0.3),
        60px 0 0 rgba(94, 147, 108, 0.3);
}

.decorative-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: -30px 0 0 rgba(94, 147, 108, 0.6),
        30px 0 0 rgba(94, 147, 108, 0.6), -60px 0 0 rgba(94, 147, 108, 0.3),
        60px 0 0 rgba(94, 147, 108, 0.3);
}

/* Premium Section Transition */
.premium-transition {
    position: relative;
    height: 80px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(94, 147, 108, 0.03) 20%,
        rgba(94, 147, 108, 0.05) 50%,
        rgba(94, 147, 108, 0.03) 80%,
        transparent 100%
    );
    overflow: hidden;
}

.premium-transition::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            circle at 20% 50%,
            rgba(94, 147, 108, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(94, 147, 108, 0.1) 0%,
            transparent 50%
        );
    background-size: 200px 200px;
    background-position: 0 0, 100px 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Apply borders to specific sections */
.areas-section {
    border-top: 1px solid rgba(94, 147, 108, 0.1);
    border-bottom: 1px solid rgba(94, 147, 108, 0.1);
}

.properties-section {
    border-top: 1px solid rgba(94, 147, 108, 0.1);
    border-bottom: 1px solid rgba(94, 147, 108, 0.1);
}

.map-section {
    border-top: 1px solid rgba(94, 147, 108, 0.1);
    border-bottom: 1px solid rgba(94, 147, 108, 0.1);
}

.contact-section {
    border-top: 1px solid rgba(94, 147, 108, 0.1);
    border-bottom: 1px solid rgba(94, 147, 108, 0.1);
}

.faq-section {
    border-top: 1px solid rgba(94, 147, 108, 0.1);
    border-bottom: 1px solid rgba(94, 147, 108, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-transition {
        height: 40px;
    }

    .decorative-border::before,
    .decorative-border::after {
        width: 6px;
        height: 6px;
        box-shadow: -20px 0 0 rgba(94, 147, 108, 0.6),
            20px 0 0 rgba(94, 147, 108, 0.6), -40px 0 0 rgba(94, 147, 108, 0.3),
            40px 0 0 rgba(94, 147, 108, 0.3);
    }
}

/* FAQ Image Styles as Divider */
.faq-section .faq-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.faq-section .faq-image:hover {
    transform: scale(1.05);
}

/* Hide on mobile devices */
@media (max-width: 767.98px) {
    .faq-section .faq-image-wrapper {
        display: none;
    }
}

.faq-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    padding: 4rem 0;
}

/* FAQ Content Styling */
.faq-section .container {
    max-width: 1000px;
}

.faq-section .section-title {
    /* Uses common .section-title styles */
    font-size: 2.5rem; /* Override for FAQ section only */
}

/* FAQ section uses common .section-subtitle styles */

/* Enhanced Accordion Styling */
.faq-section .accordion-item {
    border: 1px solid rgba(94, 147, 108, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-button {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    border: none;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(
        135deg,
        rgba(94, 147, 108, 0.1) 0%,
        rgba(94, 147, 108, 0.05) 100%
    );
    color: var(--primary-color);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(94, 147, 108, 0.2);
    border: none;
}

.faq-section .accordion-body {
    padding: 1.5rem 2rem 2rem;
    background: rgba(248, 249, 250, 0.5);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-section .accordion-button .fas {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.hero-title {
    font-family: "Museo Moderno", sans-serif;
    font-weight: 700;
}

.area-link {
    color: #fafafa !important;
}

.area-link:hover {
    color: #fdfdfd !important;
}

/* ====== Ẩn floating contacts cho toàn bộ website ====== */
.floating-contacts {
    display: none !important;
}

/* ====== Areas Carousel Responsive Fix ====== */
.areas-carousel {
    margin: 0 -15px; /* Negative margin để có thêm không gian */
    padding: 0 15px;
}

.areas-carousel .swiper {
    overflow: visible; /* Cho phép nội dung hiển thị ra ngoài */
}

.areas-carousel .swiper-wrapper {
    padding: 0 10px; /* Thêm padding để slide không bị cắt */
}

@media (min-width: 1200px) {
    .areas-carousel {
        margin: 0 -30px; /* Tăng negative margin cho màn hình lớn */
        padding: 0 30px;
    }

    .areas-carousel .swiper-wrapper {
        padding: 0 15px;
    }
}

@media (min-width: 1400px) {
    .areas-carousel {
        margin: 0 -40px;
        padding: 0 40px;
    }

    .areas-carousel .swiper-wrapper {
        padding: 0 20px;
    }
}
