/* ==========================================================================
   STYLE.CSS - CORE DESIGN SYSTEM & STYLESHEET
   Project: SVM Land Promoters Pvt. Ltd.
   ========================================================================== */

/* ==========================================================================
   1. RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: auto;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    display: block;
}
iframe {
    border: none;
    width: 100%;
    display: block;
}
button, a {
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    color: inherit;
    outline: none;
}

/* ==========================================================================
   2. VARIABLES
   ========================================================================== */
:root {
    /* Container Widths */
    --container-width: 1200px;
    --container-max-width: 1400px;
    
    /* Brand Colors */
    --primary-color: #ffffff;
    --accent-color: #c8a96a; /* gold */
    --green-primary: #2e7d32;
    --green-dark: #1b5e20;
    --green-soft: #e8f5e9;
    --green-hover: #22c55e;
    
    /* Typography Colors */
    --text-dark: #111111;
    --text-muted: #666666;
    
    /* Gradients */
    --green-gradient: linear-gradient(135deg, #e8f5e9, #ffffff);
    --gold-gradient: linear-gradient(135deg, #fffdf8, #f8f3e7);
    --accent-gold-gradient: linear-gradient(90deg, #d4af37, #f4d03f);
    --button-green-gradient: linear-gradient(135deg, #2e7d32, #1b5e20);
    --glider-gradient: linear-gradient(135deg, #2e7d32, #4caf50);
    
    /* Shadows */
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.16);
    --shadow-luxury: 0 60px 140px rgba(0, 0, 0, 0.18);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-blur: blur(10px);
}

/* ==========================================================================
   3. GLOBAL
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 60px;
    margin: 0 auto;
}
.section {
    padding: 80px 0;
    position: relative;
    transition: background 0.5s ease;
}
.section:nth-child(even) {
    background: var(--green-soft);
}
.page-transition {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    left: 0;
    z-index: 9998;
    transform: scaleY(0);
    transform-origin: bottom;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    height: 250px;
    background: #222;
    transition: 0.4s;
}
.gallery-item:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, p, span, a, label, button, input, textarea {
    font-family: 'Inter', sans-serif;
}
h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.05;
}
h2 {
    font-size: 32px;
    font-weight: 300;
}
p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}
.section-header {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-text {
    width: 100%;
    text-align: left;
    transform: translateX(5px);
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 20px;
}
.section-tag::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #a3e635;
}
.section-heading {
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.2px;
    color: #0f172a;
    white-space: nowrap;
    max-width: none;
}

/* ==========================================================================
   5. UTILITIES
   ========================================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================================================================
   6. NAVBAR
   ========================================================================== */
.header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}
.nav-container {
    width: 90%;
    max-width: var(--container-width);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    font-family: "IBM Plex Serif", serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
}
.logo-top {
    position: absolute;
    top: 20px;
    left: 60px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.logo-top img {
    width: 70px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.45)) drop-shadow(0 0 30px rgba(255, 200, 0, 0.2));
    transition: transform 0.08s ease;
}
.logo-top:active img {
    transform: scale(0.95);
}
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.logo-text-main {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.logo-text-mid,
.logo-text-tail {
    display: inline;
}
.logo-text strong {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    color: #ffffff;
}
.header.hide-nav {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}
.nav-wrap {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    align-items: center;
    z-index: 5;
}
.glass-nav {
    --bg: rgba(255,255,255,0.08);
    --text: rgba(255,255,255,0.85);
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 999px;
    background: var(--bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    overflow: visible;
    z-index: 5;
}
.glass-nav input {
    display: none;
}
.glass-nav label {
    padding: 6px 18px;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    z-index: 2;
    position: relative;
    white-space: nowrap;
}
.glass-nav input:checked + label {
    color: #000;
}
.nav-glider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: calc(100% / 8);
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    transition: transform 0.4s cubic-bezier(0.4, 1.4, 0.6, 1);
    z-index: 1;
}
#nav-home:checked ~ .nav-glider { transform: translateX(-2%); }
#nav-about:checked ~ .nav-glider { transform: translateX(90%); }
#nav-projects:checked ~ .nav-glider { transform: translateX(195%); }
#nav-gallery:checked ~ .nav-glider { transform: translateX(295%); }
#nav-videos:checked ~ .nav-glider { transform: translateX(403%); }
#nav-blog:checked ~ .nav-glider { transform: translateX(498%); }
#nav-contact:checked ~ .nav-glider { transform: translateX(595%); }
#nav-more:checked ~ .nav-glider { transform: translateX(694%); }

.dropdown-menu {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 999;
}
.dropdown-right {
    left: auto;
    right: -150px;
    transform: translateX(0);
}
/* Hover visibility trigger disabled to prevent premature dropdown opening */
/* .dropdown-trigger:hover + .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
} */

/* Click-based visibility trigger */
.dropdown-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
}
.dropdown-menu li {
    padding: 10px 18px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    cursor: pointer;
    transition: 0.25s ease;
}
.dropdown-menu li:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    transition: 0.25s ease;
}
.dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
#nav-projects + label + .dropdown-menu {
    display: none !important;
}

/* ==========================================================================
   7. HERO
   ========================================================================== */
.home {
    height: 100vh;
    min-height: 100vh;
    max-height: 1080px;
    width: 100%;
    position: relative;
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.home-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    animation: kenBurnsZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes kenBurnsZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.10); }
}
.home-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.18) 0%,
        rgba(0,0,0,0.10) 35%,
        rgba(0,0,0,0.03) 65%,
        rgba(0,0,0,0) 100%
    );
}
.top-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.25), transparent);
    z-index: 3;
    pointer-events: none;
}
.home::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.25), transparent);
    z-index: 3;
    pointer-events: none;
}
.home-content {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-tagline {
    font-size: clamp(9px, 0.85vw, 11px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.hero-tagline::before,
.hero-tagline::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgb(255, 255, 255);
    margin: 0 10px;
    vertical-align: middle;
}
.hero-title {
    font-size: clamp(24px, 2.8vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25), 0 1px 4px rgba(0,0,0,0.2);
    margin: 0 auto 16px;
    max-width: 900px;
    position: relative;
}
.hero-title span {
    display: inline;
}
.hero-white {
    color: #fff;
    font-weight: 800;
}
.hero-green {
    color: #66bb6a;
    position: relative;
    text-shadow: 0 4px 15px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.3);
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.4);
}
.hero-green::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(102,187,106,0.9), rgba(102,187,106,0.4), rgba(102,187,106,0.1));
    border-radius: 50px;
    transform: skewX(-15deg);
    filter: blur(0.5px);
}
.hero-floating-box {
    position: absolute;
    left: 50%;
    bottom: 40px !important;
    transform: translateX(-50%);
    width: 90% !important;
    max-width: 1100px !important;
    padding: 20px 28px;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.95);
    box-shadow: 0 30px 80px rgba(0,0,0,0.16), 0 10px 30px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,1);
    overflow: hidden;
    z-index: 20;
    animation: luxuryFloat 6s ease-in-out infinite;
}
.hero-floating-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
    pointer-events: none;
}
.hero-floating-box::after {
    content: "";
    position: absolute;
    left: -120px;
    top: -100px;
    width: 340px;
    height: 260px;
    background: radial-gradient(circle, rgba(132,204,22,0.16), transparent 72%);
    filter: blur(30px);
    pointer-events: none;
}
.hero-box-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 380px;
    position: relative;
    z-index: 2;
}
.hero-home-wrap {
    position: relative;
}
.hero-home-ring {
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(132,204,22,0.24), transparent 72%);
    filter: blur(14px);
    animation: pulseGlow 3s ease-in-out infinite;
}
.hero-home-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f7fee7, #ecfccb);
    box-shadow: 0 10px 24px rgba(132,204,22,0.18);
    transition: transform 0.35s ease;
}
.hero-home-icon:hover {
    transform: translateY(-4px) rotate(-2deg);
}
.hero-home-icon i {
    font-size: 25px;
    color: #65a30d;
}
.hero-box-content {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.hero-box-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    color: #111827;
    max-width: 320px;
    letter-spacing: -0.3px;
}
.hero-box-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-box-stats {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex: 1;
    gap: 18px;
    position: relative;
    z-index: 2;
}
.premium-stat-card {
    text-align: center;
    min-width: 135px;
    transition: transform 0.35s ease;
}
.premium-stat-card:hover {
    transform: translateY(-4px);
}
.premium-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}
.premium-stat-card:hover .premium-stat-icon {
    transform: scale(1.05) rotate(-2deg);
}
.projects-icon {
    background: linear-gradient(145deg, #dcfce7, #bbf7d0);
}
.projects-icon i {
    color: #16a34a;
}
.customer-icon {
    background: linear-gradient(145deg, #dbeafe, #bfdbfe);
}
.customer-icon i {
    color: #2563eb;
}
.experience-icon {
    background: linear-gradient(145deg, #fef3c7, #fde68a);
}
.experience-icon i {
    color: #ca8a04;
}
.premium-stat-icon i {
    font-size: 20px;
}
.premium-stat-card h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    color: #111827;
    margin-bottom: 7px;
    letter-spacing: -1px;
}
.premium-stat-card p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    color: #4b5563;
}
.premium-divider {
    width: 1px;
    height: 72px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.10), transparent);
}


