/* ============================================
   DESIGN TOKENS
============================================ */
:root {
    --green-900: #003a00;
    --green-800: #005200;
    --green-700: #006400;
    --green-600: #1a7d1a;
    --green-500: #2e9e2e;
    --green-400: #4ab54a;
    --green-100: #e6f5e6;
    --green-50: #f2faf2;
    --gold: #b8943a;
    --ink: #141414;
    --ink-mid: #3a3a3a;
    --ink-muted: #6b6b6b;
    --surface: #fafaf8;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --border-mid: rgba(0, 0, 0, 0.14);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ============================================
   RESET & BASE
============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-mid);
    background: var(--white);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--ink);
}

p {
    color: var(--ink-muted);
}

a {
    text-decoration: none;
    transition: color 0.25s;
}

a:hover {
    color: var(--green-600);
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
}

/* Logo */
.logo {
    height: auto;
    width: auto;
    transition: opacity 0.4s ease;
}

.logo-light {
    opacity: 1;
    max-height: 90px;
    position: relative;
}

.logo-dark {
    opacity: 0;
    max-height: 56px;
    position: absolute;
    top: 0;
    left: 0;
}

.custom-navbar.scrolled .logo-light {
    opacity: 0;
    position: absolute;
}

.custom-navbar.scrolled .logo-dark {
    opacity: 1;
    position: relative;
}

.logo-dark,
.logo-light {
    filter: none !important;
    -webkit-filter: none !important;
}

/* ============================================
   NAVBAR
============================================ */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 1.25rem 0;
    background: transparent;
    transition: all 0.4s ease;
}

.custom-navbar.scrolled {
    background: var(--white);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 0.75rem 0;
}

.custom-navbar .navbar-brand {
    position: relative;
}

/* Nav links */
.custom-navbar .nav-link,
.custom-navbar .nav-link-active {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.6rem 1.4rem;
    margin: 0 5px;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
    position: relative;
}

.custom-navbar.scrolled .nav-link,
.custom-navbar.scrolled .nav-link-active {
    color: var(--ink-mid);
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link-active:hover {
    color: var(--green-600) !important;
}

.custom-navbar .nav-link-active {
    color: var(--green-400) !important;
}

.custom-navbar.scrolled .nav-link-active {
    color: var(--green-700) !important;
}

/* Dropdown */
.custom-navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
    padding: 0.75rem;
    min-width: 260px;
    margin-top: 0.75rem;
}

.custom-navbar .dropdown-item {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-mid);
    padding: 0.8rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.custom-navbar .dropdown-item:hover {
    background: var(--green-50);
    color: var(--green-700);
    padding-left: 1.3rem;
}

/* Mobile toggler */
.mobile-toggler {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 44px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.custom-navbar.scrolled .mobile-toggler {
    background: var(--green-50);
    border-color: var(--border);
}

.mobile-toggler-icon,
.mobile-toggler-icon::before,
.mobile-toggler-icon::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.custom-navbar.scrolled .mobile-toggler-icon,
.custom-navbar.scrolled .mobile-toggler-icon::before,
.custom-navbar.scrolled .mobile-toggler-icon::after {
    background: var(--ink);
}

.mobile-toggler {
    position: relative;
}

.mobile-toggler-icon {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggler-icon::before {
    top: -7px;
}

.mobile-toggler-icon::after {
    top: 7px;
}

/* Offcanvas */
.offcanvas.offcanvas-top {
    height: auto;
    max-height: 50vh;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.offcanvas-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.offcanvas-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
}

.offcanvas-body {
    padding: 1rem 1.5rem 2rem;
}

#mobileOffcanvas .nav-link {
    color: var(--green-700) !important;
    font-weight: 600;
}

#mobileOffcanvas .nav-link:hover {
    color: var(--green-500) !important;
}

#mobileOffcanvas .dropdown-item {
    color: var(--ink-mid);
}

.close-float {
    width: 38px;
    height: 38px;
    background: var(--green-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--green-700);
    cursor: pointer;
    transition: 0.2s;
}

.close-float:hover {
    background: var(--green-100);
    transform: scale(1.05);
}

/* ============================================
   HERO SLIDER
============================================ */
#noventra-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--green-900);
}

#noventra-slider .carousel-inner {
    height: 100%;
}

#noventra-slider.carousel-fade .carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    transform: none;
    backface-visibility: hidden;
    z-index: 1;
}

#noventra-slider.carousel-fade .carousel-item.active,
#noventra-slider.carousel-fade .carousel-item-next.carousel-item-start,
#noventra-slider.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    position: relative;
    z-index: 2;
}

#noventra-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

/* Overlay gradient for depth */
#noventra-slider .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            rgba(0, 40, 0, 0.75) 0%,
            rgba(0, 20, 0, 0.3) 60%,
            transparent 100%);
}

/* Caption */
#noventra-slider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 820px;
    padding: 0 2rem;
    text-align: left;
    z-index: 3;
}

/* Eyebrow line */
.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.slide-eyebrow::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--green-400);
}

#noventra-slider h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
}

