.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

:root {
    --primary-color: #0274be;
    --primary-dark: #015a94;
    --primary-light: #3498db;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --complementary-1: #2ecc71;
    --complementary-2: #9b59b6;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    padding-top: 0;
    margin: 0;
}

/* Add padding to body when navbar is fixed - No white gap */
body.has-fixed-nav {
    padding-top: 110px;
}

@media (max-width: 991px) {
    body.has-fixed-nav {
        padding-top: 95px;
    }
}

@media (max-width: 576px) {
    body.has-fixed-nav {
        padding-top: 85px;
    }
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Smart Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.container,
.container-fluid {
    max-width: 1600px;
}

.container {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure content is centered */
.container .row {
    margin-left: auto;
    margin-right: auto;
}

.container .row [class*="col-"] {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1700px;
    }
}

/* Justify content */
p,
.lead {
    text-align: justify;
    text-justify: inter-word;
}

/* Responsive Content Centering */
@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    p,
    .lead {
        text-align: justify;
        text-justify: inter-word;
    }

    .section-title,
    .section-subtitle {
        text-align: center !important;
    }

    /* Ensure all section headers are centered on mobile */
    .text-center h2,
    .text-center h3,
    .text-center h4,
    .text-center h5,
    .text-center h6,
    .text-center p {
        text-align: center !important;
    }

    /* Center form labels and inputs on mobile */
    .contact-form .form-label {
        text-align: center;
        justify-content: center;
    }

    /* Center office card content on mobile */
    .office-card {
        text-align: center;
    }

    .office-card .office-info {
        text-align: center;
    }

    .office-card p {
        text-align: justify;
    }

    /* Center navbar content on mobile */
    .navbar-nav {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem !important;
    }
}

/* ============================================
   Navigation - Redesigned Clean Version
   ============================================ */

/* Main Navigation Bar */
#mainNav {
  background: rgb(43, 43, 43);
    transition: all 0.3s ease;
  padding: 0.6rem 0;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#mainNav.scrolled {
  background: rgb(43, 43, 43);
  padding: 0.4rem 0;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.3);
}

/* Logo Styling - Works for all page structures */
.navbar-brand {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

/* Show logo on all pages */
.mobile-header-bar .navbar-brand,
.navbar-brand.d-none.d-lg-flex,
.navbar > .container > .navbar-brand {
    display: flex !important;
}

.logo-img {
    height: 90px !important;
    width: auto !important;
    max-width: 220px !important;
    transition: all 0.3s ease !important;
    object-fit: contain !important;
    display: block !important;
}

#mainNav.scrolled .logo-img {
    height: 75px !important;
    max-width: 190px !important;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Desktop Navigation Container */
@media (min-width: 992px) {
    #mainNav .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        max-width: 1600px !important;
        padding: 0 2rem !important;
    }

    .navbar-brand {
        margin-right: 2rem !important;
        display: flex !important;
    }

    .logo-img {
        height: 105px !important;
        max-width: 250px !important;
    }

    #mainNav.scrolled .logo-img {
        height: 85px !important;
        max-width: 210px !important;
    }

    /* Desktop Navigation Links */
    .navbar-collapse {
        position: relative !important;
        display: flex !important;
        flex: 1 !important;
        justify-content: flex-end !important;
        align-items: center !important;
        flex-direction: row !important;
        height: auto !important;
        width: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        right: auto !important;
        overflow: visible !important;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 0.15rem !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .navbar-nav .nav-item {
        position: relative !important;
        display: inline-block !important;
        width: auto !important;
        border: none !important;
    }

    .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.92rem !important;
        font-weight: 500 !important;
        padding: 1rem 0.95rem !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        display: inline-block !important;
        width: auto !important;
        background: transparent !important;
        filter: none !important;
        -webkit-filter: none !important;
        text-shadow: none !important;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--primary-light);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 60%;
    }

    .navbar-nav .nav-link.active {
        color: var(--primary-light);
    }

    /* Desktop Dropdown */
    .navbar-nav .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.4rem;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        transition: transform 0.3s ease;
    }

    .navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        min-width: 240px;
        background: rgb(43, 43, 43);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 0.75rem 0;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.25s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
        background: linear-gradient(90deg, rgba(2, 116, 190, 0.2), transparent);
        color: var(--primary-light);
        padding-left: 2rem;
    }

    /* Desktop Book Flight Button */
    .navbar-nav .btn-book {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-left: 1rem;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(2, 116, 190, 0.3);
    }

    .navbar-nav .btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(2, 116, 190, 0.5);
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    }
}

/* Mobile Menu Backdrop Overlay */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.show {
    display: none;
    opacity: 1;
}

/* ============================================
   Mobile Navigation - Clean Redesign
   ============================================ */