/* ==========================================================================
   8. BUTTON SYSTEM
   ========================================================================== */
.btn {
    padding: 10px 18px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-primary {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: none;
}
.btn-secondary {
    background: rgba(255,255,255,0.9);
    text-decoration: none;
}
.cta-glow-btn {
    border: none;
    outline: none;
    padding: 11px 20px;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(145deg, #84cc16, #65a30d);
    box-shadow: 0 10px 22px rgba(132,204,22,0.28);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.cta-glow-btn:hover {
    transform: translateY(-3px);
}
.cta-glow-btn .text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(145deg, #111827, #1f2937);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    box-shadow: 0 10px 22px rgba(17,24,39,0.20);
    transition: transform 0.35s ease;
}
.call-btn:hover {
    transform: translateY(-3px);
}
.about-btn {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    background: linear-gradient(135deg, #a3e635, #84cc16);
    color: #0f172a;
    border: none;
    cursor: pointer;
    isolation: isolate;
    align-self: flex-start;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.08s linear, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(163,230,53,0.25), inset 0 1px 0 rgba(255,255,255,0.5);
}
.about-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    transition: 0.5s ease;
}
.about-btn:hover::before {
    left: 120%;
}
.about-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(163,230,53,0.28), rgba(163,230,53,0.12), transparent 65%);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}
.about-btn:hover::after {
    opacity: 1;
}
.about-btn:hover {
    background: linear-gradient(135deg, #bef264, #84cc16);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(163,230,53,0.35), 0 4px 10px rgba(0,0,0,0.08), 0 0 30px rgba(163,230,53,0.25);
}
.about-btn:active {
    transform: scale(0.9);
    box-shadow: 0 2px 6px rgba(163,230,53,0.3), inset 0 4px 8px rgba(0,0,0,0.3);
}
.about-btn .arrow {
    font-size: 14px;
    transition: transform 0.25s ease;
}
.about-btn:hover .arrow {
    transform: translateX(5px);
}
.about-blog-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 14px;
    text-decoration: none;
    background: var(--gold-gradient);
    border: 1px solid rgba(200,155,60,0.18);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.about-blog-btn::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -120%;
    width: 90%;
    height: 220%;
    background: linear-gradient(115deg, transparent 20%, rgba(255,215,120,0.10) 35%, rgba(255,225,160,0.55) 50%, rgba(212,175,55,0.25) 60%, transparent 80%);
    transform: rotate(18deg);
    animation: goldFlow 4.5s linear infinite;
}
.about-blog-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,220,120,0.18), transparent 55%);
    opacity: .9;
}
.blog-btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #2b2b2b;
    font-family: "Inter", sans-serif;
}
.blog-btn-text i {
    font-size: 12px;
    color: #c89b3c;
}
.blog-btn-arrow {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: #c89b3c;
    transition: transform .35s ease;
}
.about-blog-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(200,155,60,0.35);
    box-shadow: 0 10px 28px rgba(200,155,60,0.12), 0 10px 24px rgba(0,0,0,0.08);
}
.about-blog-btn:hover .blog-btn-arrow {
    transform: translateX(4px);
}
.project-view-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    overflow: hidden;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.45px;
    color: #1c5634;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(241,248,242,0.95));
    border: 1px solid rgba(46,125,50,0.16);
    box-shadow: 0 5px 14px rgba(46,125,50,0.08), inset 0 1px 0 rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.project-view-btn::before {
    content: "";
    position: absolute;
    top: -35px;
    left: -65px;
    width: 34px;
    height: 220%;
    background: rgba(255,255,255,0.65);
    transform: rotate(20deg);
    filter: blur(2px);
    transition: 0.7s ease;
}
.project-view-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: linear-gradient(135deg, #2f7f3b, #25652f);
    box-shadow: 0 10px 24px rgba(46,125,50,0.20), 0 0 24px rgba(46,125,50,0.08);
}
.project-view-btn:hover::before {
    left: 150%;
}
.project-view-text {
    position: relative;
    z-index: 2;
}
.project-view-arrow {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}
.project-view-btn:hover .project-view-arrow {
    transform: translateX(4px);
}
.project-enquire-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background: var(--button-green-gradient);
    transition: all 0.25s ease;
}
.project-enquire-btn:active {
    transform: scale(0.92);
}
.project-enquire-btn::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
    z-index: 0;
}
.project-enquire-btn .fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #4caf50, transparent);
    border-bottom-left-radius: 6px;
    transition: 0.4s ease;
}
.project-enquire-btn:hover .fold {
    transform: translate(6px, -6px);
}
.project-enquire-btn .points_wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.project-enquire-btn .point {
    position: absolute;
    bottom: -10px;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: floatPoints 2.5s infinite ease-in-out;
}
.project-enquire-btn .point:nth-child(1){left:10%}
.project-enquire-btn .point:nth-child(2){left:30%}
.project-enquire-btn .point:nth-child(3){left:50%}
.project-enquire-btn .point:nth-child(4){left:70%}
.project-enquire-btn .point:nth-child(5){left:90%}
.project-enquire-btn .inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: visible;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.project-enquire-btn .icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: block;
    flex-shrink: 0;
    overflow: visible;
    transform: none;
}
.project-enquire-btn:hover .icon {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawIcon 0.8s forwards;
}
.video-watch-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    background: var(--button-green-gradient);
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.video-watch-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: 0.5s ease;
}
.video-watch-btn:hover::before {
    transform: translateX(100%);
}
.video-watch-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 20px rgba(46,125,50,0.35), 0 0 40px rgba(46,125,50,0.2);
}
.video-watch-btn:active {
    transform: scale(0.92);
}
.video-watch-btn .btn-text {
    position: relative;
    z-index: 2;
}
.video-watch-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    font-size: 10px;
    transition: transform 0.3s ease;
}
.video-watch-btn:hover .btn-icon {
    transform: translateX(4px);
}
.submit-btn-pro {
    background: rgb(0, 153, 51);
    color: #ffffff;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.submit-btn-pro:hover {
    background: rgb(0, 130, 45);
    transform: translateY(-2px);
    filter: brightness(1.05);
}
.submit-btn-pro:active {
    background: rgb(0, 100, 35);
    transform: scale(0.96);
}
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    z-index: 9999;
    will-change: transform;
}
.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top-btn.light {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.25);
}
.scroll-top-btn.dark {
    background: rgba(15, 30, 24, 0.72) !important;
    border-color: rgba(255, 255, 255, 0.15);
}
.scroll-top-btn .arrow {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.3s ease;
}
.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.24) !important;
}
.scroll-top-btn.dark:hover {
    background: rgba(20, 40, 32, 0.85) !important;
}
.scroll-top-btn:hover .arrow {
    transform: translateY(-2px);
}
.scroll-top-btn:active {
    transform: scale(0.95) !important;
}
.scroll-top-btn .liquid-bg,
.scroll-top-btn .ripple {
    display: none !important;
}
.progress-ring {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    transform: rotate(-90deg);
    z-index: 1;
    pointer-events: none;
}
.progress-ring-bg {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2;
}
.progress-ring-fill {
    fill: transparent;
    stroke: #2e7d32;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

/* ================= WHATSAPP FLOATING BUTTON ================= */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    will-change: transform, opacity;
    
    /* Premium glassmorphism base shadow */
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    
    /* Animation definition */
    animation: whatsappPremium 10s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease;
}