#noventra-slider h2 em {
    font-style: italic;
    color: var(--green-400);
}

#noventra-slider p {
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin-bottom: 2rem;
}

/* CTA button */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-700);
    color: var(--white) !important;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.slide-cta::after {
    content: "→";
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.slide-cta:hover {
    background: var(--green-800);
    color: var(--white) !important;
    box-shadow: 0 12px 32px rgba(0, 58, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.slide-cta:hover::after {
    transform: translateX(5px);
}

.slide-cta:active {
    transform: scale(0.96) !important;
}

/* Animations */
#noventra-slider .carousel-caption .slide-eyebrow,
#noventra-slider .carousel-caption h2,
#noventra-slider .carousel-caption p,
#noventra-slider .carousel-caption .slide-cta {
    opacity: 0;
    transform: translateY(24px);
}

#noventra-slider .carousel-item.active .slide-eyebrow {
    animation: nov-up 0.9s ease forwards 0.1s;
}

#noventra-slider .carousel-item.active h2 {
    animation: nov-up 0.9s ease forwards 0.25s;
}

#noventra-slider .carousel-item.active p {
    animation: nov-up 0.9s ease forwards 0.4s;
}

#noventra-slider .carousel-item.active .slide-cta {
    animation: nov-up 0.9s ease forwards 0.55s;
}

@keyframes nov-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: 0.3s;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.16);
}

/* Indicators */
.carousel-indicators {
    bottom: 2rem;
    gap: 6px;
    margin: 0;
    justify-content: flex-start;
    padding-left: calc(50% - 410px + 2rem);
}

.carousel-indicators button {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    opacity: 1;
    transition: all 0.4s;
}

.carousel-indicators button.active {
    width: 48px;
    background: var(--green-400);
}

/* Photo credit */
.photo-credit {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 4;
}

.photo-credit a {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* ============================================
           INSIGHTS & PERSPECTIVES SECTION
        ============================================ */
#insights {
    padding: 100px 0 110px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle grain texture layer */
#insights::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.018;
    pointer-events: none;
    z-index: 0;
}

/* Very faint green wash at top edge */
#insights::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-100) 30%, var(--green-100) 70%, transparent);
    z-index: 1;
}

#insights .container {
    position: relative;
    z-index: 2;
}

/* Header */
.insights-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.insights-header-left {
    max-width: 540px;
}

.insights-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.insights-header .section-label::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-600);
    border-radius: 2px;
}

.insights-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.insights-header p {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-muted);
    margin: 0;
}

.insights-header-right {
    flex-shrink: 0;
}

/* ——— RAIL WRAPPER ——— */
.insights-rail-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 20px;
    display: block;
}

.insights-mobile-rail {
    display: none;
}

.insights-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-bottom: 40px;
}

.insights-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-100);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.insights-dot.active {
    background: var(--green-700);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(0, 100, 0, 0.2);
}

/* Fade masks left & right */
.insights-rail-wrapper::before,
.insights-rail-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 96px;
    z-index: 10;
    pointer-events: none;
}

.insights-rail-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.insights-rail-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* ——— SCROLLING TRACK ——— */
.insights-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 10px 0 20px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.insights-track::-webkit-scrollbar {
    display: none;
}

.insights-track .insight-card {
    flex: 0 0 340px;
}

@keyframes insights-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ——— INSIGHT CARD ——— */
.insight-card {
    flex: 0 0 340px;
    width: 340px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 100, 0, 0.09);
    border-radius: 24px;
    padding: 2.25rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.3s;
    box-shadow:
        0 4px 16px -4px rgba(0, 40, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    text-decoration: none;
}

/* Subtle inner top highlight */
.insight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9) 50%, transparent);
}

/* Bottom accent bar on hover */
.insight-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0 0 24px 24px;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 56px -12px rgba(0, 58, 0, 0.14),
        0 8px 20px -8px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 100, 0, 0.18);
}

.insight-card:hover::after {
    transform: scaleX(1);
}

/* Category pill */
.insight-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 40px;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1.35rem;
    width: fit-content;
    transition: background 0.25s, color 0.25s;
}

.insight-category::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: var(--green-500);
    border-radius: 50%;
}

.insight-card:hover .insight-category {
    background: var(--green-100);
}

/* Card title */
.insight-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 0.9rem;
    flex: 1;
    transition: color 0.25s;
}

.insight-card:hover .insight-title {
    color: var(--green-800);
}

/* Divider rule */
.insight-rule {
    width: 32px;
    height: 1px;
    background: var(--border-mid);
    margin-bottom: 0.9rem;
    transition: width 0.35s ease, background 0.3s;
}

.insight-card:hover .insight-rule {
    width: 48px;
    background: var(--green-400);
}

/* Excerpt */
.insight-excerpt {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--ink-muted);
    margin-bottom: 1.75rem;
    flex: 1;
}

/* CTA */
.insight-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-top: auto;
    transition: gap 0.25s, color 0.25s;
}

.insight-cta .cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    font-size: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.25s, color 0.25s;
}

