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

:root {
    --green-deep: #0B3D2E;
    --green-dark: #062318;
    --green-rich: #1A5C42;
    --green-light: #2D8B6A;
    --gold: #C8A96E;
    --gold-light: #E8D5A8;
    --gold-dark: #A68B4B;
    --gold-glow: rgba(200, 169, 110, 0.4);
    --ivory: #FAF6F0;
    --ivory-warm: #FFFDF8;
    --brown: #8B6C42;
    --brown-dark: #5C4A2E;
    --dark: #0A1A14;
    --dark-card: #0F251C;
    --dark-surface: #122A20;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --text-light: #B0B0B0;
    --text-on-dark: #E8E4DE;
    --text-muted: #8A8578;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.7);
    --glass-border-light: rgba(200, 169, 110, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--ivory);
    overflow-x: hidden;
    line-height: 1.6
}

::selection {
    background: var(--gold);
    color: var(--dark)
}

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

a {
    text-decoration: none;
    color: inherit
}

button {
    border: none;
    cursor: pointer;
    font-family: var(--font-body)
}

/* GRAIN OVERLAY */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* MOUSE GLOW */
.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: left 0.3s ease-out, top 0.3s ease-out
}

/* LOADING SCREEN */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease
}

.loader.hidden {
    opacity: 0;
    visibility: hidden
}

.loader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loaderLine 2s ease forwards
}

.loader-text {
    margin-top: 24px;
    overflow: hidden
}

.loader-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(20px);
    animation: loaderText 0.6s ease 0.8s forwards
}

.loader-brand {
    margin-bottom: 32px;
    overflow: hidden
}

.loader-brand h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--ivory);
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(30px);
    animation: loaderText 0.8s ease 0.3s forwards
}

@keyframes loaderLine {
    0% {
        width: 0
    }

    100% {
        width: 200px
    }
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 0 48px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease
}

.navbar.scrolled {
    background: rgba(10, 26, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2)
}

.nav-logo-avatar {
  width: 111px;          
  height: 77px;          
  background: #e8e8e8; /* Solid light grey */;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-logo-avatar:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.nav-logo-img {
  width: 150%;
  height: 150%;
  object-fit: contain;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .nav-logo-avatar {
    width: 77px;         /* Increased from 55px (15% larger) */
    height: 77px;        /* Increased from 55px (15% larger) */
  }
}

.nav-logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.9;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 40px;
  }
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-rich), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ivory);
    letter-spacing: 1px
}

.nav-logo-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ivory);
    line-height: 1.3
}

.nav-logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--gold);
    margin-top: 2px
}

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

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 228, 222, 0.7);
    transition: color 0.3s ease;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    border-radius: 50px;
    transition: all 0.3s ease
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--dark) !important
}

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

.nav-mobile-btn {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none
}

.nav-mobile-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--ivory);
    transition: all 0.3s ease
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 26, 20, 0.98);
    backdrop-filter: blur(30px);
    z-index: 8999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.mobile-menu.open {
    right: 0
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-on-dark);
    transition: color 0.3s
}

.mobile-menu a:hover {
    color: var(--gold)
}

.mobile-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--ivory);
    stroke-width: 1.5
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1.2)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 26, 20, 0.7) 0%, rgba(10, 26, 20, 0.5) 40%, rgba(10, 26, 20, 0.8) 100%);
    z-index: 1
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(26, 92, 66, 0.3) 0%, transparent 60%);
    z-index: 2
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 960px;
    padding: 0 24px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 2.8s forwards
}

.hero-badge span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold)
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8)
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 3s forwards
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light)
}

.hero-sub {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    color: rgba(232, 228, 222, 0.7);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 3.3s forwards
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 3.5s forwards
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease
}

.btn-primary:hover::before {
    transform: translateX(100%)
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--ivory);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(232, 228, 222, 0.3);
    border-radius: 50px;
    transition: all 0.4s ease
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px)
}