/* Pseudo-element for GPU-friendly box-shadow glow */
.whatsapp-float-btn::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    /* Strong luxury green glow shadow */
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.65), 0 0 15px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    opacity: 0.15;
    will-change: opacity;
    z-index: -1;
    animation: whatsappGlowPulse 10s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    background: linear-gradient(135deg, #34e073 0%, #209d8e 100%) !important;
}

.whatsapp-float-btn:hover::before {
    opacity: 1 !important; /* Full glow on hover */
    animation: none !important; /* Suspend pulse keyframes on hover */
}

.whatsapp-float-btn:active {
    transform: scale(0.95) !important;
}

.whatsapp-float-btn svg {
    display: block;
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover svg {
    transform: scale(1.08);
}

/* GPU-friendly 10s Keyframes: handles both breathing (0-4s) and highlight (8-10s) using only transform and opacity */
@keyframes whatsappPremium {
    /* 0s to 4s: Breathing cycle */
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.04);
    }
    40% {
        transform: scale(1);
    }
    
    /* 4s to 8s: Complete Idle */
    40.001%, 80% {
        transform: scale(1);
    }
    
    /* 8s to 9s: Highlight attention cycle (scale to 1.06) */
    85% {
        transform: scale(1.06);
    }
    
    /* 9s to 10s: Return to normal */
    90%, 100% {
        transform: scale(1);
    }
}

/* Breathing & Highlight glow keyframes for the pseudo-element shadow */
@keyframes whatsappGlowPulse {
    /* 0s to 4s: Idle breathing glow */
    0%, 40% {
        opacity: 0.15;
    }
    20% {
        opacity: 0.35;
    }
    
    /* 4s to 8s: Complete Idle */
    40.001%, 80% {
        opacity: 0.15;
    }
    
    /* 8s to 9s: Attention highlight glow peak */
    85% {
        opacity: 0.85;
    }
    
    /* 9s to 10s: Return to normal */
    90%, 100% {
        opacity: 0.15;
    }
}

/* ==========================================================================
   9. ABOUT
   ========================================================================== */
#about {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%) !important;
    position: relative;
    overflow: hidden;
}
#about::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,0,0,0.04), transparent 70%);
    z-index: 0;
}
#about .container {
    overflow: visible;
}
.about-wrapper {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    padding-bottom: 40px;
    z-index: 2;
}
.about-image-box {
    position: relative;
    display: flex;
    justify-content: center;
    transform: none;
}
.about-image-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 12px;
    left: -12px;
    background: #f1f5f9;
    border-radius: 30px;
    z-index: 1;
}
.about-image {
    width: 100%;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.08);
    pointer-events: none;
}
.about-image::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 30% 30%, rgba(163,230,53,0.25), transparent 70%);
    z-index: -1;
    filter: blur(40px);
    opacity: 0.7;
}
.about-image img {
    width: 100%;
    height: 110%;
    position: absolute;
    top: -5%;
    left: 0;
    object-fit: cover;
    display: block;
}
.about-image:hover {
    transform: translateY(-12px) scale(1.025);
    box-shadow: 0 50px 140px rgba(0,0,0,0.25), 0 15px 50px rgba(0,0,0,0.15);
}
.about-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-content > * {
    opacity: 0;
    transform: translateY(30px);
}
.about-visible .about-content > * {
    opacity: 1;
    transform: translateY(0);
}
.about-visible .about-tag { transition: 0.6s ease 0.1s; }
.about-visible .about-heading { transition: 0.6s ease 0.2s; }
.about-visible .about-description:nth-of-type(1) { transition: 0.6s ease 0.3s; }
.about-visible .about-description:nth-of-type(2) { transition: 0.6s ease 0.4s; }
.about-visible .about-mission { transition: 0.6s ease 0.5s; }
.about-visible .about-btn { transition: 0.6s ease 0.6s; }

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 20px;
}
.about-tag::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #a3e635;
}
.about-heading {
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.2px;
    color: #0f172a;
    margin-bottom: 26px;
}
.about-heading span {
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
}
.about-visible .about-heading span {
    transform: translateY(0);
    opacity: 1;
    transition: 0.5s ease;
}
.about-description {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #5f6368;
    margin-bottom: 16px;
}
.about-description:last-of-type {
    margin-bottom: 26px;
}
.about-mission {
    padding-left: 18px;
    border-left: 3px solid #a3e635;
    margin-bottom: 20px;
}
.about-mission h4 {
    font-size: 18px;
    margin-bottom: 8px;
}
.about-mission p {
    color: #666;
    margin-bottom: 30px;
}
.about-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* ==========================================================================
   10. PROJECTS
   ========================================================================== */
