/* ========================================
   PAMUK EVLER - Luxury Villa Project
   Premium Green & Nature Theme
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
    /* Primary greens - vibrant */
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #6ee7b7;
    --green-300: #34d399;
    --green-400: #10b981;
    --green-500: #059669;
    --green-600: #047857;
    --green-700: #065f46;
    --green-800: #064e3b;
    --green-900: #022c22;

    /* Accent & luxury */
    --gold: #c8a96e;
    --gold-light: #e0c991;
    --gold-dark: #a08040;
    --cream: #faf8f5;
    --cream-dark: #f0ece4;

    /* Neutrals */
    --dark: #111a15;
    --dark-soft: #1a2b22;
    --gray-900: #0c1f17;
    --gray-800: #374151;
    --gray-700: #4b5563;
    --gray-600: #6b7280;
    --gray-500: #9ca3af;
    --gray-400: #d1d5db;
    --gray-300: #e5e7eb;
    --gray-200: #f3f4f6;
    --gray-100: #f9fafb;
    --white: #ffffff;

    /* Functional */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-green: 0 10px 40px rgba(5,150,105,0.25);

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Outfit', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-py: clamp(80px, 10vw, 140px);
    --container-px: clamp(20px, 5vw, 40px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

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

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

.section-dark {
    background: linear-gradient(180deg, #0c1f17 0%, #112920 100%);
    color: var(--white);
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner {
    text-align: center;
}

.preloader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.preloader-leaf {
    font-size: 1.4rem;
    color: var(--green-600);
    opacity: 0;
    transform: translateY(10px) rotate(-20deg);
    animation: preLeafIn 0.6s var(--ease-out-quart) 0.1s forwards;
}

@keyframes preLeafIn {
    to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 10px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0 0 0;
    opacity: 0;
    transform: translateY(15px);
    animation: preTitleIn 0.7s var(--ease-out-quart) 0.3s forwards;
}

@keyframes preTitleIn {
    to { opacity: 1; transform: translateY(0); }
}

.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-500), transparent);
    margin: 10px 0;
    animation: preLineGrow 0.8s var(--ease-out-expo) 0.6s forwards;
}

@keyframes preLineGrow {
    to { width: 120px; }
}

.preloader-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 14px;
    color: var(--green-600);
    margin: 0;
    padding-left: 14px;
    opacity: 0;
    transform: translateY(10px);
    animation: preTitleIn 0.6s var(--ease-out-quart) 0.9s forwards;
}

.preloader-bar {
    width: 160px;
    height: 1.5px;
    background: var(--gray-200);
    border-radius: 2px;
    margin: 36px auto 0;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    border-radius: 2px;
    animation: preloaderBar 2s var(--ease-out-expo) forwards;
}

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