.insight-card:hover .insight-cta {
    gap: 12px;
    color: var(--green-600);
}

.insight-card:hover .insight-cta .cta-arrow {
    transform: translateX(3px);
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
}

/* ——— MOBILE SWIPE RAIL ——— */
.insights-mobile-rail {
    display: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.25rem;
    padding: 20px 6px 28px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.insights-mobile-rail::-webkit-scrollbar {
    display: none;
}

.insights-mobile-rail .insight-card {
    flex: 0 0 85vw;
    width: 85vw;
    scroll-snap-align: start;
}

/* Dot indicators for mobile */
.insights-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
}

.insights-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-mid);
    transition: all 0.3s;
}

.insights-dot.active {
    width: 20px;
    border-radius: 4px;
    background: var(--green-600);
}

/* ——— VIEW ALL LINK ——— */
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-700);
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--green-100);
    padding-bottom: 2px;
    transition: gap 0.2s, color 0.2s, border-color 0.2s;
}

.view-all-link::after {
    content: "→";
    transition: transform 0.25s;
}

.view-all-link:hover {
    color: var(--green-600);
    gap: 12px;
    border-color: var(--green-400);
}

.view-all-link:hover::after {
    transform: translateX(3px);
}

/* ============================================
           RESPONSIVE
        ============================================ */
@media (max-width: 991px) {
    .insights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .insights-rail-wrapper {
        display: none;
    }

    .insights-mobile-rail {
        display: flex;
        gap: 1.25rem;
        overflow-x: auto;
        padding: 10px 1.5rem 30px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .insights-mobile-rail::-webkit-scrollbar {
        display: none;
    }

    .insights-mobile-rail .insight-card {
        flex: 0 0 320px; /* Consistent size for marquee */
        width: 320px;
    }

    .insights-mobile-rail {
        display: flex;
    }

    .insights-dots {
        display: flex;
    }
}

@media (max-width: 575px) {
    #insights {
        padding: 72px 0 80px;
    }

    .insights-header h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
           DESIGN TOKENS (mirrored from Noventra site)
        ============================================ */
:root {
    --green-900: #003a00;
    --green-800: #005200;
    --green-700: #006400;
    --green-600: #1a7d1a;
    --green-500: #2e9e2e;
    --green-400: #4ab54a;
    --green-100: #e6f5e6;
    --green-50: #f2faf2;
    --gold: #b8943a;
    --ink: #141414;
    --ink-mid: #3a3a3a;
    --ink-muted: #6b6b6b;
    --surface: #fafaf8;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --border-mid: rgba(0, 0, 0, 0.14);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--ink-mid);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--ink);
}

p {
    color: var(--ink-muted);
}

a {
    text-decoration: none;
    transition: color 0.25s;
}

/* ============================================
           QUICK RESOURCES SECTION
        ============================================ */
#quick-resources {
    padding: 90px 0 100px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

/* Cross-hatch texture */
#quick-resources::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006400' fill-opacity='0.022'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

#quick-resources .container {
    position: relative;
    z-index: 1;
}

/* ——— Section Header ——— */
.qr-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.qr-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 1rem;
    justify-content: center;
}

.qr-header .section-label::before,
.qr-header .section-label::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-600);
    border-radius: 2px;
}

.qr-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
    line-height: 1.15;
}

.qr-header p {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ——— Grid ——— */
.qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
}

/* ——— Card ——— */
.qr-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s, border-color 0.3s;
    position: relative;
}

.qr-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-100);
}

/* Bottom green accent line */
.qr-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.qr-card:hover::after {
    transform: scaleX(1);
}

/* ——— Card Header: coloured band with icon ——— */
.qr-card-head {
    position: relative;
    height: 130px;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.5rem;
    overflow: hidden;
}

/* Each card gets its own green-shade band */
.qr-card:nth-child(1) .qr-card-head {
    background: var(--green-900);
}

.qr-card:nth-child(2) .qr-card-head {
    background: var(--green-800);
}

.qr-card:nth-child(3) .qr-card-head {
    background: var(--green-700);
}

.qr-card:nth-child(4) .qr-card-head {
    background: var(--green-600);
}

/* Subtle radial glow inside head */
.qr-card-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 110% 110%, rgba(74, 181, 74, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

/* Large ghost icon behind */
.qr-card-head-bg-icon {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.4s;
}

.qr-card:hover .qr-card-head-bg-icon {
    opacity: 0.12;
    transform: translateY(-54%) scale(1.08) rotate(-6deg);
}

/* Foreground icon badge */
.qr-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}

.qr-card:hover .qr-card-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.06);
}

.qr-card-icon i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ——— Card Body ——— */
.qr-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.qr-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
    line-height: 1.25;
    transition: color 0.25s;
}

.qr-card:hover .qr-card-title {
    color: var(--green-800);
}

.qr-card-tagline {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* ——— Link List ——— */
.qr-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qr-link-list li {
    border-top: 1px solid var(--border);
}

.qr-link-list li:last-child {
    /* no extra bottom border */
}

.qr-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-mid);
    gap: 8px;
    transition: color 0.2s, padding-left 0.2s;
}

