/* iChitty Website — Premium Fintech Glassmorphism */
:root {
    --teal: #0D7377;
    --teal-light: #14A3A8;
    --teal-dark: #095456;
    --coral: #E85A4F;
    --coral-light: #FF7A6E;
    --navy: #1B2A4A;
    --navy-light: #2A3F6B;
    --mint: #A8E6CF;
    --mint-soft: #E8F8F0;
    --white: #FFFFFF;
    --gray-50: #F7F9FC;
    --gray-100: #EDF1F7;
    --gray-200: #D8E0EC;
    --gray-600: #5A6478;
    --gray-800: #2D3748;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.22);
    --glass-shadow: 0 8px 32px rgba(27, 42, 74, 0.12);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 24px);
}

body.website-body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ---- Navbar ---- */
.site-navbar {
    height: var(--nav-height);
    background: rgba(27, 42, 74, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s, box-shadow 0.3s;
    padding: 0;
    z-index: 1050;
}

.site-navbar.scrolled {
    background: rgba(27, 42, 74, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.site-brand {
    display: flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
    line-height: 1;
}

.brand-mark {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--coral);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}

.brand-by {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 6px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.site-nav-links .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.site-nav-toggler .navbar-toggler-icon {
    filter: invert(1);
}

.glass-dropdown {
    background: rgba(27, 42, 74, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: var(--glass-shadow);
}

.glass-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
}

.glass-dropdown .dropdown-item:hover {
    background: rgba(13, 115, 119, 0.4);
    color: var(--white);
}

.btn-lang {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
}

.btn-accent {
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 10px;
    padding: 0.45rem 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-accent:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 90, 79, 0.4);
}

.btn-teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-teal:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 115, 119, 0.35);
}

.btn-outline-teal {
    border: 2px solid var(--teal);
    color: var(--teal);
    font-weight: 600;
    border-radius: 10px;
    background: transparent;
    padding: 0.55rem 1.3rem;
}

.btn-outline-teal:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 600;
    border-radius: 10px;
    background: transparent;
    padding: 0.55rem 1.3rem;
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 10px;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    color: var(--white);
}

/* ---- Flash ---- */
.site-flash {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 1040;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    animation: slideDown 0.4s ease;
}

.site-flash-success {
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
    color: var(--white);
}

.site-flash-error {
    background: linear-gradient(90deg, #C0392B, var(--coral));
    color: var(--white);
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ---- Hero (Home) ---- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy) 0%, #0F3443 40%, var(--teal-dark) 100%);
    padding-top: var(--nav-height);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(232, 90, 79, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 230, 207, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 60% 60%, rgba(13, 115, 119, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    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: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 5rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--mint);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(4rem, 12vw, 8.5rem);
    font-weight: 800;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 0.25rem;
    letter-spacing: -0.04em;
}

.hero-title .accent {
    color: var(--coral);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.hero-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Auction visualization */
.auction-viz {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 380px;
}

.auction-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    animation: ringPulse 4s ease-in-out infinite;
}

.auction-ring:nth-child(1) { width: 100%; height: 100%; top: 0; left: 0; animation-delay: 0s; }
.auction-ring:nth-child(2) { width: 75%; height: 75%; top: 12.5%; left: 12.5%; animation-delay: 0.5s; }
.auction-ring:nth-child(3) { width: 50%; height: 50%; top: 25%; left: 25%; animation-delay: 1s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; border-color: rgba(255,255,255,0.08); }
    50% { transform: scale(1.03); opacity: 0.8; border-color: rgba(232, 90, 79, 0.3); }
}

.auction-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.6), rgba(27, 42, 74, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 60px rgba(13, 115, 119, 0.3);
}

.auction-core i {
    font-size: 2rem;
    color: var(--coral);
    margin-bottom: 0.25rem;
}

.auction-core .bid-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.auction-core .bid-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bid-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: bidOrbit 6s linear infinite;
}

.bid-particle:nth-child(5) { animation-delay: 0s; }
.bid-particle:nth-child(6) { animation-delay: 1.5s; background: var(--mint); }
.bid-particle:nth-child(7) { animation-delay: 3s; }
.bid-particle:nth-child(8) { animation-delay: 4.5s; background: var(--teal-light); }

@keyframes bidOrbit {
    0% { top: 50%; left: 0; opacity: 0; transform: scale(0); }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; }
    100% { top: 10%; left: 80%; opacity: 0; transform: scale(0.5); }
}