@media (max-width: 991.98px) {
    
    /* Mobile Header Container */
    #mainNav .container {
        padding: 0.5rem 1rem !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .mobile-header-bar {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Hamburger Menu Button */
    .menu-toggle-btn {
        order: 1 !important;
        flex-shrink: 0 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 8px !important;
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        margin: 0 !important;
    }

    .menu-toggle-btn:hover,
    .menu-toggle-btn:focus {
        background: rgba(255, 255, 255, 0.18) !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
        outline: none !important;
    }

    .navbar-toggler-icon {
        width: 20px !important;
        height: 16px !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .navbar-toggler-icon span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background: white !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        transform-origin: center !important;
    }

    /* Hamburger Animation */
    .menu-toggle-btn[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .menu-toggle-btn[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
    }

    .menu-toggle-btn[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* Mobile Logo */
    .mobile-header-bar .navbar-brand {
        order: 2 !important;
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        min-width: 0 !important;
    }

    .mobile-header-bar .logo-img {
        height: 95px !important;
        max-width: 220px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    #mainNav.scrolled .mobile-header-bar .logo-img {
        height: 85px !important;
        max-width: 200px !important;
    }

    /* Mobile Book Button */
    .mobile-book-btn {
        order: 3 !important;
        flex-shrink: 0 !important;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 0.65rem 1rem !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
        box-shadow: 0 4px 15px rgba(2, 116, 190, 0.4) !important;
        transition: all 0.3s ease !important;
        color: white !important;
        text-decoration: none !important;
        text-align: center !important;
        display: inline-flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }

    .mobile-book-btn span {
        display: block !important;
        line-height: 1.1 !important;
    }

    .mobile-book-btn span:first-child {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
    }

    .mobile-book-btn span:last-child {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        margin-left: 0 !important;
        margin-top: 0.1rem !important;
    }

    .mobile-book-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(2, 116, 190, 0.5) !important;
    }

    /* Responsive adjustments for smaller screens */
    @media (max-width: 576px) {
        .mobile-header-bar {
            gap: 0.5rem !important;
        }

        .menu-toggle-btn {
            width: 40px !important;
            height: 40px !important;
        }

        .mobile-header-bar .logo-img {
            height: 85px !important;
            max-width: 180px !important;
        }

        #mainNav.scrolled .mobile-header-bar .logo-img {
            height: 75px !important;
            max-width: 160px !important;
        }

        .mobile-book-btn {
            padding: 0.55rem 0.9rem !important;
            font-size: 0.75rem !important;
        }

        .mobile-book-btn span:first-child,
        .mobile-book-btn span:last-child {
            font-size: 0.75rem !important;
        }
    }

    @media (max-width: 400px) {
        .mobile-header-bar {
            gap: 0.4rem !important;
        }

        .mobile-header-bar .logo-img {
            height: 75px !important;
            max-width: 150px !important;
        }

        #mainNav.scrolled .mobile-header-bar .logo-img {
            height: 65px !important;
            max-width: 130px !important;
        }

        .mobile-book-btn {
            padding: 0.5rem 0.8rem !important;
            font-size: 0.7rem !important;
        }
    }

    /* Mobile Menu Close Button */
    .mobile-menu-close {
        display: none;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.3);
    }

    .navbar-collapse.show .mobile-menu-close {
        display: flex;
        justify-content: flex-end;
    }

    .mobile-menu-close .close-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 44px;
        height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
        padding: 0;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .mobile-menu-close .close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .close-icon {
    position: relative;
        width: 18px;
        height: 18px;
    }

    .close-icon::before,
    .close-icon::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: white;
        border-radius: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .close-icon::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    /* ============================================
       Mobile Slide-Out Menu Panel
       ============================================ */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        width: 300px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgb(43, 43, 43) !important;
        z-index: 1050 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar-collapse.show {
        right: 0 !important;
    }

    .navbar-collapse.collapsing {
        right: -320px !important;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    /* Force immediate visibility of menu items */
    .navbar-collapse .navbar-nav,
    .navbar-collapse .nav-item,
    .navbar-collapse .nav-link {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Custom Scrollbar */
    .navbar-collapse::-webkit-scrollbar {
        width: 4px;
    }

    .navbar-collapse::-webkit-scrollbar-track {
        background: transparent;
    }

    .navbar-collapse::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 2px;
    }

    /* ============================================
       Mobile Navigation List
       ============================================ */
    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 1rem 0 !important;
        margin: 0 !important;
        list-style: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar-nav .nav-item {
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none !important;
    }

    .navbar-nav .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        border: none !important;
        background: transparent !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        filter: none !important;
        -webkit-filter: none !important;
        text-shadow: none !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(2, 116, 190, 0.15) !important;
        color: var(--primary-light) !important;
        padding-left: 1.75rem !important;
    }

    .navbar-nav .nav-link.active {
        background: rgba(2, 116, 190, 0.2) !important;
        color: var(--primary-light) !important;
        border-left: 3px solid var(--primary-color) !important;
    }

    /* Dropdown Toggle */
    .navbar-nav .nav-link.dropdown-toggle::after {
    content: '';
        display: inline-block;
    width: 0;
        height: 0;
        margin-left: auto;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid currentColor;
        transition: transform 0.2s ease;
        opacity: 0.6;
    }

    .navbar-nav .nav-link.dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* ============================================
       Mobile Dropdown Menu
       ============================================ */
    .navbar-nav .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 0;
        padding: 0;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 0;
        box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu .dropdown-item {
        display: block;
        width: 100%;
        padding: 0.9rem 1.5rem 0.9rem 2.5rem;
        color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
        font-weight: 400;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.2s ease;
        position: relative;
    }

    .dropdown-menu .dropdown-item::before {
        content: '→';
        position: absolute;
        left: 1.25rem;
        opacity: 0.5;
        color: var(--primary-light);
        font-size: 0.85rem;
        transition: all 0.2s ease;
    }

    .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
        background: rgba(2, 116, 190, 0.2);
        color: var(--primary-light);
        padding-left: 3rem;
    }

    .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        left: 1.5rem;
    }

    /* Mobile Menu Book Button (inside menu) */
    .navbar-nav .nav-item .btn-book {
        display: block;
        width: calc(100% - 2rem);
        margin: 1rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        text-align: center;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(2, 116, 190, 0.4);
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-item .btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(2, 116, 190, 0.5);
    }

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

/* Navigation Base Styles */
.navbar {
    position: relative;
}

.navbar .container {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

/* Hide default Bootstrap toggler - we use custom */
.navbar-toggler:not(.menu-toggle-btn) {
    display: none;
}

/* Book Flight Button Base */
.btn-book {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 0.85rem 1.65rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 18px rgba(2, 116, 190, 0.35);
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 116, 190, 0.5);
    color: var(--white);
}

/* Desktop navbar alignment */
@media (min-width: 992px) {
    .mobile-header-bar {
        display: none !important;
    }
    
    #mainNav .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    /* Show desktop logo */
    .navbar-brand.d-none.d-lg-flex,
    .mobile-header-bar .navbar-brand {
        display: flex !important;
        align-items: center !important;
        margin-right: 2rem !important;
    }
    
    /* Hide mobile book button on desktop */
    .mobile-book-btn,
    .mobile-book-btn.d-lg-none {
        display: none !important;
    }
    
    /* Center nav items */
    .navbar-collapse {
        display: flex !important;
        flex: 1 !important;
        justify-content: flex-end !important;
    }
    
    .navbar-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 0.25rem !important;
    }
}

