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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.header-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .header-banner img {
        width: 190px;
    }

/* Hero Section */
.hero-section {
    background-color: #F000;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0px 0 60px 0;
}


    .hero-section .header-text_top {
        font-weight: 400;
        font-size: 64px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
    }

    .hero-section .header-text_bot {
        font-family: 'Montserrat', sans-serif;
        max-width: 1300px;
        font-weight: 800;
        font-size: 100px;
        line-height: 120%;
        text-align: center;
        vertical-align: middle;
    }

.newsletter-btn {
    width: 400px;
    height: 68px;
    opacity: 1;
    padding: 10px;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    transition: all 0.3s;
}

    .newsletter-btn:hover {
        background-color: #ddd;
    }

.help-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #0088cc;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}

/* Carousel Section */
.carousel-container {
    position: relative;
    width: 100%;
    padding: 40px 0 80px;
    overflow: hidden;
    background: linear-gradient(to bottom, #000 0%, #001a2e 50%, #000 100%);
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 580px;
    height: 280px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    overflow: hidden;
    cursor: grab;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

    .slide:active {
        cursor: grabbing;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }

    /* Slide positions - curved layout */
    .slide.far-left {
        transform: translateX(-900px) scale(0.6);
        opacity: 0;
        z-index: 0;
        filter: blur(3px);
    }

    .slide.left {
        transform: translateX(-620px) translateY(-30px) scale(0.75);
        opacity: 0.5;
        z-index: 1;
        filter: blur(1px);
    }

    .slide.center {
        transform: translateX(0) translateY(-50px) scale(1);
        opacity: 1;
        z-index: 3;
        box-shadow: 0 30px 80px rgba(0, 120, 200, 0.25);
    }

    .slide.right {
        transform: translateX(620px) translateY(-30px) scale(0.75);
        opacity: 0.5;
        z-index: 1;
        filter: blur(1px);
    }

    .slide.far-right {
        transform: translateX(900px) scale(0.6);
        opacity: 0;
        z-index: 0;
        filter: blur(3px);
    }

/* Navigation buttons */
.carousel-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-nav:hover {
        background-color: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .carousel-nav.prev {
        left: 50px;
    }

    .carousel-nav.next {
        right: 50px;
    }

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

    .indicator.active {
        background-color: #fff;
        transform: scale(1.3);
    }

    .indicator:hover {
        background-color: rgba(255, 255, 255, 0.6);
    }

/* Bottom Section */
.bottom-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #000;
}

    .bottom-section .header-text_top {
        font-weight: 700;
        font-size: 60px;
        line-height: 1;
        vertical-align: middle;
        margin-bottom: 20px;
    }

    .bottom-section .header-text_bot {
        font-weight: 510;
        font-size: 36px;
        line-height: 1;
        vertical-align: middle;
        margin-bottom: 30px;
        color: #aaa;
    }

.signup-btn {
    width: 400px;
    height: 68px;
    opacity: 1;
    padding: 10px;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    transition: all 0.3s;
}

    .signup-btn:hover {
        background-color: #ddd;
    }

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    padding: 60px 40px;
    background-color: #000;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 5px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #00a8ff;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    color: #ccc;
    text-align: center;
    line-height: 1.6;
    max-width: 300px;
}

.map-wrapper {
    flex: 1;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    /*box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2);*/
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .carousel {
        height: 250px;
    }

    .slide {
        width: 380px;
        height: 220px;
    }

        .slide.far-left {
            transform: translateX(-600px) scale(0.5);
        }

        .slide.left {
            transform: translateX(-420px) translateY(-20px) scale(0.7);
        }

        .slide.center {
            transform: translateX(0) translateY(-30px) scale(0.95);
        }

        .slide.right {
            transform: translateX(420px) translateY(-20px) scale(0.7);
        }

        .slide.far-right {
            transform: translateX(600px) scale(0.5);
        }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

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

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

    .contact-section {
        gap: 40px;
        flex-direction: column;
    }

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

    .hero-section .header-text_top {
        font-weight: 400;
        font-size: 32px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
    }

    .hero-section .header-text_bot {
        font-weight: 700;
        font-size: 64px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
    }

    .newsletter-btn {
        font-weight: 400;
        font-size: 24px;
    }

    .bottom-section .header-text_top {
        font-weight: 700;
        font-size: 48px;
        line-height: 1;
    }

    .bottom-section .header-text_bot {
        font-weight: 500;
        font-size: 28px;
        line-height: 1;
    }

    .signup-btn {
        font-weight: 400;
        font-size: 24px;
    }
}

@media (max-width: 440px) {
    .hero-section .header-text_top {
        font-weight: 400;
        font-size: 24px;
    }

    .hero-section .header-text_bot {
        font-weight: 700;
        font-size: 40px;
    }

    .newsletter-btn {
        font-weight: 400;
        font-size: 24px;
        width: 260px;
        height: 60px;
        padding: 8px 16px;
    }

    .bottom-section .header-text_top {
        font-weight: 700;
        font-size: 32px;
    }

    .bottom-section .header-text_bot {
        font-weight: 500;
        font-size: 18px;
    }

    .signup-btn {
        font-weight: 400;
        font-size: 24px;
        width: 260px;
        height: 60px;
        padding: 8px 16px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal.active {
        opacity: 1;
    }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #000;
    border: 2px solid #00a8ff;
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 50px rgba(0, 168, 255, 0.3);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #00a8ff;
    font-size: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-close:hover {
        color: #fff;
        transform: rotate(90deg);
    }

.modal-title {
    color: #00a8ff;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    position: relative;
}

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        background: transparent;
        border: 1px solid #333;
        border-radius: 5px;
        color: #fff;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #00a8ff;
            box-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
        }

        .form-group input::placeholder {
            color: #666;
        }

.required-mark {
    color: #ff4444;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.date-group label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

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

    .date-inputs select {
        padding: 12px 10px;
    }

.submit-btn {
    background: #00a8ff;
    color: #000;
    border: none;
    padding: 15px 60px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto 0;
    display: block;
    text-transform: uppercase;
}

    .submit-btn:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 168, 255, 0.4);
    }

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }

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

    .modal-title {
        font-size: 22px;
    }
}