#ongoing {
    padding-top: 80px;
    padding-bottom: 80px;
}
#ongoing .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow-x: clip;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.project-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.35s ease;
    position: relative;
}
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(163,230,53,0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.project-card:hover::before {
    opacity: 1;
}
.project-card:hover {
    box-shadow: 0 60px 140px rgba(0,0,0,0.18), 0 20px 50px rgba(0,0,0,0.12);
}
.project-image {
    height: 220px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}
.project-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    backface-visibility: hidden;
    transition: transform 0.6s ease;
}
.project-card:hover .project-image img {
    transform: scale(1.05);
}
.project-content {
    padding: 28px 22px 32px;
    display: flex;
    flex-direction: column;
}
.project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.project-top h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
    color: #0f172a;
    transition: 0.3s ease;
}
.project-card:hover .project-top h3 {
    transform: translateY(-2px);
}
.project-location-main {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin-top: 4px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
    transition: 0.3s ease;
}
.project-card:hover .project-location-main {
    color: #2e7d32;
    transform: translateX(2px);
}
.project-meta {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}
.project-meta strong {
    font-size: 16px;
    color: #2e7d32;
    font-weight: 700;
}
.project-meta .label {
    font-weight: 600;
    color: #111;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    letter-spacing: 0.2px;
    transition: 0.25s ease;
}
.project-card:hover .meta-item {
    color: #111;
    transform: translateX(2px);
}
.meta-icon {
    font-size: 12px;
    opacity: 0.7;
    transition: 0.25s ease;
}
.project-card:hover .meta-icon {
    transform: scale(1.2);
    opacity: 1;
}
.price-highlight {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    background: rgba(46,125,50,0.08);
    padding: 6px 12px;
    border-radius: 999px;
    color: #1b5e20;
    width: fit-content;
    transition: 0.3s ease;
}
.project-card:hover .price-highlight {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(46,125,50,0.35), 0 0 40px rgba(46,125,50,0.2);
}
.project-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}
.projects-switch {
    position: relative;
    display: flex;
    justify-content: center;
    margin-left: auto;
    width: 220px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(46,125,50,0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(46,125,50,0.15);
}
.projects-switch input {
    display: none;
}
.projects-switch label {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}
.projects-switch label:active {
    transform: scale(0.96);
}
#switch-ongoing:checked + label,
#switch-sold:checked + label {
    color: #fff;
    transform: translateY(-1px);
    font-weight: 600;
}
.projects-switch label:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}
.switch-glider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    z-index: 1;
    pointer-events: none;
    width: calc(50% - 6px);
    border-radius: 999px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.4);
}
#switch-ongoing:checked ~ .switch-glider { transform: translateX(0%); }
#switch-sold:checked ~ .switch-glider { transform: translateX(100%); }
#switch-ongoing:checked ~ .switch-glider,
#switch-sold:checked ~ .switch-glider {
    box-shadow: 0 6px 16px rgba(46,125,50,0.18), 0 2px 6px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.4);
}
#switch-ongoing:checked ~ .projects-grid .sold-project {
    display: none;
}
#switch-sold:checked ~ .projects-grid .project-card:not(.sold-project) {
    display: none;
}
.project-card.sold-project::after {
    content: "SOLD";
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
}
.sold-timeline {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 10px 30px 20px;
}
.timeline-stats {
    text-align: center;
    margin-bottom: 15px;
}
.timeline-stats h3 {
    font-size: 30px;
    font-weight: 700;
    color: #2e7d32;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: 0.5px;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    height: calc(100% - 120px);
    width: 2px;
    transform: translateX(-50%);
    z-index: 1;
    background: linear-gradient(to bottom, rgba(46,125,50,0) 0%, rgba(46,125,50,0.35) 15%, rgba(46,125,50,0.7) 50%, rgba(46,125,50,0.35) 85%, rgba(46,125,50,0) 100%);
    box-shadow: 0 0 6px rgba(46,125,50,0.25), 0 0 18px rgba(46,125,50,0.15);
    opacity: 0.9;
}
.timeline-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--progress, 0%);
    background: linear-gradient(to bottom, rgba(46,125,50,0.9), rgba(34,197,94,0.9));
    border-radius: 10px;
    transition: height 0.2s linear;
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 50px;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    z-index: 2;
}
.timeline-item.right {
    left: 50%;
}
.timeline-dot {
    position: absolute;
    top: 40px;
    left: calc(100% + 8px);
    width: 14px;
    height: 14px;
    background: #2e7d32;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}
.timeline-item.right .timeline-dot {
    left: -20px;
}
.timeline-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}
.timeline-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2), 0 0 40px rgba(46,125,50,0.3);
}
.timeline-item.active .timeline-card {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 40px rgba(46,125,50,0.4);
}
.timeline-item.active .timeline-dot {
    background: #16a34a;
    box-shadow: 0 0 15px #16a34a, 0 0 40px rgba(22,163,74,0.7);
}
.timeline-card img {
    width: 75px;
    height: 75px;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.4s ease;
}
.timeline-card:hover img {
    transform: scale(1.1);
}
.timeline-content h4 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.3px;
}
.timeline-content .location {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-top: 2px;
    letter-spacing: 0.3px;
}
.timeline-content .review {
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #15803d;
    margin-top: 6px;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(34,197,94,0.08);
    border-radius: 8px;
    letter-spacing: 0.2px;
}
.timeline-toggle {
    text-align: center;
    margin-top: 10px;
    position: relative;
    margin-bottom: 0px;
    z-index: 5;
}
.timeline-toggle button {
    position: relative;
    padding: 12px 26px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2e7d32, #22c55e);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(34,197,94,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.timeline-toggle button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(34,197,94,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.timeline-toggle button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 10px rgba(34,197,94,0.2), inset 0 2px 6px rgba(0,0,0,0.2);
}
.timeline-toggle button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: 0.4s;
}
.timeline-toggle button:hover::before {
    opacity: 1;
}
.timeline-item.hidden {
    opacity: 1;
    transform: translateY(40px) scale(0.95);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.5s ease;
}

/* ==========================================================================
   11. VIDEOS
   ========================================================================== */
#videos {
    background: #f6f8f7;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    transition: all 0.5s ease;
}
#videos::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent 40%);
    pointer-events: none;
}
#videos::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(46,125,50,0.08), transparent 60%);
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 5;
}
#videos.focus-mode::after {
    background: transparent !important;
}
#videos .slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 650px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
}
#videos .slider-content {
    position: relative;
    width: 100%;
    height: 100%;
}
#videos .slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 820px;
    height: 480px;
    transform: translate(-50%, -50%);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
}
#videos .media {
    height: 72%;
    position: relative;
}
#videos .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
#videos .slide:hover img {
    transform: scale(1.1);
}
#videos .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s ease;
}
#videos .slide:hover .play-btn {
    transform: translate(-50%, -50%) scale(1);
    background: linear-gradient(135deg, #2e7d32, #4caf50);
}
#videos .card-sections {
    height: 28%;
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: #fff;
    transition: opacity 0.3s ease;
}
#videos .slide.active .card-sections {
    opacity: 0;
}
#videos .card-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.video-play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(46,125,50,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 12px;
}
.video-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.video-text h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}
.video-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}
.video-accent {
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    margin-bottom: 4px;
    transition: width 0.3s ease;
}
.slide:hover .video-accent {
    width: 42px;
}
.slide:hover .video-text p {
    color: #444;
}
#videos .pos-center {
    transform: translate(-50%, -50%) scale(1);
    z-index: 10;
    opacity: 1;
}
#videos .pos-left {
    transform: translate(-50%, -50%) translateX(-260px) scale(0.9);
    opacity: 0.85;
    z-index: 5;
}
#videos .pos-right {
    transform: translate(-50%, -50%) translateX(260px) scale(0.9);
    opacity: 0.85;
    z-index: 5;
}
#videos .pos-left .video-text,
#videos .pos-right .video-text {
    opacity: 0.5;
    filter: blur(0.3px);
}
#videos .pos-center .video-text {
    opacity: 1;
    filter: none;
}
#videos .pos-center .video-text p {
    color: #333;
    opacity: 1;
    transform: translateY(0);
}
#videos .pos-center .video-accent {
    opacity: 1;
    transform: translateY(0);
    width: 42px;
}
#videos .pos-center .video-watch-btn {
    box-shadow: 0 10px 25px rgba(46,125,50,0.45), 0 0 40px rgba(46,125,50,0.25);
}
#videos .pos-left .video-watch-btn,
#videos .pos-right .video-watch-btn {
    opacity: 0.6;
    transform: scale(0.95);
}
#videos.focus-mode .slide {
    opacity: 1;
    filter: none;
    pointer-events: none;
}
#videos.focus-mode .slide.active {
    opacity: 1 !important;
    filter: none !important;
    pointer-events: auto;
    z-index: 50;
}
#videos .slide.active {
    transform: translate(-50%, -50%) scale(1.4) !important;
    transition: all 0.5s ease;
}
#videos .slide iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 20;
    border-radius: 20px;
    filter: none !important;
}
#videos .left-arrow,
#videos .right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 50;
}
#videos .left-arrow { left: 0; }
#videos .right-arrow { right: 0; }
#videos .slider-dots {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
#videos .slider-dots span {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}
#videos .slider-dots span.active {
    width: 18px;
    border-radius: 20px;
    background: #2e7d32;
}
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}
.video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}
.video-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* ==========================================================================
   12. SERVICES
   ========================================================================== */
