/**
 * Airmove Master Stylesheet
 * Brand Color: #E10600 (Red)
 */

:root {
    --primary-red: #CC2149;
    --black: #000000;
    --white: #FFFFFF;
    --dark-grey: #121212;
    --light-grey: #F5F5F5;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--primary-red);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.btn:hover {
    background-color: #b01c3f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 33, 73, 0.3);
}

.section-padding {
    padding: 100px 0;
}

/* Marketing & FOMO Elements */
.price-anchor {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.price-strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.fomo-tag {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 800;
    margin-left: 5px;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

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

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

/* Header Styles */
.main-header {
    background-color: var(--black);
    padding: 15px 0;
    position: relative;
    width: 100%;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 55px;
    /* Increased from 40px */
    width: auto;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    width: auto;
    height: auto;
    border: none;
    line-height: normal;
    display: inline-block;
}

.nav-btn:hover {
    background-color: #b01c3f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 33, 73, 0.3);
}

@media (max-width: 768px) {
    .header-container {
        justify-content: center;
    }

    .nav-btn,
    .main-nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 15px 0;
    }

    .header-logo {
        height: 45px;
        /* Increased from 30px */
    }

    .main-nav {
        gap: 15px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 80px 0;
    background-color: var(--white);
    color: var(--black);
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-red);
    padding-left: 15px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--black);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    color: #444;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Promo Badge Styles */
.promo-container {
    margin-bottom: 40px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.promo-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-decoration: line-through;
    margin-right: 15px;
}

.promo-value {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-red);
    background: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(204, 33, 73, 0.4);
}

.hero-actions {
    margin-bottom: 30px;
}

.hero-meta {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 25px;
    max-width: 500px;
}

.meta-dates {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--black);
}

.meta-details {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
        padding-top: 0;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-tag {
        border-left: none;
        border-bottom: 2px solid var(--primary-red);
        padding-left: 0;
        padding-bottom: 5px;
    }

    .hero-meta {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        height: auto;
        padding: 60px 0 60px;
    }

    .promo-badge {
        padding: 10px 20px;
    }

    .promo-value {
        font-size: 1rem;
    }
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 5px;
}

@media (max-width: 360px) {
    .countdown {
        gap: 8px;
    }

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

/* Video Section */
.video-section {
    background-color: var(--white);
}

.video-container {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.trust-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.trust-item {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 480px) {
    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .trust-item {
        margin-bottom: 0;
        width: 100%;
        max-width: 320px;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .trust-item i {
        margin-top: 5px;
        /* Align checkmark with the first line of text */
    }
}

/* What is Airmove */
.what-is {
    background-color: var(--light-grey);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-is-text h2 {
    margin-bottom: 20px;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.what-is-text h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.what-is-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefits-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.what-is-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* What to Expect */
.expect-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.expect-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .expect-title {
        font-size: 1.5rem;
        /* Following updated H2 scale */
        margin-bottom: 20px;
    }

    .expect-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.expect-item {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border-bottom: 4px solid transparent;
    transition: var(--transition), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.expect-item.reveal {
    transition-delay: 0s;
    /* Default */
}

.expect-item.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.expect-item.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.expect-item.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.expect-item.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.expect-item.reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.expect-item.reveal:nth-child(6) {
    transition-delay: 0.6s;
}

.expect-item.reveal:nth-child(7) {
    transition-delay: 0.7s;
}

.expect-item.reveal:nth-child(8) {
    transition-delay: 0.8s;
}

.expect-item.reveal:nth-child(9) {
    transition-delay: 0.9s;
}

.expect-item:hover {
    border-bottom-color: var(--primary-red);
    transform: translateY(-5px);
}

.expect-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.expect-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Event Details */
.event-details {
    background-color: var(--black);
    color: var(--white);
}

.section-title {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.location-box {
    margin-bottom: 30px;
}

.location-tag {
    display: inline-block;
    background: var(--primary-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-name {
    font-size: 1.8rem;
    font-weight: 800;
}

.event-info-box {
    margin-top: 40px;
    padding: 30px;
    border-left: 4px solid var(--primary-red);
    background: #111;
}

.event-start-time {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .event-info-box {
        padding: 20px;
        margin-top: 20px;
    }

    .event-start-time {
        font-size: 1.2rem;
    }
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #222;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Custom Leaflet Marker/Tooltip Styling */
.custom-tooltip {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8) !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
}

.custom-tooltip:before {
    border-top-color: #000000 !important;
}

.custom-div-icon {
    background: transparent !important;
    border: none !important;
}

/* Testimonials */
.testimonials {
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.testimonial-item {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-item.active {
    display: block;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.2;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -20px;
}

.testimonial-text::after {
    bottom: -60px;
    right: -20px;
}

@media (max-width: 480px) {

    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 2rem;
    }

    .testimonial-text::before {
        top: -10px;
        left: -10px;
    }

    .testimonial-text::after {
        bottom: -40px;
        right: -10px;
    }
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slide-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Registration Form */
.registration {
    background-color: var(--light-grey);
}

.form-container {
    max-width: 700px;
    margin: 50px auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

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

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-links li {
    margin-bottom: 12px;
    opacity: 0.7;
}

.footer-links li:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
}

.modal-close:hover {
    color: var(--primary-red);
    background: #eee;
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--black);
}

.modal-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Prevent scroll on body when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Success Message Overlay / Toast */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 40px;
    border-left: 5px solid #28a745;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    display: none;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    .two-column,
    .details-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

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

    .form-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    /* Global Heading Scale for Mobile */
    h1 {
        font-size: 2rem !important;
        line-height: 1.1;
    }

    h2 {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }

    h3 {
        font-size: 1.3rem !important;
        line-height: 1.2;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .countdown {
        gap: 10px;
    }

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

    .what-is-text h3 {
        font-size: 1.6rem;
    }

    .location-name {
        font-size: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .modal-container {
        padding: 30px 15px;
        /* Reduced padding */
        width: 95%;
        max-height: 95vh;
        /* Increase max height */
    }

    .modal-header {
        margin-bottom: 20px;
    }

    .modal-header h2 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .modal-header p {
        font-size: 0.9rem;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

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

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .form-control {
        padding: 10px 12px;
        /* Smaller fields */
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer-registration {
        padding: 25px 15px !important;
        margin-bottom: 40px !important;
    }

    .bottom-registration .form-container {
        padding: 30px 20px !important;
    }
}

@media (max-width: 360px) {
    .modal-header h2 {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-flex {
        gap: 20px;
        padding-top: 0;
    }

    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .promo-container {
        margin: 20px 0;
    }

    .hero-meta {
        font-size: 0.8rem;
    }

    .meta-dates {
        display: block;
        margin-bottom: 5px;
    }
}

/* Responsive Button Text */
.mobile-btn-text {
    display: none;
}

@media (max-width: 480px) {
    .desktop-btn-text {
        display: none;
    }

    .mobile-btn-text {
        display: inline;
    }
}

/* Event Cards Horizontal */
.event-cards-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.event-card-item {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.event-card-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 30px rgba(204, 33, 73, 0.15);
}

.card-date-tag {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.card-city {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.card-details {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.city-trigger {
    width: 100%;
    padding: 15px 20px;
    font-size: 0.85rem;
}

/* Portal CTA */
.portal-cta h3 {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 900;
}

@media (max-width: 992px) {
    .event-cards-horizontal {
        grid-template-columns: 1fr;
    }
}