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

:root {
    --teal-900: #0d2626;
    --teal-800: #133939;
    --teal-700: #1a4d4d;
    --teal-600: #2c7e7e;
    --teal-500: #3a9b9b;
    --teal-400: #4db8b8;
    --teal-200: #99cccc;
    --teal-100: #cce6e6;
    --teal-50: #0f2a2a;
    --gold: #d4af37;
    --gold-light: #e5c971;
    --white: #ffffff;
    /* DARK THEME OVERRIDES */
    --gray-50: #0e1414;
    --gray-100: #121a1a;
    --gray-200: #1c2626;
    --gray-300: #243232;
    --gray-500: #5a7a7a;
    --gray-600: #8aabab;
    --gray-700: #b0cccc;
    --gray-800: #d0e6e6;
    --gray-900: #eaf4f4;
    --bg-main: #0a1212;
    --bg-card: #111e1e;
    --bg-card2: #152020;
    --border: #1e3030;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-body: "Jost", sans-serif;
    --font-accent: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--bg-main);
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    background: rgba(8, 14, 14, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition:
        height 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

nav.scrolled {
    height: 64px;
    background: rgba(8, 14, 14, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(58, 155, 155, 0.12);
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal-800);
    border: 1.5px solid rgba(58, 155, 155, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: border-color 0.2s;
}

.nav-logo:hover .nav-logo-badge {
    border-color: rgba(212, 175, 55, 0.5);
}

.nav-logo-badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8f4f4;
    letter-spacing: 0.01em;
    line-height: 1;
}

.nav-logo-text span {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(153, 204, 204, 0.55);
    margin-top: 3px;
}

/* ── Desktop Links ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0 auto;
    /* centers links between logo and CTA */
    padding: 0 2rem;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(176, 204, 204, 0.7);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    position: relative;
    transition:
        color 0.2s ease,
        background 0.2s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 1.5px;
    background: var(--teal-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: #e8f4f4;
    background: rgba(58, 155, 155, 0.08);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--teal-300);
}

.nav-links a.active::after {
    transform: scaleX(1);
}

/* ── CTA Button ── */
.nav-cta {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--teal-700);
    color: #fff;
    border: 1px solid rgba(58, 155, 155, 0.4);
    padding: 9px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--teal-600);
    border-color: var(--teal-400);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 77, 77, 0.4);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 9px;
    width: 40px;
    height: 40px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(58, 155, 155, 0.1);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(176, 204, 204, 0.8);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animate to X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(8, 14, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(58, 155, 155, 0.12);
    z-index: 98;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    max-height: 600px;
}

.mobile-menu-inner {
    padding: 1.25rem 5% 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu a {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(176, 204, 204, 0.75);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        color 0.2s,
        padding-left 0.2s;
}

.mobile-menu a::after {
    content: "→";
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    color: #e8f4f4;
    padding-left: 6px;
}

.mobile-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(58, 155, 155, 0.15);
}

.mobile-menu-cta a {
    display: block !important;
    text-align: center;
    background: var(--teal-700) !important;
    color: #fff !important;
    padding: 13px !important;
    border-radius: 6px;
    border: none !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.14em !important;
}

.mobile-menu-cta a:hover {
    background: var(--teal-600) !important;
    padding-left: 13px !important;
}

.mobile-menu-cta a::after {
    display: none !important;
}

/* ── Breakpoints ── */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0;
        padding: 0 1rem;
    }

    .nav-links a {
        padding: 6px 9px;
        font-size: 0.67rem;
    }
}

@media (max-width: 860px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav.scrolled {
        height: 64px;
    }
}

@media (max-width: 860px) {
    .mobile-menu {
        top: 80px;
    }

    nav.scrolled ~ .mobile-menu {
        top: 64px;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/images/bg-1.jpg") center/cover no-repeat fixed;
    z-index: 0;
    animation: heroReveal 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 35%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        linear-gradient(rgba(13, 38, 38, 0.55), rgba(13, 38, 38, 0.85));
    z-index: 1;
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: scale(1.08);
    }

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

.hero-light {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.2),
        transparent 70%
    );
    filter: blur(80px);
    animation: floatLight 8s ease-in-out infinite alternate;
}

