﻿:root {
    --aqua: #00C9D7;
    --aqua-light: #B8F4F8;
    --aqua-deep: #0094A8;
    --aqua-dark: #005F6B;
    --sky: #E0F9FC;
    --white: #FFFFFF;
    --ink: #0D2B30;
    --ink-soft: #2C5F68;
    --mist: #F0FBFC;
    --accent: #00E5D5;
    --gold: #F5C842;
    --danger: #E84848;
    --success: #22C77A;
    --radius: 24px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

/* ── CURSOR WATER DROP ── */
.cursor-drop {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.6), var(--aqua) 60%, var(--aqua-deep));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: translate(-50%, -50%) rotate(-45deg);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.08s ease;
    mix-blend-mode: multiply;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,201,215,0.15);
    transition: box-shadow 0.3s;
}

    nav.scrolled {
        box-shadow: 0 4px 32px rgba(0,148,168,0.12);
    }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-drop {
    width: 40px;
    height: 48px;
    background: linear-gradient(160deg, var(--aqua-light) 0%, var(--aqua) 50%, var(--aqua-deep) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-20deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,201,215,0.4);
    transition: transform 0.4s ease;
}

    .logo-drop:hover {
        transform: rotate(-20deg) scale(1.1);
    }

    .logo-drop span {
        font-family: 'Playfair Display', serif;
        font-weight: 900;
        font-size: 16px;
        color: white;
        transform: rotate(20deg);
        line-height: 1;
    }

.logo-text {
    line-height: 1.2;
}

    .logo-text .brand {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 18px;
        color: var(--aqua-dark);
    }

    .logo-text .parent {
        font-size: 10px;
        color: var(--ink-soft);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--ink-soft);
        font-weight: 500;
        font-size: 14px;
        transition: color 0.2s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--aqua);
            transform: scaleX(0);
            transition: transform 0.25s ease;
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--aqua-deep);
        }

            .nav-links a:hover::after {
                transform: scaleX(1);
            }

.nav-cta {
    background: var(--aqua);
    color: white !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
    box-shadow: 0 4px 16px rgba(0,201,215,0.35);
}

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        background: var(--aqua-deep) !important;
        transform: translateY(-1px) !important;
    }

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--aqua-dark);
        border-radius: 2px;
        transition: all 0.3s;
    }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #E8FAFB 0%, #C4F0F5 40%, #A0E8EF 70%, #78D8E2 100%);
}