/* Mobile compatibility - ensure d-lg-none still works */
@media (max-width: 991.98px) {
    .mobile-book-btn.d-lg-none,
    .mobile-book-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0.8rem 1.6rem !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        box-shadow: 0 6px 18px rgba(2, 116, 190, 0.35) !important;
    }
    
    /* Hide desktop-only logo on mobile */
    .navbar-brand.d-none.d-lg-flex {
        display: none !important;
    }
    
    /* Show mobile header logo */
    .mobile-header-bar .navbar-brand {
        display: flex !important;
    }
}

/* ============================================
   Hero Video Section
   ============================================ */

.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 116, 190, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .heroSwiper {
        height: 70vh;
        min-height: 500px;
    }

    .slide-text {
        padding: 2rem 1rem;
    }

    .slide-text h1 {
        font-size: 1.75rem;
    }

    .slide-text h2 {
        font-size: 1.75rem;
    }

    .slide-text p,
    .slide-text .lead {
        font-size: 1rem;
    }
}

/* ============================================
   Slider Section
   ============================================ */

.slider-section {
    padding: 0 !important;
    margin-top: 0;
    position: relative;
    z-index: 4;
    width: 100%;
}

.heroSwiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    border-radius: 0;
    position: relative;
}

/* Mobile Slider Responsive */
@media (max-width: 768px) {
    .heroSwiper {
        height: 100vh;
        min-height: 500px;
        max-height: 100vh;
    }

    .slide-text {
        padding: 2rem 1.5rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }

    .slide-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .slide-text h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .slide-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .slide-text .lead {
        font-size: 1.1rem;
    }

    .slide-overlay {
        background: linear-gradient(135deg, rgba(2, 116, 190, 0.55) 0%, rgba(26, 26, 26, 0.75) 100%);
    }

    /* Hide pagination on mobile */
    .heroSwiper .swiper-pagination {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .heroSwiper {
        min-height: 450px;
    }

    .slide-text {
        padding: 1.5rem 1rem;
        background: rgba(0, 0, 0, 0.35);
        border-radius: 8px;
    }

    .slide-text h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .slide-text h2 {
        font-size: 1.5rem;
    }

    .slide-text p {
        font-size: 0.9rem;
    }

    .slide-text .lead {
        font-size: 1rem;
    }

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

.heroSwiper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
    z-index: 5;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 116, 190, 0.50) 0%, rgba(26, 26, 26, 0.70) 100%);
    z-index: 2;
}

/* Desktop - clearer overlay */
@media (min-width: 769px) {
    .slide-overlay {
        background: linear-gradient(135deg, rgba(2, 116, 190, 0.50) 0%, rgba(26, 26, 26, 0.70) 100%);
    }
}

.slide-text {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.slide-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
}

.slide-text p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.slide-text .lead {
    font-size: 1.4rem;
    line-height: 1.6;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(2, 116, 190, 0.9);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 116, 190, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
    width: 14px;
    height: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.4);
    border-color: var(--white);
    box-shadow: 0 0 10px rgba(2, 116, 190, 0.8);
}

/* Hide pagination on mobile for hero slider */
@media (max-width: 768px) {
    .heroSwiper .swiper-pagination {
        display: none !important;
    }
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Prevent horizontal overflow */
.container,
.container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure no horizontal scroll */
@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: block;
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center !important;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   About Section
   ============================================ */

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

.about-section img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

/* ============================================
   Services Section
   ============================================ */

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px var(--shadow);
}

/* Mobile Responsive Service Cards */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-card h4,
    .service-card .h4 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .service-img-wrapper {
        height: 180px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 1.25rem;
    }

    .service-card h4,
    .service-card .h4 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-img-wrapper {
        height: 160px;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-img-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-card p {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

/* ============================================
   Aircraft Section
   ============================================ */

.aircraft-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.aircraft-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(2,116,190,0.05)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.aircraft-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 3px solid transparent;
    position: relative;
    z-index: 1;
}

.aircraft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.aircraft-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(2, 116, 190, 0.25);
    border-color: var(--primary-color);
}

.aircraft-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.aircraft-card:hover img {
    transform: scale(1.15) rotate(1deg);
}

.aircraft-content {
    padding: 2rem;
    position: relative;
}

.aircraft-content h5 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.aircraft-card:hover .aircraft-content h5 {
    color: var(--primary-color);
}