.qr-link-list a span {
    flex: 1;
}

.qr-link-list a .qr-arrow {
    opacity: 0;
    font-size: 0.65rem;
    color: var(--green-600);
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.qr-link-list a:hover {
    color: var(--green-700);
    padding-left: 4px;
}

.qr-link-list a:hover .qr-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* ——— Card footer CTA ——— */
.qr-card-foot {
    padding: 0 1.5rem 1.5rem;
}

.qr-card-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-700);
    padding: 0.55rem 1rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 40px;
    transition: background 0.25s, gap 0.2s, color 0.2s;
    width: 100%;
    justify-content: center;
}

.qr-card-all::after {
    content: "→";
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.qr-card-all:hover {
    background: var(--green-100);
    color: var(--green-800);
    gap: 10px;
}

.qr-card-all:hover::after {
    transform: translateX(3px);
}

/* ============================================
           RESPONSIVE
        ============================================ */
@media (max-width: 1199px) {
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 575px) {
    #quick-resources {
        padding: 64px 0 72px;
    }

    .qr-grid {
        grid-template-columns: 1fr;
    }

    .qr-header h2 {
        font-size: 1.7rem;
    }
}

/* ============================================
           QUICK RESOURCES SECTION
        ============================================ */
#quick-resources {
    padding: 90px 0 100px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

/* Cross-hatch texture */
#quick-resources::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006400' fill-opacity='0.022'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

#quick-resources .container {
    position: relative;
    z-index: 1;
}

/* ——— Section Header ——— */
.qr-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.qr-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 1rem;
    justify-content: center;
}

.qr-header .section-label::before,
.qr-header .section-label::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-600);
    border-radius: 2px;
}

.qr-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
    line-height: 1.15;
}

.qr-header p {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ——— Grid ——— */
.qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
}

/* ——— Card ——— */
.qr-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s, border-color 0.3s;
    position: relative;
}

.qr-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-100);
}

/* Bottom green accent line */
.qr-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.qr-card:hover::after {
    transform: scaleX(1);
}

/* ——— Card Header: coloured band with icon ——— */
.qr-card-head {
    position: relative;
    height: 140px;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.5rem;
    overflow: hidden;
}

.qr-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.qr-card-img.img-fit {
    object-fit: contain;
    padding: 1.25rem;
}

.qr-card:hover .qr-card-img {
    transform: scale(1.1);
}

/* Overlay for text legibility on images */
.qr-card-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}

.qr-card:has(.qr-card-img) .qr-card-head::after {
    opacity: 1;
}

.qr-card-head>*:not(.qr-card-img) {
    position: relative;
    z-index: 2;
}

/* Each card gets its own green-shade band */
.qr-card:nth-child(1) .qr-card-head {
    background: var(--green-900);
}

.qr-card:nth-child(2) .qr-card-head {
    background: var(--green-800);
}

.qr-card:nth-child(3) .qr-card-head {
    background: var(--green-700);
}

.qr-card:nth-child(4) .qr-card-head {
    background: var(--green-600);
}

/* Light theme override for specific cards */
.qr-card.qr-card-light .qr-card-head {
    background: var(--white) !important;
}

.qr-card.qr-card-light .qr-card-head::after {
    display: none;
}

.qr-card.qr-card-light .qr-card-icon {
    background: var(--green-50);
    border-color: var(--green-100);
}

.qr-card.qr-card-light .qr-card-icon i {
    color: var(--green-700);
}

.qr-card.qr-card-light .qr-card-head-bg-icon {
    color: rgba(0, 100, 0, 0.04);
}

/* Subtle radial glow inside head */
.qr-card-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 110% 110%, rgba(74, 181, 74, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

/* Large ghost icon behind */
.qr-card-head-bg-icon {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.4s;
}

.qr-card:hover .qr-card-head-bg-icon {
    opacity: 0.12;
    transform: translateY(-54%) scale(1.08) rotate(-6deg);
}

/* Foreground icon badge */
.qr-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}

.qr-card:hover .qr-card-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.06);
}

.qr-card-icon i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ——— Card Body ——— */
.qr-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.qr-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
    line-height: 1.25;
    transition: color 0.25s;
}

.qr-card:hover .qr-card-title {
    color: var(--green-800);
}

.qr-card-tagline {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* ——— Link List ——— */
.qr-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qr-link-list li {
    border-top: 1px solid var(--border);
}

.qr-link-list li:last-child {
    /* no extra bottom border */
}

.qr-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-mid);
    gap: 8px;
    transition: color 0.2s, padding-left 0.2s;
}

.qr-link-list a span {
    flex: 1;
}

.qr-link-list a .qr-arrow {
    opacity: 0;
    font-size: 0.65rem;
    color: var(--green-600);
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.qr-link-list a:hover {
    color: var(--green-700);
    padding-left: 4px;
}

.qr-link-list a:hover .qr-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* ——— Card footer CTA ——— */
.qr-card-foot {
    padding: 0 1.5rem 1.5rem;
}

.qr-card-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-700);
    padding: 0.55rem 1rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 40px;
    transition: background 0.25s, gap 0.2s, color 0.2s;
    width: 100%;
    justify-content: center;
}