/* ---- Navigation ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-quart);
}

#navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.logo-leaf {
    font-size: 1.5rem;
    color: var(--green-600);
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--green-700);
    transition: color 0.3s ease;
}

.logo-line {
    width: 100%;
    height: 0.5px;
    background: currentColor;
    opacity: 0.25;
    margin: 4px 0 3px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 8.5px;
    color: var(--green-600);
    padding-left: 8.5px;
    transition: color 0.3s ease;
}

#navbar:not(.scrolled) .logo-leaf {
    color: var(--white);
}

#navbar:not(.scrolled) .logo-title {
    color: var(--white);
}

#navbar:not(.scrolled) .logo-line {
    background: var(--white);
}

#navbar:not(.scrolled) .logo-sub {
    color: rgba(255,255,255,0.7);
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

#navbar:not(.scrolled) .nav-link {
    color: rgba(255,255,255,0.85);
}

#navbar:not(.scrolled) .nav-link:hover,
#navbar:not(.scrolled) .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

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

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--green-700);
    background: var(--green-50);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 5px 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
    background: var(--green-700);
}

#navbar:not(.scrolled) .nav-toggle span {
    background: #fff;
}

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

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

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

/* ---- Hero Section ---- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 31, 23, 0.5) 0%,
        rgba(12, 31, 23, 0.3) 30%,
        rgba(12, 31, 23, 0.5) 70%,
        rgba(12, 31, 23, 0.75) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(110, 231, 183, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    margin-top: 20px;
}

.badge-leaf {
    color: var(--green-200);
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .title-line {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    opacity: 0;
    transform: translateY(40px);
    animation: heroTitleReveal 1s var(--ease-out-expo) forwards;
}

.hero-title .title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .title-line.accent {
    color: var(--green-200);
    font-style: italic;
}

@keyframes heroTitleReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 50px;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--green-200);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--green-200);
    margin-left: 2px;
}

.stat-suffix sup {
    font-size: 0.6em;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    margin-top: 6px;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.btn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: #fff;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(5,150,105,0.35);
}

.btn-primary.btn-light {
    background: linear-gradient(135deg, #fff, var(--cream));
    color: var(--green-700);
    box-shadow: var(--shadow-lg);
}

.btn-primary.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-3px);
}

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

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

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translate(-50%, 0); }
    50% { opacity: 0.3; transform: translate(-50%, 10px); }
}

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

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--green-200);
}

.section-tag i {
    font-size: 0.9rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

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

.section-title .highlight {
    color: var(--green-500);
    font-style: italic;
}

.section-title.light .highlight {
    color: var(--green-200);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--green-300));
    border-radius: 3px;
    margin: 20px auto 0;
}

.section-divider.light {
    background: linear-gradient(90deg, var(--green-200), var(--green-400));
}

/* Background pattern */
.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(5,150,105,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5,150,105,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* ---- About Section ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.about-image-wrapper:hover .about-image-main img {
    transform: scale(1.05);
}

.about-image-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--cream);
}

.about-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--green-50);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--green-100);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.highlight-item span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ---- Features Section ---- */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.feature-tab:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.feature-tab.active {
    color: var(--green-700);
    background: #fff;
    border-color: #fff;
    box-shadow: var(--shadow-md);
}

.feature-tab i {
    font-size: 1rem;
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
    animation: panelFadeIn 0.5s var(--ease-out-quart);
}

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

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

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,150,105,0.1), rgba(5,150,105,0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(110,231,183,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    color: #fff;
    font-size: 1.3rem;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ---- Lifestyle Section ---- */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lifestyle-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.lifestyle-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-500), var(--green-300));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-quart);
}

.lifestyle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.lifestyle-card:hover::after {
    transform: scaleX(1);
}

.lifestyle-icon-wrap {
    margin-bottom: 24px;
}

.lifestyle-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-50);
    color: var(--green-600);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.lifestyle-card:hover .lifestyle-icon {
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-green);
}

.lifestyle-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.lifestyle-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---- Gallery Section ---- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.filter-btn.active {
    background: #fff;
    color: var(--green-700);
    border-color: #fff;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.5s var(--ease-out-quart);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-200);
    margin-bottom: 6px;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.gallery-zoom-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s var(--ease-out-quart);
}

.gallery-item:hover .gallery-zoom-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* First gallery item large */
.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ---- Floor Plans Section ---- */
.plans-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.plan-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--green-200);
    color: var(--green-700);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.plan-tab:hover {
    background: var(--green-50);
}

.plan-tab.active {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: #fff;
    border-color: var(--green-600);
    box-shadow: var(--shadow-green);
}

.plan-tab i {
    font-size: 1rem;
}

.plan-panel {
    display: none;
    animation: panelFadeIn 0.5s var(--ease-out-quart);
}

.plan-panel.active {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.plan-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
    padding: 20px;
}

.plan-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-md);
}

.plan-details h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

.plan-rooms {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-room {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.plan-room:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.plan-room i {
    color: var(--green-500);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.plan-room span {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.plan-room strong {
    font-size: 0.9rem;
    color: var(--green-700);
    font-weight: 700;
}

/* ---- Location Section ---- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}

.location-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(110,231,183,0.3);
    transform: translateX(8px);
}

.location-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    color: #fff;
    font-size: 1.1rem;
}

.location-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.location-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.location-map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
}

.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 500;
}

.map-overlay-badge i {
    color: var(--green-600);
    font-size: 1.1rem;
}

.map-overlay-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* ---- Parallax Section ---- */
.parallax-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,78,59,0.85), rgba(5,150,105,0.6));
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.parallax-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}

.parallax-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ---- Contact Section ---- */
.contact-center-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-intro p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-quart);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--green-50);
    color: var(--green-600);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    margin-bottom: 6px;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    color: #fff;
    transform: scale(1.08);
    box-shadow: var(--shadow-green);
}

