:root {
    --primary-color: #003366;
    /* Deep Navy Blue */
    --secondary-color: #0056b3;
    /* Brighter Blue */
    --accent-color: #d4af37;
    /* Gold */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    /* Stronger gradient for better text visibility */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo-img {
    height: 110px;
    /* Increased from 90px */
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    /* Stronger shadow */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Navigation */
nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-color);
}

.nav-btn {
    border: 2px solid var(--accent-color);
    padding: 8px 20px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
}

.nav-btn::after {
    display: none;
    /* No underline for button */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.85) 0%, rgba(0, 51, 102, 0.75) 100%), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Quote Form - Premium Glassmorphism */
.quote-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
    transform: translateY(60px);
    /* Overlap hero bottom */
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for compact look */
    gap: 20px;
    align-items: end;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-submit {
    grid-column: span 4;
    text-align: center;
    margin-top: 10px;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

/* =========================================
   ADMIN DASHBOARD & LOGIN STYLES (PREMIUM REVAMP)
   ========================================= */

/* Login Page Only */
.login-page {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 51, 102, 0.9) 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.85);
    /* Dark blue overlay */
    backdrop-filter: blur(5px);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-logo {
    height: 70px;
    margin-bottom: 25px;
}

.login-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.login-header p {
    color: #666;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4af37 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Dashboard Layout */
.dashboard-body {
    display: block;
    /* Changed from flex to block for stability */
    background: #f0f2f5;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
}

.sidebar {
    width: 280px;
    background: #001f3f;
    /* Deep Navy */
    color: white;
    display: flex;
    /* Internal flex for column layout is fine */
    flex-direction: column;
    padding: 30px 20px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    /* Ensure it stays on top */
}

/* Footer Bottom Refined */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    font-size: 0.9rem;
    color: #8898aa;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-right: 80px;
    /* Ensure space for floating chat button */
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: #aeb9cc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.sidebar-header {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
    text-align: center;
}