.qr-card-all::after {
    content: "→";
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.qr-card-all:hover {
    background: var(--green-100);
    color: var(--green-800);
    gap: 10px;
}

.qr-card-all:hover::after {
    transform: translateX(3px);
}

/* ============================================
           RESPONSIVE
        ============================================ */
@media (max-width: 1199px) {
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 575px) {
    #quick-resources {
        padding: 64px 0 72px;
    }

    .qr-grid {
        grid-template-columns: 1fr;
    }

    .qr-header h2 {
        font-size: 1.7rem;
    }
}

/* ============================================
   SECTION UTILITY
============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.section-label::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-600);
    border-radius: 2px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.section-heading span {
    color: var(--green-700);
}

.section-sub {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink-muted);
    max-width: 560px;
    line-height: 1.8;
}

/* Rule divider */
.rule-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 2rem 0;
}

.rule-divider::before,
.rule-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.rule-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-600);
}

/* ============================================
   ABOUT SECTION
============================================ */
#about {
    padding: 100px 0;
    background: var(--white);
}

.about-text-col {
    padding-right: 3rem;
}

.about-text-col h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.about-text-col h3 strong {
    color: var(--green-700);
    font-style: italic;
}

.about-text-col p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--ink-muted);
    margin-bottom: 1rem;
}

.about-text-col .tagline {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--green-700);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-700);
    color: var(--white) !important;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.85rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-cta:hover {
    background: var(--green-800);
    box-shadow: 0 10px 24px rgba(0, 58, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-cta:active {
    transform: scale(0.96) !important;
}

.about-cta::after {
    content: "→";
    transition: transform 0.3s;
}

.about-cta:hover::after {
    transform: translateX(4px);
}

/* Info cards */
.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--green-600);
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-mid);
}

.info-card h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    position: relative;
    padding-left: 1.4rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.info-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
}

/* ============================================
   SERVICES SECTION
============================================ */
#services {
    padding: 100px 0;
    background: var(--surface);
    position: relative;
}

#services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006400' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-100);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--green-700);
    border-color: var(--green-700);
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--green-700);
    transition: color 0.3s;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h5 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.9rem;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--ink-muted);
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-700);
    letter-spacing: 0.03em;
    transition: gap 0.2s;
}

.service-link::after {
    content: "→";
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.service-card:hover .service-link {
    gap: 10px;
}

.service-card:hover .service-link::after {
    transform: translateX(2px);
}

/* ============================================
   WHY NOVENTRA
============================================ */
.why-noventra {
    padding: 100px 0;
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}

.why-noventra::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(46, 158, 46, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 100, 0, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.why-noventra .section-label {
    color: var(--green-400);
}

.why-noventra .section-label::before {
    background: var(--green-400);
}

.why-noventra .section-heading {
    color: var(--white);
}

.why-noventra .section-heading span {
    color: var(--green-400);
}

.why-noventra .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.why-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: all 0.35s;
    position: relative;
}

.why-box::before {
    content: attr(data-num);
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.why-box h5 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 0.75rem;
}

.why-box p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   HOW TO FILE SECTION
============================================ */
.how-to-file {
    padding: 120px 0;
    background: var(--surface);
    overflow: hidden;
    position: relative;
}

/* Background texture for the whole section */
.how-to-file::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
}

.how-to-file .container {
    position: relative;
    z-index: 1;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
    background: transparent;
    border: none;
    box-shadow: none;

    .step-card {
        flex: 0 1 calc(33.333% - 2rem);
        min-width: 260px;
        padding: 2rem 1.5rem;
        text-align: center;
        position: relative;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: var(--radius-xl);
        transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s, box-shadow 0.3s;
        box-shadow:
            0 10px 30px -5px rgba(0, 40, 0, 0.05),
            0 4px 12px -2px rgba(0, 0, 0, 0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        transform-style: preserve-3d;
        overflow: hidden;
        cursor: default;
    }

    /* Spotlight Glow Layer */
    .step-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
                rgba(26, 125, 26, 0.08),
                transparent 40%);
        z-index: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

    /* Texture Layer */
    .step-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.03;
        border-radius: var(--radius-xl);
        pointer-events: none;
        z-index: -1;
    }

    .step-card:hover {
        background: rgba(255, 255, 255, 0.95);
        box-shadow:
            0 40px 80px -15px rgba(0, 58, 0, 0.15),
            0 20px 40px -20px rgba(0, 0, 0, 0.2);
        border-color: rgba(26, 125, 26, 0.2);
    }

    /* Animated Border Glow (Reactbits Style) */
    .step-card .card-border-glow {
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 2px;
        background: radial-gradient(300px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
                rgba(26, 125, 26, 0.4),
                transparent 40%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 3;
    }

    .step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: var(--green-50);
        color: var(--green-700);
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: 800;
        border-radius: 50%;
        margin-bottom: 1.5rem;
        border: 1px solid var(--green-100);
        transition: all 0.4s ease;
        transform: translateZ(30px);
        /* 3D Pop */
        box-shadow: 0 4px 10px rgba(0, 40, 0, 0.1);
    }

    .step-card:hover .step-num {
        background: var(--green-700);
        color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 100, 0, 0.25);
    }

    .step-icon {
        width: 64px;
        height: 64px;
        background: var(--green-700);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        color: var(--white);
        box-shadow: 0 12px 24px rgba(0, 58, 0, 0.15);
        transform: translateZ(50px);
        /* 3D Pop higher */
    }

    .step-card:hover .step-icon {
        transform: translateZ(70px) rotate(12deg) scale(1.1);
        background: var(--green-600);
        box-shadow: 0 20px 40px rgba(0, 58, 0, 0.3);
    }

    .step-icon i {
        font-size: 1.6rem;
    }

    .step-card h5 {
        font-family: var(--font-display);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 0.75rem;
        line-height: 1.3;
        transform: translateZ(25px);
    }

    .step-card p {
        font-size: 0.88rem;
        line-height: 1.6;
        color: var(--ink-muted);
        margin: 0;
        transform: translateZ(15px);
    }
}