/* HERO FLOATING CARDS */
/* HERO FLOATING CARDS - UPDATED */
.hero-float{position:absolute;z-index:10}
.hero-float-card{background:rgba(10,26,20,0.6);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(200,169,110,0.15);border-radius:var(--radius);padding:20px 28px;animation:floatCard 6s ease-in-out infinite}
.hero-float-card .num{font-family:var(--font-display);font-size:32px;font-weight:600;color:var(--gold);line-height:1}
.hero-float-card .num span{font-size:24px}
.hero-float-card .label{font-size:10px;font-weight:500;letter-spacing:2px;text-transform:uppercase;color:rgba(232,228,222,0.6);margin-top:6px;white-space:nowrap}

/* Left side cards */
.float-left-1{top:20%;left:4%;animation-delay:0s}
.float-left-2{top:55%;left:4%;animation-delay:1s}

/* Right side cards */
.float-right-1{top:20%;right:4%;animation-delay:0.5s}
.float-right-2{top:55%;right:4%;animation-delay:1.5s}

@keyframes floatCard{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease 4s forwards
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(232, 228, 222, 0.4)
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(200, 169, 110, 0.3);
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite
}

@keyframes scrollDown {
    0% {
        top: -50%
    }

    100% {
        top: 150%
    }
}

/* STATS BAR */
.stats-bar {
    background: var(--dark);
    border-top: 1px solid rgba(200, 169, 110, 0.1);
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    padding: 48px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px
}

.stat-item {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(200, 169, 110, 0.08)
}

.stat-item:last-child {
    border-right: none
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1
}

.stat-number span {
    font-size: 28px
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 228, 222, 0.5);
    margin-top: 8px
}

/* SECTION COMMONS */
.section {
    padding: 120px 48px;
    position: relative;
    overflow: hidden
}

.section-dark {
    background: var(--dark);
    color: var(--text-on-dark)
}

.section-ivory {
    background: var(--ivory)
}

.section-green {
    background: var(--green-deep);
    color: var(--text-on-dark)
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

.section-label span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold)
}

.section-label-line {
    width: 40px;
    height: 1px;
    background: var(--gold)
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px
}

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

.section-title em {
    font-style: italic;
    color: var(--gold)
}

.section-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 560px;
    color: var(--text-secondary)
}

.section-desc.light {
    color: rgba(232, 228, 222, 0.6)
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: 0.1s
}

.reveal-delay-2 {
    transition-delay: 0.2s
}

.reveal-delay-3 {
    transition-delay: 0.3s
}

.reveal-delay-4 {
    transition-delay: 0.4s
}

.reveal-delay-5 {
    transition-delay: 0.5s
}

/* MAP SECTION */
.map-section {
    background: var(--dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden
}

.map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(26, 92, 66, 0.15) 0%, transparent 70%)
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2
}

.map-header {
    text-align: center;
    margin-bottom: 64px
}

.map-canvas-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2/1;
    max-height: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(200, 169, 110, 0.1);
    background: rgba(15, 37, 28, 0.5)
}

#mapCanvas {
    width: 100%;
    height: 100%;
    display: block
}

/* FOUNDER SECTION */
.founder {
    padding: 120px 48px;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.founder-image-wrap {
    position: relative;
}

/* Image slides from left */
.founder-image-wrap.reveal {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-image-wrap.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

.founder-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 26, 20, 0.4) 100%);
    pointer-events: none;
}

.founder-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(10, 26, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius);
    padding: 24px 32px;
    z-index: 2;
}

.founder-badge-float .big {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.founder-badge-float .small {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 228, 222, 0.6);
    margin-top: 4px;
}

/* Content slides from right */
.founder-content.reveal {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-content.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

.founder-content .section-label {
    margin-bottom: 16px;
}

.founder-content h2 {
    margin-bottom: 8px;
}

.founder-role {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.founder-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.founder-quote {
    position: relative;
    padding: 28px 0 28px 32px;
    border-left: 2px solid var(--gold);
    margin-bottom: 40px;
}

.founder-quote p {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
}

.founder-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 12px;
}

.founder-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.founder-highlight {
    padding: 20px;
    background: var(--ivory-warm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(200, 169, 110, 0.12);
    transition: all 0.3s ease;
}

.founder-highlight:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.founder-highlight .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-deep), var(--green-rich));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.founder-highlight .icon .iconify {
    color: var(--gold);
    font-size: 18px;
}