.aircraft-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stat-item {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Cargo Section
   ============================================ */

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

.cargo-section img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.cargo-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 116, 190, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 116, 190, 0.4);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 90px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 991px) {
    .footer {
        text-align: center;
    }

    .footer .row {
        justify-content: center;
    }

    /* First column centered */
    .footer .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Quick Links & Charter Services side-by-side in one row, two columns */
    .footer .col-lg-2,
    .footer .col-lg-3:nth-child(3) {
        flex: 0 0 50%;
        max-width: 50%;
        text-align: left;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Last column centered */
    .footer .col-lg-3:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer h5 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Quick Links & Charter Services in one row, two columns on mobile */
    .footer .col-lg-2,
    .footer .col-lg-3:nth-child(3) {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 2rem;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer ul li {
        margin-bottom: 0.5rem;
    }

    .footer ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer .col-lg-2,
    .footer .col-lg-3:nth-child(3) {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .footer h5 {
        font-size: 0.95rem;
    }

    .footer ul li a {
        font-size: 0.85rem;
    }
}

/* ============================================
   About Us Page Styles
   ============================================ */

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(2, 116, 190, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .timeline-content {
        margin: 0;
        margin-left: 1rem;
        padding: 1.5rem;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .certification-badge {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .mission-vision-wrapper {
        padding: 1.5rem;
    }

    .mission-vision-wrapper .section-title {
        font-size: 1.5rem;
    }
}

/* Mission, Vision, Statement Wrapper */
.mission-vision-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-vision-wrapper .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mission-vision-wrapper .lead {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.mission-vision-wrapper p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Values List Styles */
.values-list {
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.value-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

/* Why Choose Card Styles */
.why-choose-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(2, 116, 190, 0.2);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

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

.why-choose-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Certification Styles */
.certification-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.certification-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(2, 116, 190, 0.1);
}

.certification-list li:last-child {
    border-bottom: none;
}

.certification-badge {
    background: linear-gradient(135deg, rgba(2, 116, 190, 0.05), rgba(1, 90, 148, 0.05));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(2, 116, 190, 0.1);
}

.certification-badge h4 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-weight: 600;
}

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

/* ============================================
   Universal Page Hero Banner (All Pages Except Homepage)
   ============================================ */

.page-hero,
.charter-hero,
.fleet-hero,
.tracking-hero,
.booking-hero,
.contact-hero,
.jet-cards-hero,
.empty-legs-hero {
    background-image: url('../images/banner-image.jpg') !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0274be;
    /* Fallback brand color */
    /* Removed background-attachment: fixed for better visibility across devices */
    color: var(--white);
    padding: 80px 0 100px;
    /* Adjusted padding for content positioning - uplifted */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;}

.page-hero::before,
.charter-hero::before,
.fleet-hero::before,
.tracking-hero::before,
.booking-hero::before,
.contact-hero::before,
.jet-cards-hero::before,
.empty-legs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Darker gradient for better text visibility */
    background: linear-gradient(135deg, rgba(2, 116, 190, 0.65) 0%, rgba(1, 90, 148, 0.70) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.page-hero .container,
.charter-hero .container,
.fleet-hero .container,
.tracking-hero .container,
.booking-hero .container,
.contact-hero .container,
.jet-cards-hero .container,
.empty-legs-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1,
.charter-hero h1,
.fleet-hero h1,
.tracking-hero h1,
.booking-hero h1,
.contact-hero h1,
.jet-cards-hero h1,
.empty-legs-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    /* Increased shadow for better contrast */
    color: var(--white);
    text-align: center;
    width: 100%;
}

.page-hero p,
.charter-hero p,
.fleet-hero p,
.tracking-hero p,
.booking-hero p,
.contact-hero p,
.jet-cards-hero p,
.empty-legs-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.page-hero .lead,
.charter-hero .lead,
.fleet-hero .lead,
.tracking-hero .lead,
.booking-hero .lead,
.contact-hero .lead,
.jet-cards-hero .lead,
.empty-legs-hero .lead {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-align: center;
    width: 100%;
}

/* Responsive Hero */
@media (max-width: 768px) {

    .page-hero,
    .charter-hero,
    .fleet-hero,
    .tracking-hero,
    .booking-hero,
    .contact-hero,
    .empty-legs-hero,
    .jet-cards-hero {
        padding: 100px 0 70px;
        background-attachment: scroll;
        min-height: 420px;
        background-size: cover !important;
        background-position: center center !important;
    }

    .charter-hero {
        min-height: 380px;
        padding: 110px 0 80px;
    }

    .page-hero::before,
    .charter-hero::before,
    .fleet-hero::before,
    .tracking-hero::before,
    .booking-hero::before,
    .contact-hero::before,
    .jet-cards-hero::before,
    .empty-legs-hero::before {
        background: linear-gradient(135deg, rgba(2, 116, 190, 0.75) 0%, rgba(1, 90, 148, 0.80) 50%, rgba(0, 0, 0, 0.75) 100%);
    }

    .page-hero h1,
    .charter-hero h1,
    .fleet-hero h1,
    .tracking-hero h1,
    .booking-hero h1 {
        font-size: 2.5rem;
    }

    .charter-hero h1 {
        font-size: 2.75rem;
    }

    .page-hero p,
    .charter-hero p,
    .fleet-hero p,
    .tracking-hero p,
    .booking-hero p {
        font-size: 1.1rem;
    }

    .charter-hero .lead {
        font-size: 1.2rem;
    }

    .charter-hero p {
        font-size: 1rem;
    }

    .page-hero .lead,
    .charter-hero .lead,
    .fleet-hero .lead,
    .tracking-hero .lead,
    .booking-hero .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {

    .page-hero,
    .charter-hero,
    .fleet-hero,
    .tracking-hero,
    .booking-hero,
    .contact-hero,
    .empty-legs-hero,
    .jet-cards-hero {
        padding: 80px 0 60px;
        min-height: 370px;
        background-size: cover !important;
        background-position: center center !important;
    }

    .page-hero::before,
    .charter-hero::before,
    .fleet-hero::before,
    .tracking-hero::before,
    .booking-hero::before,
    .contact-hero::before,
    .jet-cards-hero::before,
    .empty-legs-hero::before {
        background: linear-gradient(135deg, rgba(2, 116, 190, 0.80) 0%, rgba(1, 90, 148, 0.85) 50%, rgba(0, 0, 0, 0.80) 100%);
    }

    .page-hero h1,
    .charter-hero h1,
    .fleet-hero h1,
    .tracking-hero h1,
    .booking-hero h1 {
        font-size: 2rem;
    }

    .page-hero p,
    .charter-hero p,
    .fleet-hero p,
    .tracking-hero p,
    .booking-hero p {
        font-size: 1rem;
    }
}

.service-section {
    padding: 5rem 0;
    scroll-margin-top: 100px;
}

.service-section:nth-child(even) {
    background: var(--light);
}

.service-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ============================================
   Fleet Page
   ============================================ */


.fleet-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.fleet-filter-btn {
    padding: 0.85rem 2.2rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.fleet-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.fleet-filter-btn:hover::before,
.fleet-filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.fleet-filter-btn span,
.fleet-filter-btn {
    position: relative;
    z-index: 1;
}

.fleet-filter-btn:hover,
.fleet-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(2, 116, 190, 0.3);
    border-color: var(--primary-dark);
}

.fleet-filter-btn .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.fleet-item {
    margin-bottom: 2.5rem;
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    animation: fadeInUp 0.6s ease-out;
}

.fleet-item .fleet-card {
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fleet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

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

.fleet-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(2, 116, 190, 0.25);
    border-color: var(--primary-color);
}

.fleet-card-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffffff 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fleet-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.fleet-card:hover .fleet-card-image-wrapper::after {
    opacity: 1;
}

.fleet-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 340px;
    max-height: 380px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    filter: contrast(1.05) brightness(1.02);
}

.fleet-card:hover img {
    transform: scale(1.08) translateZ(0);
    filter: contrast(1.1) brightness(1.05);
}

.fleet-card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--white);
    position: relative;
}

.fleet-card-body .btn-primary {
    margin-top: auto;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 116, 190, 0.2);
}

.fleet-card-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 116, 190, 0.4);
}

.fleet-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.fleet-card:hover .fleet-card-title {
    color: var(--primary-color);
}

