/* Root Variables */
:root {
    --primary-red: #E3000F;
    --primary-blue: #0047AB;
    --dark-blue: #002D72;
    --light-blue: #4A90E2;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #333333;
    --gradient-red: linear-gradient(135deg, #E3000F 0%, #C70000 100%);
    --gradient-blue: linear-gradient(135deg, #0047AB 0%, #002D72 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-blue);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo-text {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-mark {
    width: 84px;
    height: 84px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 12px 25px rgba(0, 0, 0, 0.35));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-red);
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 700;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 47, 171, 0.7) 0%, rgba(227, 0, 15, 0.6) 100%);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active,
.indicator:hover {
    background: var(--white);
    transform: scale(1.2);
}

.hero-overlay {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    filter: drop-shadow(0 25px 65px rgba(0, 0, 0, 0.45));
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 14px 45px rgba(0, 0, 0, 0.65);
    animation: fadeInUp 1s ease-out;
}

.hero-title-line:first-child {
    display: inline-block;
    margin-right: 0.35rem;
    white-space: nowrap;
    font-size: clamp(1.7rem, 4vw, 3.1rem);
}

.hero-title-line:last-child {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    margin-bottom: 3rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(227, 0, 15, 0.4);
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
}

.qr-code {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.qr-code img {
    width: 120px;
    height: 120px;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
    scroll-margin-top: 120px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.section-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.25));
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--gray-light);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--gray-dark);
}

/* Dates Section */
.dates {
    background: var(--white);
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.date-card {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.date-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.minimal-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.minimal-icon svg {
    display: block;
}

.date-icon {
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.date-icon svg {
    width: 42px;
    height: 42px;
}

.date-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location {
    font-size: 1.1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--white);
}

.location-pin {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.location-pin svg {
    width: 18px;
    height: 18px;
}

.location-link {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-link:hover,
.location-link:focus-visible {
    color: #cfdcff;
}

/* Program Section */
.program {
    background: var(--gray-light);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-red);
}

.program-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.program-icon {
    margin: 0 auto 1rem;
    background: var(--gradient-blue);
    box-shadow: var(--shadow-sm);
}

.program-icon svg {
    width: 38px;
    height: 38px;
}

.program-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.program-item p {
    color: var(--gray-dark);
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    background: var(--white);
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.price-box {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.price-amount {
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-description {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.75rem;
    border-radius: 12px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.price-description p {
    margin: 0;
}

.price-description ul {
    margin: 1rem 0 0 1.25rem;
    padding: 0;
    list-style: disc;
    text-align: left;
}

.price-description li {
    margin-bottom: 0.35rem;
}

.price-includes {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.price-includes ul {
    list-style: none;
    margin-top: 1rem;
}

.price-includes li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.payment-info {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 16px;
}

.payment-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.payment-details {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.payment-details p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-red);
    font-weight: 700;
}

.storno-list {
    list-style: none;
}

.storno-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.storno-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.qr-code-large {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-divider {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.qr-code-large img {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
}

.qr-code-large p {
    color: var(--gray-dark);
    font-weight: 600;
    text-align: center;
}

/* Schedule Section */
.schedule {
    background: var(--gray-light);
}

.schedule-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 1rem;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(0, 71, 171, 0.15), rgba(227, 0, 15, 0.35));
}

.timeline-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem 0 1.5rem 0.5rem;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 136px;
    top: 2.2rem;
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 6px rgba(0, 71, 171, 0.08);
}

.timeline-item.training::after {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 6px rgba(0, 71, 171, 0.18);
}

.timeline-time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
    text-align: right;
    padding-right: 1.5rem;
    white-space: nowrap;
    display: flex;
    justify-content: flex-end;
}

.timeline-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.11);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.timeline-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.timeline-item.training .timeline-card {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.18), rgba(0, 144, 255, 0.16));
    border: 1px solid rgba(0, 144, 255, 0.4);
}

.timeline-item:last-child::after {
    box-shadow: 0 0 0 6px rgba(227, 0, 15, 0.05);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-names {
    margin-top: 0.75rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Partners Section */
.partners {
    background: var(--gray-light);
    padding: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.partners-grid.single-partner {
    max-width: 360px;
    margin: 0 auto;
}

.partner-logo {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-height: 110px;
    width: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-blue);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero */
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3.8vw, 1.3rem);
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .cta-button.large {
        font-size: 1.25rem;
        padding: 1.25rem 2.5rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

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

    .section-title {
        font-size: 2.25rem;
    }

    /* Schedule Timeline */
    .schedule-timeline {
        padding-left: 0;
    }

    .schedule-timeline::before {
        left: 24px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .timeline-item::after {
        left: 24px;
    }

    .timeline-time {
        text-align: left;
        padding-right: 0;
        padding-left: 3.5rem;
        margin-bottom: 0.5rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    /* Pricing */
    .pricing-content {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 4.5vw, 1.1rem);
    }

    .section-title {
        font-size: 1.85rem;
    }

    .qr-code img {
        width: 100px;
        height: 100px;
    }

    .qr-code-large img {
        width: 150px;
        height: 150px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}
.audience {
    background: var(--gray-light);
}

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