.founder-highlight h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.founder-highlight p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Add this after existing .founder CSS */

.founder .container {
    max-width: 1400px;
    margin: 0 auto;
}

.founder-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 80px;
}

.founder-team-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.founder-team-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 26, 20, 0.1);
}

.founder-team-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.founder-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.founder-team-card:hover .founder-team-image img {
    transform: scale(1.05);
}

.founder-team-content {
    padding: 32px;
}

.founder-team-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.founder-team-role {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.founder-team-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.founder-team-highlights {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.founder-team-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(200, 169, 110, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(200, 169, 110, 0.2);
}

.founder-team-highlight .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-team-highlight .iconify {
    color: var(--gold);
    font-size: 16px;
}

.founder-team-highlight span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 968px) {
    .founder-team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .founder {
        padding: 80px 24px;
    }
}

/* ABOUT SECTION */
.about {
    background: var(--dark);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, transparent, rgba(11, 61, 46, 0.3));
}

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

/* Images slide in from left */
.about-images {
    position: relative;
}

.about-images.reveal {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-images.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--dark);
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    /* Staggered animation for floating image */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.about-images.reveal.active .about-img-float {
    opacity: 1;
    transform: translateY(0);
}

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

.about-img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius);
    z-index: 1;
    /* Accent animation */
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease 0.6s;
}

.about-images.reveal.active .about-img-accent {
    opacity: 1;
    transform: scale(1);
}

/* Content slides in from right */
.about-content {
    position: relative;
    z-index: 2;
}

.about-content.reveal {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-content.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

.about-content .section-desc {
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    /* Staggered animation for each feature */
    opacity: 0;
    transform: translateY(20px);
}

.about-content.reveal.active .about-feature:nth-child(1) {
    transition: all 0.6s ease 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.about-content.reveal.active .about-feature:nth-child(2) {
    transition: all 0.6s ease 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.about-content.reveal.active .about-feature:nth-child(3) {
    transition: all 0.6s ease 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon .iconify {
    color: var(--gold);
    font-size: 20px;
}

.about-feature h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 13px;
    color: rgba(232, 228, 222, 0.5);
    line-height: 1.6;
}

/* WHY CHOOSE US */
.why-section {
    background: var(--ivory);
    position: relative
}

.why-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px
}

.why-header .section-desc {
    margin: 0 auto
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto
}

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

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(200, 169, 110, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease
}

.why-card:hover::before {
    opacity: 1
}

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

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-rich));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease
}

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

.why-card-icon .iconify {
    color: var(--gold);
    font-size: 26px
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.2px
}

.why-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7
}

/* GALLERY */
.gallery {
    background: var(--dark);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden
}

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense; /* This fills gaps automatically */
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

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

.gallery-item-label span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory)
}

.gallery-item:nth-child(1) {
    grid-row: span 2
}

.gallery-item:nth-child(4) {
    grid-column: span 2
}

.gallery-item:nth-child(6) {
    grid-row: span 2
}

/* TESTIMONIALS */
.testimonials {
    background: var(--ivory);
    position: relative;
    overflow: hidden
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0
}

.testi-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px
}

.testi-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.testi-card {
    min-width: 100%;
    padding: 0 24px;
    box-sizing: border-box
}

.testi-card-inner {
    background: var(--ivory-warm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative
}

.testi-card-inner::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 120px;
    color: rgba(200, 169, 110, 0.15);
    position: absolute;
    top: -10px;
    left: 24px;
    line-height: 1
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px
}

.testi-stars .iconify {
    color: var(--gold);
    font-size: 18px
}

.testi-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-deep), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ivory)
}

.testi-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary)
}

.testi-info p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px
}

.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    position: relative;
    z-index: 2
}

.testi-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--ivory-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer
}

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

.testi-btn:hover .iconify {
    color: var(--dark)
}

.testi-btn .iconify {
    font-size: 20px;
    color: var(--text-secondary);
    transition: color 0.3s
}

.testi-dots {
    display: flex;
    gap: 8px
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer
}

.testi-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px
}

