/* ========================================
   SHADY SPRING FARM — Custom Styles
   ======================================== */

/* --- CSS Variables --- */
:root {
    --forest-dark: #0D2818;
    --forest: #1B4332;
    --forest-medium: #2D6A4F;
    --forest-light: #52B788;
    --forest-pale: #95D1B3;
    --forest-ghost: #D8F3DC;
    --cream: #FEFAE0;
    --cream-dark: #F5F0D6;
    --off-white: #FAF9F6;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --gray-dark: #2C2C2C;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --accent-warm: #E07A5F;
    --accent-gold: #D4A574;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 10px 40px rgba(27, 67, 50, 0.15);
    --shadow-xl: 0 20px 60px rgba(27, 67, 50, 0.18);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 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(--charcoal);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Custom Cursor --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--forest);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 2px solid var(--forest-light);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s, width 0.2s, height 0.2s;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.btn--primary:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn--outline:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--forest);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--forest);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-xl);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* --- Section Tags --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--forest-ghost);
    color: var(--forest);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-tag--light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--forest-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

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

.text-accent { color: var(--forest-light); }
.text-accent-light { color: var(--forest-pale); }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
}

.section-subtitle--light {
    color: rgba(255,255,255,0.75);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header--light {
    margin-bottom: 60px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--forest-dark);
}

.logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-light);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-dark);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--forest);
}

.nav-cta {
    background: var(--forest-light) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--forest-medium) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger-line {
    background: var(--forest-dark);
}

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

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

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

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--forest-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

.mobile-nav-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.mobile-nav-link:hover {
    color: var(--forest-light);
}

.mobile-nav-cta {
    margin-top: 16px;
    display: inline-block;
    background: var(--forest-light);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-size: 1rem !important;
    font-family: var(--font-body) !important;
}

.mobile-nav-contact {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.mobile-nav-contact svg {
    display: inline;
    margin-right: 6px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links { display: none; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    background: var(--forest-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Geometric Background Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(149, 209, 179, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
}

.geo-square {
    position: absolute;
    border-radius: var(--radius-lg);
}

.geo-square--1 {
    width: 120px;
    height: 120px;
    background: rgba(82, 183, 136, 0.12);
    top: 20%;
    left: 8%;
    transform: rotate(15deg);
}

.geo-square--2 {
    width: 80px;
    height: 80px;
    background: rgba(149, 209, 179, 0.1);
    bottom: 25%;
    right: 12%;
    transform: rotate(-20deg);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(82, 183, 136, 0.08);
    top: 30%;
    right: 5%;
    transform: rotate(25deg);
}

.geo-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--forest-light);
}

.geo-dot--1 { top: 15%; left: 20%; opacity: 0.4; }
.geo-dot--2 { bottom: 30%; right: 25%; opacity: 0.3; width: 8px; height: 8px; }
.geo-dot--3 { top: 50%; left: 5%; opacity: 0.5; width: 6px; height: 6px; }

.geo-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(82, 183, 136, 0.3), transparent);
}

.geo-line--1 {
    width: 200px;
    top: 40%;
    left: 0;
    transform: rotate(-5deg);
}

.geo-line--2 {
    width: 150px;
    bottom: 35%;
    right: 0;
    transform: rotate(8deg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Main Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.hero-card--main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-light), var(--forest-pale), var(--accent-gold));
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(82, 183, 136, 0.2);
    color: var(--forest-pale);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(82, 183, 136, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--forest-light);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn--outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.hero-actions .btn--outline:hover {
    background: var(--white);
    color: var(--forest);
    border-color: var(--white);
}

/* Floating Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: default;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(82, 183, 136, 0.3);
}

.stat-card-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: var(--transition);
}

.stat-card--1 .stat-card-bg { background: linear-gradient(135deg, rgba(82,183,136,0.2), transparent); }
.stat-card--2 .stat-card-bg { background: linear-gradient(135deg, rgba(149,209,179,0.2), transparent); }
.stat-card--3 .stat-card-bg { background: linear-gradient(135deg, rgba(212,165,116,0.2), transparent); }

.stat-card:hover .stat-card-bg { opacity: 1; }

.stat-card-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-light);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    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.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    animation: scrollArrow 2s ease-in-out infinite;
}

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

@keyframes scrollArrow {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(4px); opacity: 1; }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-card--main {
        grid-column: 1;
        grid-row: auto;
    }
    
    .hero-stats {
        grid-column: 1;
        grid-row: auto;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 140px;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero-card { padding: 32px 24px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; }
}

/* ========================================
   ROOMS
   ======================================== */
