/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0098DB;
    --secondary-color: #00A0E3;
    --accent-color: #E31E24;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #0098DB 0%, #00A0E3 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    direction: ltr;
    text-align: left;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-ai {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.language-toggle {
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover !important;
    background-position: center !important;
}

.hero-slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 3rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: left;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.feature-icon {
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Floating Card Animation */
.hero-image {
    position: relative;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-learn-more {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: gap 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.btn-learn-more:hover {
    gap: 1rem;
}

/* Process Timeline */
.process {
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-hero {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.year-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about-story h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-story .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-story strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card.highlight-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-partners {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-partners h3 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.partners-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.airline-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.airline-card:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.airline-card .airline-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.airline-card span {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.about-values {
    margin-bottom: 3rem;
}

.about-values h3 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: var(--text-light);
    font-weight: 500;
}

.about-cta {
    text-align: center;
    background: var(--gradient);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta-buttons .btn {
    background: var(--white);
    color: var(--primary-color);
}

.about-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.about-cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.about-cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive About */
@media (max-width: 968px) {
    .airlines-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

    .about .section-header h2 {
        font-size: 2rem;
    }

    .about-hero {
        padding: 2rem;
    }

    .about-story h3 {
        font-size: 1.5rem;
    }

    .about-story .lead,
    .about-story p {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card.highlight-card {
        padding: 2rem;
    }

    .about-partners {
        padding: 2rem;
    }

    .about-partners h3 {
        font-size: 1.5rem;
    }

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

    .airline-card {
        padding: 1rem;
    }

    .about-values h3 {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .about-cta h3 {
        font-size: 1.5rem;
    }

    .about-cta p {
        font-size: 1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .btn {
        width: 100%;
    }
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   OFFICES SECTION
   ============================================ */

.offices {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e7f3ff 100%);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.office-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.office-card.main-office {
    border: 2px solid var(--primary-color);
}

.office-card.main-office .office-header {
    background: var(--gradient);
}

.office-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.office-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.office-content {
    padding: 2rem;
}

.office-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.office-details {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.office-details p {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.office-contact {
    margin-top: 1.5rem;
}

.office-contact p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.office-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.office-gstin {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.office-gstin p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.office-gstin strong {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

/* Responsive Offices */
@media (max-width: 768px) {
    .offices {
        padding: 4rem 0;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .office-header h3 {
        font-size: 1.1rem;
    }
    
    .office-content {
        padding: 1.5rem;
    }
    
    .office-content h4 {
        font-size: 1.1rem;
    }
    
    .office-details p,
    .office-contact p {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    direction: ltr;
    text-align: left;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    text-align: left;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 170px;  /* Positioned above chat FAB button with gap */
    right: 30px;
    width: 400px;
    max-height: 600px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

.chat-widget.active {
    display: flex;
}

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

.chat-header {
    background: var(--gradient);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-avatar-large {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.powered-by {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.powered-by a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.powered-by a:hover {
    text-decoration: underline;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    max-height: 400px;
}

.message {
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

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

.message-avatar {
    width: 30px;
    height: 30px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.message-content {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 15px;
}

.message-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.message-content ul {
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.message-content li {
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.user-message-bubble {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    margin-left: auto;
    max-width: 70%;
}

.chat-input-container {
    border-top: 1px solid #e2e8f0;
    padding: 1rem;
}

.quick-questions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.quick-questions button {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-questions button:hover {
    background: var(--gradient);
    color: var(--white);
}

.chat-input {
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: inherit;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.send-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.send-button:hover {
    transform: scale(1.05);
}

/* Floating Chat Button */
.chat-fab {
    position: fixed;
    bottom: 100px;  /* Moved up to avoid overlap with back-to-top */
    right: 30px;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

/* Hide chat FAB when widget is open */
.chat-widget.active ~ .chat-fab {
    display: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(99, 102, 241, 0.6); }
}

.fab-icon {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile menu button shown, nav-links become sliding menu */
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .chat-widget {
        width: 90%;
        right: 5%;
        left: 5%;
        bottom: 90px;
    }
    
    .chat-fab {
        right: 20px;
        bottom: 20px;
    }
    
    .fab-text {
        display: none;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpAnim 0.6s ease forwards;
}

@keyframes slideUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--light-bg);
}

.gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.gallery .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.instagram-link {
    margin-top: 1.5rem;
}

.instagram-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.instagram-link i {
    font-size: 1.2rem;
}

.instagram-feed {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery .section-header p {
        font-size: 1rem;
    }
    
    .instagram-feed {
        padding: 1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--white);
}

.faq .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-category {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 2rem;
}

.category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    text-align: center;
    background: var(--gradient);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-cta-buttons .btn {
    background: var(--white);
    color: var(--primary-color);
}

.faq-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.faq-cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.faq-cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-category {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-cta {
        padding: 2rem 1rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
    
    .faq-cta-buttons .btn {
        width: 100%;
    }
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.map-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    padding: 2rem;
    text-align: center;
    background: var(--white);
}

.map-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.map-info .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-section {
        padding: 4rem 0;
    }
    
    .map-section .section-header h2 {
        font-size: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info {
        padding: 1.5rem;
    }
    
    .map-info h3 {
        font-size: 1.25rem;
    }
    
    .map-info .btn {
        width: 100%;
        justify-content: center;
    }
}


/* Override fonts to use Tahoma */
body {
    font-family: Tahoma, Arial, sans-serif !important;
}

* {
    font-family: Tahoma, Arial, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Tahoma, Arial, sans-serif !important;
}

.hero-title, .hero-subtitle {
    font-family: Tahoma, Arial, sans-serif !important;
}

/* For Arabic text */
html[lang="ar"] body,
html[lang="ar"] *,
html[dir="rtl"] body,
html[dir="rtl"] * {
    font-family: Tahoma, Arial, sans-serif !important;
}
/* ============================================
   MOBILE ENHANCEMENTS & AUTO-HIDE NAVIGATION
   ============================================ */

/* Auto-hide navigation on scroll down, show on scroll up */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, background 0.3s ease;
    transform: translateY(0);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Add padding to body to account for fixed nav */
body {
    padding-top: 80px;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
    /* Body padding for mobile */
    body {
        padding-top: 70px;
    }

    /* Navigation improvements */
    .navbar {
        padding: 12px 0;
    }

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

    /* Logo sizing for mobile */
    .logo-image {
        height: 40px !important;
        width: auto;
    }

    /* Mobile menu button - make it more prominent */
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    
    /* Mobile navigation menu */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 0 20px;
    }

    .nav-links.active {
        max-height: calc(100vh - 70px);
        padding: 20px;
        overflow-y: auto;
    }

    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
        font-size: 16px;
    }

    .nav-links a:last-of-type {
        border-bottom: none;
    }

    .language-toggle {
        width: 100%;
        margin: 15px 0 10px;
        padding: 12px;
        justify-content: center;
    }

    .btn-ai {
        width: 100%;
        margin: 10px 0;
        padding: 12px;
        justify-content: center;
        font-size: 16px;
    }

    /* Hero section mobile */
    .hero {
        min-height: 500px;
        padding: 80px 0 60px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 15px 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin: 25px 0;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }

    .hero-features {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    /* Sections padding */
    section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Cards and grids mobile */
    .about-features,
    .services-grid,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card,
    .feature-card,
    .value-card {
        padding: 20px;
    }

    /* Timeline mobile */
    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 35px;
    }

    .timeline-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* FAQ mobile */
    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 10px;
    }

    .faq-icon {
        font-size: 1.3rem;
        min-width: 25px;
    }

    /* Contact form mobile */
    .contact-content {
        grid-template-columns: 1fr !important;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Chat widget mobile */
    .chat-widget {
        width: 100% !important;
        height: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
    }

    .chat-header {
        padding: 15px;
        border-radius: 0 !important;
    }

    .chat-messages {
        max-height: calc(100vh - 240px) !important;
        padding: 15px;
    }

    .message {
        max-width: 85%;
    }

    .chat-input-container {
        padding: 12px;
        position: sticky;
        bottom: 0;
        background: white;
    }

    .quick-questions {
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .quick-questions::-webkit-scrollbar {
        display: none;
    }

    .quick-questions button {
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .chat-input input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }

    /* Floating chat button mobile */
    .chat-fab {
        bottom: 86px;
        right: 26px;
        width: 60px;
        height: 60px;
        padding: 0;
    }

    .fab-text {
        display: none;
    }

    .fab-icon {
        font-size: 1.5rem;
    }

    /* Stats mobile */
    .about-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .stat-card h3 {
        font-size: 1.8rem;
    }

    /* Airlines grid mobile */
    .airlines-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px;
    }

    .airline-card {
        padding: 12px;
    }

    /* Gallery mobile */
    .instagram-feed {
        padding: 0 10px;
    }

    /* Map mobile */
    .map-container iframe {
        height: 350px !important;
    }

    .map-info {
        padding: 20px;
    }

    /* User info form mobile */
    #userInfoFormElement input,
    #userInfoFormElement select {
        font-size: 16px !important; /* Prevents zoom */
        padding: 12px !important;
    }

    #userInfoFormElement label {
        font-size: 14px;
    }

    /* Contact request buttons mobile */
    .message-content button {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
}

/* ============================================
   EXTRA SMALL DEVICES (< 480px)
   ============================================ */

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr !important;
    }

    .stat-card {
        padding: 20px;
    }
}

/* ============================================
   LANDSCAPE MODE MOBILE
   ============================================ */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        padding: 60px 0 40px;
    }

    .chat-widget {
        height: 90vh !important;
    }

    .chat-messages {
        max-height: calc(90vh - 240px) !important;
    }
}

/* ============================================
   TABLET OPTIMIZATIONS (768px - 1024px)
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
    .about-features,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   TOUCH IMPROVEMENTS
   ============================================ */

/* Larger touch targets on mobile */
@media (max-width: 768px) {
    button,
    a,
    input[type="checkbox"],
    .faq-question {
        min-height: 44px; /* iOS recommended touch target */
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .btn:hover,
        .service-card:hover,
        .feature-card:hover {
            transform: none;
        }
    }
}

/* ============================================
   LOADING STATES
   ============================================ */

/* Better loading for images */
img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #6366f1;
    color: white;
    padding: 8px 16px;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 152, 219, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 152, 219, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ============================================
   RECAPTCHA STYLES
   ============================================ */

.recaptcha-container {
    margin: 1.5rem 0;
}

.recaptcha-note {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Center reCAPTCHA on mobile */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

/* ============================================
   MOBILE NAVIGATION FIX
   ============================================ */

/* Mobile menu active state */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* THEMED MOBILE NAVIGATION (MATCHES DESKTOP GRADIENT NAV) */
@media (max-width: 768px) {

    /* Slide-down mobile menu */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #4da7e8 0%, #0273c6 100%) !important;
        flex-direction: column;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        z-index: 999;
    }

    .nav-links.active {
        max-height: 480px;
        padding: 1.3rem 0;
    }

    /* Make menu vertical */
    .nav-links a {
        color: #ffffff !important;
        font-size: 1.15rem;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    /* Show hamburger lines */
    .mobile-menu-btn span {
        background: #ffffff !important;
    }

    /* Language & Ask R.AI as bubble buttons */
    .language-toggle,
    .btn-ai {
        width: 85%;
        margin: 6px auto 0;
        border-radius: 999px !important;
        padding: 10px 20px;
        display: flex;
        justify-content: center;
        color: #ffffff !important;
        background: rgba(255,255,255,0.25) !important;
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255,255,255,0.35);
    }
}


/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.menu-open .navbar {
    z-index: 1002;
}

/* ============================================
   QUOTE REQUEST MODAL
   ============================================ */

.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.quote-modal.active {
    display: block;
}

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

.quote-modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: 2% auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.quote-modal-header {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.quote-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.quote-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.quote-form {
    padding: 2rem;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.form-actions .btn {
    min-width: 140px;
}

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

/* Responsive Modal */
@media (max-width: 768px) {
    .quote-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .quote-modal-header {
        padding: 1.5rem;
    }
    
    .quote-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}

@media (max-width: 480px) {
    .quote-modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .quote-modal-header {
        padding: 1rem;
    }
    
    .quote-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .quote-form {
        padding: 1rem;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
    }
}


.hero-text {
  background: rgba(0,0,0,0.30);
  padding: 1.4rem 2rem;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.hero-title, .hero-subtitle, .hero-text span, .hero-text p {
  color: #ffffff !important;
  text-shadow: 0px 3px 16px rgba(0,0,0,0.6);
}

/* HEADER BAR */
.header {
    background: linear-gradient(135deg, #4da7e8 0%, #0079c8 100%);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
}

/* Increase Logo Size */
.header .logo img {
    height: 62px !important;   /* was around 45px */
    width: auto;
    transition: 0.3s ease;
}

/* Slight shrink on scroll for elegance */
.header.scrolled .logo img {
    height: 52px !important;
}

/* Navigation Menu Styling */
.header nav ul li a {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 14px;
    transition: 0.3s;
}
.header nav ul li a:hover {
    opacity: 0.85;
}

/* Language Toggle Button */
.lang-toggle {
    background: rgba(255,255,255,0.25);
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.35);
}

/* Mobile Menu Button */
.mobile-menu-btn span {
    background-color: #ffffff !important;
}

.navbar {
    background: linear-gradient(135deg, #4da7e8 0%, #0273c6 100%);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
}

.logo-image {
    height: 58px !important;   /* Increased from ~45px */
    width: auto;
    transition: 0.25s ease;
}

/* Slight elegant shrink on scroll */
.navbar.scrolled .logo-image {
    height: 48px !important;
}

.nav-links a,
.language-toggle,
.btn-ai {
    color: #ffffff !important;
    font-weight: 500;
    text-decoration: none;
}

.nav-links a:hover,
.btn-ai:hover,
.language-toggle:hover {
    opacity: 0.8;
}

/* Language Toggle */
.language-toggle {
    background: rgba(255,255,255,0.22);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.45);
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}
.language-toggle:hover {
    background: rgba(255,255,255,0.35);
}

/* Ask R.AI Button */
/* Ask R.AI Bubble Button */
.btn-ai {
    background: linear-gradient(135deg, #4da7e8 0%, #0273c6 100%);
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 999px; /* full bubble */
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 122, 199, 0.4);
}

/* Hover Glow */
.btn-ai:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 122, 199, 0.55);
    opacity: 0.95;
}

/* Icon spacing consistency */
.btn-ai .ai-icon {
    font-size: 18px;
    margin-right: 4px;
}

/* Dark navbar hover fix */
.navbar.scrolled .btn-ai {
    border: none;
}

/* Mobile menu case */
.nav-links.active .btn-ai {
    display: flex;
    justify-content: center;
}


.nav-links.active a {
    color: #ffffff !important;
}

.navbar {
    border-bottom: 1px solid rgba(255,255,255,0.32);
}

/* Force sticky nav to remain gradient when scrolling */
.navbar,
.navbar.scrolled {
    background: linear-gradient(135deg, #4da7e8 0%, #0273c6 100%) !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.nav-links a,
.nav-links a:visited {
    color: #ffffff !important;
    opacity: 1 !important;
}

.language-toggle,
.btn-ai {
    background: rgba(255,255,255,0.25) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.90);
  color: #ffffff;
  padding: 14px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 5000;
  backdrop-filter: blur(6px);
}

.cookie-banner .cookie-text {
  margin: 0;
  font-size: 15px;
  text-align: center;
}

.cookie-banner .cookie-link {
  color: #7ac9ff;
  text-decoration: underline;
}

.cookie-btn {
  background: #4da7e8;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}
.cookie-btn:hover {
  background: #0273c6;
}

/* Cookie Banner Hidden by Default */
#cookie-banner {
  display: none; /* IMPORTANT */
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 6000;
  animation: fadeIn 0.3s ease forwards;
  backdrop-filter: blur(8px);
}

.fade-out { animation: fadeOut 0.3s ease forwards; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

/* Popup Box */
.popup-box {
  background: #ffffff;
  width: min(420px, 92vw);
  padding: 26px 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 14px 45px rgba(0,0,0,0.25);
  animation: popupSlide 0.35s cubic-bezier(0.17, 0.67, 0.32, 1.25);
}

@keyframes popupSlide {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Icon */
.popup-icon {
  font-size: 52px;
  margin-bottom: 14px;
}

/* Text */
.popup-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a2e46;
}

.popup-message {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Button */
.popup-ok {
  background: linear-gradient(135deg, #4da7e8 0%, #0273c6 100%);
  color: #ffffff;
  border: none;
  padding: 10px 26px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}
.popup-ok:hover { opacity: 0.85; }

/* Payment Warning Popup */

/* Overlay stays full-screen, but we anchor content to bottom */
#payment-warning.popup-overlay {
  position: fixed;
  inset: 0;
  display: none;              /* shown by JS */
  justify-content: center;
  align-items: flex-end;      /* bottom sheet */
  background: rgba(0,0,0,0.45);
  z-index: 6000;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease forwards;
}

#payment-warning.fade-out { animation: fadeOut 0.25s ease forwards; }

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes fadeOut { from { opacity: 1 } to { opacity: 0 } }

/* Bottom sheet container */
#payment-warning .popup-box {
  width: 100%;
  max-width: 820px;           /* nice wide sheet on desktop */
  margin: 0 12px 12px;        /* little side/bottom gap */
  background: #ffffff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 14px 45px rgba(0,0,0,0.25);
  padding: 18px 20px;
  text-align: left;
  animation: slideUp 0.32s cubic-bezier(0.22,0.8,0.3,1);
}

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

/* Content layout */
#payment-warning .popup-icon {
  font-size: 28px;
  margin: 0 10px 0 0;
}

#payment-warning .popup-text {
  margin: 0;
  color: #1a2e46;
  line-height: 1.55;
}

#payment-warning .popup-title {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 4px;
  color: #0b2740;
}

#payment-warning .popup-message {
  display: block;
  font-size: 15px;
  color: #34495e;
}

/* Button row */
#payment-warning .popup-ok {
  background: linear-gradient(135deg, #4da7e8 0%, #0273c6 100%);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.2s;
}
#payment-warning .popup-ok:hover { opacity: 0.88; }

/* Make the top of the sheet feel premium */
#payment-warning .popup-box::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: #dbe7f3;
  margin: 4px auto 10px;
}

/* Stack nicely on mobile */
@media (max-width: 640px) {
  #payment-warning .popup-box {
    padding: 16px 16px 18px;
  }
  #payment-warning .popup-title { font-size: 15px; }
  #payment-warning .popup-message { font-size: 14px; }
}

/* FORCE HAMBURGER LINES TO BE VISIBLE ON ALL BACKGROUNDS */
.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #ffffff !important; /* always white */
    border-radius: 2px;
    margin: 5px 0;
    transition: 0.3s ease;
}

/* Animate to X when active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* FORCE HAMBURGER LINES VISIBLE (HIGHEST PRIORITY) */
.navbar .mobile-menu-btn span {
    background-color: #ffffff !important;
    width: 28px !important;
    height: 3px !important;
    display: block !important;
    border-radius: 2px;
    margin: 6px 0 !important;
    transition: 0.3s ease;
}

/* Make hamburger button always visible above navbar background */
.mobile-menu-btn {
    position: relative;
    z-index: 5000 !important;
}

.navbar .mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff !important;       /* THE KEY FIX */
    border-radius: 3px;
    margin: 6px 0;
    transition: 0.3s ease;
}