@keyframes floatLight {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(40px);
    }
}

.hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-photo-collage {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 480px;
    opacity: 0.15;
}

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

.hero-particles i {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.hero-particles i:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; width: 3px; height: 3px; }
.hero-particles i:nth-child(2)  { left: 20%; top: 60%; animation-delay: 0.8s; animation-duration: 5s; background: var(--teal-400); width: 8px; height: 8px; }
.hero-particles i:nth-child(3)  { left: 35%; top: 15%; animation-delay: 1.6s; animation-duration: 8s; width: 5px; height: 5px; }
.hero-particles i:nth-child(4)  { left: 50%; top: 70%; animation-delay: 0.4s; animation-duration: 6s; background: var(--teal-400); width: 10px; height: 10px; }
.hero-particles i:nth-child(5)  { left: 65%; top: 25%; animation-delay: 2s; animation-duration: 5.5s; width: 3px; height: 3px; }
.hero-particles i:nth-child(6)  { left: 75%; top: 55%; animation-delay: 1.2s; animation-duration: 7.5s; width: 7px; height: 7px; }
.hero-particles i:nth-child(7)  { left: 85%; top: 30%; animation-delay: 0.6s; animation-duration: 6.5s; background: var(--teal-400); width: 3px; height: 3px; }
.hero-particles i:nth-child(8)  { left: 15%; top: 75%; animation-delay: 2.4s; animation-duration: 4.5s; width: 9px; height: 9px; }
.hero-particles i:nth-child(9)  { left: 45%; top: 40%; animation-delay: 1s; animation-duration: 9s; width: 5px; height: 5px; background: var(--teal-400); }
.hero-particles i:nth-child(10) { left: 90%; top: 10%; animation-delay: 1.8s; animation-duration: 6s; width: 3px; height: 3px; }
.hero-particles i:nth-child(11) { left: 5%; top: 50%; animation-delay: 0.3s; animation-duration: 8s; width: 6px; height: 6px; background: var(--teal-400); }
.hero-particles i:nth-child(12) { left: 30%; top: 80%; animation-delay: 1.5s; animation-duration: 5s; width: 11px; height: 11px; }
.hero-particles i:nth-child(13) { left: 55%; top: 5%; animation-delay: 2.2s; animation-duration: 7s; width: 4px; height: 4px; }
.hero-particles i:nth-child(14) { left: 70%; top: 45%; animation-delay: 0.7s; animation-duration: 6.5s; width: 4px; height: 4px; background: var(--teal-400); }
.hero-particles i:nth-child(15) { left: 40%; top: 90%; animation-delay: 1.9s; animation-duration: 5.5s; width: 8px; height: 8px; }
.hero-particles i:nth-child(16) { left: 80%; top: 75%; animation-delay: 0.1s; animation-duration: 7.5s; width: 5px; height: 5px; }
.hero-particles i:nth-child(17) { left: 95%; top: 35%; animation-delay: 2.6s; animation-duration: 4.5s; width: 3px; height: 3px; background: var(--teal-400); }
.hero-particles i:nth-child(18) { left: 60%; top: 85%; animation-delay: 1.3s; animation-duration: 8.5s; width: 7px; height: 7px; }
.hero-particles i:nth-child(19) { left: 25%; top: 10%; animation-delay: 0.5s; animation-duration: 6s; width: 6px; height: 6px; background: var(--teal-400); }
.hero-particles i:nth-child(20) { left: 50%; top: 55%; animation-delay: 2.8s; animation-duration: 5s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    20%  { opacity: 0.8; transform: translateY(-30px) scale(1); }
    80%  { opacity: 0.6; transform: translateY(-60px) scale(0.8); }
    100% { opacity: 0; transform: translateY(-100px) scale(0.3); }
}

.hero-photo-collage div {
    border-radius: 8px;
    overflow: hidden;
    background: var(--teal-600);
}

.hero-photo-collage div:nth-child(1) {
    height: 280px;
}

.hero-photo-collage div:nth-child(2) {
    height: 200px;
    margin-top: 80px;
}

.hero-photo-collage div:nth-child(3) {
    height: 200px;
}