.rooms {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.rooms-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(82,183,136,0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.room-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-image img {
    transform: scale(1.08);
}

.room-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,40,24,0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.room-card-badge {
    background: var(--forest-light);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-card-body {
    padding: 24px;
}

.room-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.room-card-tag {
    background: var(--forest-ghost);
    color: var(--forest);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
}

.room-card-tag--premium {
    background: var(--accent-gold);
    color: var(--white);
}

.room-card-features {
    display: flex;
    gap: 8px;
    color: var(--gray);
}

.room-card-features svg {
    opacity: 0.5;
}

.room-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.room-card-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-card-body .btn--sm {
    background: var(--forest-ghost);
    color: var(--forest);
    border-color: var(--forest-ghost);
}

.room-card-body .btn--sm:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

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

@media (max-width: 600px) {
    .rooms-grid { grid-template-columns: 1fr; }
    .rooms { padding: 60px 0; }
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-grid {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img--1 {
    width: 65%;
    height: 75%;
    top: 0;
    left: 0;
}

.about-img--2 {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
}

.about-img-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(27,67,50,0.2), transparent);
}

.about-floating-card {
    position: absolute;
    bottom: 55%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    white-space: nowrap;
}

.afc-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--forest-pale);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.afc-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.afc-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--forest-ghost);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; }
    .about-image-grid { height: 400px; }
    .about-features { grid-template-columns: 1fr; }
}

/* ========================================
   EXPERIENCE
   ======================================== */
.experience {
    padding: 100px 0;
    background: var(--forest-dark);
    position: relative;
    overflow: hidden;
}

.exp-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(82,183,136,0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.exp-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.exp-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.exp-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.exp-card--reverse {
    direction: rtl;
}

.exp-card--reverse > * {
    direction: ltr;
}

.exp-card-visual {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.exp-card-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.3), transparent);
    z-index: 1;
}

.exp-card-pattern--alt {
    background: linear-gradient(135deg, rgba(82,183,136,0.2), transparent);
}

.exp-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-card:hover .exp-card-visual img {
    transform: scale(1.06);
}

.exp-card-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-card-icon {
    width: 56px;
    height: 56px;
    background: var(--forest-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.exp-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.exp-card-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .exp-card, .exp-card--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .exp-card-visual { height: 200px; }
    .exp-card-content { padding: 24px; }
}

/* ========================================
   LOCATION
   ======================================== */
.location {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

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

.location-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.location-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--forest-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.location-detail p, .location-detail a {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.location-detail a:hover {
    color: var(--forest);
    text-decoration: underline;
}

.location-map {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-visual {
    position: relative;
}

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

.lmv-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.lmv-shape--1 {
    width: 120px;
    height: 120px;
    background: var(--forest-light);
    opacity: 0.15;
    top: -30px;
    right: -30px;
}

.lmv-shape--2 {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    opacity: 0.15;
    bottom: -20px;
    left: -20px;
}

.lmv-shape--3 {
    width: 40px;
    height: 40px;
    background: var(--forest-pale);
    opacity: 0.2;
    top: 40%;
    left: -10px;
}

.location-map-visual img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.lmv-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--forest);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

@media (max-width: 900px) {
    .location-grid { grid-template-columns: 1fr; }
    .location-map-visual img { height: 400px; }
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--forest-dark);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(82,183,136,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(149,209,179,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(8px);
    border-color: rgba(82,183,136,0.3);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--forest-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.contact-method-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-method-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: var(--transition);
    background: var(--off-white);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-light);
    background: var(--white);
    box-shadow: 0 0 0 4px: rgba(82, 183, 136, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: var(--forest-ghost);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-form.hidden {
    display: none;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    padding: 80px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape--1 {
    width: 300px;
    height: 300px;
    background: rgba(82,183,136,0.15);
    top: -80px;
    right: 10%;
}

.cta-shape--2 {
    width: 200px;
    height: 200px;
    background: rgba(149,209,179,0.1);
    bottom: -60px;
    left: 5%;
}

.cta-shape--3 {
    width: 100px;
    height: 100px;
    background: rgba(212,165,116,0.15);
    top: 50%;
    right: 25%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-links a:hover {
    color: var(--forest-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.footer-contact a:hover {
    color: var(--forest-light);
}

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

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }

/* Floating animation for stat cards */
@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

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

.stat-card--1 { animation: float1 4s ease-in-out infinite; }
.stat-card--2 { animation: float2 5s ease-in-out infinite; }
.stat-card--3 { animation: float3 4.5s ease-in-out infinite; }

/* Geometric shape animations */
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.geo-square--1 { animation: rotate-slow 30s linear infinite; }
.geo-square--2 { animation: rotate-slow 25s linear infinite reverse; }

/* Pulse for dots */
@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

.geo-dot--1 { animation: pulse 3s ease-in-out infinite; }
.geo-dot--2 { animation: pulse 4s ease-in-out infinite 1s; }
.geo-dot--3 { animation: pulse 3.5s ease-in-out infinite 0.5s; }
