/* ====================== GLOBAL TYPOGRAPHY & SHARED STYLES ====================== */

:root {
    --darkblue: #001D4A;
    --gold: #FFC107;
    --lightgold: #ffda44;
    --brightgold: #ffeb3b;
    --gray: #6c757d;
    --light: #f8f9fa;
    --font-primary: 'Roboto', sans-serif;
}

* {
    font-family: var(--font-primary);
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    background: var(--light);
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.display-4, .display-5 {
    font-family: var(--font-primary);
    font-weight: 900;
    color: var(--darkblue);
}

.lead, p, li, .accordion-body, .timeline-content, .info-card p {
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Consistent gold underline for ALL section titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 5px;
    background: linear-gradient(to right, var(--gold), #ffeb3b);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.btn-gold {
    background: var(--gold);
    color: var(--darkblue);
    font-weight: 700;
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,193,7,0.3);
}

.btn-gold:hover {
    background: var(--lightgold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255,193,7,0.45);
}

.card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,29,74,0.15);
}

.icon-lg {
    font-size: 3.8rem;
    color: var(--gold);
    margin-bottom: 1.3rem;
}

/* ====================== HERO STYLES ====================== */

.hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(4.8rem, 13vw, 11rem);
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--brightgold), #fff, var(--lightgold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 8px 30px rgba(0,0,0,0.4);
    margin-bottom: 0.8rem;
    animation: heroPop 1.2s ease forwards;
}

.hero .tagline {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin: 0.6rem 0 1.8rem;
    letter-spacing: 1px;
    animation: fadeInUp 1.4s ease forwards 0.4s;
}

.hero .lead {
    font-size: clamp(1.25rem, 4.5vw, 1.75rem);
    max-width: 920px;
    margin: 0 auto 2.5rem;
    line-height: 1.55;
    color: #f0f8ff;
    font-weight: 400;
    animation: fadeInUp 1.6s ease forwards 0.8s;
}

@keyframes heroPop {
    0% { opacity: 0; transform: scale(0.85) translateY(40px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

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

/* Subtle floating energy effect */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,215,0,0.18) 0%, transparent 60%),
                radial-gradient(circle at 70% 65%, rgba(255,235,59,0.14) 0%, transparent 60%);
    pointer-events: none;
    animation: sparkle 15s infinite linear;
    opacity: 0.7;
    z-index: 1;
}

@keyframes sparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero { min-height: 85vh; }
    .hero h1 { font-size: clamp(4rem, 11vw, 8.5rem); }
    .hero .tagline { font-size: clamp(1.8rem, 6.5vw, 3.4rem); }
}

@media (max-width: 576px) {
    .hero { min-height: 82vh; padding: 2rem 1rem; }
    .hero h1 { font-size: clamp(3.4rem, 14vw, 6.2rem); }
    .hero .tagline { font-size: clamp(1.55rem, 8vw, 2.7rem); }
    .hero .lead { font-size: 1.15rem; }
}

/* ====================== COUNTDOWN STYLES ====================== */

.countdown-section {
    background: linear-gradient(135deg, #001D4A, #002D5E);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
    animation: countdownGlow 15s infinite linear;
    z-index: 1;
    opacity: 0.6;
}

.countdown-card {
    background: rgba(255,255,255,0.1);
    border: 3px solid #FFC107;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.countdown-number {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #FFC107;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255,193,7,0.6);
}

.countdown-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

@keyframes countdownGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====================== PHILOSOPHY SECTION ====================== */

.philosophy-card {
    max-width: 960px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 5.5rem 4.5rem;
    box-shadow: 0 25px 80px rgba(0, 29, 74, 0.10);
    transition: all 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(0, 29, 74, 0.14);
}

.philosophy-icon-wrapper {
    width: 135px;
    height: 135px;
    background: linear-gradient(135deg, var(--darkblue), #002D5E);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.8rem;
    box-shadow: 0 20px 55px rgba(0, 29, 74, 0.3);
}

.philosophy-icon-wrapper i {
    font-size: 4.8rem;
}

.philosophy-title {
    font-size: clamp(2.7rem, 6vw, 3.6rem);
    font-weight: 900;
    color: var(--darkblue);
    text-align: center;
    margin-bottom: 0.6rem;
}

.philosophy-subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: 1.5px;
}

.philosophy-content {
    font-size: 1.23rem;
    line-height: 1.95;
    color: #333;
    text-align: justify;
    text-justify: inter-word;
}

.philosophy-content p {
    margin-bottom: 1.6rem;
}

.philosophy-content ul {
    list-style: none;
    padding: 0;
    margin: 2.8rem 0;
}

.philosophy-content li {
    padding: 1rem 0 1rem 3.5rem;
    position: relative;
    font-size: 1.2rem;
}

.philosophy-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
    font-size: 1.8rem;
}

.philosophy-cta {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, var(--darkblue), #002D5E);
    color: white;
    padding: 1.7rem 4.2rem;
    border-radius: 50px;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 29, 74, 0.3);
    transition: all 0.4s ease;
}