.hero-photo-collage div:nth-child(4) {
    height: 280px;
    margin-top: -80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 760px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInScale 0.6s ease forwards;
    animation-delay: 0.1s;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

h1.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: heroWordReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-word-last {
    font-style: italic;
    color: var(--gold-light);
    animation-delay: 0.2s;
}

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

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    font-style: italic;
    color: var(--teal-200);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    min-height: 1.8em;
}

.hero-tagline::after {
    content: '|';
    display: inline-block;
    color: var(--teal-400);
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
    font-weight: 300;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-sub {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInScale 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;

    opacity: 0;
    transform: translateY(20px);
    animation: fadeInScale 1s ease forwards;
    animation-delay: 0.8s;
}

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

.btn-primary {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--teal-900);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.4)
    );
}

/* ─── STATS ─── */
#stats {
    background: linear-gradient(180deg, var(--bg-main) 0%, #0a1a1a 100%);
    padding: 5rem 2%;
}

/* #stats::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(ellipse, rgba(26, 77, 77, 0.25) 0%, transparent 70%);
        pointer-events: none;
    } */

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 2.5rem 1.5rem;
    position: relative;
    transition: all 0.35s ease;
}

/* Vertical dividers */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent
    );
}

.stat-item:hover {
    background: rgba(26, 77, 77, 0.15);
    border-radius: 8px;
}

/* Icon container */
.stat-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0e2020, #172e2e);
    border: 1px solid rgba(212, 175, 55, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    color: var(--gold);
    position: relative;
    transition: all 0.4s ease;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Glowing ring on hover */
.stat-icon::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(212, 175, 55, 0.15) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: spinRing 3s linear infinite;
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-item:hover .stat-icon::before {
    opacity: 1;
}

.stat-icon::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #0a1212;
    inset: -1px;
    z-index: -1;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.12);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

/* Number */
.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    display: block;
    letter-spacing: -0.02em;
    transition: text-shadow 0.3s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Label */
.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(153, 204, 204, 0.7);
    margin-top: 0.5rem;
    font-family: var(--font-accent);
    font-weight: 500;
    display: block;
}

@media (max-width: 700px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        overflow: hidden;
    }

    .stat-item {
        background: var(--bg-main);
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

/* ─── SECTION BASE ─── */
.section {
    padding: 3.5rem 2%;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent
    );
}

.section-alt {
    background: var(--bg-card);
}

.section-dark {
    background: var(--teal-900);
    color: var(--white);
}

.section-gold {
    background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
    color: var(--white);
}

.section-label {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.section-label::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: var(--teal-500);
}

.section-label.light {
    color: var(--gold);
}

.section-label.light::before {
    background: var(--gold);
}

h2.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

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

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

h2.section-title.light em {
    color: var(--gold-light);
}

.section-body {
    max-width: 1275px;
    margin: 0 auto;
}

/* ─── ABOUT ─── */

#about {
    /* background: var(--bg-main); */
    position: relative;
    overflow: hidden;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.4),
        transparent
    );
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── Founders Grid ── */
.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

/* Decorative gold accent behind the grid */
.founders::before {
    content: "";
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
}

.founders::after {
    content: "";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.08),
        transparent 70%
    );
    pointer-events: none;
}

/* Offset second card for staggered depth */
.founder-card:nth-child(2) {
    margin-top: 2.5rem;
}

.founder-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
    cursor: pointer;
    z-index: 1;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.25);
}

.founder-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Gradient overlay — stronger at bottom */
.founder-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 13, 13, 0.92) 0%,
        rgba(5, 13, 13, 0.3) 45%,
        transparent 70%
    );
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Gold top border accent line */
.founder-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.founder-card:hover::after {
    opacity: 1;
}

/* Placeholder shown when no image */
.founder-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.25);
    z-index: 0;
}

.founder-placeholder .icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.founder-placeholder span {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
}

.founder-card.img-loaded .founder-placeholder {
    display: none;
}

/* Name & title overlay */
.founder-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.1rem 1.1rem;
    z-index: 2;
}

.founder-info h4 {
    margin: 0 0 3px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.founder-info span {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.9;
}

/* ── About Text Side ── */
.about-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.about-text .tagline {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--teal-400);
    border-left: 3px solid var(--gold);
    padding-left: 1.2rem;
    margin: 2rem 0;
    line-height: 1.6;
}