/* Centering the 2nd row (3-2 layout) */
@media (min-width: 1200px) {
    .step-card:nth-child(4) {
        margin-left: 0;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .step-card {
        flex: 0 1 calc(50% - 2rem);
    }
}

@media (max-width: 991px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 450px;
        min-width: unset;
    }
}

@media (max-width: 991px) {
    .steps-container {
        flex-direction: column;
    }

    .step-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .step-card:last-child {
        border-bottom: none;
    }
}

/* ============================================
           FILING SERVICES SECTION
        ============================================ */
#filing-services {
    padding: 100px 0 110px;
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}

/* Atmospheric radial glows */
#filing-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(46, 158, 46, 0.13) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(0, 100, 0, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(74, 181, 74, 0.07) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle dot-grid texture */
#filing-services::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(74, 181, 74, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

#filing-services .container {
    position: relative;
    z-index: 1;
}

/* ——— Section Header ——— */
.fs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.fs-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 1rem;
    justify-content: center;
}

.fs-header .section-label::before,
.fs-header .section-label::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--green-400);
    border-radius: 2px;
}

.fs-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.fs-header h2 em {
    font-style: italic;
    color: var(--green-400);
}

.fs-header p {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ——— Cards Grid ——— */
.fs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* ——— Individual Card ——— */
.fs-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    cursor: default;
    overflow: hidden;

    /* Glass surface on dark bg */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: border-color 0.3s, box-shadow 0.35s;
    transform-style: preserve-3d;
    will-change: transform;
}