/* Contact Section */
.contact.section {
  background-color: #0a1f1a;
  padding: 100px 0;
}

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

/* Full Width Map on Top */
.contact-map-full {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 50px;
}

.contact-map-full iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* Content Grid Below Map */
.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrap h3 {
  font-size: 28px;
  color: #fff;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.contact-form-wrap > p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 30px 0;
  line-height: 1.6;
}

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

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4b483;
  background: rgba(255, 255, 255, 0.08);
}

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

/* Visible Checkbox Styling */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #d4b483;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-wrapper label {
  cursor: pointer;
  user-select: none;
}

/* Form Message Styles */
.form-message {
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d4b483 0%, #c9a962 100%);
  border: none;
  border-radius: 8px;
  color: #0a1f1a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 180, 131, 0.3);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Info Cards Grid - EXACTLY AS REQUESTED */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 169, 111, 0.3);
  transform: translateX(5px);
}

.contact-info-card .icon {
  width: 45px;
  height: 45px;
  background: rgba(200, 169, 111, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Iconify Icon Color Fix */
.contact-info-card .icon span,
.contact-info-card .iconify,
.contact-info-card .icon svg {
  font-size: 22px;
  color: #C8A96F !important;
  fill: #C8A96F !important;
}

.contact-info-card .info-content {
  flex: 1;
  min-width: 0;
}

.contact-info-card h4 {
  font-size: 15px;
  color: #fff;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
  font-size: 13px;
}

.contact-info-card a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #C8A96F;
}

.contact-info-card .phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-card .phone-number-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.contact-info-card .phone-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Or simpler approach - keep everything inline */
.contact-info-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.8;
}

.contact-info-card p a {
    white-space: nowrap;
    display: inline;
}

.contact-info-card .info-content p + p {
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-map-full iframe {
    height: 300px;
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-form-wrap {
    padding: 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-map-full iframe {
    height: 250px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .checkbox-wrapper {
    font-size: 12px;
  }
}
/* Animation Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

/* FOOTER */

.footer-logo {
    display: block;
    margin: 0 auto 24px auto; /* 'auto' on left/right centers the block element */
    width: 50%;               /* 50% width for desktop/larger screens */
    height: auto;             /* Maintains the aspect ratio */
    max-width: 350px;         /* Prevents it from getting too huge on very large monitors */
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .footer-logo {
        width: 65%;           /* Slightly wider on mobile so it's not too small */
        max-width: 250px;
    }
}
.footer {
    background: var(--green-dark);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px
}

.footer-brand .nav-logo {
    margin-bottom: 20px
}

.footer-brand p {
    font-size: 14px;
    color: rgba(232, 228, 222, 0.5);
    line-height: 1.8;
    max-width: 300px
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s
}

.footer-social a:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 110, 0.1)
}

.footer-social a .iconify {
    color: var(--gold);
    font-size: 18px
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px
}

.footer-col ul {
    list-style: none
}

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(232, 228, 222, 0.5);
    transition: all 0.3s
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
    display: inline-block
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 48px;
    border-top: 1px solid rgba(200, 169, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(232, 228, 222, 0.35)
}

.footer-bottom a {
    color: var(--gold);
    transition: color 0.3s
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--dark);
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: var(--radius);
    padding: 16px 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px)
}

.toast.show {
    transform: translateY(0);
    opacity: 1
}

.toast .iconify {
    color: var(--gold);
    font-size: 20px
}

.toast span {
    font-size: 14px;
    color: var(--ivory)
}

/* ANIMATIONS */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .section {
        padding: 80px 32px
    }

    .hero-float {
        display: none
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .founder-image {
        max-width: 400px;
        margin: 0 auto
    }

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

    .about-images {
        max-width: 500px;
        margin: 0 auto
    }

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

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px
    }

    .gallery-item:nth-child(1) {
        grid-row: span 1
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1
    }

    .gallery-item:nth-child(6) {
        grid-row: span 1
    }

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

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

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

    .stat-item:nth-child(2) {
        border-right: none
    }
}