.about-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-teal {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--teal-700);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}

.btn-teal:hover {
    background: var(--teal-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 77, 77, 0.35);
}

.btn-teal-outline {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    color: var(--teal-400);
    border: 1.5px solid var(--teal-600);
    padding: 13px 28px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}

.btn-teal-outline:hover {
    background: rgba(58, 155, 155, 0.08);
    border-color: var(--teal-400);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founders {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .founders {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .founder-card:nth-child(2) {
        margin-top: 0;
    }
}

/* ─── PORTFOLIO ─── */
#portfolio {
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

/* ── Header Row ── */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* ── Filter Pills ── */
.portfolio-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px;
}

.filter-btn {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    color: rgba(153, 204, 204, 0.6);
    border: none;
    padding: 7px 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    color: var(--teal-200);
    background: rgba(26, 77, 77, 0.4);
}

.filter-btn.active {
    background: var(--teal-700);
    color: #fff;
    box-shadow: 0 2px 12px rgba(26, 77, 77, 0.5);
}

/* ── Masonry Grid ── */
.portfolio-masonry {
    columns: 3;
    gap: 14px;
}

/* ── Portfolio Item ── */
.portfolio-item {
    break-inside: avoid;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: var(--bg-card);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.portfolio-item.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

/* Image wrapper — controls aspect ratio */
.portfolio-item .photo-wrap {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

/* Varying heights for masonry feel */
.portfolio-item:nth-child(3n + 1) .photo-wrap {
    aspect-ratio: 4/5;
}

.portfolio-item:nth-child(3n + 2) .photo-wrap {
    aspect-ratio: 3/2;
}

.portfolio-item:nth-child(3n) .photo-wrap {
    aspect-ratio: 1/1;
}

.portfolio-item:nth-child(5) .photo-wrap,
.portfolio-item:nth-child(8) .photo-wrap {
    aspect-ratio: 3/4;
}

/* ── Actual image ── */
.portfolio-item .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .photo-wrap img {
    transform: scale(1.07);
}

/* ── Placeholder (shows when no image) ── */
/* .photo-placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
    } */

.photo-placeholder svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.25);
    stroke: currentColor;
}

.photo-placeholder span {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}

/* Hide placeholder until image fails */
.photo-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
    z-index: 0;
}

.photo-placeholder.show {
    display: flex;
}

/* Image sits above placeholder */
.portfolio-item .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .photo-wrap img {
    transform: scale(1.07);
}

/* ── Overlay ── */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 13, 13, 0.95) 0%,
        rgba(5, 13, 13, 0.4) 40%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
    z-index: 2;
}

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

/* Category tag */
.overlay-tag {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
    transform: translateY(6px);
    transition: transform 0.35s ease 0.05s;
}

.portfolio-item:hover .overlay-tag {
    transform: translateY(0);
}

.portfolio-overlay-text h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    transform: translateY(8px);
    transition: transform 0.35s ease 0.08s;
}

.portfolio-item:hover .portfolio-overlay-text h4 {
    transform: translateY(0);
}

/* View icon */
.overlay-view {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
    z-index: 3;
}

.overlay-view svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
}

.portfolio-item:hover .overlay-view {
    opacity: 1;
    transform: scale(1);
}

/* ── CTA ── */
.portfolio-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-filters {
        border-radius: 8px;
        padding: 4px;
    }

    .portfolio-masonry {
        columns: 2;
        gap: 10px;
    }

    .portfolio-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 450px) {
    .portfolio-masonry {
        columns: 1;
    }
}

/* ─── SERVICES ─── */
#services {
    position: relative;
    overflow: hidden;
}

/* #services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    } */

.services-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.services-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.2rem 2rem;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Top glow line on hover */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Bottom sweep bar */
.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-600), var(--gold));
    transition: width 0.5s ease;
}

.service-card:hover {
    border-color: rgba(58, 155, 155, 0.35);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(58, 155, 155, 0.1) inset;
    transform: translateY(-5px);
}

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

.service-card:hover::after {
    width: 100%;
}