/* ReactBits Spotlight glow layer */
.fs-card-spotlight {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(500px circle at var(--mx, -300px) var(--my, -300px),
            rgba(74, 181, 74, 0.10),
            transparent 40%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s;
    opacity: 0;
}

.fs-card:hover .fs-card-spotlight {
    opacity: 1;
}

/* ReactBits Animated border glow */
.fs-card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(280px circle at var(--mx, -300px) var(--my, -300px),
            rgba(74, 181, 74, 0.55),
            transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.fs-card:hover .fs-card-border-glow {
    opacity: 1;
}

/* ——— FEATURED card (middle) — slightly elevated ——— */
.fs-card.is-featured {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(74, 181, 74, 0.25);
    box-shadow:
        0 0 0 1px rgba(74, 181, 74, 0.15),
        0 32px 64px -16px rgba(0, 20, 0, 0.5);
}

/* ——— Card Badge ——— */
.fs-badge {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 40px;
    z-index: 2;
}

.fs-badge.badge-popular {
    background: rgba(74, 181, 74, 0.15);
    color: var(--green-400);
    border: 1px solid rgba(74, 181, 74, 0.3);
}

.fs-badge.badge-enterprise {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.fs-badge.badge-quick {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ——— Card inner content ——— */
.fs-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Icon */
.fs-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.fs-card:hover .fs-icon-wrap {
    transform: translateY(-4px) scale(1.06);
}

.fs-icon-wrap.icon-individual {
    background: linear-gradient(135deg, rgba(74, 181, 74, 0.2), rgba(46, 158, 46, 0.1));
    border: 1px solid rgba(74, 181, 74, 0.25);
}

.fs-icon-wrap.icon-business {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(138, 110, 40, 0.1));
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.fs-icon-wrap.icon-nil {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fs-icon-wrap i {
    font-size: 1.3rem;
}

.icon-individual i {
    color: var(--green-400);
}

.icon-business i {
    color: var(--gold);
}

.icon-nil i {
    color: rgba(255, 255, 255, 0.55);
}

/* Price */
.fs-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 0.3rem;
}

.fs-currency {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

.fs-amount {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.fs-card.is-featured .fs-amount {
    color: var(--green-400);
}

.fs-per {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Plan name */
.fs-plan-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

/* One-line tagline */
.fs-plan-tagline {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

/* Divider */
.fs-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 1.5rem;
}

.fs-card.is-featured .fs-divider {
    background: rgba(74, 181, 74, 0.15);
}

/* Feature list */
.fs-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}

.fs-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
    transition: color 0.2s;
}

.fs-features li:last-child {
    border-bottom: none;
}

.fs-card:hover .fs-features li {
    color: rgba(255, 255, 255, 0.75);
}

.fs-features li .fs-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    font-size: 0.55rem;
}

.icon-individual~.fs-card-inner .fs-check,
.is-nil .fs-check {
    /* handled per card */
}

/* Assign check colours per card type */
.fs-card:nth-child(1) .fs-check {
    background: rgba(74, 181, 74, 0.15);
    color: var(--green-400);
    border: 1px solid rgba(74, 181, 74, 0.25);
}

.fs-card:nth-child(2) .fs-check {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.fs-card:nth-child(3) .fs-check {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* CTA Button */
.fs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition:
        transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s,
        background 0.3s;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    margin-top: auto;
}

/* Ripple sheen on hover */
.fs-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--bx, 50%) var(--by, 50%),
            rgba(255, 255, 255, 0.18) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.fs-btn:hover::after {
    opacity: 1;
}

.fs-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    font-size: 0.6rem;
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.75;
}

.fs-btn:hover .fs-btn-arrow {
    transform: translateX(3px);
    opacity: 1;
}

.fs-btn:active {
    transform: scale(0.97) !important;
}

/* Card 1 — green filled */
.fs-card:nth-child(1) .fs-btn {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 8px 24px -6px rgba(0, 58, 0, 0.45);
}

.fs-card:nth-child(1) .fs-btn:hover {
    background: var(--green-600);
    box-shadow: 0 16px 40px -8px rgba(0, 58, 0, 0.55);
    transform: translateY(-2px);
}

/* Card 2 — gold filled (featured) */
.fs-card:nth-child(2) .fs-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #a87b20 100%);
    color: var(--white);
    box-shadow: 0 8px 24px -6px rgba(138, 110, 40, 0.45);
}

.fs-card:nth-child(2) .fs-btn:hover {
    box-shadow: 0 16px 40px -8px rgba(138, 110, 40, 0.55);
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* Card 3 — ghost/outline */
.fs-card:nth-child(3) .fs-btn {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.fs-card:nth-child(3) .fs-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

/* ——— Bottom note ——— */
.fs-footer-note {
    text-align: center;
    margin-top: 2.75rem;
}

.fs-footer-note p {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.fs-footer-note a {
    color: var(--green-400);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.fs-footer-note a:hover {
    border-color: var(--green-400);
}

/* Stagger entrance animation */
@keyframes fs-rise {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fs-card {
    opacity: 0;
}

.fs-card.animated {
    animation: fs-rise 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.fs-card:nth-child(1).animated {
    animation-delay: 0.05s;
}

.fs-card:nth-child(2).animated {
    animation-delay: 0.18s;
}

.fs-card:nth-child(3).animated {
    animation-delay: 0.31s;
}

/* ============================================
           RESPONSIVE
        ============================================ */
@media (max-width: 991px) {
    .fs-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .fs-card.is-featured {
        order: -1;
    }
}

@media (max-width: 575px) {
    #filing-services {
        padding: 72px 0 80px;
    }

    .fs-header h2 {
        font-size: 1.9rem;
    }
}

/* ============================================
   CONTACT SECTION
============================================ */
#contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form-panel {
    padding: 3rem;
    background: var(--white);
}

.contact-form-panel h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.contact-form-panel .sub {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-bottom: 0.4rem;
}

.form-control {
    font-family: var(--font-sans);
    font-size: 0.93rem;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--surface);
}

.form-control:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
    background: var(--white);
    outline: none;
}

.btn-submit {
    background: var(--green-700);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 1.1rem 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow:
        0 8px 20px -4px rgba(0, 40, 0, 0.2),
        0 4px 8px -2px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.btn-submit:hover {
    background: var(--green-800);
    /* Darker for better contrast with white text */
    box-shadow:
        0 20px 40px -12px rgba(0, 58, 0, 0.3),
        0 12px 24px -18px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-submit:active {
    transform: scale(0.96) !important;
}

/* Shiny Spotlight Effect for all magnetic buttons */
.magnetic-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(150px circle at var(--btn-mouse-x, -200px) var(--btn-mouse-y, -200px),
            rgba(255, 255, 255, 0.15),
            transparent 80%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.magnetic-btn:hover::before {
    opacity: 1;
}

.contact-map-panel {
    min-height: 560px;
}

.contact-map-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 560px;
    display: block;
}

/* Info boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.info-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-100);
}

.info-box-icon {
    width: 48px;
    height: 48px;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.info-box-icon i {
    font-size: 1.3rem;
    color: var(--green-700);
}

.info-box h4 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 0.75rem;
}

.info-box p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--ink-muted);
    margin: 0;
}

.info-box a {
    color: var(--green-700);
    font-weight: 500;
}

.info-box a:hover {
    color: var(--green-500);
}

/* Form message */
.form-message {
    margin-top: 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
}

.form-message.success {
    background: var(--green-50);
    color: var(--green-700);
    border: 1px solid var(--green-100);
}

.form-message.error {
    background: #fdeaea;
    color: #a94442;
    border: 1px solid #f5c6c6;
}

/* ============================================
   BRAND STRIP
============================================ */
.brand-strip {
    background: var(--green-50);
    border-top: 1px solid var(--green-100);
    border-bottom: 1px solid var(--green-100);
    padding: 1.25rem;
    text-align: center;
}

.brand-strip p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--green-700);
    margin: 0;
}

.brand-strip i {
    margin-right: 0.5rem;
    color: var(--green-500);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 4.5rem 0 2.5rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400), var(--green-700));
}

.footer h5 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--green-400);
}