.philosophy-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 29, 74, 0.4);
}

@media (max-width: 768px) {
    .philosophy-card {
        padding: 4rem 2.5rem;
    }
}

/* ====================== AGES SECTION ====================== */

.ages-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.ages-description {
    font-size: 1.22rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 3.5rem;
}

.ages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 720px;
    margin: 0 auto;
}

.age-card {
    background: white;
    border-radius: 18px;
    padding: 2.2rem 1.6rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 29, 74, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.05);
}

.age-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 29, 74, 0.07);
}

.age-icon {
    width: 68px;
    height: 68px;
    background: rgba(255,193,7,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    font-size: 2.4rem;
    color: var(--gold);
}

.age-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--darkblue);
    margin-bottom: 0.6rem;
}

.age-age {
    font-size: clamp(2.4rem, 6.5vw, 3.4rem);
    font-weight: 900;
    color: var(--darkblue);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.age-label {
    font-size: 1.05rem;
    color: #666;
    font-weight: 500;
}

/* ====================== SCHEDULE SECTION ====================== */

.schedule-card {
    background: white;
    border-radius: 24px;
    padding: 2.8rem 2.2rem;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0, 29, 74, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.16);
}

.card-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.period-box {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 5px solid var(--gold);
}

.period-box:hover {
    background: #fff8e6;
    transform: translateX(6px);
}

.period-number {
    font-weight: 700;
    color: var(--darkblue);
    font-size: 1.15rem;
}

/* ====================== TIMELINE / DAILY PROGRAM ====================== */

.timeline-modern {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 0;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #FFC107, #ffda44);
    border-radius: 10px;
}

.timeline-step {
    position: relative;
    padding-left: 85px;
    padding-bottom: 3rem;
    min-height: 110px;
}

.timeline-step:last-child { 
    padding-bottom: 0; 
}

.timeline-step::before {
    content: attr(data-time);
    position: absolute;
    left: 0;
    top: 0;
    width: 68px;
    height: 68px;
    background: white;
    border: 5px solid var(--gold);
    color: var(--darkblue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index: 2;
}

.timeline-step::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 74px;
    bottom: -3rem;
    width: 5px;
    background: rgba(255,193,7,0.25);
}

.timeline-step:last-child::after { 
    display: none; 
}

.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 1.8rem 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.09);
    transition: all 0.4s ease;
    border-left: 5px solid var(--gold);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,29,74,0.15);
}

.timeline-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .timeline-modern::before { 
        left: 50%; 
    }
    .timeline-step { 
        padding-left: 0; 
        padding-right: 52%; 
    }
    .timeline-step:nth-child(even) {
        padding-left: 52%;
        padding-right: 0;
        text-align: right;
    }
    .timeline-step::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-step::after { 
        display: none; 
    }
}

/* ====================== FACILITIES & SAFETY ====================== */

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.facility-card {
    background: white;
    border-radius: 28px;
    padding: 3.2rem 2.8rem;
    box-shadow: 0 15px 40px rgba(0, 29, 74, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.facility-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(255, 193, 7, 0.22);
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--gold), #ffeb3b);
}

.facility-icon-bg {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255,193,7,0.12), rgba(255,218,68,0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3.2rem;
    color: var(--gold);
    box-shadow: 0 10px 30px rgba(255,193,7,0.15);
}

.facility-card h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--darkblue);
    text-align: center;
    margin-bottom: 1.4rem;
}

.facility-card p {
    color: #555;
    line-height: 1.75;
    font-size: 1.08rem;
}

/* Safety Highlight Box */
.safety-highlight {
    background: linear-gradient(135deg, #f8fff9, #ffffff);
    border-radius: 28px;
    padding: 3rem 3.2rem;
    box-shadow: 0 20px 55px rgba(0, 29, 74, 0.1);
    border: 2px solid #28a745;
    position: relative;
    overflow: hidden;
}

.safety-highlight::before {
    content: '🛡️';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 9rem;
    opacity: 0.08;
    color: #28a745;
}

.safety-icon {
    font-size: 3.5rem;
    color: #28a745;
    margin-bottom: 1.2rem;
}

.safety-highlight h3 {
    color: #28a745;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ====================== GALLERY ====================== */

.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.6rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    contain: content;
    contain-intrinsic-size: 340px 340px;
    aspect-ratio: 4 / 3;
}

.gallery-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.18);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    will-change: transform;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,29,74,0.92) 0%, rgba(0,29,74,0.25) 50%, transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.8rem 1.2rem;
    color: white;
    text-align: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 3px 12px rgba(0,0,0,0.75);
    letter-spacing: 0.5px;
    color: var(--lightgold);
}

@media (max-width: 992px) {
    .gallery-row { gap: 1.4rem; }
}

@media (max-width: 576px) {
    .gallery-card { aspect-ratio: 4 / 3; }
    .gallery-overlay h5 { font-size: 1.25rem; }
}