/* Icon */
.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(145deg, #0e2020, #172e2e);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--gold);
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(145deg, #122828, #1e3e3e);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(212, 175, 55, 0.1);
}

.service-card:hover .service-icon svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.65rem;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--teal-300);
}

.service-card p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--gray-500);
    font-weight: 300;
    flex: 1;
}

.service-price {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.service-price .from {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.service-price .amount {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.service-price .unit {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.services-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--gray-500);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

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

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── TESTIMONIALS ─── */
#testimonials {
    background: linear-gradient(
        160deg,
        #060f0f 0%,
        var(--teal-900) 50%,
        #060f0f 100%
    );
    position: relative;
    overflow: hidden;
}

/* Decorative quote watermark */
#testimonials::after {
    content: "\201C";
    position: absolute;
    top: -1rem;
    left: 5%;
    font-family: var(--font-serif);
    font-size: 20rem;
    color: rgba(212, 175, 55, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonials-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
    display: flex;
}

@media (min-width: 992px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

/* Subtle corner accents */
.testimonial-card::before,
.testimonial-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: rgba(212, 175, 55, 0.2);
    border-style: solid;
}

.testimonial-card::before {
    top: 16px;
    left: 16px;
    border-width: 1px 0 0 1px;
    border-radius: 4px 0 0 0;
}

.testimonial-card::after {
    bottom: 16px;
    right: 16px;
    border-width: 0 1px 1px 0;
    border-radius: 0 0 4px 0;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Opening quote SVG */
.testimonial-quote-icon {
    display: block;
    width: 36px;
    height: 36px;
    color: rgba(212, 175, 55, 0.35);
    margin: 0 auto 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
    border: 2px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--white);
    letter-spacing: 0.01em;
}

.testimonial-role {
    font-size: 0.75rem;
    color: rgba(153, 204, 204, 0.7);
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* Dots */
.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 2.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

/* Arrows */
.slider-arrows {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.arrow-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--teal-900);
    transform: scale(1.08);
}

/* ─── REVIEWS ─── */
#reviews {
    position: relative;
    overflow: hidden;
    background: var(--bg-main);
}

/* Header row */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Overall rating badge */
.reviews-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem 1.4rem;
}

.rating-score {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.rating-right {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    color: var(--gold);
}

.rating-count {
    font-size: 0.72rem;
    color: var(--gray-500);
    letter-spacing: 0.04em;
}

.rating-source {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: var(--gray-500);
    font-family: var(--font-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 1px;
}

.rating-source svg {
    width: 12px;
    height: 12px;
}

/* Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Card */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Top accent line slides in on hover */
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--teal-600),
        var(--gold),
        var(--teal-600)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    border-color: rgba(58, 155, 155, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

/* Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-800);
    letter-spacing: 0.01em;
}

.review-meta {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-meta svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

/* Stars */
.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.85rem;
}

.review-stars svg {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    color: var(--gold);
}

/* Text */
.review-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--gray-600);
    font-weight: 300;
    font-style: italic;
    flex: 1;
    position: relative;
    padding-left: 1rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: rgba(212, 175, 55, 0.25);
    line-height: 1;
    font-style: normal;
}

/* Badge */
.review-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 1.2rem;
    padding: 4px 11px;
    border-radius: 100px;
    background: rgba(26, 77, 77, 0.3);
    color: var(--teal-300);
    font-size: 0.64rem;
    font-family: var(--font-accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(58, 155, 155, 0.2);
    align-self: flex-start;
}

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

@media (max-width: 580px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─── CTA BANNER ─── */
.cta-banner {
    position: relative;
    padding: 5rem 2%;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Layered radial glows */
/* .cta-banner::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(26, 77, 77, 0.35) 0%, transparent 65%);
        pointer-events: none;
    } */

.cta-banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(
        ellipse,
        rgba(212, 175, 55, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
}

/* Decorative rings */
.cta-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-rings span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.06);
}

.cta-rings span:nth-child(1) {
    width: 300px;
    height: 300px;
}

.cta-rings span:nth-child(2) {
    width: 500px;
    height: 500px;
}

.cta-rings span:nth-child(3) {
    width: 700px;
    height: 700px;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(212, 175, 55, 0.4);
}

.cta-banner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.cta-banner h2 em {
    font-style: italic;
    color: var(--gold-light);
}

.cta-banner p {
    font-size: 1rem;
    color: rgba(153, 204, 204, 0.75);
    margin-bottom: 2.75rem;
    font-weight: 300;
    line-height: 1.7;
}

.cta-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── CTA SEO MOVING STRIP ─── */

.cta-seo-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    opacity: 0.6;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.cta-seo-track {
    display: flex;
    width: max-content;
    animation: ctaScroll 30s linear infinite;
}

.cta-seo-track span {
    white-space: nowrap;
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.7);
    padding-right: 60px;
    letter-spacing: 0.08em;
}

