.oswald-custom {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

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

:root {
    --primary-color: #0056b3;
    --secondary-color: #28a745;
    --accent-color: #ffc107;
    --dark-bg: #1a1a2e;
    --light-bg: #f4f4f4;
    --text-light: #ffffff;
    --text-dark: #212852;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(135deg, #008d3d 0%, #212851 100%);
}

body {
    font-family: "Oswald", sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

p,
strong,
span {
    font-size: 1.2rem;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffffd6;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: rgba(244, 244, 244, 0.35);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    height: 80px;
    padding: 10px;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Dropdown */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.nav-menu .dropdown-menu li a:hover {
    background: #f0f0f0;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.register {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.register .btn-primary {
    padding: 10px 20px;
    font-size: 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary {
    padding: 10px 20px;
    font-size: 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    background: var(--gradient-hero);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============ Language Switcher Flags ============ */
.language-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.language-switcher-flags .flags {
    display: flex;
    gap: 8px;
}

.flag-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 0;
}

.flag-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.flag-btn.active {
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(33, 40, 81, 0.4);
}

.flag-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
    .language-switcher {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .flag-img {
        width: 28px;
        height: 28px;
    }
}

/* Menu hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(0 141 61) 0%, rgb(33 40 81) 100%);
    z-index: 0;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: url('../assets/africa_logistics.png') no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    /* background: linear-gradient(135deg, rgba(40, 167, 70, 0.6) 0%, rgba(0, 87, 179, 0.75) 50%, rgb(33 40 81) 100%); */
    z-index: 1;
}

.hero-video-wrapper iframe {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* Ratio 16:9 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Ratio 16:9 */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease;
    max-width: 1200px;
    padding: 0 20px;
}

/* 
.hero-logo {
    position: relative;
    top: 100px;
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
} */

/* Bouton de contrôle du son */
.sound-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 1.5rem;
}

.sound-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sound-control:active {
    transform: scale(0.95);
}

.section2 {
    /* margin-top: 50px; */
    /* top: 70px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    top: 50px;
    position: relative;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 0.1rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero h2 {
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 30px;
}

.hero .tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    /* margin-bottom: 2rem; */
    margin-top: 2rem;
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.event-date {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.event-date span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgb(255 193 7);
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: end;
}

.cta-button.registration-closed {
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 12px;
    padding: 25px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.closed-message {
    text-align: center;
    padding: 15px;
    /* background: linear-gradient(135deg, #0a6f43 0%, #12554808 100%); */
    border-radius: 8px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: bold;

    span {
        font-size: 1.5rem;
    }

}

.closed-message i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.newsletter-cta {
    text-align: center;
}

.newsletter-text {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.newsletter-form-inline .input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-newsletter {
    padding: 12px 25px;
    background: rgb(255 193 7);
    color: var(--text-dark);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-newsletter i {
    margin-right: 8px;
}

.newsletter-message {
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}

.newsletter-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-button.registration-closed {
        padding: 20px 15px;
    }

    .newsletter-form-inline .input-group {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }

    .closed-message {
        font-size: 1rem;
        padding: 12px;
    }
}

.btn {
    padding: 10px 2.5rem;
    font-size: 1.7em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 3rem 0 0;
    flex-wrap: nowrap;
}

.countdown-item {
    background: #202852bf;
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}


/* Controller Message */
.comptroller-message-section {
    padding: 120px 20px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #fcfafcfa 100%);
    position: relative;
    overflow: hidden;
}

.comptroller-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header .underline {
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
    border-radius: 20px;
    padding: 50px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.comptroller-photo {
    position: relative;
}

.photo-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.photo-wrapper:hover {
    transform: scale(1.05);
}

.photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.photo-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
}

.message-text {
    color: var(--text-dark);
}

.message-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.message-text p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
    color: #333;
}

.message-text p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin: 5px 10px 0 0;
    color: var(--secondary-color);
}

.signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.signature .name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.signature .title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.signature .organization {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .message-content {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .message-text h3 {
        font-size: 1.5rem;
    }

    .comptroller-photo {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .comptroller-message-section {
        padding: 50px 15px;
    }

    .message-content {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .message-text h3 {
        font-size: 1.3rem;
    }

    .message-text p {
        font-size: 1rem;
    }
}

/* Key Dates Section */
.key-dates {
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.key-dates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

/* Overlay blanc léger */
.key-dates::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230099ff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    background: #00963f;
    opacity: 0.75;
    backdrop-filter: blur(5px) brightness(0);
    z-index: 1;
}

#key-dates .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    background: var(--text-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

#key-dates .section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #eaeaea;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.date-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 10px solid var(--primary-color);
}

.date-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.date-card:hover::before {
    left: 100%;
}

.date-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.date-title {
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.date-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.date-description {
    color: #666;
    line-height: 1.6;
}

.date-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.status-upcoming {
    background: rgba(255, 193, 7, 0.2);
    color: #d68910;
}

.status-open {
    background: rgba(40, 167, 69, 0.2);
    color: #1e7e34;
}

.status-deadline {
    background: rgba(220, 53, 69, 0.2);
    color: #bd2130;
}

/* Venue Locations Section */
.venue-locations {
    padding: 120px 20px 20px;
    background: white;
}

.venues-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.venue-card {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 3rem;
    /*background: #f8f9fa;*/
    /* border-radius: 20px; */
    overflow: hidden;
    /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
}

.venue-card:hover {
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
}

.venue-card:nth-child(even) {
    direction: rtl;
}

.venue-card:nth-child(even)>* {
    direction: ltr;
}

.venue-map {
    position: relative;
    min-height: 400px;
    background: #e0e0e0;
    overflow: hidden;
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.venue-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0056b3 0%, #28a745 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.venue-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.venue-address {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.venue-address-icon {
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.venue-detail-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.venue-detail-content {
    flex: 1;
}

.venue-detail-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.venue-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.venue-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.venue-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.venue-btn-primary {
    background: var(--primary-color);
    color: white;
}

.venue-btn-primary:hover {
    background: #003d82;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.venue-btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.venue-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .venue-card {
        grid-template-columns: 1fr;
    }

    .venue-card:nth-child(even) {
        direction: ltr;
    }

    .venue-map {
        min-height: 350px;
    }

    .venue-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    .key-dates,
    .venue-locations {
        padding: 60px 15px;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }

    .dates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .date-card {
        padding: 2rem;
    }

    .venue-name {
        font-size: 1.6rem;
    }

    .venue-address {
        font-size: 1rem;
    }

    .venue-map {
        min-height: 300px;
    }

    .venue-buttons {
        flex-direction: column;
    }

    .venue-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .date-card {
        padding: 1.5rem;
    }

    .date-icon {
        font-size: 2.5rem;
    }

    .date-title {
        font-size: 1.3rem;
    }

    .date-value {
        font-size: 1.5rem;
    }

    .venue-info {
        padding: 1.5rem;
    }

    .venue-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }

    .venue-name {
        font-size: 1.4rem;
    }
}

/* About Section */
.about {
    padding: 120px 20px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #fcfafcfa 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3rem);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-hero);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-card p {
    color: #666;
    line-height: 1.8;
}


/* Programs Section */
.programs {
    padding: 120px 20px 20px;
    background: #f8f9fa;
}

#programs .section-title,
#speakers .section-title,
#venues .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#programs .section-subtitle,
#speakers .section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Day Tabs */
.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.logistic-tab,
.day-tab {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 1.5rem 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.logistic-tab:hover,
.day-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logistic-tab.active,
.day-tab.active {
    background: linear-gradient(135deg, #0056b3 0%, #28a745 100%);
    border-color: var(--primary-color);
    color: white;
}

.day-tab-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}

.day-tab.active .day-tab-date {
    opacity: 1;
}

.day-tab-name {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Program Content */
.logistic-program-content,
.program-content {
    display: none;
}

.logistic-program-content.active,
.program-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-timeline {
    position: relative;
    padding-left: 3rem;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.program-item {
    position: relative;
    margin-bottom: 2.5rem;
    background: white;
    padding: 2rem;
    /* border-radius: 15px; */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.program-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.program-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--accent-color);
}

.program-time {
    display: inline-block;
    background: linear-gradient(135deg, #0056b3 0%, #28a745 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.program-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.program-description {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.program-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.program-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #222;
}

.program-detail-icon {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Speakers Section */
.speakers {
    padding: 120px 20px 20px;
    background: white;
}

/* 
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.speaker-card {
    background: white;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.speaker-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
}

.speaker-info {
    padding: 2rem;
}

.speaker-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.speaker-title {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.speaker-organization {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.speaker-bio {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.speaker-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}*/

/* Filter Buttons */
.speaker-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--gradient-hero);
    border-color: var(--primary-color);
    color: white;
}


.speakers {
    max-width: 1400px;
    margin: 0 auto;
}

/* 
.speaker-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: white;
    border-color: #0066cc;
} */

#speakers .btn-primary {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#speakers .btn-primary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 12, 12, 0.3);
    /* background: var(--gradient-hero); */
}

.carousel-container {
    position: relative;
    padding: 0 60px;
}

.speakers-carousel {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 25px;
}

.speaker-card {
    flex: 0 0 calc(25% - 17px);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.speaker-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-badge.keynote {
    background: linear-gradient(135deg, #dc3545 0%, #a82835 100%);
}

.speaker-badge.moderator {
    background: linear-gradient(135deg, #28a745 0%, #20873a 100%);
}

.speaker-badge.panelist {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.speaker-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.speaker-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
}

.speaker-image i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 1;
    transition: transform 0.3s ease;
}

.speaker-info {
    padding: 25px;
}

.speaker-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.speaker-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 5px;
}

.speaker-organization {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 15px;
    font-style: italic;
}

.speaker-bio {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.6;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e9ecef;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    font-size: 20px;
    color: #495057;
}

.carousel-btn:hover i {
    color: white;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0066cc;
    width: 35px;
    border-radius: 6px;
}

.dot:hover {
    background: #adb5bd;
}

@media (max-width: 1024px) {
    .speaker-card {
        flex: 0 0 calc(50% - 13px);
    }

    .carousel-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .speaker-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 10px 22px;
    }

    .speaker-card {
        flex: 0 0 100%;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn i {
        font-size: 16px;
    }

    .speaker-image {
        height: 220px;
    }

    .speaker-image i {
        font-size: 60px;
    }

    .speaker-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {

    .carousel-container {
        padding: 0 35px;
    }

    .speaker-info {
        padding: 20px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn i {
        font-size: 14px;
    }
}

/* Responsive */
@media (max-width: 768px) {

    .programs,
    .speakers {
        padding: 60px 15px;
    }

    .program-timeline {
        padding-left: 2rem;
    }

    .program-item::before {
        left: -2rem;
    }

    .program-item {
        padding: 1.5rem;
    }

    .program-title {
        font-size: 1.2rem;
    }

    .program-details {
        flex-direction: column;
        gap: 0.8rem;
    }

    .logistic-tab,
    .day-tab {
        min-width: 150px;
        padding: 1rem 1.5rem;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .speaker-image {
        height: 280px;
    }

    .speaker-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .program-timeline::before {
        left: -5px;
    }

    .program-timeline {
        padding-left: 1.5rem;
    }

    .program-item {
        padding: 1.2rem;
    }

    .program-item::before {
        width: 15px;
        height: 15px;
        left: -1.8rem;
    }

    .logistic-tab,
    .day-tab {
        min-width: 130px;
        padding: 0.8rem 1rem;
    }

    .day-tab-name {
        font-size: 1.1rem;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners Section */
.partners {
    padding: 120px 20px 20px;
    position: relative;
    overflow: hidden;
    background: white;
    /* box-shadow: 0 -10px 90px 1px rgba(0, 0, 0, 0.3); */
}

#become-partner {
    padding: 120px 0 50px;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/africa_logistics.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

/* Overlay blanc léger */
.partners::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(255, 255, 255, 0.15), rgb(255, 255, 255, 0.8) 50%);
    /* background: rgb(216 238 255); */
    backdrop-filter: contrast(0.95) blur(5px);
    z-index: 1;
}

.partners .container {
    position: relative;
    z-index: 2;
}

.partners .section-title,
.partners .section-subtitle,
.partners .partners-grid {
    position: relative;
    z-index: 2;
}

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

.partner-logo {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 10px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.3) !important;
}

/* Logistics Section */
.logistics {
    padding: 120px 20px 20px;
    background: var(--gradient-hero);
    color: white;
}

/* Logistics Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

#logistics .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    -webkit-text-fill-color: white;
}

#logistics .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
}

/* Tabs Layout - Vertical */
.logistics-tabs-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Tabs Navigation - Left Side */
.logistics-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.tab-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.tab-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: #ffc107;
    border-radius: 0 4px 4px 0;
    transition: width 0.3s ease;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.tab-button.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffc107;
    color: var(--dark-bg);
}

.tab-button.active::before {
    width: 4px;
}

.tab-button .icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.tab-button-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tab-button-title {
    font-weight: 600;
}

.tab-button-subtitle {
    font-size: 1rem;
    opacity: 0.7;
}

/* Tabs Content - Right Side */
.logistics-content {
    position: relative;
    min-height: 400px;
    max-width: 1200px;
    margin: 0 auto;
}

.logistics-content ul li {
    font-size: 1.2rem;
}

.visa-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* --- Travel card --- */
.travel-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
}

.tab-panel {
    display: none;
    animation: fadeInRight 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-panel.active {
    display: block;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tab-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.tab-panel-header .icon {
    font-size: 3rem;
    color: #ffc107;
}

.tab-panel-header h3 {
    font-size: 2rem;
    margin: 0;
    color: white;
}

.tab-panel-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.tab-panel ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.tab-panel li {
    padding: 1.2rem 1.5rem;
    padding-left: 3rem;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid #ffc107;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    line-height: 1.6;
}

.tab-panel li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tab-panel li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc107;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .logistics-tabs-wrapper {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }

    .tab-button {
        padding: 1.2rem 1rem;
    }

    .tab-button-title {
        font-size: 0.95rem;
    }

    .tab-panel {
        padding: 2rem;
    }

    .tab-panel-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .logistics {
        padding: 60px 15px;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }

    .logistics-tabs-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logistics-tabs {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.8rem;
        padding-bottom: 1rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

    .logistics-tabs::-webkit-scrollbar {
        height: 6px;
    }

    .logistics-tabs::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .logistics-tabs::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
    }

    .tab-button {
        min-width: 200px;
        padding: 1rem;
        flex-shrink: 0;
    }

    .tab-button::before {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 0;
    }

    .tab-button.active::before {
        height: 4px;
        width: 60%;
    }

    .tab-button-subtitle {
        display: none;
    }

    .tab-panel {
        padding: 2rem 1.5rem;
    }

    .tab-panel-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .tab-panel-header h3 {
        font-size: 1.5rem;
    }

    .tab-panel-description {
        font-size: 1rem;
    }

    .tab-panel ul {
        grid-template-columns: 1fr;
    }

    .tab-panel li {
        font-size: 0.95rem;
        padding: 1rem;
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logistics-tabs {
        gap: 0.5rem;
    }

    .tab-button {
        min-width: 160px;
        padding: 0.9rem 0.8rem;
    }

    .tab-button .icon {
        font-size: 1.5rem;
    }

    .tab-button-title {
        font-size: 0.9rem;
    }

    .tab-panel {
        padding: 1.5rem 1rem;
    }

    .tab-panel-header .icon {
        font-size: 2.5rem;
    }

    .tab-panel-header h3 {
        font-size: 1.3rem;
    }

    .tab-panel-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .tab-panel li {
        font-size: 0.9rem;
        padding: 0.9rem;
        padding-left: 2.2rem;
    }

    .tab-panel li::before {
        font-size: 1.1rem;
        left: 0.8rem;
    }
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.logistics-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logistics-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.logistics-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.logistics-item ul {
    list-style: none;
    padding: 0;
}

.logistics-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.logistics-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}


.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.hotel-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.hotel-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hotel-card:nth-child(1) .hotel-image {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.hotel-card:nth-child(2) .hotel-image {
    background: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
}

.hotel-card:nth-child(3) .hotel-image {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

.hotel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" opacity="0.1" fill="white">🏨</text></svg>') center/80px no-repeat;
}

.hotel-stars {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f39c12;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hotel-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.hotel-rooms {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.rooms-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #dee2e6;
}

.room-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.room-name {
    font-size: 0.9rem;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-name i {
    color: #0066cc;
    font-size: 0.85rem;
}

.room-price {
    font-weight: 700;
    color: #28a745;
    font-size: 0.95rem;
    white-space: nowrap;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: #e7f3ff;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature i {
    font-size: 0.75rem;
}

.important-notice {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #dc3545;
}

.notice-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 18px;
}

.notice-title i {
    font-size: 1.5rem;
}

.notice-item {
    display: flex;
    margin-bottom: 15px;
    padding: 12px;
    height: 100%;
    background: #3d9eff45;
    border-radius: 6px;
    align-items: center;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-item i {
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.notice-text {
    color: #333;
    line-height: 1.6;
    font-size: 1.3em;
}

.notice-text strong {
    color: #222;
    font-weight: 600;
}

.deadline {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.deadline i {
    color: #856404;
}

.deadline .notice-text {
    color: #856404;
}

@media (max-width: 1080px) {
    .hotels-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {

    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hotel-image {
        height: 180px;
    }

    .hotel-name {
        font-size: 1.15rem;
    }

    .room-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .room-price {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {

    .hotel-content {
        padding: 15px;
    }

    .hotel-rooms {
        padding: 12px;
    }

    .important-notice {
        padding: 18px;
    }

    .notice-title {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact {
    padding: 140px 20px;
    background: #f8f9fa;
}

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

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: larger;
}

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


/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 20px 20px 1rem;
    text-align: center;
}

footer .section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

footer .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer .section-header p {
    font-size: 1.1rem;
    color: #eaeaea;
    max-width: 600px;
    margin: 20px auto 0;
}

footer .section-header .underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-hero);
    margin: 0 auto;
    border-radius: 2px;
}

footer .contact-wrapper {
    margin-bottom: 1rem;
    align-items: start;
    animation: fadeInUp 1s ease-out 0.3s both;
}

footer .contact-infos {
    background: var(--gradient-hero);
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--text-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 100px;
    text-align: left;
}

footer .contact-infos h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

footer .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

footer .info-item:hover {
    transform: translateX(10px);
}

footer .info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

footer .info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

footer .info-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

footer .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

footer .social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    color: var(--text-light);
}

.contact-form-container {
    padding: 25px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 10px;
}

footer .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

footer .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

footer .form-group input,
footer .form-group select,
footer .form-group textarea {
    width: 100%;
    padding: 5px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

footer .form-group input:focus,
footer .form-group select:focus,
footer .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

footer .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

footer .form-group select {
    cursor: pointer;
}

footer .submit-btn {
    background: var(--gradient-hero);
    color: var(--text-light);
    padding: 16px 50px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 141, 61, 0.3);
}

footer .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 141, 61, 0.4);
}

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

footer .success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    animation: slideDown 0.5s ease-out;
}

footer .success-message.show {
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    footer .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer .contact-infos {
        position: static;
    }

    footer .contact-form-container {
        padding: 35px;
    }

    footer .form-row {
        grid-template-columns: 1fr;
    }

    footer .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    footer .contact-section {
        padding: 50px 15px;
    }

    footer .contact-form-container {
        padding: 25px;
    }

    footer .contact-infos {
        padding: 35px 25px;
    }

    footer .section-header h2 {
        font-size: 1.6rem;
    }

    footer .submit-btn {
        padding: 14px 40px;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Modal Overlay */
/* --- Modal --- */
.colapse {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.colapse:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.collapse-btn {
    width: 100%;
    padding: 18px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.collapse-btn:hover {
    opacity: 0.9;
}

.collapse-btn i {
    font-size: 20px;
}

.collapse-content {
    display: none;
    padding: 25px;
    background: #fafafa;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    position: absolute;
    left: 45px;
    top: 15px;
    color: #999;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 40px;
    font-size: 12px;
    color: #667eea;
    background: white;
    padding: 0 5px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #667eea;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.checkbox-group label:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.checkbox-group label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-left: auto;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-group label span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.conditional-section {
    display: none;
    animation: fadeIn 0.3s;
}

.conditional-section.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 25px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.close:hover {
    color: red;
}

/* --- Collapse --- */
.colapse,
.collapse {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.collapse-btn {
    background: #f5f5f5;
    width: 100%;
    border: none;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.collapse-btn:hover {
    background: #e8e8e8;
}

.collapse-content {
    overflow: hidden;
    transition: display 0.4s ease;
    background: #fff;
    padding: 0 15px;
}

.colapse.active .collapse-content {
    display: block !important;
    padding: 0 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Titles */
.modal-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-section {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

/* Form Elements */
.modal-content label {
    display: block;
    margin-top: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
    outline: none;
}

.conditional-section {
    display: none;
    animation: fadeIn 0.3s;
}

.conditional-section.show {
    display: block;
}

/* Modal wider */
.modal-content {
    max-width: 900px;
    font-family: inherit;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.checkbox-group label:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.checkbox-group label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-left: auto;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-group label span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

/* Form rows (2 columns) */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Form group with icons */
.form-group {
    position: relative;
    margin-top: 15px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff;
    transition: 0.3s;
    font-weight: 400;
}

.form-group textarea {
    min-height: 80px;
}

/* Floating labels */
.form-group label {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #aaa;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease all;
    font-weight: 400;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -8px;
    left: 35px;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: #fff;
    opacity: 1;
    padding: 0 4px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Elements Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }

    .countdown-value {
        font-size: 1.8rem;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}