.hero-bg-drops {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-drop {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.18;
    animation: floatDrop 8s ease-in-out infinite;
}

    .bg-drop:nth-child(1) {
        width: 380px;
        height: 460px;
        background: var(--aqua);
        top: -80px;
        right: 10%;
        transform: rotate(-30deg);
        animation-delay: 0s;
    }

    .bg-drop:nth-child(2) {
        width: 220px;
        height: 270px;
        background: var(--aqua-deep);
        bottom: 10%;
        left: 5%;
        transform: rotate(20deg);
        animation-delay: 2s;
    }

    .bg-drop:nth-child(3) {
        width: 160px;
        height: 200px;
        background: var(--aqua);
        bottom: 30%;
        right: 5%;
        transform: rotate(-15deg);
        animation-delay: 4s;
    }

    .bg-drop:nth-child(4) {
        width: 80px;
        height: 100px;
        background: var(--accent);
        top: 20%;
        left: 20%;
        transform: rotate(35deg);
        animation-delay: 1s;
    }

    .bg-drop:nth-child(5) {
        width: 50px;
        height: 62px;
        background: var(--aqua-deep);
        top: 60%;
        left: 40%;
        transform: rotate(-20deg);
        animation-delay: 3s;
    }

@keyframes floatDrop {
    0%, 100% {
        transform: translateY(0) rotate(var(--r, -30deg)) scale(1);
    }

    50% {
        transform: translateY(-24px) rotate(var(--r, -30deg)) scale(1.03);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 5vw 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-left {
    animation: slideUp 0.8s ease both;
}

.hero-right {
    animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,201,215,0.4);
    color: var(--aqua-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

    .hero-badge::before {
        content: '💧';
        font-size: 14px;
    }

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 12px;
}

    h1 .brand-highlight {
        color: var(--aqua-deep);
        display: block;
    }

.hero-slogan {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--ink-soft);
    font-weight: 400;
    margin-bottom: 32px;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--aqua-dark);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(0,94,107,0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,94,107,0.4);
        background: var(--aqua-deep);
    }

.btn-outline {
    background: transparent;
    color: var(--aqua-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--aqua-deep);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline:hover {
        background: var(--aqua-deep);
        color: white;
        transform: translateY(-2px);
    }

/* ── HERO VISUAL ── */
.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-showcase {
    position: relative;
    width: 320px;
    height: 400px;
}

.main-drop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(-20deg);
    width: 260px;
    height: 320px;
    background: linear-gradient( 145deg, rgba(255,255,255,0.95) 0%, rgba(184,244,248,0.85) 40%, rgba(0,201,215,0.72) 80%, rgba(0,94,107,0.85) 100% );
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: inset -20px -20px 40px rgba(0,148,168,0.35), 0 20px 60px rgba(0,148,168,0.30), inset 10px 10px 20px rgba(255,255,255,0.55);
    animation: dropFloat 5s ease-in-out infinite;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

    .main-drop::before {
        content: '';
        position: absolute;
        top: 15%;
        left: 20%;
        width: 35%;
        height: 25%;
        background: rgba(255,255,255,0.6);
        border-radius: 50%;
        transform: rotate(-30deg);
    }

.drop-text-inside {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
}

    .drop-text-inside .drop-brand {
        display: block;
        font-family: 'Playfair Display', serif;
        font-weight: 900;
        font-size: 22px;
        color: #ffffff;
        line-height: 1.2;
        text-shadow: 0 2px 8px rgba(0,0,0,.18);
    }

    .drop-text-inside .drop-sub {
        display: block;
        margin-top: 8px;
        font-size: 11px;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: rgba(255,255,255,.95);
    }

@keyframes dropFloat {
    0%, 100% {
        transform: translate(-50%, -60%) rotate(-20deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -60%) rotate(-20deg) translateY(-18px);
    }
}

.orbit-drops {
    position: absolute;
    inset: 0;
    animation: orbitSpin 20s linear infinite;
}

.orbit-drop-item {
    position: absolute;
    background: linear-gradient(135deg, var(--aqua-light), var(--aqua));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 4px 14px rgba(0,201,215,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--aqua-dark);
    text-align: center;
    line-height: 1.2;
}

    .orbit-drop-item:nth-child(1) {
        width: 72px;
        height: 88px;
        top: 5%;
        left: 5%;
        transform: rotate(-15deg);
    }

    .orbit-drop-item:nth-child(2) {
        width: 60px;
        height: 74px;
        top: 5%;
        right: 8%;
        transform: rotate(20deg);
        animation-delay: 0.5s;
    }

    .orbit-drop-item:nth-child(3) {
        width: 80px;
        height: 98px;
        bottom: 8%;
        right: 4%;
        transform: rotate(-25deg);
        animation-delay: 1s;
    }

    .orbit-drop-item:nth-child(4) {
        width: 56px;
        height: 68px;
        bottom: 12%;
        left: 8%;
        transform: rotate(15deg);
        animation-delay: 1.5s;
    }

    .orbit-drop-item span {
        transform: rotate(15deg);
        display: block;
        padding: 0 4px;
    }

    .orbit-drop-item:nth-child(1) span {
        transform: rotate(15deg);
    }

    .orbit-drop-item:nth-child(2) span {
        transform: rotate(-20deg);
    }

    .orbit-drop-item:nth-child(3) span {
        transform: rotate(25deg);
    }

    .orbit-drop-item:nth-child(4) span {
        transform: rotate(-15deg);
    }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--aqua-dark);
    color: white;
    padding: 20px 5vw;
    display: flex;
    justify-content: center;
    gap: clamp(24px, 6vw, 80px);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--aqua-light);
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── SECTION BASE ── */
section {
    padding: 80px 5vw;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--aqua-deep);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── REGISTRATION SPOTLIGHT ── */
