/* ========================================
   AIRCRAFT CHARTER PAGE STYLES
   ======================================== */

/* AOS Library */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ========================================
   CHARTER CONTAINER & LAYOUT
   ======================================== */

.charter-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.charter-body-section {
    overflow-x: hidden;
}

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

/* ========================================
   HERO SECTION - ELITE PREMIUM
   ======================================== */

#charter-hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.charter-hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 1;
}

.charter-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 20px 25px 20px 25px;
    /*margin: 10px auto 0 auto;*/
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.charter-hero-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    color: #fff;
    background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(171, 150, 108, 0.4);
}

.charter-hero-badge::before {
    content: '★';
    margin-right: 6px;
    font-size: 13px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.charter-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #0D1B3E;
    letter-spacing: -0.5px;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

.charter-hero-subtitle {
    font-size: 13px;
    line-height: 1.5;
    color: #0D1B3E;
    margin-bottom: 0;
    font-family: 'Open Sans-regular', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.charter-hero-cta {
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Open Sans-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(171, 150, 108, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2D5085 0%, #1A3A5F 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 80, 133, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 18px 48px;
    border: 2px solid rgba(171, 150, 108, 0.5);
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Open Sans-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(171, 150, 108, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:hover {
    background: rgba(171, 150, 108, 0.15);
    border-color: #AB966C;
    color: #AB966C;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(171, 150, 108, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 32px;
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover i {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   CHARTER FORM SECTION
   ======================================== */

.charter-form-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

/* Modern Horizontal Form Wrapper */
.charter-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.modern-charter-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: slideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    border: 1px solid rgba(171, 150, 108, 0.1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Form Header */
.form-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 50px;
    background: linear-gradient(135deg, #2D5085 0%, #1A3A5F 100%);
}

.form-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Tabs */
.tabs-modern {
    display: flex;
    gap: 10px;
    padding: 20px 50px 0;
    background: linear-gradient(135deg, #2D5085 0%, #1A3A5F 100%);
}

.tab-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Open Sans-semibold';
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-modern:hover {
    background: rgba(255, 255, 255, 0.15);
}

.tab-modern.active {
    background: #AB966C;
    border-color: #AB966C;
    color: #fff;
}

.charter-section-header {
    margin-bottom: 60px;
}

.charter-section-title {
    font-size: 48px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond-regular', serif;
    color: #2D5085;
    margin-bottom: 16px;
    text-transform: none;
}

.charter-section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    font-family: 'Open Sans-regular', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

.charter-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.charter-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charter-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Tabs */
.tabs {
    display: flex;
    border: 1px solid #E1E4EA;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 10px;
    gap: 19px;
}

.tab {
    flex: 1;
    padding: 9px 28px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: 'Open Sans-semibold';
    font-size: 14px;
    line-height: 20px;
    color: #99A0AE;
    cursor: pointer;
    transition: all 0.5s ease;
    letter-spacing: 0.0;
}

.tab.active {
    background: #AB966C;
    color: #fff;
}

.tab:hover {
    background: rgba(171, 150, 108, 0.1);
}

/* Passenger Counter */
.passenger-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 8px 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.passenger-counter:focus-within {
    border-color: #2D5085;
    box-shadow: 0 0 0 3px rgba(45, 80, 133, 0.1);
}

.passenger-counter input {
    flex: 1;
    border: none;
    padding: 6px;
    text-align: center;
    font-size: 18px;
    font-family: 'Open Sans-bold', sans-serif;
    color: #333;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #2D5085;
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: #AB966C;
    transform: scale(1.1);
}

.counter-btn:active {
    transform: scale(0.95);
}

/* Modern Form Footer */
.form-footer-modern {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(215, 219, 234, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.form-note-modern {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(171, 150, 108, 0.08) 0%, rgba(45, 80, 133, 0.08) 100%);
    border-radius: 12px;
    border-left: 4px solid #AB966C;
}

.form-note-modern i {
    font-size: 20px;
    color: #2D5085;
    margin-top: 2px;
}

.form-note-modern p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #212121;
    font-family: 'Open Sans-regular';
}

.form-note-modern strong {
    font-family: 'Open Sans-bold';
    color: #2D5085;
}

/* Modern Submit Button */
.btn-submit-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-family: 'Open Sans-bold';
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(171, 150, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit-modern:hover::before {
    left: 100%;
}

.btn-submit-modern:hover {
    background: linear-gradient(135deg, #2D5085 0%, #1A3A5F 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 133, 0.4);
}

.btn-submit-modern:active {
    transform: translateY(-1px);
}

.btn-submit-modern i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

/* ========================================
   CHARTER FORM - BRAND NEW DESIGN
   ======================================== */

.charter-form-header-new {
    text-align: center;
    margin-bottom: 40px;
}

.charter-form-title-new {
    font-family: 'Cormorant Garamond-bold', serif;
    font-size: 42px;
    color: #141417;
    margin-bottom: 12px;
}

.charter-form-subtitle-new {
    font-family: 'Open Sans-regular', sans-serif;
    font-size: 16px;
    color: #666;
}

.charter-form-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.charter-trip-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #E5E7EB;
}

.charter-trip-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Open Sans-semibold', sans-serif;
    font-size: 14px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.25s ease;
}

.charter-trip-tab:hover {
    background: #F3F4F6;
    border-color: #D1D5DB;
    color: #374151;
}

.charter-trip-tab.charter-trip-active {
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    border-color: #AB966C;
    color: #fff;
}

.charter-trip-tab i {
    font-size: 14px;
}

.charter-booking-form {
    width: 100%;
}

.charter-form-row-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

#return-date-field {
    transition: all 0.3s ease;
}

.charter-field {
    position: relative;
}

.charter-field-icon {
    position: relative;
}

.charter-field-icon .charter-field-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.charter-field-icon i {
    color: #AB966C;
    font-size: 14px;
}

.charter-field label {
    font-family: 'Open Sans-semibold', sans-serif;
    font-size: 13px;
    color: #2D5085;
    font-weight: 600;
    margin: 0;
}

.charter-field input,
.charter-field select {
    width: 100%;
    height: 50px;
    padding: 14px;
    border: 1.5px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Open Sans-regular', sans-serif;
    font-size: 15px;
    color: #111827;
    background: #fff;
    transition: all 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.charter-field input[type="date"] {
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.charter-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.charter-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.charter-field input[type="date"]::-webkit-inner-spin-button,
.charter-field input[type="date"]::-webkit-clear-button {
    display: none;
}

.charter-field input:focus,
.charter-field select:focus {
    border-color: #AB966C;
    box-shadow: 0 0 0 3px rgba(171, 150, 108, 0.1);
}

.charter-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    height: 50px !important;
    min-height: 50px;
    max-height: 50px;
}

.charter-field select option:first-child {
    display: none;
}

.charter-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 42px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Open Sans-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(171, 150, 108, 0.3);
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

.charter-form-btn:hover {
    background: linear-gradient(135deg, #2D5085 0%, #1A3A5F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 80, 133, 0.35);
}

.charter-form-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.charter-form-btn:hover i {
    transform: translateX(4px);
}

/* OLD COMPACT FORM - KEEP FOR COMPATIBILITY */
.charter-compact-form {
    padding: 40px 50px;
    background: #fff;
}

.charter-form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.charter-form-row-flight {
    grid-template-columns: repeat(4, 1fr);
}

.charter-form-field {
    position: relative;
}

/* Base input styling - applies to ALL inputs */
.charter-compact-form input[type="text"],
.charter-compact-form input[type="tel"],
.charter-compact-form input[type="date"],
.charter-compact-form input[type="number"],
.charter-compact-form select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 2px solid #D7DBEA;
    border-radius: 10px;
    font-family: 'Open Sans-regular', sans-serif;
    font-size: 15px;
    color: #212121;
    background: #FAFAFA;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

/* Placeholder color */
.charter-compact-form input::placeholder {
    color: #99A0AE;
}

/* Focus state */
.charter-compact-form input:focus,
.charter-compact-form select:focus {
    border-color: #AB966C;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(171, 150, 108, 0.1);
}

/* Hover state */
.charter-compact-form input:hover,
.charter-compact-form select:hover {
    border-color: #2D5085;
}

/* Select dropdown styling */
.charter-select-wrap {
    position: relative;
    width: 100%;
}

.charter-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.charter-select-wrap::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #2D5085;
    pointer-events: none;
    font-size: 14px;
}

/* Passenger number input */
.charter-passenger-input {
    width: 100%;
}

.charter-passenger-input input[type="number"] {
    text-align: center;
    font-family: 'Open Sans-semibold', sans-serif;
}

/* Remove number input arrows */
.charter-passenger-input input[type="number"]::-webkit-inner-spin-button,
.charter-passenger-input input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.charter-passenger-input input[type="number"] {
    -moz-appearance: textfield;
}

/* Submit button */
.charter-form-submit {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(215, 219, 234, 0.3);
}

.charter-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #29378c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(14, 26, 43, 0.25);
}

.charter-btn-submit:hover {
    background: #1f2a6b;
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(14, 26, 43, 0.35);
}

.charter-btn-submit:active {
    transform: translateY(-1px);
}

.charter-btn-submit i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.charter-btn-submit:hover i {
    transform: translateX(5px);
}

/* ========================================
   CHARTER LUXURY FEATURES SECTION
   ======================================== */

.charter-luxury-features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.charter-luxury-feature {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.charter-luxury-feature:last-child {
    margin-bottom: 0;
}

.charter-luxury-feature .charter-luxury-content {
    order: 1;
}

.charter-luxury-feature .charter-luxury-image {
    order: 2;
}

.charter-luxury-feature.charter-reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.charter-luxury-feature.charter-reverse .charter-luxury-content {
    order: 2;
}

.charter-luxury-feature.charter-reverse .charter-luxury-image {
    order: 1;
}

.charter-luxury-content {
    padding: 20px 0;
    max-width: 100%;
}

.charter-luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(171, 150, 108, 0.1) 0%, rgba(171, 150, 108, 0.05) 100%);
    border: 2px solid rgba(171, 150, 108, 0.3);
    border-radius: 50px;
    margin-bottom: 16px;
    position: relative;
    font-family: 'Open Sans-bold';
    font-size: 12px;
    color: #AB966C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.charter-luxury-title {
    font-family: 'Cormorant Garamond-bold';
    font-size: 36px;
    line-height: 1.2;
    color: #141417;
    margin-bottom: 16px;
    font-weight: 700;
}

.charter-luxury-text {
    font-family: 'Open Sans-regular';
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.charter-luxury-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.charter-luxury-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-family: 'Open Sans-regular';
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.charter-luxury-list li:hover {
    transform: translateX(6px);
    color: #2D5085;
}

.charter-luxury-list li i {
    font-size: 16px;
    color: #AB966C;
    transition: all 0.3s ease;
}

.charter-luxury-list li:hover i {
    transform: scale(1.15);
    color: #2D5085;
}

.charter-luxury-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Open Sans-bold';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(171, 150, 108, 0.3);
    position: relative;
    z-index: 10;
    margin-top: 10px;
}

.charter-luxury-btn:hover {
    background: linear-gradient(135deg, #2D5085 0%, #1A3A5F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 133, 0.4);
    color: #fff;
    text-decoration: none;
}

.charter-luxury-btn i {
    transition: transform 0.3s ease;
}

.charter-luxury-btn:hover i {
    transform: translateX(4px);
}

.charter-image-wrapper {
    position: relative;
    width: 670px;
    height: 455px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
}

.charter-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.charter-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.charter-image-wrapper:hover img {
    transform: scale(1.08);
}

.charter-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.charter-image-wrapper:hover .charter-image-overlay {
    opacity: 1;
}

.luxury-feature::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(171, 150, 108, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ========================================
   CHARTER ELITE STATS & TESTIMONIALS SECTION
   ======================================== */

.charter-elite-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1628 0%, #1A3A5F 50%, #2D5085 100%);
    position: relative;
    overflow: hidden;
}

.charter-elite-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(171, 150, 108, 0.03) 1px, transparent 1px),
            linear-gradient(rgba(171, 150, 108, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.charter-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.charter-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.charter-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(171, 150, 108, 0.5);
}

.charter-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(171, 150, 108, 0.3);
}

.charter-stat-icon i {
    font-size: 28px;
    color: #fff;
}

.charter-stat-number {
    font-family: 'Cormorant Garamond-bold';
    font-size: 36px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.charter-stat-label {
    font-family: 'Open Sans-regular';
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.charter-testimonials-wrapper {
    position: relative;
    z-index: 1;
}

.charter-section-header-elite {
    margin-bottom: 60px;
}

.charter-elite-title {
    font-family: 'Cormorant Garamond-bold';
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

.charter-elite-subtitle {
    font-family: 'Open Sans-regular';
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.charter-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.charter-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
}

.charter-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(171, 150, 108, 0.5);
}

.charter-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.charter-quote-icon i {
    font-size: 20px;
    color: #fff;
}

.charter-testimonial-text {
    font-family: 'Open Sans-regular';
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.charter-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.charter-author-info h4,
.charter-author-name {
    font-family: 'Open Sans-bold';
    font-size: 16px;
    color: #fff;
    margin: 0 0 4px 0;
}

.charter-author-info span,
.charter-author-title {
    font-family: 'Open Sans-regular';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.charter-benefits-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.charter-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 80, 133, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2D5085 0%, #AB966C 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Open Sans-bold', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5085 0%, #AB966C 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #2D5085;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #2D5085 0%, #AB966C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 32px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 20px;
    line-height: 1.4;
    font-family: 'Open Sans-bold', sans-serif;
    color: #141417;
    margin-bottom: 12px;
    text-transform: none;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    font-family: 'Open Sans-regular', sans-serif;
    margin: 0;
}

/* ========================================
   SAFETY SECTION
   ======================================== */

.charter-safety-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

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

.safety-text h2 {
    margin-bottom: 24px;
}

.safety-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-family: 'Open Sans-regular', sans-serif;
    margin-bottom: 20px;
}

.safety-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.safety-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.safety-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.safety-badge i {
    font-size: 20px;
    color: #28a745;
}

.safety-badge span {
    font-size: 14px;
    font-family: 'Open Sans-bold', sans-serif;
    color: #333;
}

.safety-image {
    position: relative;
}

.safety-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.safety-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    width: 90%;
}

.stat-item {
    flex: 1;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    font-size: 36px;
    line-height: 1;
    font-family: 'Open Sans-bold', sans-serif;
    color: #2D5085;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    font-family: 'Open Sans-regular', sans-serif;
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.charter-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2D5085 0%, #1A3A5F 100%);
    position: relative;
    overflow: hidden;
}

.charter-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond-semibold', serif;
    color: #fff;
    margin-bottom: 20px;
    text-transform: none;
}

.cta-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-family: 'Open Sans-regular', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background: #141417;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Open Sans-regular', sans-serif;
    margin: 0;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .luxury-feature {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .luxury-feature.reverse {
        grid-template-columns: 1fr 1fr;
    }

    .luxury-content {
        padding: 15px 0;
    }

    .luxury-title {
        font-size: 32px;
    }

    .image-wrapper {
        width: 100%;
        height: 380px;
    }
}

/* Mobile (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .charter-hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .charter-form-card {
        padding: 40px 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .safety-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .safety-stats {
        position: static;
        transform: none;
        margin-top: 30px;
        width: 100%;
    }

    /* Charter Luxury Features Tablet Responsive */
    .charter-luxury-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .charter-luxury-feature .charter-luxury-content {
        order: 1;
    }

    .charter-luxury-feature .charter-luxury-image {
        order: 2;
    }

    .charter-luxury-feature.charter-reverse {
        grid-template-columns: 1fr;
    }

    .charter-luxury-feature.charter-reverse .charter-luxury-content {
        order: 1;
    }

    .charter-luxury-feature.charter-reverse .charter-luxury-image {
        order: 2;
    }

    .charter-luxury-title {
        font-size: 32px;
    }

    .charter-luxury-text {
        font-size: 16px;
    }

    .charter-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    #charter-hero {
        min-height: 600px;
        background-size: cover;
        background-position: center center;
        align-items: flex-end;
    }

    .charter-hero-content {
        margin: 0 auto 10px auto;
        padding: 15px 20px 20px 20px;
        max-width: 90%;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }

    .charter-hero-title {
        font-size: 24px;
    }

    .charter-hero-subtitle {
        font-size: 13px;
        line-height: 1.4;
    }

    .charter-hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .charter-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .charter-hero-cta .site-btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 32px;
    }

    /* Modern Form Responsive */
    .form-header-modern {
        flex-direction: column;
        padding: 30px 25px;
        gap: 25px;
    }

    .form-header-content {
        flex-direction: column;
        text-align: center;
    }

    .form-header-text h3 {
        font-size: 26px;
    }

    .tabs-modern {
        flex-direction: column;
        width: 100%;
    }

    .tab-modern {
        justify-content: center;
    }

    /* Charter New Form Responsive */
    .charter-form-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .charter-trip-tabs {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .charter-trip-tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .charter-form-row-new {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .charter-form-title-new {
        font-size: 32px;
    }

    .charter-form-subtitle-new {
        font-size: 14px;
    }

    .charter-form-btn {
        padding: 14px 32px;
    }

    /* Charter Compact Form Responsive */
    .charter-compact-form {
        padding: 30px 20px;
    }

    .charter-form-row,
    .charter-form-row-flight {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    /* Charter Luxury Features Responsive */
    .charter-luxury-feature {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .charter-luxury-feature .charter-luxury-content {
        order: 1;
    }

    .charter-luxury-feature .charter-luxury-image {
        order: 2;
    }

    .charter-luxury-feature.charter-reverse {
        grid-template-columns: 1fr;
    }

    .charter-luxury-feature.charter-reverse .charter-luxury-content {
        order: 1;
    }

    .charter-luxury-feature.charter-reverse .charter-luxury-image {
        order: 2;
    }

    .charter-luxury-content {
        padding: 10px 0;
    }

    .charter-luxury-title {
        font-size: 28px;
    }

    .charter-luxury-text {
        font-size: 15px;
    }

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

    .charter-image-wrapper {
        width: 100%;
        height: 300px;
    }

    /* Charter Elite Stats Responsive */
    .charter-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .charter-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .elite-title {
        font-size: 36px;
    }

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

    .safety-stats {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .charter-hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .charter-form-card {
        padding: 20px 15px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 24px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .site-btn {
        width: 100%;
        max-width: 300px;
    }

    .safety-text p {
        font-size: 15px;
    }

    .safety-badges {
        justify-content: center;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 12px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .charter-hero-title {
        font-size: 24px;
    }

    .charter-hero-subtitle {
        font-size: 14px;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .charter-form-card {
        padding: 15px 10px;
    }

    .tab {
        padding: 12px 16px;
        font-size: 14px;
    }

    .benefit-card {
        padding: 25px 15px;
    }
}