/* Smooth infinite scroll */
@keyframes ctaScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover (premium touch) */
.cta-seo-strip:hover .cta-seo-track {
    animation-play-state: paused;
}

.btn-primary {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--teal-900);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 13px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

/* ─── CONTACT + REVIEW TABBED SECTION ─── */
#contact {
    background: var(--bg-main);
    padding: 7rem 2%;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 77, 77, 0.1), transparent 65%);
    pointer-events: none;
}

/* ── Section Intro ── */
.contact-intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 40px;
}

.contact-intro p {
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 400;
}

/* ── Tab Bar ── */
.contact-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.tab-track {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px;
    position: relative;
    gap: 0;
}

.tab-pill {
    position: absolute;
    top: 5px;
    left: 3px;
    height: calc(100% - 10px);
    border-radius: 100px;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-700));
    /* box-shadow:
            0 2px 12px rgba(26, 77, 77, 0.5),
            0 0 0 1px rgba(58, 155, 155, 0.2) inset; */
    transition:
        transform 0.5s cubic-bezier(0.65, 0, 0.35, 1),
        width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
    pointer-events: none;
}

/* Tab button text/icon transitions */
.tab-btn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(153, 204, 204, 0.5);
    cursor: pointer;
    transition:
        color 0.4s ease,
        transform 0.2s ease;
    white-space: nowrap;
}

.tab-btn:hover:not(.active) {
    color: rgba(153, 204, 204, 0.8);
    transform: scale(1.003);
}

.tab-btn.active {
    color: #fff;
}

.tab-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tab-btn.active svg {
    transform: scale(1.15);
}

/* Section fade-in when panel enters */
@keyframes panelFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.panel-animate {
    animation: panelFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Panels Wrapper — smooth crossfade + slide ── */
.contact-panels-wrap {
    overflow: hidden;
    position: relative;
}

.contact-panels-slider {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.contact-panel {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.45s cubic-bezier(0.65, 0, 0.35, 1),
        transform 0.45s cubic-bezier(0.65, 0, 0.35, 1),
        filter 0.45s ease;
    filter: blur(0px);
}

.contact-panel.leaving {
    opacity: 0;
    transform: scale(0.97) translateY(6px);
    filter: blur(2px);
}

.contact-panel.entering {
    opacity: 0;
    transform: scale(0.97) translateY(10px);
    filter: blur(3px);
}

.contact-panel.entered {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0px);
}

/* ── Layout Grid (shared by both panels) ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

/* ── Left Info Column ── */
.contact-info-col p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: padding-left 0.25s ease;
}

.contact-detail:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-detail:hover {
    padding-left: 4px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(145deg, #0e2020, #172e2e);
    border: 1px solid rgba(58, 155, 155, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-400);
    transition: all 0.25s;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.contact-detail:hover .contact-detail-icon {
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--gold);
}

.contact-detail-text strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 3px;
}

.contact-detail-text span,
.contact-detail-text a {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail-text a:hover {
    color: var(--teal-300);
}

/* Social buttons */
.contact-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(145deg, #0e2020, #172e2e);
    border: 1px solid rgba(58, 155, 155, 0.18);
    color: rgba(153, 204, 204, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
    border-color: transparent;
    color: #fff;
}

.social-btn.whatsapp:hover {
    background: #25d366;
    border-color: transparent;
    color: #fff;
}

.social-btn.youtube:hover {
    background: #ff0000;
    border-color: transparent;
    color: #fff;
}

.social-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray-500);
}

/* ── Form Card (shared) ── */
.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
}