.auction-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.ticker-track {
    display: flex;
    gap: 2rem;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.ticker-item strong {
    color: var(--mint);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Home attraction redesign ===== */
.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-height) + 1.5rem) 0 4rem;
    overflow: hidden;
    color: #fff;
    background: #071822;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, #071822 0%, #0B2E36 42%, #123A2E 72%, #1A1F2E 100%);
}
.home-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    animation: homeOrb 14s ease-in-out infinite alternate;
}
.home-hero-orb-a {
    width: 48vw; height: 48vw; max-width: 620px; max-height: 620px;
    left: -12%; top: 10%;
    background: radial-gradient(circle, rgba(232,90,79,0.55), transparent 70%);
}
.home-hero-orb-b {
    width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
    right: -8%; top: -5%;
    background: radial-gradient(circle, rgba(13,115,119,0.65), transparent 70%);
    animation-delay: -4s;
}
.home-hero-orb-c {
    width: 36vw; height: 36vw; max-width: 440px; max-height: 440px;
    right: 18%; bottom: -10%;
    background: radial-gradient(circle, rgba(168,230,207,0.35), transparent 70%);
    animation-delay: -7s;
}
.home-hero-sheen {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
    animation: homeSheen 8s ease-in-out infinite;
}
.home-hero-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 70%);
    opacity: 0.5;
}
@keyframes homeOrb {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(3%, -4%) scale(1.08); }
}
@keyframes homeSheen {
    0%, 100% { transform: translateX(-8%); opacity: 0.4; }
    50% { transform: translateX(8%); opacity: 0.85; }
}

.home-hero-stage {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.home-hero-brand {
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 11vw, 7.5rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.045em;
    margin: 0 0 0.15rem;
    color: #fff;
    animation: homeRise 0.9s ease both;
}
.home-hero-brand-i { color: var(--coral); }
.home-hero-by {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0 0 1.4rem;
    animation: homeRise 0.9s ease 0.08s both;
}
.home-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.6vw, 2.15rem);
    font-weight: 600;
    line-height: 1.25;
    max-width: 18ch;
    margin: 0 0 0.85rem;
    color: rgba(255,255,255,0.95);
    animation: homeRise 0.9s ease 0.14s both;
}
.home-hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.68);
    max-width: 36rem;
    margin: 0 0 1.75rem;
    animation: homeRise 0.9s ease 0.2s both;
}
.home-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    animation: homeRise 0.9s ease 0.28s both;
}
.home-hero-login {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    animation: homeRise 0.9s ease 0.34s both;
}
.home-hero-login a {
    color: var(--mint);
    text-decoration: none;
    font-weight: 600;
}
.home-hero-login a:hover { text-decoration: underline; }
.home-hero-login span { margin: 0 0.35rem; opacity: 0.5; }

@keyframes homeRise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-hero-visual {
    display: flex;
    justify-content: center;
    animation: homeRise 1s ease 0.2s both;
}
.home-hall {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
}
.home-hall-glow {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,90,79,0.35), transparent 70%);
    filter: blur(20px);
    animation: homePulse 3.5s ease-in-out infinite;
}
.home-hall-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
    animation: ringPulse 5s ease-in-out infinite;
}
.home-hall-ring.r1 { inset: 0; }
.home-hall-ring.r2 { inset: 12%; animation-delay: 0.4s; }
.home-hall-ring.r3 { inset: 24%; animation-delay: 0.8s; border-color: rgba(232,90,79,0.25); }
.home-hall-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 168px; height: 168px;
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(160deg, rgba(13,115,119,0.75), rgba(7,24,34,0.9));
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    text-align: center;
}
.home-hall-core i { color: var(--coral); font-size: 1.75rem; margin-bottom: 0.35rem; animation: homeGavel 2.8s ease-in-out infinite; }
.home-hall-core strong { font-family: var(--font-display); font-size: 1.45rem; color: #fff; line-height: 1.1; }
.home-hall-core span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
@keyframes homePulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}
@keyframes homeGavel {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(10deg); }
}

