/* ============================================
   KROMA CAPITAL - Luxury Real Estate
   Color Palette: Pastels, Gold, Elegant Greens
   Font: Prata + Inter
   ============================================ */

:root {
    /* Primary Colors */
    --gold: #C5A55A;
    --gold-light: #D4BA7A;
    --gold-dark: #A8893E;
    --gold-glow: rgba(197, 165, 90, 0.15);

    /* Elegant Greens */
    --green: #5B7B6A;
    --green-light: #7A9B8A;
    --green-dark: #3D5A4A;
    --green-pastel: #D4E4DA;

    /* Pastels */
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --blush: #F2E8E0;
    --sage: #E8EDE8;
    --pearl: #FAF7F4;
    --ivory: #FFFFF0;

    /* Neutrals */
    --dark: #1A1A1A;
    --dark-soft: #2A2A2A;
    --charcoal: #3A3A3A;
    --gray: #8A8A8A;
    --gray-light: #C5C5C5;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Prata', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-alt {
    background-color: var(--pearl);
}

/* ============================================
   PRELOADER
   ============================================ */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 32px;
    animation: preloaderPulse 2.5s ease-in-out infinite;
}

.preloader-text {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: preloaderFill 1.8s var(--ease-out) forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1.03); }
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

#navbar.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-img {
    height: 36px;
    width: auto;
    transition: opacity 0.4s var(--ease);
}

.logo-dark {
    display: none;
}

#navbar.scrolled .logo-white {
    display: none;
}

#navbar.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

#navbar.scrolled .nav-link {
    color: var(--gray);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--dark);
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 4px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--white);
}

#navbar.scrolled .nav-cta {
    border-color: var(--gold);
    color: var(--gold);
}

#navbar.scrolled .nav-cta:hover {
    background: var(--gold);
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

#navbar.scrolled .menu-toggle span {
    background: var(--dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

#mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    text-align: center;
}

.mobile-links li {
    margin-bottom: 24px;
}

.mobile-links a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mobile-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.mobile-cta {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 14px 36px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #1a2a1f 0%, #0d1a12 40%, #1a1a1a 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(197, 165, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(91, 123, 106, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(197, 165, 90, 0.05) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    margin-top: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(197, 165, 90, 0.1);
    border: 1px solid rgba(197, 165, 90, 0.25);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 0.6rem;
    color: var(--gold);
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-line {
    display: block;
}

.hero-accent {
    color: var(--gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 165, 90, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Indicators */
.hero-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.indicator {
    text-align: center;
}

.indicator-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    display: inline;
}

.indicator-suffix {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
}

.indicator-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.indicator-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-tag.center {
    justify-content: center;
}

.tag-line {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title.center {
    text-align: center;
}

.text-accent {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.section-header {
    margin-bottom: 64px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.8s var(--ease);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50%;
    height: 50%;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.5;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 24px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.experience-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    font-weight: 300;
}

.about-text {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--gold);
}

.feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.feature p {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(197, 165, 90, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.service-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.service-link:hover {
    gap: 12px;
    color: var(--gold-dark);
}

/* ============================================
   FEATURED PROPERTY SECTION
   ============================================ */

.property-featured {
    max-width: 1100px;
    margin: 0 auto;
}

.property-featured-link {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s var(--ease);
    text-decoration: none;
    color: inherit;
}

.property-featured-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.property-featured-video {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background: var(--dark);
}

.property-featured-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.property-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.4) 100%);
    transition: background 0.4s;
}

.property-featured-link:hover .property-featured-overlay {
    background: linear-gradient(to right, rgba(26,26,26,0.05) 0%, rgba(26,26,26,0.25) 100%);
}

.property-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 7px 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.property-featured-play {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease);
    z-index: 2;
}

.property-featured-play span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.property-featured-link:hover .property-featured-play {
    opacity: 1;
    transform: translateY(0);
}

.property-featured-info {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--green);
    margin-bottom: 12px;
    font-weight: 500;
}

.property-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.property-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
}

.property-featured-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pf-spec {
    text-align: center;
}

.pf-spec strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 2px;
}

.pf-spec span {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.property-featured-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
}

.property-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.68rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-dark);
}

.property-cta-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.04em;
    transition: gap 0.3s var(--ease);
}

.property-featured-link:hover .property-cta-inline {
    gap: 14px;
    color: var(--gold-dark);
}

@media (max-width: 900px) {
    .property-featured-link {
        grid-template-columns: 1fr;
    }
    .property-featured-video {
        min-height: 280px;
    }
    .property-featured-info {
        padding: 28px 24px;
    }
    .property-name {
        font-size: 1.4rem;
    }
    .property-featured-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    .property-featured-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .property-featured-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .pf-spec strong {
        font-size: 1.1rem;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */

.section-dark {
    background: linear-gradient(135deg, #1a2a1f 0%, #0d1a12 50%, #1a1a1a 100%);
    color: var(--white);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(197, 165, 90, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(91, 123, 106, 0.08) 0%, transparent 40%);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-dark .section-title {
    color: var(--white);
}

.stats-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(197, 165, 90, 0.2);
    transform: translateY(-4px);
}

.stat-icon {
    color: var(--gold);
    margin-bottom: 16px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark);
}

.author-role {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 300;
}

/* ============================================
   CTA SECTION
   ============================================ */

.section-cta {
    background: linear-gradient(135deg, var(--green-dark), var(--green), var(--green-dark));
    text-align: center;
    overflow: hidden;
    position: relative;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(197, 165, 90, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-cta .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 8px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    color: var(--gray);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 44px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 28px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    background: var(--cream);
    color: var(--dark);
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 14px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
    background: var(--white);
    padding: 0 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
    transform: translateY(0);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238A8A8A' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
    margin-top: 14px;
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    font-weight: 300;
    max-width: 340px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
    font-weight: 300;
}

.footer-links-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* Particle styles */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-experience {
        left: 20px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-indicators {
        gap: 24px;
    }

    .indicator-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 60px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-indicators {
        flex-direction: column;
        gap: 16px;
    }

    .indicator-divider {
        width: 40px;
        height: 1px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .about-image {
        height: 350px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 1.6rem;
    }
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.lang-toggle {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-transform: uppercase;
    margin-right: 12px;
}
.lang-toggle:hover {
    background: var(--gold);
    color: var(--dark);
}
.lang-toggle-mobile {
    margin: 20px auto 0;
    display: block;
}
@media (max-width: 768px) {
    .lang-toggle:not(.lang-toggle-mobile) {
        display: none;
    }
}
