/* ========================================
   Odleć z nami III — Letnia kolorystyka
   Błękit + Zieleń łąki + Złoto
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=BenchNine:wght@300;400;700&family=Archivo:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Sky blue palette */
    --sky: #4A9DD9;
    --sky-light: #6BB5E8;
    --sky-dark: #3578A8;
    --sky-glow: rgba(74, 157, 217, 0.15);
    --sky-soft: #E8F4FC;

    /* Meadow green palette */
    --green: #4E9A3D;
    --green-light: #6DB85A;
    --green-dark: #3A7A2D;
    --green-glow: rgba(78, 154, 61, 0.12);
    --green-soft: #EDF7EB;

    /* Warm gold / sunset palette */
    --gold: #E8A830;
    --gold-light: #F0C05A;
    --gold-dark: #C88D1A;
    --gold-glow: rgba(232, 168, 48, 0.15);
    --gold-soft: #FEF6E5;

    /* Neutrals — warm tones */
    --cream: #FDFAF4;
    --cream-dark: #F5EFE3;
    --white: #FFFFFF;
    --warm-50: #FEFCF8;
    --warm-100: #F8F4EC;
    --warm-200: #EDE6D8;
    --warm-300: #D5CBBA;
    --warm-400: #A89E8E;
    --warm-600: #6B6256;
    --text-dark: #2C3524;
    --text-body: #4A5240;

    /* Hero dark (deep forest) */
    --forest: #1A2E12;
    --forest-mid: #243818;

    /* Accent */
    --coral: #E06B52;

    --gradient-sky: linear-gradient(135deg, #4A9DD9 0%, #6BB5E8 100%);
    --gradient-meadow: linear-gradient(135deg, #4E9A3D 0%, #6DB85A 100%);
    --gradient-sunset: linear-gradient(135deg, #E8A830 0%, #F0C05A 100%);
    --gradient-hero: linear-gradient(160deg, #2A5D1E 0%, #1A3D14 40%, #1C3520 100%);
    --gradient-border: linear-gradient(135deg, #4A9DD9, #4E9A3D, #E8A830);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(42,93,30,0.06);
    --shadow-md: 0 8px 30px rgba(42,93,30,0.08);
    --shadow-lg: 0 20px 50px rgba(42,93,30,0.1);
    --shadow-sky: 0 12px 40px rgba(74,157,217,0.25);
    --shadow-green: 0 12px 40px rgba(78,154,61,0.2);
    --shadow-card-hover: 0 20px 50px rgba(74,157,217,0.12);

    --font-heading: 'BenchNine', Arial Narrow, sans-serif;
    --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ui: 'Archivo', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-body);
    min-height: 100vh;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* ========== HERO ========== */
.hero-section {
    background: var(--gradient-hero);
    background-image:
        linear-gradient(160deg, rgba(26,46,18,0.75) 0%, rgba(10,20,10,0.65) 50%, rgba(26,46,18,0.8) 100%),
        url('../images/tlo_biegu.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 70px 0 110px;
}

/* Sun glow */
.hero-section::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -60px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,168,48,0.2) 0%, rgba(240,192,90,0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: sunGlow 8s ease-in-out infinite;
}

/* Sky reflection */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74,157,217,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes sunGlow {
    0%, 100% { transform: translate(0,0) scale(1); opacity: 1; }
    50% { transform: translate(-20px, 15px) scale(1.1); opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.05); }
    66% { transform: translate(-20px,15px) scale(0.95); }
}

.hero-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(109,184,90,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 40%;
    left: 15%;
    animation: pulse 7s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 168, 48, 0.15);
    border: 1px solid rgba(232, 168, 48, 0.35);
    color: var(--gold-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-title span {
    background: linear-gradient(135deg, #6BB5E8 0%, #90D4F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* Hero stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 0;
    flex: 1 1 0;
}

.hero-stat:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(109,184,90,0.4);
    transform: translateY(-2px);
}

.hero-stat-value {
    font-family: var(--font-ui);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.hero-stat-label {
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    white-space: nowrap;
}

/* Countdown */
.hero-countdown {
    margin-top: 36px;
    text-align: center;
}
.countdown-label {
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}
.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.countdown-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 14px 10px 10px;
    min-width: 70px;
    backdrop-filter: blur(10px);
    text-align: center;
}
.countdown-value {
    display: block;
    font-family: var(--font-ui);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.countdown-unit {
    display: block;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

/* Dots */
.hero-dots {
    position: absolute;
    z-index: 1;
    opacity: 0.04;
}
.hero-dots-right {
    top: 40px; right: 5%;
    width: 140px; height: 140px;
    background-image: radial-gradient(circle, var(--white) 1.2px, transparent 1.2px);
    background-size: 20px 20px;
}
.hero-dots-left {
    bottom: 40px; left: 5%;
    width: 100px; height: 100px;
    background-image: radial-gradient(circle, var(--white) 1.2px, transparent 1.2px);
    background-size: 20px 20px;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    max-width: 920px;
    margin: -50px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ========== ERROR ALERT ========== */
.error-alert {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 1px solid #FECACA;
    color: var(--coral);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(224,107,82,0.1);
}

/* ========== INLINE VALIDATION ========== */
.form-control.is-invalid,
.form-check-input.is-invalid {
    border-color: var(--coral) !important;
    box-shadow: 0 0 0 3px rgba(224,107,82,0.15) !important;
}
.consent-item .is-invalid ~ label {
    color: var(--coral);
}
.validation-summary {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 1px solid #FECACA;
    color: var(--coral);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(224,107,82,0.1);
    display: none;
}
.validation-summary.show { display: block; }
.validation-summary ul { margin: 8px 0 0; padding-left: 20px; }
.validation-summary li { margin-bottom: 2px; }

/* ========== SECTION CARDS ========== */
.section-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 0;
    margin-bottom: 24px;
    border: 1px solid rgba(213,203,186,0.5);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.section-card:hover {
    box-shadow: var(--shadow-lg);
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-border);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.section-card-body {
    padding: 36px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.section-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-meadow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(78,154,61,0.25);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 0.82rem;
    color: var(--warm-400);
    margin: 3px 0 0;
    font-weight: 400;
}

/* ========== TYPE CARDS ========== */
.type-card {
    background: var(--white);
    border: 1px solid var(--warm-200);
    border-radius: var(--radius-lg);
    padding: 0 26px 28px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Rainbow gradient border on hover */
.type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Glow on hover */
.type-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(78,154,61,0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.type-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.type-card:hover::before { opacity: 1; }
.type-card:hover::after { opacity: 1; }
.type-card > * { position: relative; z-index: 2; }

/* Card image */
.type-card-img {
    margin: 0 -26px 0;
    overflow: hidden;
    height: 180px;
    position: relative;
}

.type-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 3;
}

.type-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.type-card:hover .type-card-img img {
    transform: scale(1.08);
}

.type-card-content {
    padding-top: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.type-card h5 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.type-card p {
    font-size: 0.85rem;
    color: var(--warm-600);
    margin-bottom: 18px;
    line-height: 1.55;
}

.type-features {
    list-style: none;
    padding: 0; margin: 0;
}

.type-features li {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--warm-600);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.type-features li i {
    color: var(--green);
    font-size: 0.8rem;
}

.type-card-bottom {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--warm-200);
    text-align: center;
}

.type-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.type-price small {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--warm-400);
}

.type-card-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-top: 14px;
    background: var(--gradient-meadow);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78,154,61,0.2);
}

.type-card-btn:hover {
    box-shadow: 0 6px 20px rgba(78,154,61,0.35);
    transform: translateY(-1px);
}

.type-card-btn i {
    color: var(--white) !important;
}

.type-features .type-fee {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--warm-200);
    letter-spacing: 0.02em;
}

.type-warning {
    background: linear-gradient(135deg, rgba(53,80,130,0.08) 0%, rgba(74,157,217,0.06) 100%);
    border: 1px solid rgba(53,80,130,0.25);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    color: #2B3E5C;
}

.type-warning strong { display: block; margin-bottom: 4px; }
.type-warning ul { margin: 0; padding-left: 16px; }

/* ========== FORM ========== */
.form-label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 1.5px solid var(--warm-200);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--warm-50);
    transition: all 0.25s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 4px var(--sky-glow);
    background: var(--white);
    outline: none;
}

.form-control::placeholder {
    color: var(--warm-300);
    font-style: italic;
}

.form-text {
    font-size: 0.78rem;
    color: var(--warm-400);
    margin-top: 6px;
}

.form-check-input {
    width: 20px; height: 20px;
    border: 2px solid var(--warm-300);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-check-input:checked {
    background: var(--gradient-meadow);
    border-color: var(--green);
    box-shadow: 0 2px 8px rgba(78,154,61,0.25);
}

.form-check-input:focus {
    box-shadow: 0 0 0 4px var(--green-glow);
    border-color: var(--green);
}

.form-check-input[type="radio"] { border-radius: 50%; }

.form-check-label {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text-body);
}

/* ========== PARTICIPANT CARD ========== */
.participant-card {
    background: var(--white);
    border: 1.5px solid var(--warm-200) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.participant-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(74,157,217,0.25) !important;
}

.participant-card .card-header {
    background: linear-gradient(135deg, var(--warm-50) 0%, var(--warm-100) 100%) !important;
    border-bottom: 1.5px solid var(--warm-200);
    padding: 14px 22px;
    border-radius: 0 !important;
}

.participant-card .card-header strong {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 600;
}

.participant-card .card-body {
    padding: 22px;
    background: var(--white);
}

.participant-card .btn-outline-danger {
    border-color: var(--warm-300);
    color: var(--warm-400);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.participant-card .btn-outline-danger:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(224,107,82,0.25);
}

/* ========== CHILD GUARDIAN ========== */
.child-guardian-section .alert {
    background: linear-gradient(135deg, var(--sky-soft) 0%, rgba(74,157,217,0.05) 100%);
    border: 1px solid rgba(74,157,217,0.2);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
}

/* ========== OPIEKUN WARNING ========== */
.opiekun-warning {
    background: linear-gradient(135deg, rgba(232,168,48,0.1) 0%, rgba(240,192,90,0.05) 100%);
    border: 1px solid rgba(232,168,48,0.25);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-bottom: 22px;
    font-size: 0.85rem;
    color: #8B6914;
    line-height: 1.65;
}

/* ========== PAYMENT SUMMARY ========== */
.payment-summary {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26,46,18,0.3);
}

.payment-summary::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(232,168,48,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.payment-summary::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(109,184,90,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.payment-summary > * { position: relative; z-index: 2; }

.payment-summary-label {
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
}

.payment-summary-desc {
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    font-size: 0.78rem;
    margin-top: 4px;
}

.payment-summary-amount {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.payment-summary-amount small {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.6;
}

/* ========== BANK INFO ========== */
.bank-info {
    background: linear-gradient(135deg, var(--warm-50) 0%, var(--warm-100) 100%);
    border: 1px solid var(--warm-200);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin-bottom: 24px;
}

.bank-info p {
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-body);
}

.bank-info p:last-child { margin-bottom: 0; }

.bank-info strong {
    font-family: var(--font-ui);
    color: var(--text-dark);
    min-width: 140px;
    display: inline-block;
}

.bank-info code {
    background: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--warm-200);
    color: var(--sky-dark);
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--font-ui);
}

/* ========== PAYMENT OPTIONS ========== */
.payment-option {
    border: 2px solid var(--warm-200) !important;
    border-radius: var(--radius-md) !important;
    padding: 22px !important;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.payment-option::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-sky);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.payment-option:hover {
    border-color: rgba(74,157,217,0.35) !important;
    box-shadow: 0 6px 20px rgba(74,157,217,0.1);
}

.payment-option.selected {
    border-color: var(--sky) !important;
    background: linear-gradient(135deg, var(--sky-soft) 0%, rgba(109,184,90,0.04) 100%) !important;
    box-shadow: 0 0 0 4px var(--sky-glow), 0 6px 20px rgba(74,157,217,0.12);
}

.payment-option.selected::after { transform: scaleX(1); }

.payment-option strong {
    font-family: var(--font-ui);
    font-size: 0.92rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-option small {
    color: var(--warm-600);
    font-size: 0.8rem;
    margin-top: 6px;
}

/* ========== INFO BOX ========== */
.info-box {
    background: linear-gradient(135deg, var(--sky-soft) 0%, rgba(109,184,90,0.06) 100%);
    border: 1px solid rgba(74,157,217,0.2);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.85rem;
    color: var(--sky-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-box i { margin-top: 2px; flex-shrink: 0; }

/* ========== CONSENT ========== */
.consent-item {
    background: linear-gradient(135deg, var(--warm-50) 0%, var(--warm-100) 100%);
    border: 1px solid var(--warm-200);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.consent-item:hover {
    background: linear-gradient(135deg, var(--green-soft) 0%, rgba(109,184,90,0.05) 100%);
    border-color: rgba(78,154,61,0.2);
    box-shadow: 0 4px 15px rgba(78,154,61,0.06);
}

.consent-item .form-check-label {
    font-size: 0.83rem;
    line-height: 1.65;
    color: var(--warm-600);
    cursor: pointer;
}

.consent-item .form-check-label a {
    color: var(--sky);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(74,157,217,0.4);
    transition: border-color 0.2s;
}

.consent-item .form-check-label a:hover {
    border-bottom-style: solid;
    border-color: var(--sky);
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--gradient-meadow);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 16px 36px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 25px rgba(78,154,61,0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover::before { left: 100%; }

.btn-primary-custom:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary-custom:active { transform: translateY(0); }
.btn-primary-custom i { transition: transform 0.3s ease; }
.btn-primary-custom:hover i { transform: translateX(4px); }

.btn-secondary-custom {
    background: transparent;
    color: var(--warm-600);
    border: 1.5px solid var(--warm-200);
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-secondary-custom:hover {
    border-color: var(--warm-300);
    color: var(--text-dark);
    background: var(--warm-100);
}

.btn-add-participant {
    background: var(--white);
    color: var(--green);
    border: 2px dashed rgba(78,154,61,0.35);
    border-radius: var(--radius-md);
    padding: 16px 26px;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-add-participant:hover {
    background: var(--green-soft);
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 4px 15px rgba(78,154,61,0.1);
}

/* ========== BADGES ========== */
.count-badge {
    background: var(--gradient-sky);
    color: var(--white);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(74,157,217,0.25);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(232,168,48,0.12) 0%, rgba(240,192,90,0.06) 100%);
    border: 1px solid rgba(232,168,48,0.3);
    color: #8B6914;
    padding: 5px 14px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ========== CLOSED ========== */
.closed-card {
    text-align: center;
    padding: 70px 40px;
}

.closed-icon {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, rgba(232,168,48,0.15) 0%, rgba(240,192,90,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    color: var(--gold);
    box-shadow: 0 8px 25px rgba(232,168,48,0.12);
}

.closed-card h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.closed-card p {
    color: var(--warm-600);
    font-size: 0.95rem;
}

/* ========== SECTION CARD HEADER ========== */
.section-card-header {
    background: linear-gradient(135deg, var(--warm-50) 0%, var(--warm-100) 100%);
    border-bottom: 1.5px solid var(--warm-200);
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-card-header i {
    color: var(--green);
    font-size: 1rem;
}

/* ========== SUBMIT BUTTON ========== */
.submit-btn {
    background: var(--gradient-meadow);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 16px 36px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 25px rgba(78,154,61,0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before { left: 100%; }

.submit-btn:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
    color: var(--white);
}

.submit-btn:active { transform: translateY(0); }

/* ========== FOOTER ========== */
.page-footer {
    text-align: center;
    padding: 36px 20px 48px;
    color: var(--warm-400);
    font-family: var(--font-body);
    font-size: 0.82rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-section { padding: 48px 0 72px; }
    .hero-title { font-size: 2.8rem; }
    .hero-stats { gap: 6px; }
    .hero-stat { min-width: 0; padding: 12px 10px; }
    .hero-stat-value { font-size: 1.2rem; }
    .main-content { margin-top: -30px; }
    .section-card-body { padding: 24px; }
    .payment-summary {
        flex-direction: column; gap: 12px;
        text-align: center; padding: 20px;
    }
    .type-card { padding: 0 20px 24px; }
    .type-card-img { margin: 0 -20px 0; height: 150px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-stats { flex-direction: column; gap: 8px; align-items: center; }
    .hero-stat { width: 100%; max-width: 280px; }
    .countdown-box { min-width: 60px; padding: 10px 8px 8px; }
    .countdown-value { font-size: 1.4rem; }
    .section-card-body { padding: 20px; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-card, .btn-primary-custom, .btn-secondary-custom {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.section-card:nth-child(2) { animation-delay: 0.08s; }
.section-card:nth-child(3) { animation-delay: 0.16s; }
.section-card:nth-child(4) { animation-delay: 0.24s; }

/* Success page */
.bi-check-circle-fill { animation: scaleIn 0.5s ease-out; }

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* ========== PRINT ========== */
@media print {
    .hero-section { background: #2C3524; }
    .section-card { box-shadow: none; border: 1px solid #ccc; }
    body { background: white; }
}