#services {
    padding-top: 80px;
    padding-bottom: 80px;
}
.services-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.service-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
    gap: 50px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, background 0.35s ease;
    z-index: 1;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(46,125,50,0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 120px rgba(0,0,0,0.18), 0 0 60px rgba(46,125,50,0.25), 0 0 120px rgba(46,125,50,0.15);
}
.service-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 0;
}
.service-card:hover .service-card-image img {
    transform: scale(1.05);
}
.service-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card-content > * + * {
    margin-top: 14px;
}
.service-card-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}
.service-card-content p {
    font-family: "Inter", sans-serif;
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}
.service-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin-bottom: 20px;
}
.service-points-grid span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    position: relative;
    padding-left: 18px;
}
.service-points-grid span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2e7d32;
}
.service-card-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.service-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.service-btn:hover {
    transform: translateY(-2px);
    background: #1a1a1a;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.service-call-btn {
    background: rgba(46,125,50,0.08);
    color: #2e7d32;
    border: 1px solid rgba(46,125,50,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.service-call-btn:hover {
    transform: translateY(-2px);
    background: rgba(46,125,50,0.14);
    box-shadow: 0 8px 20px rgba(46,125,50,0.12);
}

/* ==========================================================================
   13. PROCESS
   ========================================================================== */
.process-modern {
    padding: 100px 20px;
    background: #f8f9f8;
}
.process-header-modern {
    text-align: left;
    margin-bottom: 60px;
}
.process-tag {
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(46,125,50,0.08);
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.process-header-modern h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #111;
}
.process-cards-modern {
    display: grid;
    position: relative;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.process-cards-modern::before {
    content: "";
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46,125,50,0.3), rgba(46,125,50,0.6), rgba(46,125,50,0.3), transparent);
    z-index: 0;
}
.process-card-modern {
    background: #fff;
    border-radius: 22px;
    padding: 32px 22px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, background 0.35s ease, opacity 0.35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 1;
}
.process-card-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(163,230,53,0.18), rgba(163,230,53,0.08), transparent 65%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}
.process-card-modern:hover::after {
    opacity: 1;
}
.process-card-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a3e635, #84cc16);
    opacity: 0;
    transition: 0.35s ease;
    z-index: 0;
}
.process-card-modern:hover::before {
    opacity: 1;
}
.process-card-modern * {
    position: relative;
    z-index: 2;
}
.process-card-modern:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2), 0 0 40px rgba(46,125,50,0.35);
}
.process-cards-modern:hover .process-card-modern {
    opacity: 0.5;
}
.process-cards-modern:hover .process-card-modern:hover {
    opacity: 1;
}
.process-icon-modern {
    font-size: 28px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-icon-modern span {
    font-size: 28px;
    display: inline-block;
    transform: translateY(2px);
}
.step-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    display: block;
    margin-bottom: 6px;
}
.process-card-modern h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 6px;
    color: #111;
}
.process-card-modern p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-top: 6px;
    line-height: 1.6;
}
.process-card-modern:hover h3,
.process-card-modern:hover p,
.process-card-modern:hover .step-label {
    color: #0f172a;
}

/* ==========================================================================
   14. TESTIMONIALS
   ========================================================================== */
#testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
#testimonials .section-heading {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
}
.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.testimonial-summary {
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    border-radius: 24px;
    background: linear-gradient(135deg, #2b1d12, #3a2618);
    color: #fff;
}
.rating-left,
.rating-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.rating-left {
    flex: 1;
}
.rating-right {
    flex: 1.2;
    max-width: 520px;
}
.testimonial-summary::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: 0;
    top: -60px;
    transform: translateX(40%);
    background: radial-gradient(circle, rgba(244,197,66,0.25), transparent);
    filter: blur(50px);
}
.testimonial-summary::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
    filter: blur(40px);
}
.rating-value {
    font-size: 100px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    color: #f4c542;
    line-height: 1;
}
.rating-value::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 12px auto 0;
    background: var(--accent-gold-gradient);
    border-radius: 10px;
}
.stars {
    margin-top: 10px;
    font-size: 20px;
    letter-spacing: 4px;
    color: #f4c542;
}
.rating-right h3 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
}
.rating-right p {
    font-family: "Inter", sans-serif;
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #f4c542;
}
.google-badge {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #ffffff;
    opacity: 0.85;
}
.testimonial-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 28px;
    border-radius: 18px;
    background: rgba(17, 63, 37, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    min-height: 180px;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.3s ease;
}
.testimonial-card > * + * {
    margin-top: 10px;
}
.testimonial-card p {
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
}
.card-top {
    min-height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-top h4 {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}
.card-top span {
    font-size: 14px;
    font-weight: 600;
    color: #f4c542;
}
.card-top span::before {
    content: "★ ";
}
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.06), transparent);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.testimonial-card * {
    position: relative;
    z-index: 2;
}
.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.testimonial-card:hover::before {
    opacity: 1;
}
.testimonial-featured .testimonial-card:nth-child(2):hover {
    transform: translateY(-6px) scale(1.035);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 0 40px rgba(46,125,50,0.25);
}
.card-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    background: rgba(0,0,0,0.25);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}
.card-rating::before {
    content: "★";
    color: #f4c542;
    font-size: 12px;
}
.testimonial-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.trust-chip {
    padding: 8px 10px;
    border-radius: 999px;
    min-width: 0;
    flex: 0 1 auto;
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    color: #000;
    background: rgba(200,169,106,0.12);
    border: 1px solid rgba(200,169,106,0.25);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.trust-chip:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.trust-chip:active {
    transform: scale(0.92);
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.25);
}

/* ==========================================================================
   15. CONTACT
   ========================================================================== */