.sidebar-header img {
    height: 50px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #aeb9cc;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 10px;
    font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.sidebar-nav .icon {
    margin-right: 15px;
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.logout-link {
    margin-top: auto !important;
    background: rgba(231, 76, 60, 0.1);
    color: #ff6b6b !important;
}

.logout-link:hover {
    background: rgba(231, 76, 60, 0.2) !important;
}

/* Main Content */
.main-content {
    margin-left: 320px;
    /* Force clearance */
    padding: 40px 60px;
    width: auto;
    /* Let it fill remaining space */
    position: relative;
    z-index: 1;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.dashboard-header h1 {
    color: #1a1a1a;
    font-size: 2.2rem;
    font-weight: 700;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 8px 15px 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #004aad, #007bff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    font-size: 2rem;
}

.stat-info h3 {
    font-size: 1rem;
    color: #8898aa;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #32325d;
}

/* Table */
.table-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 35px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.table-header h2 {
    font-size: 1.4rem;
    color: #32325d;
    font-weight: 700;
}

.btn-export {
    padding: 12px 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #64748b;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-export:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

.leads-table th {
    text-transform: uppercase;
    color: #8898aa;
    font-size: 0.75rem;
    padding: 20px 15px;
    letter-spacing: 1px;
    background: #f6f9fc;
    border-bottom: none;
}

.leads-table th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.leads-table th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.leads-table td {
    padding: 25px 15px;
    border-bottom: 1px solid #f6f9fc;
    color: #525f7f;
}

.leads-table tr:last-child td {
    border-bottom: none;
}

.leads-table tr {
    transition: background 0.2s;
}

.leads-table tr:hover {
    background: #fdfdfe;
}

/* Contact Cell Styling Update */
.contact-cell strong {
    color: #32325d;
    font-size: 1.05rem;
}

.route-cell {
    background: #f6f9fc;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
}

.badge {
    padding: 8px 15px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge.business {
    background: #e0f2fe;
    color: #0284c7;
}

.badge.first {
    background: #fefce8;
    color: #ca8a04;
}

.badge.economy {
    background: #f1f5f9;
    color: #64748b;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .main-content {
        padding: 30px;
    }

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

@media (max-width: 768px) {
    .dashboard-body {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .sidebar-header {
        margin: 0;
        padding: 0;
        border: none;
    }

    .sidebar-nav {
        display: none;
        /* Hide nav on mobile for simplicity, or add hamburger */
    }

    .main-content {
        margin-left: 0;
        padding: 20px;
    }

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



.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

/* Sections */
.section {
    padding: 30px 0;
}

.section-light {
    background-color: var(--white);
}

.section-dark {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    text-align: left;
    /* Alignment change */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Features/Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #111;
    color: #eee;
    padding-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
    /* Subtle movement */
}

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

.social-links a {
    font-size: 1.5rem;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Page Specifics (Unified Header) */
.page-header {
    /* Base background similar to hero but shorter */
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.9) 0%, rgba(0, 51, 102, 0.8) 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 80px;
    /* More top padding for absolute header */
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

.page-title {
    font-size: 3.5rem;
    /* Larger, premium */
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Ensure privacy/terms content overlaps slightly for effect */
.policy-content {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    /* Overlap effect */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
}

.policy-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Contact Page Layout Overrides */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Info smaller, form larger */
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    /* Stack vertically */
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s;
}

.info-item:hover {
    transform: translateX(5px);
    border-color: var(--secondary-color);
}

.info-item .icon {
    font-size: 2rem;
    /* margin-bottom to 0 because of flex */
    margin-bottom: 0;
    background: #f0f6ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-form-container {
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .quote-form {
        grid-template-columns: 1fr 1fr;
    }

    .form-submit {
        grid-column: span 2;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {

    /* Header & Nav */
    .header-container {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        /* Show hamburger */
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: rgba(0, 31, 63, 0.98);
        /* Deep Navy backdrop */
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding-top: 60px;
    }

    nav.active {
        right: 0;
        /* Slide in */
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav a {
        font-size: 1.2rem;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        margin-top: 0;
        padding-top: 150px;
        /* Increased from default to prevent overlap */
        height: auto;
        /* Fix overlap issues: let content dictate height */
        padding-bottom: 60px;
        /* Space for the form at bottom */
        display: block;
        /* Remove flex centering vertical */
    }

    /* Compact Mobile Form */
    .quote-form-container {
        padding: 20px;
        transform: translateY(0);
        margin-top: 20px;
        /* Positive margin to sit inside hero */
        margin-bottom: -30px;
        /* Slight overlap with trust bar at bottom */
    }

    .form-group {
        margin-bottom: 12px;
        /* Reduce gap */
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        /* Smaller inputs */
        font-size: 0.9rem;
    }

    /* Trust Bar Adjustment */
    .trust-bar {
        position: relative;
        z-index: 5;
        margin-top: 0;
    }

    /* Typography */
    .hero h1 {
        font-size: 2.2rem;
        margin-top: 20px;
        /* Extra push */
    }

    .page-title {
        font-size: 2.5rem;
    }

    /* Layouts - FORCE STACKING */
    .quote-form {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }

    .quote-form-container {
        padding: 20px;
        transform: translateY(0);
        margin-top: -50px;
    }

    .form-submit {
        grid-column: span 1;
    }

    .features-grid,
    .travel-types-grid,
    .testimonials-grid,
    .destinations-list,
    .contact-layout {
        grid-template-columns: 1fr !important;
        /* Force single column */
    }

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

    .destinations-row {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        align-items: center;
    }

    /* Spacing */
    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .policy-content {
        padding: 25px;
        margin-top: -20px;
    }

    /* Floating Actions Reposition for Mobile */
    .floating-actions {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .chat-widget {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

/* Floating Actions & Chat Widget */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.chat-btn {
    background-color: var(--secondary-color);
}

/* Chat Widget Window */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-widget.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 20px;
    background: #f9f9f9;
    overflow-y: auto;
}

.message {
    background: white;
    padding: 12px 15px;
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    max-width: 85%;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
    color: #333;
}

.message .time {
    display: block;
    font-size: 0.7rem;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-footer .send-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-footer .send-btn:hover {
    background: var(--primary-color);
}

/* Trust Bar */
.trust-bar {
    background: #002244;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    /* Above hero overlay */
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.stars {
    color: #00b67a;
    /* Trustpilot green */
    font-size: 1.2rem;
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    margin: 15px 0 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Travel Solutions Grid */
.travel-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.travel-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.travel-card:hover {
    transform: scale(1.02);
}

.travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.travel-card:hover img {
    transform: scale(1.1);
}

.travel-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.travel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.travel-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 90%;
}

.learn-more-link {
    margin-top: 10px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
}

.review-stars {
    color: #FFD700;
    /* Gold stars */
}

.review-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Destinations Lists */
.destinations-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.destinations-content {
    flex: 1;
}

.destinations-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.destinations-title::after {
    display: none;
}

.destinations-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.destinations-lists {
    display: flex;
    gap: 40px;
}

.destinations-image {
    flex: 0 0 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.destinations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destinations-row {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.destination-column {
    flex: 1;
    min-width: 180px;
}

.destination-column h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    color: var(--primary-color);
}

.destination-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.destination-list li a {
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.destination-list li a:before {
    display: none;
}

.destination-list li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

@media (max-width: 992px) {
    .destinations-split {
        flex-direction: column;
    }

    .destinations-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .destinations-lists {
        flex-direction: column;
    }
}

/* FAQ Accordion */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    color: var(--primary-color);
    background: #f0f7ff;
}

.faq-question:after {
    display: none;
}

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

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

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {

    .features-grid,
    .travel-types-grid {
        grid-template-columns: 1fr;
    }

    .destinations-row {
        flex-direction: column;
        gap: 30px;
    }

    .destination-list {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   NEW SECTIONS - ARANGRANT REDESIGN
   =================================== */

/* Hero Tagline */
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Process Steps Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.process-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* Flight Classes Grid */
.flight-classes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.class-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.class-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.class-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.class-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Expanded Features Grid (8 items) */
.features-grid-expanded {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.features-grid-expanded .feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.features-grid-expanded .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.features-grid-expanded .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.features-grid-expanded .feature-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.features-grid-expanded .feature-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Expanded Travel Types Grid (9 items) */
.travel-types-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.travel-types-grid-expanded .travel-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.travel-types-grid-expanded .travel-card:hover {
    transform: scale(1.03);
}

.travel-types-grid-expanded .travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-types-grid-expanded .travel-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    padding: 30px 25px;
    color: var(--white);
}

.travel-types-grid-expanded .travel-card-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.travel-types-grid-expanded .travel-card-overlay p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.travel-types-grid-expanded .learn-more-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.travel-types-grid-expanded .learn-more-link:hover {
    transform: translateX(5px);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

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

    .hero-tagline {
        font-size: 1.1rem;
    }

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

    .form-submit {
        grid-column: span 1;
    }

    .flight-classes-grid,
    .features-grid-expanded,
    .travel-types-grid-expanded {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   REVIEW PLATFORMS & CAROUSEL
   =================================== */

/* Review Platform Badges */
.review-platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px auto 50px;
    flex-wrap: wrap;
    max-width: 900px;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.platform-badge:hover {
    transform: none;
    box-shadow: none;
}

.platform-logo {
    width: 45px;
    height: 45px;
    background: #4285f4;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
}

.platform-logo.trustpilot {
    background: #00b67a;
}

.platform-logo.google {
    background: #4285f4;
}

.platform-logo.facebook {
    background: #1877f2;
}

.platform-info {
    text-align: left;
}

.platform-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.platform-rating {
    color: #FFB800;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    padding: 0;
    margin-top: 40px;
    max-width: 100%;
}

.testimonials-carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
    overflow: visible;
}

.testimonials-carousel .review-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.testimonials-carousel .review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.review-stars {
    color: #FFB800;
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: normal;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.carousel-nav.prev {
    left: -22px;
}

.carousel-nav.next {
    right: -22px;
}

/* Old testimonials grid - keeping for fallback */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonials-grid .review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .testimonials-carousel .review-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }

    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .platform-badge {
        padding: 15px 20px;
    }

    .platform-logo {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}

/* ===================================
   ADDITIONAL REVIEW PLATFORMS & AIRLINE/ACCREDITATIONS
   =================================== */

/* Update platform logo colors */
.platform-logo.google {
    background: #4285f4;
}

.platform-logo.tripadvisor {
    background: #34e0a1;
    font-size: 1.5rem;
}

.platform-logo.yelp {
    background: #d32323;
}

.platform-logo.facebook {
    background: #1877f2;
}

.platform-logo.bbb {
    background: #003f7f;
    font-size: 1.2rem;
    font-weight: 800;
}

/* Airline Partners Section */
.section-partners {
    padding: 0 0 40px;
    background: var(--bg-light);
}

.airline-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 50px;
    margin-top: 40px;
    padding: 20px 0;
}

.airline-logo {
    flex: 0 0 auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.airline-logo:hover {
    opacity: 1;
}

.airline-logo img {
    max-width: 140px;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.airline-logo:hover img {
    filter: grayscale(0%);
}

/* Accreditations Section */
.accreditation-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.accreditation-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
}

.accreditation-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.accreditation-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .airline-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .review-platforms {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .airline-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .airline-logo {
        max-width: 150px;
        height: 80px;
        padding: 15px;
    }

    .accreditation-badges {
        flex-direction: column;
        gap: 30px;
    }

    .accreditation-item {
        max-width: 300px;
        padding: 20px;
    }

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

@media (max-width: 480px) {
    .airline-logos {
        grid-template-columns: 1fr;
    }

    .review-platforms {
        grid-template-columns: 1fr;
    }
}

/* Update review platforms to grid layout */
.review-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 30px auto 50px;
}

/* ===================================
   ACCREDITATIONS BAR (PROMINENT PLACEMENT)
   =================================== */

.accreditations-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.accreditations-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.accred-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accred-badges-inline {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accred-badge-small {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.accred-badge-small:hover {
    transform: scale(1.1);
}

/* ===================================
   AIRLINE TEXT LOGOS (STYLED)
   =================================== */

.airline-text-logo {
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.3;
    padding: 10px;
}

.airline-text-logo.qatar {
    color: #5C0632;
}

.airline-text-logo.iberia {
    color: #EC1C24;
}

.airline-text-logo.philippine {
    color: #0033A0;
}

.airline-text-logo.singapore {
    color: #003087;
}

.airline-text-logo.japan {
    color: #DC0000;
}

.airline-text-logo.ita {
    color: #009246;
}

/* Responsive */
@media (max-width: 768px) {
    .accreditations-inline {
        flex-direction: column;
        gap: 15px;
    }

    .accred-badge-small {
        height: 50px;
    }

    .airline-text-logo {
        font-size: 0.9rem;
    }
}

/* Update airline logo styles for actual images */
.airline-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
}

.airline-logo:hover img {
    filter: brightness(1.1);
}

/* Travel Type Placeholder Backgrounds */
.travel-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

.wedding-bg {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFB6C1 100%);
}

.cultural-bg {
    background: linear-gradient(135deg, #E6E6FA 0%, #9370DB 100%);
}

.religious-bg {
    background: linear-gradient(135deg, #F0E68C 0%, #DAA520 100%);
}

.corporate-bg {
    background: linear-gradient(135deg, #E0E0E0 0%, #708090 100%);
}

.military-bg {
    background: linear-gradient(135deg, #C8E6C9 0%, #2E7D32 100%);
}

.family-bg {
    background: linear-gradient(135deg, #FFE0B2 0%, #FF9800 100%);
}

/* Ensure travel cards with placeholders work properly */
.travel-card {
    position: relative;
    overflow: hidden;
}

.travel-card img,
.travel-card .travel-placeholder {
    display: block;
}

/* Header Accreditation Badges */
/* Header Accreditation Badges */
.header-accreditations {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.accred-label-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.accred-badges-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

.accred-badge-tiny {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.accred-badge-tiny:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .header-accreditations {
        display: none;
        /* Hide on tablet and mobile */
    }
}

/* Footer Accreditation Badges */
.footer-accreditations {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-top: 20px;
}

.footer-accred-badge {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-accred-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-accreditations {
        align-items: center;
    }
}

/* Arangrant-Style Testimonials */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title-alt {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
}

.section-title-alt::after {
    display: none;
}

.review-platforms-inline {
    display: flex;
    gap: 25px;
    align-items: center;
}

.platform-badge-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.platform-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.platform-rating-alt {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonials-carousel-wrapper-alt {
    position: relative;
    padding: 0 50px;
    overflow: hidden;
}

.testimonials-carousel-alt {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-card-alt {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    background: var(--white);
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.review-text-alt {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reviewer-info {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.reviewer-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.carousel-nav-alt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid #ccc;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav-alt:hover {
    background: #f5f5f5;
}

.carousel-nav-alt.prev {
    left: 0;
}

.carousel-nav-alt.next {
    right: 0;
}

@media (max-width: 992px) {
    .review-card-alt {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-platforms-inline {
        flex-wrap: wrap;
        gap: 15px;
    }

    .review-card-alt {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-carousel-wrapper-alt {
        margin: 0 30px;
    }

    .carousel-nav-alt.prev {
        left: -30px;
    }

    .carousel-nav-alt.next {
        right: -30px;
    }
}

/* Platform Logo Badges */
.platform-logo-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.trustpilot-badge {
    background: #00b67a;
    color: white;
}

.facebook-badge {
    background: #1877f2;
    color: white;
}

.google-badge {
    background: #4285f4;
    color: white;
}

/* Testimonials Divider */
.testimonials-divider {
    height: 1px;
    background: linear-gradient(to right, #ddd, #eee);
    margin: 20px 0 30px;
}

/* Review Title */
.review-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 30px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: var(--accent-color);
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.9) 0%, rgba(0, 51, 102, 0.85) 100%), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-hero-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-airlines {
    margin-top: 40px;
}

.about-airlines>span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.about-airline-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-airline-logos img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Trust Bar */
.trust-bar {
    background: #fdfaf0;
    padding: 20px 0;
    border-bottom: 2px solid #f8e5b4;
    text-align: center;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #444;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.trust-label {
    font-weight: 700;
    color: #333;
}

.trust-stars {
    color: #ffb80f;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

/* About Split Section */
.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-images {
    flex: 0 0 45%;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-image-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.about-text-content {
    flex: 1;
}

.about-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.accent-text {
    color: var(--accent-color);
}

.about-features-list {
    margin: 20px 0;
    padding-left: 0;
}

.about-features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.about-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.about-highlight {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Steps Section */
.steps-section {
    background: #f8f9fa;
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 50px;
}

.step-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.step-connector {
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 25px;
}

/* Features Grid About */
.features-grid-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card-about {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.feature-icon-about {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-card-about h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

/* About CTA Section */
.about-cta-section {
    padding: 40px 0;
    background: var(--white);
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 30px 40px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.about-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-agent-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.cta-text h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-call-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-call-btn:hover {
    background: #c9a030;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-section>.container>p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-split {
        flex-direction: column;
    }

    .about-images {
        flex: 0 0 auto;
        width: 100%;
    }

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

    .steps-timeline {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

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

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 6px;
    }
}