#register {
    background: linear-gradient(135deg, var(--aqua-dark) 0%, var(--aqua-deep) 50%, #00738A 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 5vw;
}

    #register::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -80px;
        width: 500px;
        height: 620px;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        background: rgba(255,255,255,0.06);
        transform: rotate(-25deg);
    }

    #register::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -60px;
        width: 300px;
        height: 370px;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        background: rgba(255,255,255,0.04);
        transform: rotate(20deg);
    }

.register-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.register-left .section-label {
    color: var(--aqua-light);
}

.register-left .section-title {
    color: white;
}

.register-left .section-desc {
    color: rgba(255,255,255,0.75);
    max-width: 400px;
}

.register-perks {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .register-perks li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,0.85);
        font-size: 14px;
    }

.perk-icon {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── FORM CARD ── */
.form-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.25);
}

    .form-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 6px;
    }

    .form-card p {
        font-size: 13px;
        color: var(--ink-soft);
        margin-bottom: 24px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

    .form-row.single {
        grid-template-columns: 1fr;
    }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .form-group label {
        font-size: 12px;
        font-weight: 600;
        color: var(--ink-soft);
        letter-spacing: 0.04em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border: 1.5px solid #D0EEF1;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        color: var(--ink);
        background: var(--mist);
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--aqua);
            box-shadow: 0 0 0 3px rgba(0,201,215,0.15);
            background: white;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 70px;
    }

.order-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.bottle-option {
    border: 2px solid #D0EEF1;
    border-radius: 14px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--mist);
}

    .bottle-option:hover {
        border-color: var(--aqua);
        background: var(--sky);
    }

    .bottle-option.selected {
        border-color: var(--aqua-deep);
        background: var(--sky);
    }

    .bottle-option .b-icon {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .bottle-option .b-size {
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
    }

    .bottle-option .b-qty {
        font-size: 11px;
        color: var(--ink-soft);
    }

.qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--aqua);
    background: white;
    color: var(--aqua-dark);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    pointer-events:auto;
    position:relative;
    z-index:5;

}

    .qty-btn:hover {
        background: var(--aqua);
        color: white;
    }

.qty-num {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-deep) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(0,148,168,0.35);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,148,168,0.45);
    }

    .form-submit:active {
        transform: scale(0.98);
    }

.success-msg {
    display: none;
    text-align: center;
    padding: 24px;
    background: #E8FFF4;
    border-radius: 16px;
    border: 1.5px solid #22C77A;
    margin-top: 14px;
}

    .success-msg h4 {
        color: #0E7A4A;
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .success-msg p {
        color: #187A4A;
        font-size: 13px;
    }

/* ── PRODUCTS ── */
#products {
    background: var(--mist);
}