.contact-pro {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
    --x: 50%;
    --y: 50%;
    z-index: 1;
}
.contact-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--x) var(--y), rgba(0,153,51,0.08), transparent 40%);
    pointer-events: none;
    z-index: 1;
}
.contact-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}
.contact-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateZ(0);
    gap: 40px;
    align-items: center;
}
.contact-wrapper.container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-left-pro {
    padding: 40px 20px 40px 0;
    transition: transform 0.4s ease;
}
.contact-pro:hover .contact-left-pro {
    transform: translateY(-4px);
}
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46,125,50,0.1);
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.contact-title {
    font-size: 56px;
    font-weight: 700;
    margin-top: 20px;
    color: #0b1f16;
    letter-spacing: -0.4px;
    line-height: 1.15;
    transition: all 0.4s ease;
}
.contact-pro:hover .contact-title {
    letter-spacing: -0.2px;
    transform: translateY(-2px);
}
.contact-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, #c8a96a, transparent);
    border-radius: 10px;
}
.contact-title em {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #1b5e20;
    font-weight: 500;
}
.contact-desc {
    margin-top: 18px;
    color: #6b7280;
    max-width: 480px;
    line-height: 1.7;
}
.contact-cards {
    position: relative;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: auto;
    min-height: unset;
    perspective: 800px;
}
.contact-cards::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0,153,51,0.15), transparent);
}
.contact-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,153,51,0.08);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    position: relative;
    transition: all 0.3s ease;
}
.contact-card i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 153, 51, 0.15);
    color: rgb(0, 153, 51);
    font-size: 18px;
    font-weight: 900;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.4), 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, color 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: linear-gradient(135deg, rgba(0,153,51,0.08), rgba(255,255,255,0.9));
    border-color: rgba(0,153,51,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 25px rgba(0,153,51,0.10);
}
.contact-card:hover i {
    transform: scale(1.15) rotate(5deg);
}
.contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    border-radius: 4px;
    background: transparent;
    transition: 0.3s ease;
}
.contact-card:hover::before {
    background: rgb(0,153,51);
}
.contact-card span {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.5px;
}
.contact-card h4 {
    font-size: 15px;
    font-weight: 1000;
    color: #111;
    transition: all 0.25s ease;
}
.contact-card:hover h4 {
    color: rgb(0,153,51);
    transform: translateX(2px);
}
.contact-card small {
    font-size: 12px;
    color: #9ca3af;
}
.contact-chat-box {
    margin-top: 28px;
    padding: 24px 28px;
    gap: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,153,51,0.08), rgba(0,153,51,0.03));
    border: 1px solid rgba(46,125,50,0.15);
    transition: all 0.3s ease;
}
.contact-chat-box i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(46,125,50,0.12);
    color: #1b5e20;
    font-size: 18px;
}
.contact-chat-box .chat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-chat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.contact-chat-box h4 {
    font-size: 16px;
    font-weight: 1000;
    color: #1f2937;
}
.contact-chat-box p {
    font-size: 13px;
    color: #6b7280;
}
.contact-chat-box button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    will-change: transform;
    background: rgb(0, 173, 58);
    transition: transform 0.12s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.contact-chat-box button .fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #1b5e20, transparent);
    border-bottom-left-radius: 6px;
    transition: 0.4s ease;
}
.contact-chat-box button:hover .fold {
    transform: translate(6px, -6px);
}
.contact-chat-box button .inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.contact-chat-box button::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
    z-index: 0;
}
.contact-chat-box button:hover {
    transform: translateY(-2px);
    background: rgba(2, 120, 43, 0.828);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -2px 6px rgba(0,0,0,0.4);
}
.contact-chat-box button:active {
    transform: translateY(3px) scale(0.96);
    box-shadow: inset 0 6px 14px rgba(0,0,0,0.35), inset 0 -3px 6px rgba(255,255,255,0.08);
    filter: brightness(0.9);
    animation: buttonBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-chat-box button span {
    font-size: 16px;
    transition: transform 0.2s ease;
}
.contact-chat-box button:hover span {
    transform: translateX(4px);
}
.contact-form-pro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    backdrop-filter: blur(12px);
    padding: 30px 32px 36px;
    border-radius: 20px;
    border: 1px solid rgba(0,153,51,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    margin-top: 120px;
}
.contact-form-pro::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0,153,51,0.08), transparent 40%);
    animation: premiumGlow 8s linear infinite;
    pointer-events: none;
}
.contact-form-pro:hover {
    transform: translateY(-4px);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 40px rgba(0,153,51,0.12);
}
.form-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}
.form-header i {
    font-size: 20px;
    color: #2e7d32;
}
.contact-form-pro input,
.contact-form-pro textarea {
    width: 100%;
    display: block;
    padding: 14px 16px;
    margin: 0;
    border-radius: 10px;
    min-height: 48px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.contact-form-pro textarea {
    height: 120px;
}
.contact-form-pro input:hover,
.contact-form-pro textarea:hover {
    box-shadow: 0 6px 18px rgba(0,153,51,0.08);
}
.contact-form-pro input:focus,
.contact-form-pro textarea:focus {
    transform: translateY(-2px);
    border-color: rgb(0,153,51);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: #ffffff;
}
.contact-divider-pro {
    position: relative;
    height: 1.5px;
    margin: 36px 0 18px;
    background: linear-gradient(90deg, transparent, rgba(17, 63, 37, 0.2), rgba(17, 63, 37, 0.7), rgba(17, 63, 37, 0.2), transparent);
    overflow: hidden;
}
.contact-divider-pro::before {
    content: "";
    position: absolute;
    inset: -6px 0;
    background: linear-gradient(90deg, transparent, rgba(17, 63, 37, 0.12), transparent);
    filter: blur(6px);
    opacity: 0.8;
}
.contact-divider-pro::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: skewX(-20deg);
    animation: dividerShimmer 4s ease-in-out infinite;
}
.office-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.office-card-pro {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 22px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.75));
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(17,63,37,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}
.office-card-link:hover .office-card-pro {
    transform: scale(0.97);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 25px rgba(0,153,51,0.2);
}
.office-card-pro::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}
.office-map {
    width: 100%;
    height: 100%;
    min-height: 180px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.office-map iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border-radius: 12px;
    border: none;
    transition: transform 0.6s ease;
}
.office-card-link:hover .office-map iframe {
    transform: scale(1.04);
}
.office-info-pro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4px;
}
.office-info-pro h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}
.office-info-pro p {
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    color: #6b7280;
    margin-bottom: 14px;
}
.office-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.office-meta div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-family: "Inter", sans-serif;
    color: #1f2937;
}
.office-meta i {
    color: rgb(0, 153, 51);
    font-size: 14px;
}
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    background: rgb(0,153,51);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,153,51,0.6);
    animation: pulseDot 1.5s infinite ease-in-out;
}
.project-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.project-modal.active {
    display: flex;
}
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.enquiry-modal.active {
    opacity: 1;
    visibility: visible;
}
.enquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.enquiry-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}
.enquiry-box input,
.enquiry-box textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.enquiry-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}
.visit-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}
.visit-popup.active {
    display: block;
}
.visit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
}
.visit-form-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 92%;
    max-width: 420px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 10px 20px rgba(0,0,0,0.1);
    animation: popupIn 0.3s ease forwards;
}
.visit-form-box h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #0f172a;
    letter-spacing: -0.3px;
}
.form-group {
    position: relative;
    margin-bottom: 18px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    background: #f8fafc;
    color: #111;
    transition: all 0.25s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}