/* ====================== ACTIVITIES ====================== */

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.activity-column {
    background: white;
    border-radius: 28px;
    padding: 3rem 2.8rem;
    box-shadow: 0 15px 45px rgba(0, 29, 74, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.activity-column:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 65px rgba(255, 193, 7, 0.18);
}

.activity-column h2 {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--darkblue);
    margin-bottom: 2.2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gold);
}

.activity-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    line-height: 2.2;
}

.activity-list li {
    padding: 0.85rem 0;
    color: #444;
    position: relative;
    padding-left: 2.2rem;
}

.activity-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ====================== PRICES ====================== */

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 29, 74, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 193, 7, 0.12);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 65px rgba(255, 193, 7, 0.20);
}

.pricing-card.popular {
    border: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.25);
    transform: scale(1.03);
}

.plan-name {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--darkblue);
    margin-bottom: 1.2rem;
}

.price {
    font-size: clamp(3.4rem, 7.8vw, 4.8rem);
    font-weight: 900;
    color: var(--darkblue);
    line-height: 1;
    margin: 0.8rem 0 0.6rem;
}

.period {
    color: #666;
    font-size: 1.18rem;
    font-weight: 500;
}

.info-box {
    max-width: 760px;
    margin: 4.5rem auto 0;
    background: white;
    border-radius: 20px;
    padding: 2.8rem 3rem;
    box-shadow: 0 15px 45px rgba(0, 29, 74, 0.07);
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.extension-box {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.8rem;
    border-left: 6px solid var(--gold);
}

.discount-badge {
    background: linear-gradient(135deg, #28a745, #34c759);
    color: white;
    padding: 1.35rem 3rem;
    border-radius: 50px;
    font-size: 1.28rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    display: inline-block;
    line-height: 1.35;
}

.info-title {
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--darkblue);
    margin-bottom: 0.6rem;
}

/* Early Bird Banner */
.early-bird-banner {
    background: linear-gradient(135deg, #fffaf0, #fff0d9);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.early-bird-banner .badge {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.early-bird-banner h4 {
    color: var(--darkblue);
    font-weight: 700;
}

/* Pricing Card Enhancements */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 29, 74, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 29, 74, 0.12);
}

.pricing-card.popular {
    border: 3px solid var(--gold);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .info-box {
        padding: 2.2rem 1.8rem;
    }
}

/* Elegant Separator */
.elegant-separator {
    margin-top: -2px;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.elegant-separator svg {
    filter: drop-shadow(0 5px 10px rgba(0, 29, 74, 0.08));
}

/* ====================== OPEN DAY ====================== */

.openday-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 29, 74, 0.08);
    height: 100%;
}

.openday-cta {
    box-shadow: 0 15px 40px rgba(0, 29, 74, 0.2);
    transition: all 0.4s ease;
}

.openday-cta:hover {
    transform: translateY(-8px);
}

.text-gold {
    color: var(--gold);
}

/* ====================== REGISTRATION / FINAL CTA ====================== */



#registration .cta-buttons .btn {
    min-width: 280px;
    font-size: 1.25rem;
    padding: 1.1rem 2.4rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

#registration .btn-gold {
    background: linear-gradient(90deg, #FFC107, #ffeb3b);
    color: #001D4A;
}

#registration .btn-gold:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 18px 45px rgba(255, 193, 7, 0.6);
}

#registration .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.9);
    color: white;
}

#registration .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px) scale(1.08);
    border-color: white;
}


.animate-pulse-slow {
    animation: pulse 2.8s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

@media (max-width: 576px) {
    #registration .cta-buttons .btn {
        min-width: 100%;
        margin: 0.6rem 0;
    }
    #registration h2 {
        font-size: 2.4rem;
    }
}

.payment-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

.payment-icon {
    font-size: 2.8rem;
    line-height: 1;
}

/* ====================== FOOTER ====================== */

.footer {
    background: linear-gradient(135deg, #001D4A 0%, #002D5E 100%);
    color: white;
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ffeb3b !important;
    text-decoration: underline;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--gold), #ffeb3b, var(--gold));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.45rem;
    margin-bottom: 1.6rem;
    font-weight: 700;
}

.footer-col p, .footer-col a {
    color: #ddd;
    line-height: 1.85;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-logo {
    font-size: 2.35rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.2rem;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about-text {
    text-align: left !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.95rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-6px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 4.5rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 1.05rem;
    color: #aaa;
}

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

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-about-text {
        text-align: center !important;
    }
}

/* Registration */
.elegant-btn {
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 260px;
    box-shadow: 0 6px 20px rgba(0, 29, 74, 0.1);
}

.elegant-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 29, 74, 0.2);
}

/* Gold Submit Button */
.btn-gold {
    background: linear-gradient(135deg, #FFC107, #ffeb3b);
    color: #001D4A;
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffeb3b, #FFC107);
    color: #001D4A;
    transform: translateY(-4px);
}

/* Outline Gold Button (for Return Home) */
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--darkblue);
}

/* Clear Button */
.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
}

.open-day-benefits .fa-check {
    font-size: 1.25rem;
}

.open-day-benefits li span {
    font-size: 1.25rem;   /* ίδιο με fs-5 */
}