/* Custom Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #111;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #00a8ff;
    border-radius: 4px;
}

/* Date Input Styling */
.date-input-group {
    position: relative;
}

    .date-input-group label {
        display: block;
        color: #666;
        font-size: 14px;
        margin-bottom: 8px;
    }

.date-input {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    color-scheme: dark;
    cursor: pointer;
}

    .date-input:focus {
        outline: none;
        border-color: #00a8ff;
        box-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
    }

    .date-input::-webkit-calendar-picker-indicator {
        filter: invert(1) brightness(1.5);
        cursor: pointer;
        padding: 5px;
        transition: all 0.3s ease;
    }

        .date-input::-webkit-calendar-picker-indicator:hover {
            filter: invert(0.5) sepia(1) saturate(5) hue-rotate(175deg);
        }

    .date-input:invalid {
        color: #666;
    }

    .date-input:valid {
        color: #fff;
    }

    /* Firefox specific */
    .date-input::-moz-calendar-picker-indicator {
        filter: invert(1);
    }

/* Responsive mobile */
@media (max-width: 768px) {
    .date-input {
        font-size: 16px;
    }
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(175deg) brightness(1.2);
    cursor: pointer;
    padding: 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

    .date-input::-webkit-calendar-picker-indicator:hover {
        filter: invert(0.5) sepia(1) saturate(5) hue-rotate(175deg) brightness(1.5);
        transform: scale(1.15);
    }

/* Alert positioning */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .alert i {
        margin-right: 8px;
    }

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
}

    .form-select:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

.form-select {
    background-color: #111;
    color: #fff;
    border: 1px solid #333;
}

    .form-select option {
        background-color: #111;
        color: #fff;
    }

.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

body.light-mode .logo-dark {
    display: none;
}

body.light-mode .logo-light {
    display: block;
}