.fleet-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    flex-shrink: 0;
    min-height: 4.5rem;
    font-weight: 400;
}

.fleet-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.fleet-specs li {
    padding: 0.65rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.fleet-specs li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.fleet-specs li:last-child {
    border-bottom: none;
}

.fleet-specs li i {
    width: 24px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.fleet-specs li:hover i {
    transform: scale(1.2);
}

.fleet-specs strong {
    color: var(--text-dark);
    margin-left: 0.75rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.fleet-specs li:hover strong {
    color: var(--primary-color);
}

/* Fleet Page Responsive Improvements */
@media (max-width: 992px) {
    .fleet-card-image-wrapper {
        min-height: 320px;
        padding: 1.5rem;
    }

    .fleet-card img {
        min-height: 280px;
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .fleet-card-image-wrapper {
        min-height: 280px;
        padding: 1rem;
    }

    .fleet-card img {
        min-height: 240px;
        max-height: 280px;
    }

    .fleet-card-body {
        padding: 1.5rem;
    }

    .fleet-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .fleet-filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .fleet-card-image-wrapper {
        min-height: 240px;
        padding: 0.75rem;
    }

    .fleet-card img {
        min-height: 200px;
        max-height: 240px;
    }

    .fleet-card-body {
        padding: 1.25rem;
    }

    .fleet-card-title {
        font-size: 1.4rem;
    }

    .fleet-description {
        font-size: 0.9rem;
        min-height: auto;
    }
}

/* ============================================
   Contact Page
   ============================================ */

/* Consolidated with .page-hero block above */

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(2, 116, 190, 0.1);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.contact-form .form-label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(2, 116, 190, 0.15);
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-control,
.form-select {
    border: 2px solid var(--light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(2, 116, 190, 0.25);
    transform: translateY(-2px);
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(2, 116, 190, 0.3);
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
}

.contact-info-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Office Cards */
.office-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

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

.office-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(2, 116, 190, 0.25);
    border-color: var(--primary-color);
}

.office-card.office-closed {
    opacity: 0.85;
}

.office-card.office-closed:hover {
    opacity: 1;
}

.office-card.office-main {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 35px rgba(2, 116, 190, 0.2);
}

.office-card.office-main::before {
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
}

.office-main-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
}

.office-main-header::after {
    content: 'HEADQUARTERS';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.badge-main {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Map Section */
.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 1rem;
}

.world-map-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.map-overlay-info {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    z-index: 10;
}

.map-legend h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-locations-list li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.75rem;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.marker-primary {
    background: var(--primary-color);
}

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

@media (max-width: 768px) {
    .map-overlay-info {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
        max-width: 100%;
    }

    .office-card-header {
        padding: 1.25rem;
    }

    .office-card-header i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .office-card-header h5 {
        font-size: 1.2rem;
    }

    .office-card-body {
        padding: 1.5rem;
    }

    .office-info h6 {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .office-address,
    .office-contact,
    .office-email {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .contact-person {
        padding: 1rem;
    }

    .contact-person p {
        font-size: 0.85rem;
    }

    .row.g-4.justify-content-center {
        justify-content: center !important;
    }

    .col-md-6 {
        text-align: center;
    }
}

.office-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.office-card-header i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.9;
}

.office-card-header h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.office-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.office-badge.badge-warning {
    background: rgba(243, 156, 18, 0.9);
    color: var(--white);
}

.office-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.office-info h6 {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light);
}

.office-address {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.office-address i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.office-contact {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.office-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

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

.office-contact a:hover {
    color: var(--primary-color);
}

.office-email {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.office-email i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.office-email a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-all;
}

.office-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: translateX(3px);
}

.contact-person {
    background: linear-gradient(135deg, rgba(2, 116, 190, 0.05) 0%, rgba(2, 116, 190, 0.02) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: auto;
}

.contact-person strong {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-person strong i {
    margin-right: 0.5rem;
}

.contact-person p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-person small {
    color: var(--text-light);
    font-size: 0.85rem;
    display: block;
    margin: 0.25rem 0;
}

.contact-person a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-person a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ============================================
   Responsive Design
   ============================================ */

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

    .section-title {
        font-size: 2rem;
        text-align: center !important;
    }

    .section-subtitle {
        text-align: center !important;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero-video-section {
        height: 70vh;
        min-height: 500px;
    }

    .heroSwiper {
        height: 400px;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1.2rem;
    }

    .service-card,
    .aircraft-card {
        margin-bottom: 2rem;
    }

    .fleet-filters {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        padding: 2rem;
    }

    /* Ensure titles and subtitles are centered on tablet */
    .section-title,
    .section-subtitle {
        text-align: center !important;
    }

    /* Center section headers */
    .text-center h2,
    .text-center h3,
    .text-center h4,
    .text-center h5,
    .text-center h6,
    .text-center p.section-subtitle {
        text-align: center !important;
    }
}

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
        text-align: center !important;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center !important;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .btn-book {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Ensure all content sections are centered on small mobile */
    .container,
    .container-fluid {
        text-align: center;
    }

    /* But justify paragraph text */
    .container p,
    .container-fluid p {
        text-align: justify;
        text-justify: inter-word;
    }

    /* Center headings */
    .container h1,
    .container h2,
    .container h3,
    .container h4,
    .container h5,
    .container h6,
    .container-fluid h1,
    .container-fluid h2,
    .container-fluid h3,
    .container-fluid h4,
    .container-fluid h5,
    .container-fluid h6 {
        text-align: center !important;
    }
}

/* ============================================
   Office Map Legend
   ============================================ */

.office-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.legend-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.legend-marker.active {
    background: var(--primary-color);
}

.legend-marker.closed {
    background: var(--secondary-color);
}

/* Leaflet Map Customization */
#mapContainer {
    border-radius: 10px;
}

.custom-marker {
    background: transparent !important;
    border: none !important;
}

.custom-marker .fa-map-marker-alt {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-hero {
        padding: 140px 0 80px;
        background-attachment: scroll;
    }

    #officeMap {
        height: 400px !important;
    }
}

/* ============================================
   Jet Cards Page Styles
   ============================================ */

/* Consolidated with .page-hero block above */

.jet-cards-hero .container {
    position: relative;
    z-index: 2;
}

.jet-cards-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white);
    text-align: center;
    width: 100%;
}

.jet-cards-hero p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-align: center;
    width: 100%;
}

.jet-cards-hero .lead {
    text-align: center;
    width: 100%;
}

.jet-cards-hero .container .row {
    justify-content: center;
}

.jet-cards-hero .container .row [class*="col-"] {
    text-align: center;
}

/* Jet Card Options */
.jet-card-option {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.jet-card-option.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(2, 116, 190, 0.2);
    position: relative;
}

.jet-card-option.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.jet-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.jet-card-option:hover .jet-card-image img {
    transform: scale(1.1);
}

.jet-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.jet-card-badge.popular {
    background: var(--primary-color);
    color: white;
}

.jet-card-badge.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.jet-card-content {
    padding: 2rem;
}

.jet-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(2, 116, 190, 0.3);
    position: relative;
    z-index: 5;
}

.jet-card-option h4 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.jet-card-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.jet-card-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.jet-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.jet-card-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.jet-card-features li:last-child {
    border-bottom: none;
}

.jet-card-features li i {
    color: var(--complementary-1);
    font-size: 1rem;
}

/* Feature Stats */
.feature-stat {
    text-align: center;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

/* Benefit Cards */
.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(2, 116, 190, 0.3);
}

.benefit-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Step Cards */
.step-card {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(2, 116, 190, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid var(--light);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .jet-cards-hero {
        padding: 140px 0 80px;
        background-attachment: scroll;
    }

    .jet-card-option.featured::before {
        display: none;
    }

    .jet-card-image {
        height: 200px;
    }
}

/* ============================================
   Empty Legs Page Styles
   ============================================ */

/* Consolidated with .page-hero block above */

.empty-legs-hero .container {
    position: relative;
    z-index: 2;
}

.empty-legs-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.empty-legs-hero p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

/* Empty Legs Filters */
.empty-legs-filters {
    margin-bottom: 2rem;
}

.filter-tab {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.filter-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 116, 190, 0.3);
}

.filter-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Empty Leg Card */
.empty-leg-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.empty-leg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.empty-leg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

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

.empty-leg-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem;
    position: relative;
}