.footer .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.6rem;
}

.footer .contact-info i {
    color: var(--green-400);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer .contact-info a {
    color: rgba(255, 255, 255, 0.55);
}

.footer .contact-info a:hover {
    color: var(--green-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* ============================================
   BACK TO TOP
============================================ */
#back-top-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    display: none;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--green-700);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.back-to-top-btn:hover {
    background: var(--green-600);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-text-col {
        padding-right: 0;
        margin-bottom: 2.5rem;
    }

    #noventra-slider .carousel-caption {
        text-align: center;
    }

    #noventra-slider p {
        max-width: 100%;
    }

    .carousel-indicators {
        padding-left: 0;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 2rem 1.5rem;
    }

    #noventra-slider .carousel-caption {
        text-align: center;
        padding: 0 1rem;
    }

    .carousel-control-prev {
        left: 0.75rem;
    }

    .carousel-control-next {
        right: 0.75rem;
    }

    .footer .row {
        flex-direction: column;
    }

    .footer [class*="col-"] {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .logo-dark {
        max-height: 52px;
    }
}

@supports (height: 100dvh) {

    #noventra-slider,
    #noventra-slider .carousel-item {
        height: 100dvh;
        min-height: 100dvh;
    }
}

/* ============================================
   PRELOADER
============================================ */
.preloader {
    position: fixed !important;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    background: var(--white);
    color-scheme: only light;
    forced-color-adjust: none !important;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo {
    width: 100px;
    animation: pulse 1.5s infinite;
    filter: none !important;
}

.preloader-bar {
    width: 80px;
    height: 2px;
    background: var(--green-100);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::after {
    content: "";
    display: block;
    width: 40%;
    height: 100%;
    background: var(--green-600);
    animation: bar-slide 1.2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes bar-slide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

.custom-navbar .nav-btn {
    display: inline-flex;
    align-items: center;
    background: var(--green-600);
    color: var(--white) !important;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.custom-navbar .nav-btn:hover {
    background: var(--green-500);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.2);
}

#mobileOffcanvas .nav-btn {
    display: inline-block;
    background: var(--green-600);
    color: var(--white) !important;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-weight: 600;
}

/* ============================================
   FILING SERVICE MODALS
============================================ */
.filing-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}

/* ── Header ── */
.filing-modal-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 32px 22px;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
    position: relative;
}

.filing-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    flex-shrink: 0;
}

.filing-modal-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 4px;
}

.filing-modal-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.filing-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.filing-modal-close:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: rotate(90deg);
}

/* ── Body ── */
.filing-modal-body {
    padding: 28px 32px 8px;
    background: #fff;
}

.filing-modal-lead {
    font-family: var(--font-sans);
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--ink-mid);
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.filing-modal-lead strong {
    color: var(--green-700);
}

/* ── Two-column grid ── */
.filing-modal-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.filing-modal-sub {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-100);
}

.filing-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filing-modal-list li {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--ink-muted);
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.filing-modal-list li:last-child {
    border-bottom: none;
}

.filing-modal-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--green-500);
    font-size: 0.7rem;
}

/* ── Callout ── */
.filing-modal-callout {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-left: 3px solid var(--green-600);
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-size: 0.87rem;
    line-height: 1.72;
    color: var(--ink-mid);
}

.filing-modal-callout i {
    color: var(--green-600);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Footer ── */
.filing-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 32px 28px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.filing-modal-btn-outline {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: transparent;
    border: 1.5px solid var(--border-mid);
    border-radius: 8px;
    padding: 10px 22px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filing-modal-btn-outline:hover {
    border-color: var(--green-600);
    color: var(--green-700);
}

.filing-modal-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
    border-radius: 8px;
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 100, 0, 0.22);
}

.filing-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 100, 0, 0.3);
    color: #fff !important;
}

.filing-modal-btn-primary i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.filing-modal-btn-primary:hover i {
    transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .filing-modal-header { padding: 22px 20px 18px; gap: 14px; }
    .filing-modal-body { padding: 20px 20px 8px; }
    .filing-modal-footer { padding: 16px 20px 22px; }
    .filing-modal-cols { grid-template-columns: 1fr; gap: 16px; }
    .filing-modal-title { font-size: 1.15rem; }
}