* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-blue: #1a3c8b;
    --secondary-blue: #2d5aa0;
    --accent-gold: #d4af37;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Collaboration section styles */
.collaboration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 20px;
}

.collab-text {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

.nordic-sky-logo {
    display: flex;
    align-items: center;
}

.partner-logo {
    max-height: 40px;
    /* Adjust as needed */
    width: auto;
    display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .collaboration {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 15px 0;
        display: none;
        /* Hidden on mobile by default */
    }

    .header-container {
        flex-wrap: wrap;
    }
}

/* Optional: Show collaboration on mobile when needed */
@media (max-width: 768px) {
    .collaboration.mobile-visible {
        display: flex;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E2F33;
    margin-left: 10px;
}

.logo-text span {
    color: #9E1827;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* dark overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.15));
    z-index: -1;
}



.hero-content {
    position: relative;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}



.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Specialties Section */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialty-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.specialty-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.specialty-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Aircraft Section */

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 60, 139, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

/* Make sure the slider container has position relative */
.aircraft-slider {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slide-info {
    background: rgba(26, 60, 139, 0.85);
    color: white;
    padding: 20px;
}

.slide-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Navigation arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue, #1a3c8b);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: white;
    color: var(--secondary-blue, #2a5c9a);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-blue, #1a3c8b);
}

/* Mobile styles */
@media (max-width: 768px) {
    .slide img {
        height: 350px;
    }

    .slide-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .aircraft-slider {
        margin: 30px 15px 0;
        border-radius: 8px;
    }

    .slide img {
        height: 280px;
    }

    .slide-info {
        padding: 16px;
    }

    .slide-info h3 {
        font-size: 1.1rem;
    }

    .slide-info p {
        font-size: 0.85rem;
    }

    .slide-info br {
        display: none;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
}

.services-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-right: 20px;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-right: 15px;
    width: 30px;
}

.blinkshare-logo-wrapper {
    width: 30px;


}

.blinkshare-logo {
    width: 25px;
    height: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.btn-send {
    background: transparent;
    color: #494747;
    border: 2px solid #9E1827;
    padding: 14px 48px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

/* hover */
.btn-send:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

/* active (press) */
.btn-send:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* accessibility */
.btn-send:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}


/* Footer */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.picture-frame {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.frame-container {
    text-align: center;
    max-width: 300px;
}

.frame {
    width: 250px;
    height: 250px;
    border: 15px solid #f5f5f5;
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.05);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg,
            rgba(66, 165, 245, 0.1) 0%,
            rgba(66, 165, 245, 0.05) 30%,
            transparent 50%,
            rgba(66, 165, 245, 0.05) 70%,
            rgba(66, 165, 245, 0.1) 100%);
    z-index: 1;
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.picture-caption h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.4rem;
    font-weight: 600;
}

.picture-caption p {
    color: #666;
    margin-bottom: 5px;
    font-size: 1rem;
}

.picture-caption .caption-sub {
    color: #42a5f5;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Update existing contact-container for three-column layout */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

/* ===== BOOKING MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.booking-content {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    margin: 2% auto;
    padding: 0;
    width: 95%;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    min-height: 700px;
    overflow: hidden;
    position: relative;
}

.booking-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.booking-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    margin-bottom: 2rem;
}

.booking-header h2 {
    color: #1a2980;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: #666;
    font-size: 1.1rem;
}

.booking-content form {
    flex: 1;
    background: white;
    padding: 2rem;
    overflow-y: auto;
}

.booking-step {
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.booking-step.active {
    display: block;
}

/* Aircraft Selection */
.aircraft-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.aircraft-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.aircraft-option:hover {
    border-color: #42a5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 165, 245, 0.1);
}

.aircraft-option.selected {
    border-color: #42a5f5;
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.05), rgba(66, 165, 245, 0.1));
}

.aircraft-img {
    width: 100px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.aircraft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aircraft-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.aircraft-info p {
    margin: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.aircraft-info i {
    color: #42a5f5;
    margin-right: 0.5rem;
    width: 16px;
}

.aircraft-check {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #42a5f5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aircraft-option.selected .aircraft-check {
    opacity: 1;
}

/* Date Selection */
.date-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.date-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calendar-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-header h4 {
    margin: 0;
    color: #333;
}

.calendar-nav {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-nav:hover {
    background: #f0f0f0;
    border-color: #42a5f5;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 1rem;
}

.calendar-day-header {
    text-align: center;
    padding: 0.5rem;
    font-weight: bold;
    color: #666;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.booked) {
    background: #e3f2fd;
    border-color: #bbdefb;
}

.calendar-day.selected {
    background: #42a5f5 !important;
    color: white !important;
    border-color: #2196f3 !important;
}

.calendar-day.selected-start {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.calendar-day.selected-end {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.calendar-day.in-range {
    background: #e3f2fd;
}

.calendar-day.booked {
    background: #ffebee;
    color: #c62828;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.booked::after {
    content: '✕';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.today {
    border: 2px solid #ff9800;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.legend-available,
.legend-booked,
.legend-selected {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.legend-available {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
}

.legend-booked {
    background: #ffebee;
    border: 1px solid #ffcdd2;
}

.legend-selected {
    background: #42a5f5;
    border: 1px solid #2196f3;
}

/* Contact Form */
.contact-details-form {
    margin: 2rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.terms-link {
    color: #42a5f5;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Progress Bar */
.booking-progress {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #42a5f5, #26d0ce);
    width: 33.33%;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.progress-step.active {
    background: #42a5f5;
    color: white;
    box-shadow: 0 4px 12px rgba(66, 165, 245, 0.3);
}

/* Booking Navigation */
.booking-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-prev {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.btn-prev:hover {
    background: #e9ecef;
    border-color: #ccc;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #42a5f5, #26d0ce);
    color: white;
    border: none;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 165, 245, 0.3);
}

/* Booking Summary */
.booking-summary {
    width: 300px;
    background: white;
    padding: 2rem;
    border-left: 1px solid #e0e0e0;
    overflow-y: auto;
}

.booking-summary h3 {
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.booking-summary h3 i {
    color: #42a5f5;
    margin-right: 0.5rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #42a5f5;
}

.summary-item strong {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.summary-item span {
    color: #333;
    font-weight: 600;
}

.summary-item.total {
    background: #e8f5e9;
    border-left-color: #4caf50;
    margin-top: 1rem;
}

/* Success Modal */
.success-modal .modal-content {
    max-width: 500px;
    text-align: center;
    padding: 3rem;
    background: white;
    border: solid;
    border-radius: 20px;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.success-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.detail-item {
    margin: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.success-message {
    color: #666;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-close-success {
    background: #42a5f5;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-success:hover {
    background: #2196f3;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-content {
        flex-direction: column;
        margin: 1% auto;
        max-height: 95vh;
    }

    .booking-summary {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }

    .date-selection {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .aircraft-options {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day {
        font-size: 0.85rem;
    }

    .booking-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-prev,
    .btn-next {
        width: 100%;
        justify-content: center;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #42a5f5;
    box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.1);
}

/* Add to your existing .btn styles */
.btn-booking {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 126, 95, 0.3);
}

/* Responsive design */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .picture-frame {
        order: 1;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 3;
    }

    .frame {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .frame {
        width: 180px;
        height: 180px;
        border-width: 12px;
    }

    .picture-caption h4 {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .slide-info h3 {
        font-size: 1.2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}