.home-hall-chip {
    position: absolute;
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem; font-weight: 600;
    background: rgba(7,24,34,0.72);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.9);
    animation: homeFloat 5s ease-in-out infinite;
}
.home-hall-chip i { color: var(--mint); }
.home-hall-chip.chip-a { top: 12%; left: -2%; animation-delay: 0s; }
.home-hall-chip.chip-b { top: 28%; right: -6%; animation-delay: -1.5s; }
.home-hall-chip.chip-c { bottom: 16%; left: 6%; animation-delay: -3s; }
@keyframes homeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.home-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,0.28);
    border-radius: 14px;
    z-index: 3;
}
.home-hero-scroll span {
    display: block;
    width: 4px; height: 8px;
    margin: 8px auto 0;
    border-radius: 4px;
    background: var(--mint);
    animation: homeScrollDot 1.6s ease-in-out infinite;
}
@keyframes homeScrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(14px); }
}

.home-proof {
    background: linear-gradient(180deg, #0B2E36 0%, #0D7377 100%);
    color: #fff;
    padding: 2.75rem 0;
}
.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    text-align: center;
}
.home-proof-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.home-proof-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.72);
}

.home-section-head { max-width: 640px; margin-left: auto; margin-right: auto; }
.home-film-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.home-pillar {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.35rem 1.25rem 1.2rem;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(27,42,74,0.06);
    box-shadow: 0 10px 28px rgba(27,42,74,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(13,115,119,0.14);
    color: inherit;
}
.home-pillar-ico {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(13,115,119,0.12), rgba(232,90,79,0.1));
    color: var(--teal);
    font-size: 1.1rem;
}
.home-pillar h3 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--navy);
}
.home-pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.55;
    flex: 1;
}
.home-pillar-go {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal);
}
.home-pillar-go i { font-size: 0.75rem; margin-left: 0.25rem; }

.home-flow {
    position: relative;
    padding: 5rem 0;
    color: #fff;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(232,90,79,0.2), transparent 50%),
        linear-gradient(135deg, #071822 0%, #0D3A40 55%, #123528 100%);
    overflow: hidden;
}
.home-flow-head { max-width: 560px; margin-bottom: 2.5rem; }
.home-flow .section-title { color: #fff; }
.home-flow .section-eyebrow { color: var(--mint); }
.home-flow-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.home-flow-steps li {
    padding: 1.25rem 1.1rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}
.home-flow-num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--coral);
    margin-bottom: 0.6rem;
}
.home-flow-steps h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 0.4rem;
}
.home-flow-steps p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
}