@media(max-width:768px) {
    .navbar {
        padding: 0 20px;
        height: 70px
    }

    .nav-links {
        display: none
    }

    .nav-mobile-btn {
        display: flex
    }

    .hero h1 {
        font-size: 32px
    }

    .hero-sub {
        font-size: 14px
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center
    }

    .section {
        padding: 64px 20px
    }

    .section-title {
        font-size: 28px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 0
    }

    .stat-number {
        font-size: 32px
    }

    .map-canvas-wrap {
        aspect-ratio: 3/2
    }

    .founder-highlights {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px
    }

    .testi-card-inner {
        padding: 32px 24px
    }

    .testi-text {
        font-size: 16px
    }

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

    .contact-form-wrap {
        padding: 32px 24px
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 48px 20px 32px
    }

    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        text-align: center
    }

    .about-img-float {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 160px;
        border-radius: var(--radius);
        margin-top: 16px;
        border: none
    }

    .about-img-accent {
        display: none
    }
}

/* GLOBAL VIDEO STYLES */
.global-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  max-height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.1);
  background: rgba(15, 37, 28, 0.5);
}

/* Optional: Add a play button overlay if needed */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.map-canvas-wrap:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 169, 110, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

.play-icon .iconify {
  font-size: 30px;
  color: var(--dark);
  margin-left: 4px;
}

/* Gallery Section - Aligned like Why Choose Us */
.gallery.section {
  background-color: #faf8f5; /* Match the cream background */
  padding: 100px 0;
}

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

/* Section Header - Centered */
.gallery .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.gallery .section-label-line {
  width: 60px;
  height: 1px;
  background-color: #c9a962; /* Gold accent color */
}

.gallery .section-label span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a962;
}

.gallery .section-title {
  font-size: 48px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-family: 'Playfair Display', serif;
}

.gallery .section-title em {
  font-style: italic;
  color: #c9a962;
}

.gallery .section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gallery Grid - 3 Columns like Why Choose Us */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gallery-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-image img {
  transform: scale(1.05);
}

.gallery-card-content {
  padding: 25px;
}

.gallery-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.gallery-card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery .section-title {
    font-size: 36px;
  }
  
  .gallery-card-image {
    height: 200px;
  }
}

/* Animation Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  padding: 24px 0;
  letter-spacing: 0.5px;
}

.copyright #autoYear {
  font-weight: 700;
  background: linear-gradient(135deg, #d4b483 0%, #f0d78c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 4px;
}

/* WhatsApp Floating Button */
.back-to-whatsApp {
    width: 60px;
    height: 60px;
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    background-color: #25d366 !important;
    animation: bounceWhatsApp 2s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Font Awesome Icon - Bigger */
.back-to-whatsApp i {
    font-size: 38px !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Icon (Fallback) */
.back-to-whatsApp .whatsapp-svg {
    width: 40px !important;
    height: 40px !important;
    color: #ffffff !important;
    fill: #ffffff !important;
}

@keyframes bounceWhatsApp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.back-to-whatsApp:hover {
    background-color: #1da851 !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    animation: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .back-to-whatsApp {
        width: 58px;
        height: 58px;
        left: 20px;
        bottom: 20px;
    }
    
    .back-to-whatsApp i,
    .back-to-whatsApp .whatsapp-svg {
        font-size: 34px !important;
        width: 34px !important;
        height: 34px !important;
    }
}

/* Custom Coconut Cursor - Complete Version */
html, body {
  cursor: url('../images/coconut-cursor.png') 16 16, auto !important;
}

/* All clickable elements */
a, 
button, 
.nav-links a,
.btn-primary, 
.btn-secondary,
.form-submit {
  cursor: url('../images/coconut-cursor.png') 16 16, pointer !important;
}

/* Images - ADD THIS */
img,
.gallery-item,
.gallery-item img,
.about-img-main img,
.about-img-float img,
.founder-image img,
.hero-bg img {
  cursor: url('../images/coconut-cursor.png') 16 16, default !important;
}

/* Text inputs */
input, 
textarea, 
select {
  cursor: url('../images/coconut-cursor.png') 16 16, text !important;
}

/* Disabled elements */
button:disabled,
input:disabled {
  cursor: not-allowed !important;
}