.form-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #64748b;
    background: transparent;
    transition: 0.2s ease;
    pointer-events: none;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 11px;
    color: #2e7d32;
    background: white;
    padding: 0 6px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    background: white;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.12), 0 8px 20px rgba(46,125,50,0.08);
}
.date-field {
    margin-bottom: 18px;
}
.date-field label {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
    display: block;
}
.date-field input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    transition: 0.2s ease;
}
.date-field input:hover {
    border-color: #2e7d32;
    box-shadow: 0 0 0 2px rgba(46,125,50,0.1);
}
.form-group textarea {
    min-height: 90px;
    resize: none;
}
.visit-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
}
.visit-close-btn span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #111;
    left: 8px;
}
.visit-close-btn span:first-child {
    transform: rotate(45deg);
}
.visit-close-btn span:last-child {
    transform: rotate(-45deg);
}
.visit-close-btn:hover span {
    background: #2e7d32;
}
.flatpickr-calendar {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.4);
    animation: calendarFade 0.25s ease;
}
.flatpickr-months {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.flatpickr-current-month {
    font-weight: 600;
    font-size: 14px;
    color: #111;
}
.flatpickr-weekdays {
    background: transparent;
}
.flatpickr-weekday {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}
.flatpickr-day {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    font-weight: 500;
    color: #111;
    transition: all 0.2s ease;
}
.flatpickr-day:hover {
    background: rgba(46,125,50,0.12);
}
.flatpickr-day.selected {
    background: #2e7d32;
    color: #fff;
    border: none;
    animation: selectPop 0.25s cubic-bezier(.2,1.4,.4,1);
}
.flatpickr-day.today {
    border: 1px solid #2e7d32;
}
.flatpickr-day.inRange {
    background: rgba(46,125,50,0.15);
    color: #111;
}
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #2e7d32;
    color: #fff;
}
.flatpickr-day.weekend {
    color: #dc2626;
    font-weight: 600;
}
.flatpickr-day.flatpickr-disabled {
    opacity: 0.3;
}
.flatpickr-prev-month,
.flatpickr-next-month {
    transition: 0.2s ease;
}
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    color: #2e7d32;
    transform: scale(1.1);
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.lux-footer {
    --x: 50%;
    --y: 50%;
    overflow-x: hidden;
    padding: 60px 0 25px;
    color: rgba(255,255,255,0.82);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: gradientBreath 12s ease-in-out infinite alternate;
    filter: contrast(1.08) brightness(1.05);
    background:
        radial-gradient(circle at 50% 10%, rgba(46,125,50,0.35), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(0,150,80,0.18), transparent 70%),
        linear-gradient(180deg, #071a12 0%, #02110b 100%);
}
.lux-footer::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200,169,106,0.15), transparent);
    filter: blur(120px);
    z-index: 0 !important;
    pointer-events: none;
}
.lux-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/noise.png");
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
}
.lux-footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1400px;
    padding: 0 80px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.footer-center {
    text-align: center;
    margin: 20px 0 45px;
    position: relative;
    z-index: 5;
}
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}
.footer-divider span {
    width: 85px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a96a, #fff3c4, #c8a96a, transparent);
    background-size: 200% 100%;
    animation: goldShimmer 4s linear infinite;
    opacity: 0.85;
}
.footer-divider .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8a96a;
    box-shadow: 0 0 14px rgba(200,169,106,0.75);
    animation: dotPulse 2.5s ease-in-out infinite;
}
.footer-center h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    letter-spacing: -0.3px;
}
.footer-center p {
    font-size: 14px;
    margin-top: 8px;
    color: #e6c27a;
    opacity: 0.9;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 5;
}
.footer-col {
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.footer-col:nth-child(1) {
    justify-self: start;
    max-width: 340px;
}
.footer-col:nth-child(2) {
    justify-self: end;
    margin-left: 60px;
}
.footer-col:nth-child(3) {
    justify-self: start;
}
.footer-col:nth-child(4) {
    justify-self: start;
}
.footer-col h4 {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #c8a96a;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
    line-height: 1.2;
}
.footer-col p {
    line-height: 1.8;
    color: #ffffff;
    font-size: 13.5px;
    margin-bottom: 10px;
}
.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-col ul li {
    font-size: 13.5px;
    margin-bottom: 10px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.25s ease;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}
.footer-col ul li:hover {
    color: #fff;
    transform: translateY(-1px) translateX(5px);
}
.footer-col ul li:last-child {
    margin-bottom: 0;
}
.footer-col:nth-child(2) p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    transition: all 0.25s ease;
}
.footer-col:nth-child(2) p i {
    font-size: 12px;
    color: #c8a96a;
}
.footer-col:nth-child(2) p:hover {
    color: #ffffff;
    transform: translateY(-1px);
}
.footer-col:nth-child(2)::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 10%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(200,169,106,0.6), transparent);
}
.lux-socials {
    display: flex;
    gap: 20px;
    justify-content: flex-start !important;
    align-items: center;
}
.tooltip-container {
    position: relative;
    cursor: pointer;
    transition: 0.2s ease;
    will-change: transform;
    transform: translateZ(0);
}
.tooltip {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.tooltip-container:hover .tooltip {
    opacity: 1;
    top: -150px;
}
.profile {
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
}
.user {
    display: flex;
    gap: 10px;
    align-items: center;
}
.img {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #ddd;
    color: #111;
    background: #f5f5f5;
    border-radius: 8px;
}
.name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}
.username {
    font-size: 12px;
    color: #666;
}
.about {
    font-size: 12px;
    color: #888;
    padding-top: 5px;
}
.icon {
    display: block;
    position: relative;
    will-change: transform;
}
.layer {
    width: 50px;
    height: 50px;
    position: relative;
    transition: transform 0.3s ease;
}
.icon:hover .layer {
    transform: rotate(-25deg) skew(15deg);
}
.layer span {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(200, 169, 106, 0.4);
    transition: all 0.3s ease;
}
.icon:hover .layer span {
    box-shadow: 0 0 12px rgba(200, 169, 106, 0.4);
}
.icon:hover .layer span:nth-child(1) { opacity: 0.2; }
.icon:hover .layer span:nth-child(2) { opacity: 0.4; transform: translate(4px, -4px); }
.icon:hover .layer span:nth-child(3) { opacity: 0.6; transform: translate(8px, -8px); }
.icon:hover .layer span:nth-child(4) { opacity: 0.8; transform: translate(12px, -12px); }
.iconSVG {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: #c8a96a;
    transition: color 0.3s ease;
}
.icon:hover .iconSVG {
    color: #ffffff;
}
.tooltip-container.instagram:hover .layer span {
    border-color: transparent;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.tooltip-container.facebook:hover .layer span {
    background: #1877f2;
    border-color: #1877f2;
}
.tooltip-container.whatsapp:hover .layer span {
    background: #25d366;
    border-color: #25d366;
}
.tooltip-container.youtube:hover .layer span {
    background: #ff0000;
    border-color: #ff0000;
}
.tooltip-container.youtube:hover .layer span:last-child {
    background: linear-gradient(135deg, #ff3b3b, #ff0000);
    border-color: transparent;
}
.tooltip-container.instagram:hover .iconSVG,
.tooltip-container.facebook:hover .iconSVG,
.tooltip-container.whatsapp:hover .iconSVG,
.tooltip-container.youtube:hover .iconSVG {
    color: #fff;
}
.tooltip-container .layer {
    animation: socialFloat 4s ease-in-out infinite;
}
.tooltip-container:nth-child(1) .layer { animation-delay: 0s; }
.tooltip-container:nth-child(2) .layer { animation-delay: 0.4s; }
.tooltip-container:nth-child(3) .layer { animation-delay: 0.8s; }
.tooltip-container:nth-child(4) .layer { animation-delay: 1.2s; }
.tooltip-container:hover .layer {
    animation: none;
    transform: translateY(-2px) rotate(-25deg) skew(15deg);
}
.tooltip-container::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}
.tooltip-container:hover::after {
    opacity: 1;
    animation: glowPulse 1.6s ease-in-out infinite;
}
.tooltip-container.instagram:hover::after {
    background: radial-gradient(circle, rgba(225,48,108,0.35), transparent 60%);
}
.tooltip-container.facebook:hover::after {
    background: radial-gradient(circle, rgba(24,119,242,0.35), transparent 60%);
}
.tooltip-container.whatsapp:hover::after {
    background: radial-gradient(circle, rgba(37,211,102,0.35), transparent 60%);
}
.tooltip-container.youtube:hover::after {
    background: radial-gradient(circle, rgba(255,0,0,0.35), transparent 60%);
}
.footer-bottom {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    width: 100%;
    position: relative;
    z-index: 5;
}
.footer-bottom p {
    margin: 0;
}
.footer-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.footer-meta-item {
    display: inline;
}
.footer-link {
    color: #c8a96a;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}
.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #c8a96a;
    transition: 0.3s ease;
}
.footer-link:hover {
    color: #ffffff;
}
.footer-link:hover::after {
    width: 100%;
}
.dot-sep {
    margin: 0 10px;
    color: rgba(255,255,255,0.3);
}
.footer-copy {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
}
.footer-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.footer-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #c8a96a;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle linear infinite;
}
.footer-particles span:nth-child(1){left:10%; animation-duration:12s;}
.footer-particles span:nth-child(2){left:20%; animation-duration:15s;}
.footer-particles span:nth-child(3){left:30%; animation-duration:10s;}
.footer-particles span:nth-child(4){left:40%; animation-duration:14s;}
.footer-particles span:nth-child(5){left:50%; animation-duration:11s;}
.footer-particles span:nth-child(6){left:60%; animation-duration:16s;}
.footer-particles span:nth-child(7){left:70%; animation-duration:13s;}
.footer-particles span:nth-child(8){left:80%; animation-duration:12s;}
.footer-particles span:nth-child(9){left:90%; animation-duration:15s;}
.footer-particles span:nth-child(10){left:95%; animation-duration:18s;}

