/* CSS Variables */
:root {
    --color-primary: #2e4755;
    --color-primary-dark: #263a46;
    --color-secondary: #b08747;
    --color-text-primary: #111827;
    --color-text-secondary: #374151;
    --color-text-muted: #6b7280;
    --color-text-light: #e5e7eb;
    --color-border: #e5e7eb;
    --color-white: #ffffff;
    --color-background: #f9fafb;
    --color-success: #10b981;
    --color-error: #ef4444;
    --font-primary: 'EtihadAltis-Book','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #005f96;
    text-decoration: none;
    transition: opacity 0.2s;
}

    a:hover {
        opacity: 0.8;
    }

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message {
    color: var(--color-error);
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

    .error-message.show {
        display: block;
    }

.input-error {
    border-color: var(--color-error) !important;
    /*border: 1px solid #d92d20 !important;*/
}

/*progressbar {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 10001;
}

.loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 40px;
    min-width: 320px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.loader-image {
    width: 90px;
    height: auto;
    margin-bottom: 16px;
}

.loader-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.loader-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}*/

/* Main Container */
.main-container {
    display: flex;
    min-height: 100vh;
    background: var(--color-white);
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* Navigation Panel */
.navigation-panel {
    width: 64px;
    background: var(--color-primary-dark);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 100;
    transition: width 0.3s ease;
}

    .navigation-panel.expanded {
        width: 200px;
    }

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
}

.logo-container {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wing-logo {
    width: 24px;
    height: 24px;
    background: var(--color-white);
    border-radius: 50%;
}

.nav-divider {
    width: 22px;
    height: 1px;
    background: #4b5563;
}

.nav-toggle-btn {
    position: absolute;
    right: -14px;
    top: 69px;
    width: 28px;
    height: 28px;
    background: var(--color-primary-dark);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: rotate(-90deg);
    transition: transform 0.3s;
}

    .nav-toggle-btn:hover {
        background: var(--color-primary);
    }

.chevron-icon {
    width: 16px;
    height: 16px;
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    margin-left: 64px;
    display: flex;
    flex-direction: column;
}

/* Hero Header */
.hero-header {
    width: 100%;
    /*height: 269px;*/
    height: 175px;
    position: relative;
    overflow: hidden;
}

.header-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(176.775deg, rgb(27, 41, 50) 10.148%, rgb(46, 71, 85) 44.696%, rgb(27, 41, 50) 73.613%);
    position: relative;
}

.header-content {
    position: absolute;
    /*left: 96px;
top: 104px;*/
    left: 56px;
    top: 32px;
    max-width: 688px;
    color: var(--color-white);
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 62px;
    letter-spacing: -0.96px;
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
}

.header-actions {
    position: absolute;
    right: 56px;
    top: 32px;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(46, 71, 85, 0.8);
    backdrop-filter: blur(2.667px);
    padding: var(--spacing-md);
    border-radius: 8px;
    height: 36px;
    color: var(--color-white);
    font-size: 12px;
    cursor: pointer;
}

.flag-icon {
    width: 16px;
    height: 16px;
    background: #f0f0f0;
    border-radius: 50%;
}

.dropdown-arrow {
    width: 8px;
    height: 6px;
}

.user-profile-btn {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.user-icon {
    width: 24px;
    height: 24px;
}

/* Progress Indicator */
.progress-container {
    background: var(--color-white);
    border-bottom: 2px solid var(--color-border);
    padding: var(--spacing-xl) 140px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    .progress-step::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: var(--color-border);
        z-index: 0;
    }

/* .progress-step:first-child::before {
display: none;
}*/

.progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s;
}

.progress-step.active .progress-step-circle {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.progress-step.completed .progress-step-circle {
    background: var(--color-success);
    color: var(--color-white);
    border-color: var(--color-success);
}

.progress-step.completed::before {
    background: var(--color-success);
}

.progress-step-label {
    margin-top: var(--spacing-sm);
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
}

.progress-step.active .progress-step-label {
    color: var(--color-primary);
    font-weight: 600;
}

/* Booking Form Section */
.booking-form-section {
    padding: var(--spacing-3xl) 196px var(--spacing-3xl) 140px;
    background: var(--color-white);
    min-height: calc(100vh - 269px - 200px);
}

.form-container {
    max-width: 948px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
        animation: fadeIn 0.3s ease-in;
    }

.form-heading h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: var(--color-text-primary);
    margin-bottom: 26px;
}

.form-intro {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

    .form-intro p {
        font-size: 18px;
        line-height: 24px;
        color: var(--color-text-secondary);
    }

    .form-intro a {
        color: #005f96;
        text-decoration: underline;
    }

/* Radio Groups */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    user-select: none;
}

    .radio-option input[type="radio"] {
        display: none;
    }

.radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.radio-option:hover .radio-button {
    border-color: var(--color-secondary);
}

.radio-option input[type="radio"]:checked + .radio-button,
.flight-option input[type="radio"]:checked + .radio-button {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.radio-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    display: none;
}

.radio-option input[type="radio"]:checked + .radio-button .radio-inner,
.flight-option input[type="radio"]:checked + .radio-button .radio-inner {
    display: block;
}

/* .flight-option.selected {
border: 2px solid var(--color-primary);
background: rgba(46, 71, 85, 0.05);
}*/

.radio-option span {
    font-size: 14px;
    line-height: 19px;
    color: var(--color-text-primary);
}

.alert {
    margin-top: 25px;
    background: #f1f3f5;
    padding: 20px;
    border-radius: 12px;
    color: #333;
}

    .alert strong {
        display: block;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .alert small {
        color: #666;
    }
/* Form Sections */
.form-section {
    margin-top: var(--spacing-3xl);
}

    .form-section h3 {
        font-size: 24px;
        font-weight: 400;
        line-height: 32px;
        color: var(--color-text-primary);
        margin-bottom: var(--spacing-md);
    }

/* Segmented Control */
.segmented-control {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 4px;
    max-width: 357px;
}

.segment-btn {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.2s;
    height: 40px;
    font-family: var(--font-primary);
}

    .segment-btn.active {
        background: var(--color-primary);
        color: var(--color-white);
    }

    .segment-btn:hover:not(.active) {
        background: rgba(46, 71, 85, 0.1);
    }

/* Input Fields */
.form-row {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.input-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

    .input-field.full-width {
        flex: 1 1 100%;
    }

    .input-field label {
        font-size: 12px;
        line-height: 16px;
        color: var(--color-text-muted);
    }

    .input-field input,
    .input-field select,
    .input-field textarea {
        padding: 12px 0 7px 0;
        border: none;
        border-bottom: 1px solid var(--color-border);
        border-radius: 16px 16px 0 0;
        font-size: 16px;
        line-height: 24px;
        color: var(--color-text-primary);
        font-family: var(--font-primary);
        outline: none;
        transition: border-color 0.2s;
        background: transparent;
    }

    .input-field textarea {
        min-height: 100px;
        resize: vertical;
    }

        .input-field input:focus,
        .input-field select:focus,
        .input-field textarea:focus {
            border-bottom-color: var(--color-primary);
        }

        .input-field input::placeholder,
        .input-field textarea::placeholder {
            color: var(--color-text-muted);
        }

.input-hint {
    font-size: 12px;
    line-height: 16px;
    color: var(--color-text-muted);
    margin-top: var(--spacing-xs);
}

.input-field select {
    width: 100%;
    /* padding: 12px;*/
    border: none;
    border-bottom: 1px solid #d6dce1;
    font-size: 16px;
    background: transparent;
    color: #2e4755;
    outline: none;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.find-btn,
.submit-btn {
    border: none;
    border-radius: 999px;
    padding: 12px var(--spacing-xl);
    font-size: 18.66px;
    font-weight: 700;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.2s;
    height: 48px;
    font-family: var(--font-primary);
}

.btn-primary,
.find-btn,
.submit-btn {
    background: var(--color-secondary);
    color: var(--color-white);
}

    .btn-primary:hover,
    .find-btn:hover,
    .submit-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

    .btn-secondary:hover {
        background: var(--color-primary);
        color: var(--color-white);
    }

    .btn-primary:disabled,
    .btn-secondary:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

.form-actions {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-3xl);
    justify-content: space-between;
}

.submit-btn {
    width: 100%;
    margin-top: var(--spacing-3xl);
}

/* Flight Selection */
.flight-selection {
    /*margin-top: var(--spacing-3xl);*/
}

    .flight-selection h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: var(--spacing-lg);
    }

.flight-option {
    display: inline-flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
    transition: all 0.2s;
    margin-right: var(--spacing-sm);
}

    .flight-option:hover {
        background-color: #f9fafb;
        border-color: var(--color-primary);
    }

    .flight-option input[type="radio"] {
        display: none;
    }

        .flight-option input[type="radio"]:checked ~ * {
            border-color: var(--color-primary);
        }

    .flight-option.selected {
        border: 2px solid var(--color-primary);
        border-color: var(--color-primary);
        background: rgba(46, 71, 85, 0.05);
        background-color: rgba(46, 71, 85, 0.05);
    }

    .flight-option.flight-disabled {
        background: #f5f5f5;
        border: 1px solid #d6dce1;
        opacity: 0.6;
        filter: grayscale(20%);
        cursor: not-allowed;
    }

        .flight-option.flight-disabled:hover {
            background: #f3f4f6;
            border-color: #d1d5db;
        }

        .flight-option.flight-disabled .flight-route,
        .flight-option.flight-disabled .flight-time {
            color: #9ca3af;
        }

        .flight-option.flight-disabled .radio-button {
            opacity: 0.5;
        }

.flight-details {
    flex: 1;
}

.flight-route {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.flight-time {
    font-size: 16px;
    line-height: 21px;
    color: var(--color-text-muted);
}

.airport-field {
    position: relative;
}

.airport-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d6dce1;
    border-radius: 8px;
    z-index: 9999;
    margin-top: 4px;
}

.airport-option {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 15px;
}

    .airport-option:hover {
        background: #f3f5f7;
    }

.validation-message {
    color: #d92d20;
    font-size: 14px;
    margin-top: 6px;
}

input[type="checkbox"] {
    appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    border: 1px solid #666 !important;
    background-color: #fff !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    cursor: pointer;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

/* Notes Section */
.notes-section {
    background: #f9fafb;
    padding: var(--spacing-xl);
    border-radius: 12px;
}

/*.notes-content p {
font-size: 14px;
line-height: 19px;
color: var(--color-text-secondary);
margin-bottom: var(--spacing-md);
}

.notes-content p:last-child {
margin-bottom: 0;
}*/


/* .notes-section {
margin-top: 32px;
}

.notes-section h3 {
font-size: 22px;
font-weight: 600;
color: #1f2937;
margin-bottom: 18px;
}*/

.notes-content ul {
    margin: 0;
    padding-left: 22px;
}

.notes-content li {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

    .notes-content li:first-child {
        list-style: none;
        margin-left: -22px;
        font-weight: 500;
        /*color: var(--color-text-primary);*/
    }

/* .notes-content a {
color: #2e4755;
text-decoration: underline;
font-weight: 500;
}

.notes-content a:hover {
text-decoration: none;
}*/


/* Success Message */
.success-message {
    text-align: center;
    padding: var(--spacing-3xl);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
}

    .success-icon svg {
        width: 40px;
        height: 40px;
        fill: white;
    }

.success-message h2 {
    font-size: 32px;
    margin-bottom: var(--spacing-lg);
    color: var(--color-success);
}

.success-message p {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

.booking-reference {
    background: var(--color-background);
    padding: var(--spacing-xl);
    border-radius: 12px;
    margin: var(--spacing-xl) auto;
    max-width: 400px;
}

    .booking-reference strong {
        display: block;
        font-size: 24px;
        color: var(--color-primary);
        margin-top: var(--spacing-sm);
    }

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-text-light);
    display: contents !important;
}

.footer-section {
    padding: var(--spacing-xl) 196px var(--spacing-xl) 140px;
}

    .footer-section.destinations {
        background: var(--color-primary);
    }

    .footer-section h3 {
        font-size: 24px;
        line-height: 32px;
        color: var(--color-white);
        margin-bottom: var(--spacing-lg);
    }

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.destination-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

    .destination-column a {
        font-size: 14px;
        line-height: 19px;
        color: var(--color-text-light);
    }

#Cargo_footer {
    display: none !important;
}
/* Awards Section */
.footer-section.awards {
    background: var(--color-primary-dark);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.awards-header h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.awards-header p {
    font-size: 14px;
    line-height: 19px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.awards-logos {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xl);
    padding: var(--spacing-sm) var(--spacing-xl);
}

.award-logo {
    width: 114px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--color-primary-dark) !important;
    padding: var(--spacing-lg) 196px var(--spacing-lg) 140px;
    border-top: 1px solid #4b5563;
    display: flow !important;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xs);
}

    .footer-links a {
        font-size: 14px;
        line-height: 19px;
        color: var(--color-text-light);
    }

    .footer-links .dot {
        color: var(--color-primary);
        font-size: 14px;
    }

.copyright {
    font-size: 12px !important;
    line-height: 16px !important;
    color: var(--color-text-light) !important;
    margin-top: var(--spacing-xs) !important;
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-icon {
    width: 32px;
    height: 32px;
    border: 0.8px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

    .social-icon:hover {
        opacity: 0.7;
    }


/* Upload Grid */
.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Upload Item */
.upload-item {
    width: 100%;
    min-width: 0;
}

    .upload-item label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: var(--color-text-secondary);
        line-height: 1.4;
    }

/* Upload Box */
.file-upload-box {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

    .file-upload-box:hover {
        border-color: var(--color-primary);
    }

    .file-upload-box.drag-over {
        border-color: var(--color-primary);
        background: rgba(46, 71, 85, 0.08);
    }

/* Upload Placeholder */
.upload-placeholder {
    text-align: center;
    width: 100%;
}

.upload-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.upload-placeholder p {
    margin-bottom: 4px;
    color: var(--color-text-primary);
    line-height: 1.4;
    word-break: break-word;
}

.upload-placeholder span {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Uploaded File */
.uploaded-file {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.file-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.file-details {
    min-width: 0;
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: var(--color-text-primary);
    word-break: break-word;
    line-height: 1.4;
}

.file-size {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* Remove Button */
.remove-file-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    flex-shrink: 0;
}

/* Error */
.upload-error {
    color: #d92d20;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.4;
}

.required {
    color: red;
}

.breed-info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #344e5c;
    color: white;
    font-size: 12px;
    cursor: pointer;
    position: relative;
}


.breed-info-tooltip {
    display: none;
    position: absolute;
    left: 22px;
    top: 0;
    width: 380px;
    max-height: 350px;
    overflow-y: auto;
    background: white;
    color: #333;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 13px;
    line-height: 1.5;
    z-index: 9999;
}


.breed-info-icon:hover .breed-info-tooltip {
    display: block;
}
.breed-info-text {
    font-size: 12px;
    color: #6b7280;
    margin-left: 6px;
    font-weight: normal;
}
/* =========================
Tablet Responsive
========================= */
@media screen and (max-width: 768px) {

    .upload-grid {
        gap: 16px;
        margin-top: 20px;
    }

    .file-upload-box {
        padding: 18px;
        min-height: 110px;
    }

    .upload-item label {
        font-size: 13px;
    }

    .upload-placeholder p {
        font-size: 14px;
    }

    .upload-placeholder span {
        font-size: 12px;
    }

    .file-name {
        font-size: 14px;
    }

    .file-size {
        font-size: 12px;
    }
}

/* =========================
Mobile Responsive
========================= */
@media screen and (max-width: 480px) {

    .upload-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 16px;
    }

    .file-upload-box {
        padding: 16px;
        min-height: 100px;
        border-radius: 10px;
    }

    .upload-item label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .upload-icon {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .upload-placeholder p {
        font-size: 13px;
    }

    .upload-placeholder span {
        font-size: 11px;
    }

    .uploaded-file {
        gap: 8px;
    }

    .file-info {
        gap: 8px;
    }

    .file-icon {
        font-size: 18px;
    }

    .file-name {
        font-size: 13px;
    }

    .file-size {
        font-size: 11px;
    }

    .remove-file-btn {
        font-size: 16px;
    }

    .upload-error {
        font-size: 12px;
    }
}

.info-message {
    display: flex;
    align-items: center;
    gap: 12px;
    /*background: #f3f4f6;*/
    border-radius: 2px;
    /*padding: 14px 18px;*/
    /*margin-top: 16px;*/
}

.info-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #374151;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
}

.info-text {
    color: #374151;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

/* MODAL BACKGROUND */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* MODAL BOX */
.custom-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    margin: 10% auto;
    padding: 24px;
    border-radius: 12px;
    position: relative;
}

/* CLOSE BUTTON */
.custom-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
}

/* Vaccination*/
.vaccination-container {
    background: #f9fafb;
    padding: 20px;
    border-radius: 18px;
    font-family: var(--font-primary);
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.vaccination-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.3;
}

.vaccination-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vaccination-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.vaccination-info {
    flex: 1;
    min-width: 0;
}

.vaccine-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.3;
    word-break: break-word;
}

.vaccine-description {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    margin: 0;
    word-break: break-word;
}

.vaccine-status {
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
    flex-shrink: 0;
}

.completed {
    background: #e8f7ec;
    color: #1d8a4b;
}

.pending {
    background: #fff4df;
    color: #d98200;
}

.vaccination-note {
    margin-top: 12px;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

/* Tablet */
@media screen and (max-width: 768px) {

    .vaccination-container {
        padding: 16px;
        border-radius: 14px;
    }

    .vaccination-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .vaccination-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .vaccine-name {
        font-size: 15px;
    }

    .vaccine-description {
        font-size: 11px;
    }

    .vaccine-status {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {

    .vaccination-container {
        padding: 14px;
        border-radius: 12px;
        margin-top: 15px;
    }

    .vaccination-title {
        font-size: 18px;
    }

    .vaccination-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px;
    }

    .vaccination-info {
        width: 100%;
    }

    .vaccine-name {
        font-size: 14px;
    }

    .vaccine-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .vaccine-status {
        align-self: flex-start;
        font-size: 10px;
        padding: 3px 8px;
    }

    .vaccination-note {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-form-section, .footer-section, .footer-bottom {
        padding-left: 80px;
        padding-right: 40px;
    }

    .header-content {
        left: 80px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .progress-container {
        padding: var(--spacing-xl) 80px;
    }
}

@media (max-width: 768px) {
    .navigation-panel {
        width: 48px;
    }

    .content-wrapper {
        margin-left: 48px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .form-row {
        flex-direction: column;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-section,
    .footer-section,
    .footer-bottom {
        padding-left: 40px;
        padding-right: 40px;
    }

    .header-content {
        left: 40px;
        right: 40px;
        max-width: none;
    }

    .progress-container {
        padding: var(--spacing-xl) 40px;
    }

    .progress-steps {
        overflow-x: auto;
    }

    .form-actions {
        flex-direction: column;
    }

        .form-actions button {
            width: 100%;
        }
}

@media (max-width: 480px) {
    .booking-form-section,
    .footer-section,
    .footer-bottom {
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }

    .header-actions {
        right: var(--spacing-lg);
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

        .footer-links .dot {
            display: none;
        }

    .progress-container {
        padding: var(--spacing-lg);
    }
}

/* Loading Spinner */
.spinner {
    border: 3px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: var(--spacing-xl) auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
EXTRA RESPONSIVE IMPROVEMENTS
========================================= */

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
}

/* Better responsive images/elements */
img,
svg,
video {
    max-width: 100%;
    height: auto;
}

/* Improve input responsiveness */
.input-field,
.form-row > * {
    min-width: 0;
}

/* =========================================
LARGE TABLET
========================================= */
@media (max-width: 992px) {

    .booking-form-section,
    .footer-section,
    .footer-bottom {
        padding: 32px;
    }

    .header-content {
        left: 32px;
        right: 32px;
        max-width: calc(100% - 64px);
    }

    .header-actions {
        right: 32px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .progress-container {
        padding: 20px 32px;
    }

    .flight-option {
        width: 100%;
    }

    .awards-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================================
TABLET
========================================= */
@media (max-width: 768px) {

    /* Hide sidebar */
    .navigation-panel {
        width: 0;
        overflow: hidden;
    }

    .content-wrapper {
        margin-left: 0;
    }

    /* Header */
    .hero-header {
        height: auto;
        min-height: 180px;
    }

    .header-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        padding: 32px 24px 24px;
    }

    .header-actions {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    /* Sections */
    .booking-form-section,
    .footer-section,
    .footer-bottom {
        padding: 24px;
    }

    /* Form */
    .form-section {
        margin-top: 32px;
    }

        .form-section h3 {
            font-size: 22px;
            line-height: 28px;
        }

    .form-heading h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .form-intro p {
        font-size: 16px;
        line-height: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    /* Progress */
    .progress-container {
        padding: 16px;
    }

    .progress-steps {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .progress-step {
        min-width: 100px;
    }

    .progress-step-label {
        font-size: 12px;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .find-btn,
    .submit-btn {
        width: 100%;
        font-size: 16px;
        height: 46px;
    }

    .form-actions {
        flex-direction: column;
    }

    /* Flight cards */
    .flight-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .flight-route,
    .flight-time {
        word-break: break-word;
    }

    /* Segmented control */
    .segmented-control {
        max-width: 100%;
    }

    /* Footer */
    .footer-links {
        gap: 10px;
    }

    .awards-logos {
        gap: 16px;
    }

    .award-logo {
        width: 90px;
        height: 40px;
    }
}

/* =========================================
MOBILE
========================================= */
@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    .hero-header {
        min-height: 160px;
    }

    .header-content {
        padding: 70px 16px 20px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .language-selector {
        padding: 8px;
        font-size: 11px;
    }

    .user-profile-btn {
        width: 34px;
        height: 34px;
    }

    .booking-form-section,
    .footer-section,
    .footer-bottom {
        padding: 16px;
    }

    .form-section h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .form-heading h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .form-intro p {
        font-size: 14px;
        line-height: 22px;
    }

    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
        gap: 12px;
    }

    .flight-option {
        padding: 14px;
    }

    .flight-route {
        font-size: 14px;
    }

    .flight-time {
        font-size: 13px;
    }

    .input-field input,
    .input-field select,
    .input-field textarea {
        font-size: 15px;
    }

    .notes-section {
        padding: 16px;
    }

    .notes-content li {
        font-size: 14px;
        line-height: 1.6;
    }

    .success-message {
        padding: 24px 16px;
    }

        .success-message h2 {
            font-size: 24px;
        }

        .success-message p {
            font-size: 15px;
        }

    .booking-reference strong {
        font-size: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .awards-logos {
        justify-content: flex-start;
    }

    .award-logo {
        width: 72px;
        height: 32px;
    }

    /* Modal */
    .custom-modal-content {
        width: calc(100% - 32px);
        margin: 20% auto;
        padding: 20px;
    }
}

/* =========================================
VERY SMALL DEVICES
========================================= */
@media (max-width: 360px) {

    .hero-title {
        font-size: 20px;
        line-height: 28px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary,
    .find-btn,
    .submit-btn {
        font-size: 14px;
    }

    .progress-step {
        min-width: 85px;
    }

    .progress-step-circle {
        width: 34px;
        height: 34px;
    }

    .progress-step-label {
        font-size: 11px;
    }
}