.products-grid {
    max-width: 1100px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.product-card {
    background: white;
    border-radius: 28px;
    padding: 36px 24px 28px;
    text-align: center;
    border: 1.5px solid rgba(0,201,215,0.12);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 148px;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        background: linear-gradient(160deg, var(--aqua-light) 0%, rgba(0,201,215,0.1) 100%);
        transition: all 0.3s;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(0,148,168,0.18);
        border-color: var(--aqua);
    }

        .product-card:hover::before {
            top: -40px;
        }

    .product-card.featured {
        border-color: var(--aqua);
        box-shadow: 0 8px 32px rgba(0,148,168,0.15);
    }

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--aqua);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.bottle-visual {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.bottle-drop {
    margin: 0 auto;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(145deg, var(--aqua-light), var(--aqua) 60%, var(--aqua-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,201,215,0.35);
    transform: rotate(-15deg);
    transition: transform 0.3s;
}

.product-card:hover .bottle-drop {
    transform: rotate(-15deg) scale(1.1);
}

.bottle-drop span {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: white;
    transform: rotate(15deg);
    line-height: 1;
    text-align: center;
}

.p-size {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.p-name {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.p-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--aqua-dark);
    margin-bottom: 16px;
}

.p-features {
    list-style: none;
    text-align: left;
    font-size: 13px;
    color: var(--ink-soft);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .p-features li::before {
        content: '✓ ';
        color: var(--aqua);
        font-weight: 700;
    }

/* ── WHY US ── */
.why-grid {
    max-width: 1100px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.why-card {
    padding: 28px 22px;
    border-radius: 20px;
    border: 1.5px solid rgba(0,201,215,0.12);
    background: white;
    transition: all 0.3s;
}

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,148,168,0.12);
        border-color: var(--aqua);
    }

.why-icon {
    width: 52px;
    height: 64px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(135deg, var(--aqua-light), var(--aqua));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transform: rotate(-15deg);
    box-shadow: 0 4px 14px rgba(0,201,215,0.3);
}

.why-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 6px;
}

.why-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--sky);
}

.testimonials-grid {
    max-width: 1100px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1.5px solid rgba(0,201,215,0.12);
    position: relative;
}

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 16px;
        right: 20px;
        font-family: 'Playfair Display', serif;
        font-size: 72px;
        color: var(--aqua-light);
        line-height: 1;
    }

.t-text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 14px;
}

.t-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}

.t-meta {
    font-size: 12px;
    color: var(--ink-soft);
}

.stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 10px;
}

/* ── HOW IT WORKS ── */
.steps-row {
    max-width: 1100px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    position: relative;
}

    .steps-row::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--aqua-light), var(--aqua), var(--aqua-light));
        z-index: 0;
    }

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aqua), var(--aqua-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(0,148,168,0.3);
}

.step-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
    padding: 0 8px;
}

/* ── CONTACT ── */
#contact {
    background: white;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1.5px solid rgba(0,201,215,0.2);
}

.contact-info-item h4 {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 3px;
}

.contact-info-item p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.contact-form {
    background: var(--mist);
    border-radius: 24px;
    padding: 36px;
    border: 1.5px solid rgba(0,201,215,0.15);
}

    .contact-form h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--ink);
    }

/* ── FOOTER ── */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.8);
    padding: 48px 5vw 28px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer-logo-drop {
    width: 40px;
    height: 50px;
    background: linear-gradient(145deg, var(--aqua-light), var(--aqua), var(--aqua-deep));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-20deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

    .footer-logo-drop span {
        font-family: 'Playfair Display', serif;
        font-weight: 900;
        font-size: 16px;
        color: white;
        transform: rotate(20deg);
    }

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.footer-parent {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

footer h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aqua-light);
    margin-bottom: 14px;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    footer ul a {
        text-decoration: none;
        color: rgba(255,255,255,0.6);
        font-size: 13px;
        transition: color 0.2s;
    }

        footer ul a:hover {
            color: var(--aqua);
        }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--ink);
    color: white;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 320px;
}

    .toast.show {
        opacity: 1;
        transform: translateY(0);
    }

.toast-icon {
    font-size: 20px;
}

/* ── MOBILE NAV ── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(0,201,215,0.15);
    padding: 16px 5vw;
    z-index: 99;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,148,168,0.1);
}

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        text-decoration: none;
        color: var(--ink);
        font-weight: 500;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0,201,215,0.1);
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .register-inner {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .steps-row::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .order-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── ANIMATIONS ON SCROLL ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── HIGHLIGHT PULSE ── */
@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0,201,215,0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0,201,215,0.2);
    }
}

.form-card {
    animation: highlightPulse 3s ease 1.5s 3;
}

/* ── WAVE DIVIDER ── */
.wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .wave svg {
        display: block;
    }