.home-sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.home-sol {
    display: block;
    padding: 1.75rem 1.4rem;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    min-height: 200px;
    transition: transform 0.25s ease;
    background-size: 140% 140%;
}
.home-sol:hover { transform: translateY(-5px); color: #fff; }
.home-sol i { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.95; }
.home-sol h3 { color: #fff; font-size: 1.25rem; margin: 0 0 0.5rem; }
.home-sol p { margin: 0; color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.55; }
.home-sol-reg { background: linear-gradient(145deg, #0D7377, #095456); }
.home-sol-auc { background: linear-gradient(145deg, #E85A4F, #B33A32); }
.home-sol-sch { background: linear-gradient(145deg, #1B2A4A, #0D7377); }

.home-packages {
    padding: 3.5rem 0;
    background: linear-gradient(90deg, #0B1F33, #0D7377 55%, #14919B);
    color: #fff;
}
.home-packages-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.home-packages .section-title { color: #fff; margin-bottom: 0.4rem; }
.home-packages .section-desc { color: rgba(255,255,255,0.72); }
.home-packages .section-eyebrow { color: var(--mint); }
.home-pkg-pills {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.home-pkg-pills span {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.home-cta-finale {
    text-align: center;
    padding: 3.25rem 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #071822 0%, #0D7377 70%, #14919B 100%);
    color: #fff;
    box-shadow: 0 24px 50px rgba(13,115,119,0.25);
}
.home-cta-finale h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.65rem;
}
.home-cta-finale p {
    color: rgba(255,255,255,0.72);
    max-width: 34rem;
    margin: 0 auto 1.5rem;
}

@media (max-width: 992px) {
    .home-hero-stage { grid-template-columns: 1fr; text-align: center; }
    .home-hero-headline { max-width: none; margin-left: auto; margin-right: auto; }
    .home-hero-lead { margin-left: auto; margin-right: auto; }
    .home-hero-cta { justify-content: center; }
    .home-hero-visual { order: -1; }
    .home-hall { width: min(100%, 320px); }
    .home-proof-grid { grid-template-columns: repeat(2, 1fr); }
    .home-film-row { grid-template-columns: 1fr 1fr; }
    .home-flow-steps { grid-template-columns: 1fr 1fr; }
    .home-sol-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .home-film-row { grid-template-columns: 1fr; }
    .home-flow-steps { grid-template-columns: 1fr; }
    .home-hall-chip.chip-b { display: none; }
}

/* ---- Stats ---- */
.stats-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--teal-dark) 100%);
    padding: 4rem 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-number .suffix {
    color: var(--coral);
}

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

/* ---- Sections ---- */
.section {
    padding: 5rem 0;
}

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

.section-gradient {
    background: linear-gradient(180deg, var(--mint-soft) 0%, var(--gray-50) 100%);
}

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-dark .section-eyebrow {
    color: var(--mint);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--navy);
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Glass Cards ---- */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 42, 74, 0.15);
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.feature-icon.teal { background: rgba(13, 115, 119, 0.12); color: var(--teal); }
.feature-icon.coral { background: rgba(232, 90, 79, 0.12); color: var(--coral); }
.feature-icon.navy { background: rgba(27, 42, 74, 0.1); color: var(--navy); }
.feature-icon.mint { background: rgba(168, 230, 207, 0.35); color: var(--teal-dark); }

.glass-card h3, .glass-card-dark h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.glass-card p, .glass-card-dark p {
    font-size: 0.925rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 0;
}

.glass-card-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    padding: calc(var(--nav-height) + 4rem) 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(232, 90, 79, 0.12), transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
}

.breadcrumb-nav {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.breadcrumb-nav a:hover { color: var(--mint); }
.breadcrumb-nav span { color: rgba(255, 255, 255, 0.35); }

/* ---- Packages Matrix ---- */
.packages-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.packages-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    min-width: 900px;
}

.packages-table thead th {
    background: var(--navy);
    color: var(--white);
    padding: 1.25rem 1rem;
    font-family: var(--font-display);
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
    border-bottom: 3px solid var(--teal);
}

.packages-table thead th:first-child {
    text-align: left;
    border-radius: var(--radius-lg) 0 0 0;
}

.packages-table thead th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.packages-table tbody td {
    padding: 0.85rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.packages-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--navy);
    background: var(--gray-50);
}

.packages-table tbody tr:hover td {
    background: rgba(168, 230, 207, 0.15);
}

.packages-table tbody tr:hover td:first-child {
    background: rgba(168, 230, 207, 0.25);
}

.pkg-included { color: var(--teal); font-weight: 600; }
.pkg-optional { color: var(--coral); font-weight: 500; }
.pkg-contact { color: var(--navy-light); font-style: italic; font-size: 0.85rem; }
.pkg-custom { color: var(--gray-600); font-size: 0.85rem; }

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid var(--gray-100);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    height: 100%;
}

.package-card.featured {
    border-color: var(--teal);
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(13, 115, 119, 0.15);
}

.package-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.package-badge {
    display: inline-block;
    background: var(--mint-soft);
    color: var(--teal-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* ---- Forms ---- */
.enquiry-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

.form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.form-control, .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-size: 0.925rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.15);
}

.required-mark { color: var(--coral); }

.form-success-msg {
    display: none;
    background: var(--mint-soft);
    border: 1px solid var(--mint);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    color: var(--teal-dark);
}

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

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 90, 79, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
    position: relative;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-light), transparent);
}

.footer-brand {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand .brand-mark { font-size: 2rem; }
.footer-brand .brand-name { font-size: 2rem; color: var(--white); }

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-company {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: var(--teal);
    color: var(--white);
}

.footer-heading {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
}

.footer-made {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1030;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ---- Login hub ---- */
.login-hub-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform 0.3s, border-color 0.3s;
    text-decoration: none;
    display: block;
    color: var(--white);
}

.login-hub-card:hover {
    transform: translateY(-4px);
    border-color: var(--teal-light);
    color: var(--white);
}

.login-hub-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--coral);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .site-nav-links {
        padding: 1rem 0;
    }

    .site-nav-links .nav-link {
        padding: 0.65rem 0 !important;
    }

    .site-nav-actions {
        padding: 1rem 0;
        flex-wrap: wrap;
    }

    .hero-visual {
        height: 320px;
        margin-top: 2rem;
    }

    .hero-cta-group .btn {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 140px;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .package-card.featured {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta-group .btn {
        flex: 1 1 100%;
    }

    .enquiry-form {
        padding: 1.5rem;
    }
}