.contact-card strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.contact-card span {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-card span a {
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.contact-card span a:hover {
    color: var(--green-600);
}

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

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}

.btn-phone {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: #fff;
    box-shadow: var(--shadow-green);
}

.btn-phone:hover {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(5,150,105,0.35);
}

/* ---- Footer ---- */
#footer {
    background: #0c1f17;
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

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

.footer-logo-link .logo-leaf {
    font-size: 1.5rem;
    color: var(--green-300);
}

.footer-logo-link .logo-title {
    color: var(--white);
}

.footer-logo-link .logo-line {
    background: rgba(255,255,255,0.3);
}

.footer-logo-link .logo-sub {
    color: rgba(255,255,255,0.5);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    padding: 6px 0;
    transition: all 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--green-400);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(5,150,105,0.35);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 5px 25px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ---- Scroll Animations ---- */
[data-animate] {
    opacity: 0;
    transition: all 0.8s var(--ease-out-expo);
}

[data-animate="fade-up"] {
    transform: translateY(50px);
}

[data-animate="fade-down"] {
    transform: translateY(-50px);
}

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

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

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

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

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--green-500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-700);
}

/* ---- Selection Color ---- */
::selection {
    background: var(--green-200);
    color: var(--green-900);
}

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

/* Tablet Landscape */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-float {
        right: 20px;
        bottom: -20px;
        width: 160px;
        height: 160px;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .location-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .map-container {
        height: 400px;
    }

    .plan-panel.active {
        grid-template-columns: 1fr;
    }

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

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

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s var(--ease-out-quart);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--gray-800) !important;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: var(--green-50) !important;
        color: var(--green-700) !important;
    }

    /* Hero mobile */
    #hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-divider {
        height: 30px;
    }

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

    .btn {
        padding: 14px 30px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    /* Sections mobile */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .feature-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .feature-tabs {
        gap: 8px;
    }

    .feature-tab {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

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

    .lifestyle-card {
        padding: 28px 16px;
    }

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

    .gallery-item:first-child {
        grid-column: span 2;
    }

    .about-image-main img {
        height: 350px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 350px;
    }

    .plan-panel.active {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    :root {
        --section-py: 60px;
    }

    .hero-title .title-line {
        font-size: 2.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 14px;
    }

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

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-tab {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .feature-tab i {
        font-size: 1rem;
    }

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

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

    .gallery-item:first-child {
        grid-column: span 1;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .about-image-float {
        width: 130px;
        height: 130px;
        right: 10px;
        bottom: -10px;
    }

    .about-image-main img {
        height: 280px;
    }

    .plans-tabs {
        gap: 10px;
    }

    .plan-tab {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .plan-rooms {
        gap: 10px;
    }

    .plan-room {
        padding: 12px 14px;
    }

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

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .location-card {
        padding: 14px 16px;
    }

    .location-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }
}

/* Ultra small */
@media (max-width: 360px) {
    .hero-title .title-line {
        font-size: 1.8rem;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    #hero {
        min-height: 100vh;
    }

    .hero-title .title-line {
        font-size: 2rem;
    }

    .hero-stats {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .hero-badge {
        margin-bottom: 15px;
    }
}

/* Leaflet map custom styles */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
}

.leaflet-popup-content {
    margin: 14px 18px !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

.leaflet-popup-content strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--green-700);
    margin-bottom: 4px;
}

.map-popup-tag {
    display: inline-block;
    background: var(--green-50);
    color: var(--green-700);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
}

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

    html {
        scroll-behavior: auto;
    }

    .parallax-bg {
        background-attachment: scroll;
    }
}