/* ==========================================================================
   17. ANIMATIONS
   ========================================================================== */
@keyframes luxuryFloat {
    0% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-5px); }
    100% { transform: translateX(-50%) translateY(0px); }
}
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: .7; }
    50% { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(1); opacity: .7; }
}
@keyframes floatBg {
    from { transform: translateY(0px) translateX(0px); }
    to { transform: translateY(40px) translateX(-20px); }
}
@keyframes goldFlow {
    0% { left: -120%; }
    100% { left: 160%; }
}
@keyframes floatPoints {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); opacity: 0; }
}
@keyframes drawIcon {
    to { stroke-dashoffset: 0; }
}
@keyframes rippleSwitch {
    to { transform: scale(12); opacity: 0; }
}
@keyframes dividerShimmer {
    0% { left: -40%; opacity: 0; }
    20% { opacity: 1; }
    50% { left: 120%; opacity: 0; }
    100% { left: 120%; opacity: 0; }
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(46,125,50,0.6), 0 0 10px rgba(46,125,50,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(46,125,50,0), 0 0 25px rgba(46,125,50,0.4); }
    100% { box-shadow: 0 0 0 0 rgba(46,125,50,0), 0 0 10px rgba(46,125,50,0.6); }
}
@keyframes popupIn {
    to { transform: translate(-50%, -50%) scale(1); }
}
@keyframes pulseBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes rippleAnim {
    to { transform: scale(3); opacity: 0; }
}
@keyframes selectPop {
    0% { transform: scale(0.8); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
@keyframes calendarFade {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes gradientBreath {
    0% { background-position: 50% 0%; }
    100% { background-position: 50% 100%; }
}
@keyframes goldShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes dotPulse {
    0%,100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
}
@keyframes floatParticle {
    from { transform: translateY(100%); opacity: 0; }
    20% { opacity: 0.4; }
    to { transform: translateY(-20%); opacity: 0; }
}
@keyframes socialFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}
@keyframes glowPulse {
    0%,100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.08); opacity: 0.8; }
}
@keyframes buttonBounce {
    0%   { transform: translateY(3px) scale(0.96); }
    40%  { transform: translateY(-2px) scale(1.02); }
    65%  { transform: translateY(1px) scale(0.99); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes premiumGlow {
    0% { transform: translate(0%, 0%); }
    50% { transform: translate(-10%, -10%); }
    100% { transform: translate(0%, 0%); }
}

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */
/* All viewport media queries are centralized inside css/responsive.css */

/* ==========================================================================
   MOBILE MENU LUXURY UI UPGRADE & RESPONSIVE SIZE OPTIMIZATION
   ========================================================================== */
/* Responsive Hamburger Size Optimization */
.mobile-menu-toggle {
    background: rgba(6, 25, 20, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    width: clamp(42px, 5.5vw, 50px) !important;
    height: clamp(42px, 5.5vw, 50px) !important;
    top: 20px !important;
    right: 20px !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        width: clamp(40px, 6vw, 44px) !important;
        height: clamp(40px, 6vw, 44px) !important;
    }
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px) !important;
}

.mobile-menu-toggle.is-active {
    background: rgba(140, 220, 50, 0.18) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(140, 220, 50, 0.15) !important;
    box-shadow: 0 0 18px rgba(140, 220, 50, 0.18) !important;
}

.hamburger-line {
    width: clamp(14px, 2.2vw, 18px) !important;
    height: 2px !important;
}

.mobile-menu-backdrop {
    background: rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.mobile-menu-nav {
    background: rgba(6, 25, 20, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25) !important;
    transition: transform 0.28s cubic-bezier(.22, .61, .36, 1) !important;
    
    /* Ensure Full Menu Visibility On All Mobile Sizes */
    height: 100% !important;
    height: 100dvh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.mobile-menu-nav::-webkit-scrollbar {
    width: 3px !important;
}
.mobile-menu-nav::-webkit-scrollbar-track {
    background: transparent !important;
}
.mobile-menu-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 99px !important;
}

.mobile-menu-item {
    padding: 14px 18px !important;
    border-radius: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: all 0.25s ease !important;
    position: relative !important;
}

.mobile-menu-item::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 10px !important;
    bottom: 10px !important;
    width: 3px !important;
    background: #8bd320 !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
    border-radius: 99px !important;
    transition: all 0.25s ease !important;
}

.mobile-menu-item:hover {
    background: rgba(140, 220, 50, 0.08) !important;
    transform: translateX(6px) !important;
    color: #a3e635 !important;
}

.mobile-menu-item:hover::before {
    opacity: 1 !important;
    transform: scaleY(1) !important;
}

/* Active State Styles */
.mobile-menu-item.active,
.mobile-menu-item.is-active {
    background: rgba(140, 220, 50, 0.12) !important;
    border: 1px solid rgba(140, 220, 50, 0.18) !important;
    box-shadow: 0 0 18px rgba(140, 220, 50, 0.18) !important;
}

.mobile-menu-item.active::before,
.mobile-menu-item.is-active::before {
    opacity: 1 !important;
    transform: scaleY(1) !important;
}

.mobile-menu-divider {
    background: rgba(255, 255, 255, 0.06) !important;
}

/* ==========================================================================
   PREMIUM POPUP SUBMIT BUTTONS
   ========================================================================== */
.submit-btn {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2e7d32 0%, #17521a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Shine sweep animation overlay */
.submit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.75s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #338a37 0%, #1b5e20 100%);
    box-shadow: 0 14px 35px rgba(46, 125, 50, 0.35), 0 6px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-btn:hover::after {
    left: 150%;
    transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-btn:active {
    transform: translateY(0.5px);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.2), 0 2px 6px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

.submit-btn:focus {
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.4), 0 8px 24px rgba(46, 125, 50, 0.25);
}

/* ==========================================================================
   PREMIUM ANNOUNCEMENT POPUP
   ========================================================================== */
.announcement-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.announcement-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.announcement-modal {
    position: relative;
    max-width: 32rem;
    width: 90%;
    margin: 1rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    max-height: 80vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    opacity: 0;
}

.announcement-overlay.active .announcement-modal {
    animation: popupFadeIn 0.35s ease-out forwards;
}

.announcement-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.announcement-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 80vh;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.announcement-link:hover .announcement-image {
    transform: scale(1.02);
}

.announcement-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #111111;
    font-size: 1.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
    outline: none;
}

.announcement-close:hover {
    transform: scale(1.08);
    background-color: #fcfcfc;
    color: #000000;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.announcement-close:active {
    transform: scale(0.95);
}

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