.form-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 400;
    margin-bottom: 15px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-accent);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.45rem;
}

.form-group label svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--bg-main);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(90, 122, 122, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(58, 155, 155, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 100px;
    line-height: 1.6;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233A9B9B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--gray-800);
}

/* Star rating input */
.star-rating {
    display: flex;
    gap: 6px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: 2px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition:
        color 0.15s,
        transform 0.15s;
    display: block;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
    font-family: serif;
    line-height: 1;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--gold);
}

.star-rating label:hover {
    transform: scale(1.2);
}

/* Submit button */
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--teal-700);
    color: var(--white);
    border: 1px solid rgba(58, 155, 155, 0.3);
    border-radius: 8px;
    font-family: var(--font-accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.form-submit svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.25s;
}

.form-submit:hover {
    background: var(--teal-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 77, 77, 0.35);
}

.form-submit:hover svg {
    transform: translateX(4px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success message */
.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    color: #6fcf97;
    font-size: 0.875rem;
}

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

.form-success svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
}

/* Review info panel */
.review-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.review-info-box .rating-big {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.rating-big .score {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.rating-big .stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    display: inline-block;
}

.rating-big .count {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.review-info-box p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.75;
    font-weight: 300;
}

.review-perks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.review-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--gray-600);
}

.review-perk svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal-400);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .contact-form {
        padding: 1.5rem;
    }

    .tab-btn {
        padding: 9px 18px;
        font-size: 0.66rem;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

/* ─── FOOTER ─── */
footer {
    background: #050d0d;
    color: var(--white);
    padding: 3rem 2% 0;
    position: relative;
    overflow: hidden;
}

/* Top gold divider */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent
    );
}

/* Subtle bg glow */
/* footer::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(ellipse, rgba(26, 77, 77, 0.08), transparent 65%);
        pointer-events: none;
    } */

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: end;
    overflow: hidden;
}

/* ── Brand Column ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Logo — stacked: image on top, text below */
.footer-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    pointer-events: none;
    user-select: none;
    text-decoration: none;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

/* Background Image Layer */
/* .footer-grid::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: url('R2\ NG.png') center/contain no-repeat;
        opacity: 0.06;
        filter: grayscale(100%);
        pointer-events: none;
    } */

.footer-logo-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--teal-800);
    border: 2px solid rgba(58, 155, 155, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.footer-logo:hover .footer-logo-badge {
    border-color: rgba(212, 175, 55, 0.35);
}

.footer-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.footer-logo-badge .fallback-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo-name {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-logo-name strong {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: #e8f4f4;
    letter-spacing: 0.01em;
    line-height: 1;
}

.footer-logo-name span {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(153, 204, 204, 0.45);
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    max-width: 400px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(212, 175, 55, 0.6);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer social */
.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(153, 204, 204, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
}

.footer-social-btn:hover {
    background: var(--teal-700);
    border-color: var(--teal-600);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Link Columns ── */
.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

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

.footer-col ul li {
    margin-bottom: 0.175rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
}

.footer-col ul li a::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: var(--teal-400);
    transition: width 0.25s ease;
    flex-shrink: 0;
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 4px;
}

.footer-col ul li a:hover::before {
    width: 12px;
}

/* ── Bottom Bar ── */
.footer-bottom {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.01em;
}

.developed-by {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    margin-top: 4px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.developed-by a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        color 0.2s,
        border-color 0.2s;
}

.developed-by a:hover {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-links .divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 860px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-bottom-links {
        gap: 1.25rem;
    }
}

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    display: inline-block;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 12px;
}

.lightbox-placeholder {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
    text-align: center;
}

.lightbox-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
    font-style: italic;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 201;
}

.lightbox-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: rotate(90deg);
}

/* ─── BACK TO TOP ─── */
.top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal-800);
    border: 1px solid rgba(58, 155, 155, 0.3);
    color: var(--teal-300);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.top-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

.top-btn.visible {
    opacity: 1;
    pointer-events: all;
}

.top-btn:hover {
    background: var(--teal-700);
    border-color: var(--teal-400);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.top-btn:hover svg {
    transform: translateY(-2px);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

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

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

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

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

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 0.8s linear infinite;
}