.route-info {
    text-align: center;
}

.route-codes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.airport-code {
    font-size: 2rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 70px;
    text-align: center;
}

.airport-code.departure {
    background: rgba(46, 204, 113, 0.3);
}

.airport-code.arrival {
    background: rgba(231, 76, 60, 0.3);
}

.route-arrow {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateX(0);
    }

    50% {
        opacity: 0.7;
        transform: translateX(5px);
    }
}

.route-cities {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.savings-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.empty-leg-body {
    padding: 1.5rem;
}

.leg-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    margin-top: 0.2rem;
}

.detail-row div {
    flex: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.detail-row strong {
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.price-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.original-price,
.empty-leg-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price-value.highlight {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.original-price .price-value {
    text-decoration: line-through;
    opacity: 0.6;
}

.empty-leg-footer {
    padding: 1.5rem;
    background: var(--light);
    border-top: 1px solid #e0e0e0;
}

.empty-leg-footer .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.empty-leg-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 116, 190, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .empty-legs-hero {
        padding: 140px 0 80px;
        background-attachment: scroll;
    }

    .route-codes {
        gap: 0.5rem;
    }

    .airport-code {
        font-size: 1.5rem;
        padding: 0.4rem 0.8rem;
        min-width: 60px;
    }

    .savings-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-top: 1rem;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loading.loaded {
    opacity: 1;
}

/* ============================================
   Weather Widget Section
   ============================================ */

.weather-widget-section {
    background: var(--light);
}

.weather-widget {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.weather-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    text-align: center;
}

.weather-header h5 {
    color: var(--white);
    margin: 0;
}

.weather-content {
    padding: 1.5rem;
    min-height: 150px;
}

.weather-loading {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.weather-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.weather-item {
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

.weather-item-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.weather-item-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-us-section {
    background: var(--light);
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px var(--shadow);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: rotate(360deg) scale(1.1);
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-choose-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-choose-card p {
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   Accredited By Section
   ============================================ */

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

.accredited-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid var(--light);
    box-shadow: 0 5px 15px var(--shadow);
}

.accredited-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary-color);
}

.accredited-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.accredited-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.accredited-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Fleet Testimonials Section
   ============================================ */

.fleet-testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
}

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

.testimonial-rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid var(--light);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   Cargo Video Section
   ============================================ */

.cargo-video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.cargo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 116, 190, 0.2) 0%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

/* ============================================
   Testimonials Swiper
   ============================================ */

.testimonialsSwiper {
    padding: 2rem 0 4rem;
}

.testimonialsSwiper .swiper-slide {
    height: auto;
}

.testimonialsSwiper .testimonial-card {
    height: 100%;
    margin: 0;
}

/* ============================================
   Flight Tracker Section
   ============================================ */

.flight-tracker-section {
    background: var(--light);
}

.tracker-feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.tracker-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tracker-icon i {
    font-size: 2rem;
    color: var(--white);
}

.tracker-feature-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tracker-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.tracker-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.tracker-features li i {
    color: var(--complementary-1);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.tracker-preview {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tracker-preview-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tracker-preview-header h5 {
    margin: 0;
    color: var(--white);
}

.tracker-preview-content {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.tracker-preview-content::-webkit-scrollbar {
    width: 6px;
}

.tracker-preview-content::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

.tracker-preview-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.tracker-preview-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.tracker-flight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--light);
    transition: all 0.3s ease;
}

.tracker-flight-item:last-child {
    border-bottom: none;
}

.tracker-flight-item:hover {
    background: var(--light);
    transform: translateX(5px);
}

.flight-info {
    display: flex;
    flex-direction: column;
}

.flight-info strong {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.flight-route {
    color: var(--text-light);
    font-size: 0.9rem;
}

.flight-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.flight-status.in-flight {
    background: rgba(46, 204, 113, 0.1);
    color: var(--complementary-1);
}

.flight-status.scheduled {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
}

/* ============================================
   Airport Weather Cards
   ============================================ */

.airport-weather-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
}

.airport-weather-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(2, 116, 190, 0.2);
    border-color: var(--primary-color);
}

.airport-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.airport-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.airport-header h5 {
    margin: 0;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.airport-code {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.airport-weather-card:hover .airport-code {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.weather-data {
    padding: 2rem 1.5rem;
    min-height: 280px;
}

.weather-main-display {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--light);
    margin-bottom: 1.5rem;
}

.weather-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.weather-temp-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.temp-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.temp-unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.weather-condition-text {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: capitalize;
    font-weight: 500;
}

.weather-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.weather-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.weather-detail-item:hover {
    background: rgba(2, 116, 190, 0.1);
    transform: translateX(3px);
}

.weather-detail-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.detail-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   Final CTA Section
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

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

/* ============================================
   Section Styling Improvements
   ============================================ */

section {
    position: relative;
}

section:nth-child(even):not(.bg-light):not(.bg-primary):not(.bg-dark) {
    background: var(--white);
}

section.bg-light {
    background: var(--light) !important;
}

/* Add subtle borders between sections */
section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 116, 190, 0.2), transparent);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .heroSwiper {
        height: 80vh;
        min-height: 600px;
    }

    .slide-text h1 {
        font-size: 2rem;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-text p,
    .slide-text .lead {
        font-size: 1rem;
    }

    .cargo-video-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }

    .weather-info {
        grid-template-columns: 1fr;
    }

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

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

    .tracker-preview-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .weather-details-grid {
        grid-template-columns: 1fr;
    }

    .weather-icon-large {
        font-size: 3rem;
    }

    .temp-value {
        font-size: 2.5rem;
    }

    .aircraft-card img {
        height: 220px;
    }

    .aircraft-content {
        padding: 1.5rem;
    }

    .aircraft-content h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .heroSwiper {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .weather-main-display {
        padding: 1rem 0;
    }

    .weather-icon-large {
        font-size: 2.5rem;
    }

    .temp-value {
        font-size: 2rem;
    }

    .temp-unit {
        font-size: 1.2rem;
    }

    .weather-condition-text {
        font-size: 0.95rem;
    }

    .aircraft-card {
        margin-bottom: 1.5rem;
    }

    .tracker-preview-content {
        padding: 1rem;
    }

    .tracker-flight-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


/* ============================================
   WhatsApp Chat Widget
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1100;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.whatsapp-widget.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-widget a {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    /* Changed for tooltip */
}

/* Tooltip */
.whatsapp-widget a::after {
    content: 'Chat with Us';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(26, 26, 26, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-widget a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Pulse Animation */
.whatsapp-widget a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-widget a:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-widget a i {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 90px;
        right: 20px;
        opacity: 1 !important;
        transform: translateY(0) !important;
        z-index: 1100;
    }

    .whatsapp-widget.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .whatsapp-widget a {
        width: 60px;
        height: 60px;
        font-size: 30px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    }

    .whatsapp-widget a::after {
        display: none;
        /* Hide tooltip on mobile */
    }

    .whatsapp-widget a:hover {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-widget a::before {
        animation: wa-pulse 2s infinite;
    }
}

@media (max-width: 576px) {
    .whatsapp-widget {
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-widget a {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

/* ============================================
   Individual Service Page Styles
   ============================================ */


/* Smart Navigation Refinement */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .dropdown-menu {
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .dropdown-item {
        padding: 0.7rem 1.5rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: all 0.2s ease;
    }

    .dropdown-item:hover {
        background-color: var(--primary-color);
        color: var(--white);
        padding-left: 2rem;
    }

    .dropdown-item.active {
        background-color: var(--primary-dark);
        color: var(--white);
    }
}

.service-page-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 0;
    text-align: center;
    padding: 120px 0 80px;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 116, 190, 0.65) 0%, rgba(1, 90, 148, 0.70) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.service-hero-content .lead {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.service-hero-content .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    max-width: 100%;
}

.service-hero-content .breadcrumb-item {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.service-hero-content .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.service-hero-content .btn {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
}

.service-hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-hero-content .breadcrumb-item a:hover {
    color: var(--primary-light);
}

/* Responsive Service Page Hero */
@media (max-width: 768px) {
    .service-page-hero {
        height: 45vh;
        min-height: 350px;
        padding: 100px 0 60px;
        background-size: cover !important;
        background-position: center center !important;
    }

    .service-page-hero::before {
        background: linear-gradient(135deg, rgba(2, 116, 190, 0.75) 0%, rgba(1, 90, 148, 0.80) 50%, rgba(0, 0, 0, 0.75) 100%);
    }

    .service-hero-content {
        padding: 0 1.5rem;
        text-align: center;
    }

    .service-hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
        text-align: center;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
    }

    .service-hero-content .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 100%;
    }

    .service-hero-content .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
    }

    .service-hero-content .breadcrumb-item {
        font-size: 0.8rem;
        white-space: normal;
        word-break: break-word;
        line-height: 1.4;
    }

    .service-hero-content .breadcrumb-item a {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
        display: inline-block;
    }

    .service-hero-content .breadcrumb-item.active {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }

    .service-hero-content .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.4rem;
        font-size: 0.75rem;
    }

    .service-hero-content .btn {
        display: inline-block;
        margin: 1rem auto 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .service-page-hero {
        height: 40vh;
        min-height: 320px;
        padding: 90px 0 50px;
    }

    .service-hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    .service-hero-content h1 {
        font-size: 1.75rem;
        letter-spacing: 0;
        text-align: center;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
    }

    .service-hero-content .lead {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .service-hero-content .breadcrumb {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
        margin-bottom: 1.25rem;
    }

    .service-hero-content .breadcrumb-item {
        font-size: 0.7rem;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
        display: inline-flex;
        align-items: center;
    }

    .service-hero-content .breadcrumb-item a {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
        display: inline-block;
        line-height: 1.3;
    }

    .service-hero-content .breadcrumb-item.active {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
        line-height: 1.3;
    }

    .service-hero-content .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.3rem;
        font-size: 0.65rem;
    }

    .service-hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-hero-content .btn {
        display: inline-block;
        margin: 1rem auto 0;
        width: auto;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .service-page-hero {
        padding: 80px 0 40px;
        min-height: 300px;
    }

    .service-hero-content {
        padding: 0 0.75rem;
    }

    .service-hero-content .breadcrumb {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        gap: 0.2rem;
        border-radius: 12px;
    }

    .service-hero-content .breadcrumb-item {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .service-hero-content .breadcrumb-item a {
        font-size: 0.65rem;
        padding: 0.1rem 0.25rem;
    }

    .service-hero-content .breadcrumb-item.active {
        font-size: 0.65rem;
        padding: 0.1rem 0.25rem;
    }

    .service-hero-content .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.25rem;
        font-size: 0.6rem;
    }

    .service-hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        padding: 0 0.25rem;
        margin-bottom: 0.75rem;
    }

    .service-hero-content .lead {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0 0.25rem;
    }

    .service-hero-content .btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
        margin-top: 0.75rem;
    }
}

@media (max-width: 375px) {
    .service-hero-content h1 {
        font-size: 1.35rem;
    }

    .service-hero-content .breadcrumb {
        font-size: 0.6rem;
    }

    .service-hero-content .breadcrumb-item {
        font-size: 0.6rem;
    }

    .service-hero-content .breadcrumb-item a {
        font-size: 0.6rem;
    }

    .service-hero-content .breadcrumb-item.active {
        font-size: 0.6rem;
    }
}

/* CTA Section Styling for Service Pages */
section.bg-primary.text-white.text-center {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

section.bg-primary.text-white.text-center .lead {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    section.bg-primary.text-white.text-center {
        padding: 3rem 0 !important;
    }

    section.bg-primary.text-white.text-center h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    section.bg-primary.text-white.text-center .lead {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    section.bg-primary.text-white.text-center .btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    section.bg-primary.text-white.text-center {
        padding: 2.5rem 0 !important;
    }

    section.bg-primary.text-white.text-center h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    section.bg-primary.text-white.text-center .lead {
        font-size: 1rem;
        padding: 0 0.75rem;
    }

    section.bg-primary.text-white.text-center .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 1rem !important;
    }

    section.bg-primary.text-white.text-center .btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }
}

/* Services Description Section with Banner Images */
.services-description-section {
    padding: 4rem 0;
    background: var(--white);
}

.service-banner-img-wrapper {
    width: 100%;
    height: 400px;
    max-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.service-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-banner-img-wrapper:hover .service-banner-img {
    transform: scale(1.05);
}

.service-description-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}

.service-description-content h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-description-content .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Responsive Services Description */
@media (max-width: 991px) {
    .service-banner-img-wrapper {
        height: 350px;
        max-height: 350px;
    margin-bottom: 2rem;
    }

    .service-description-content {
        padding: 1.5rem;
        min-height: auto;
        max-height: none;
        overflow-y: visible;
    }

    .service-description-content h2 {
        font-size: 2rem;
    }

    .service-description-content .lead {
        font-size: 1.1rem;
    }

    .service-description-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .services-description-section {
        padding: 3rem 0;
    }

    .service-banner-img-wrapper {
        height: 280px;
        max-height: 280px;
    }

    .service-description-content {
        padding: 1.25rem;
    }

    .service-description-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .service-description-content .lead {
        font-size: 1rem;
    }

    .service-description-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .service-banner-img-wrapper {
        height: 250px;
        max-height: 250px;
    }

    .service-description-content h2 {
        font-size: 1.5rem;
    }
}

.service-details-section {
    padding: 3rem 0;
}

/* Service Page Content Responsive */
.service-details-section .row.align-items-center {
    margin-bottom: 3rem;
}

.service-details-section .row.align-items-center:last-child {
    margin-bottom: 0;
}

.service-details-section img.img-fluid {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Service Details Section */
@media (max-width: 991px) {
.service-details-section {
    padding: 2.5rem 0;
    }

    .service-details-section .row.align-items-center {
        margin-bottom: 2.5rem;
    }

    .service-details-section img.img-fluid {
        max-height: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .service-details-section {
        padding: 2rem 0;
    }

    .service-details-section .row {
        margin: 0;
    }

    .service-details-section .col-lg-4,
    .service-details-section .col-md-6,
    .service-details-section .col-lg-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .service-details-section .row.align-items-center {
        margin-bottom: 2rem;
    }

    .service-details-section .row.align-items-center .col-lg-6 {
        margin-bottom: 1.5rem;
    }

    .service-details-section .service-card {
        padding: 1.5rem;
    }

    .service-details-section .service-card h3,
    .service-details-section .service-card .h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .service-details-section .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .service-details-section .service-img-wrapper {
        height: 180px;
        margin-bottom: 1rem;
    }

    .service-details-section img.img-fluid {
        max-height: 350px;
        margin-top: 1.5rem;
    }

    .service-details-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .service-details-section .section-title.text-start {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .service-details-section {
        padding: 1.5rem 0;
    }

    .service-details-section .col-lg-4,
    .service-details-section .col-md-6,
    .service-details-section .col-lg-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .service-details-section .row.align-items-center {
        margin-bottom: 1.5rem;
    }

    .service-details-section .service-card {
        padding: 1.25rem;
    }

    .service-details-section .service-card h3,
    .service-details-section .service-card .h4 {
        font-size: 1.1rem;
    }

    .service-details-section .service-card p {
        font-size: 0.9rem;
    }

    .service-details-section .service-img-wrapper {
        height: 160px;
    }

    .service-details-section img.img-fluid {
        max-height: 280px;
        margin-top: 1rem;
    }

    .service-details-section .section-title {
        font-size: 1.5rem;
    }
}

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

.service-feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(2, 116, 190, 0.15);
}

.service-feature-item h4 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-feature-item p {
    color: var(--text-dark);
    opacity: 1;
}

.service-feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.process-section {
    background: var(--light);
    color: var(--text-dark);
    padding: 2.5rem 0;
}

.process-section .section-title {
    color: var(--dark) !important;
}

.process-section .opacity-75 {
    color: var(--text-light);
    opacity: 1;
    display: block;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    flex-wrap: wrap;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    z-index: 1;
    opacity: 0.3;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: var(--white);
    padding: 3.5rem 2rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(2, 116, 190, 0.05);
    margin-top: 30px;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(2, 116, 190, 0.12);
    border-color: var(--primary-light);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid var(--light);
    box-shadow: 0 5px 15px rgba(2, 116, 190, 0.3);
    z-index: 3;
}

.process-step h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--dark) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light) !important;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

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

    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .process-steps::before {
        display: none;
    }
}