/* ========================================
   BRAND COLOR OVERRIDES
   Primary: #FFCC00 (Yellow)
   Accent: #333333 (Dark Gray)
   Text: #000000 (Black)
   Background: #F5F5F5 (Light Gray)
======================================== */

/* Global Navigation and Overflow Fixes */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li a {
    transition: all 0.3s ease !important;
}

/* Header Part Isolation */
.header-mobile-only {
    display: none;
}

.header-desktop-only {
    display: block;
}

/* === MOBILE ADAPTATIONS (max-width: 991px) === */
@media (max-width: 991px) {
    .header-desktop-only {
        display: none !important;
    }

    .header-mobile-only {
        display: block !important;
        background-color: #333333;
        border-bottom: 3px solid #FFCC00;
        padding: 10px 0;
        position: relative;
        z-index: 1001;
    }

    .mobile-header-active-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-mobile-only .site-logo img {
        max-height: 48px !important;
        width: auto;
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Premium Mobile CTA Button */
    .mobile-quote-cta {
        background-color: #FFCC00 !important;
        color: #000000 !important;
        padding: 10px 18px !important;
        border-radius: 6px !important;
        font-weight: 800 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        text-decoration: none !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        display: inline-block !important;
    }

    .mobile-quote-cta:active {
        transform: translateY(1px);
    }

    /* Burger Icon Adjustments */
    .mobile-burger-toggle {
        cursor: pointer;
    }

    .mobile-burger-toggle .line-menu {
        background-color: #FFCC00 !important;
    }

    /* Nav Menu Dropdown Adjustments */
    .nav-menu-wrapper {
        background-color: #ffffff !important;
        background-image: none !important;
        border-bottom: 1px solid #ddd !important;
        position: absolute !important;
        width: 100% !important;
        top: 100% !important;
        left: 0 !important;
        z-index: 1000 !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
        display: none;
        /* Controlled by jQuery slideToggle */
    }

    .nav-menu-inner {
        padding: 0 !important;
        display: block !important;
    }

    .nav-menu li a {
        color: #333333 !important;
        display: block !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-align: center !important;
        text-transform: uppercase !important;
    }

    .nav-menu li.active a {
        color: #FFCC00 !important;
        background-color: #333333 !important;
        /* Adding a dark background for the active item on mobile for better contrast */
    }

    .header-menu-wrap {
        padding: 0 !important;
        background-color: #ffffff !important;
        width: 100% !important;
        display: block !important;
    }

    .nav-menu {
        background-color: #ffffff !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }

    /* Hide desktop-only bits within common containers */
    .desktop-only-logo,
    .menu-right-item {
        display: none !important;
    }
}

/* === DESKTOP ONLY (min-width: 992px) === */
@media (min-width: 992px) {
    .nav-menu {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .nav-menu li {
        margin: 0 10px !important;
    }

    .nav-menu li a {
        color: #FFFFFF !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        font-size: 12px !important;
        /* Slightly smaller for better fit */
        padding: 15px 8px !important;
        white-space: nowrap !important;
        /* Prevent wrapping */
    }

    .nav-menu li.active a::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 5px !important;
        right: 5px !important;
        height: 2px !important;
        background-color: #FFCC00 !important;
    }

    .nav-menu-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 70px !important;
    }

    .header-menu-wrap {
        flex: 1 !important;
    }

    .menu-right-item {
        margin-left: 20px !important;
    }

    .menu-btn {
        background-color: #FFCC00 !important;
        color: #000000 !important;
        border-radius: 50px !important;
        padding: 12px 30px !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
        display: inline-block !important;
    }
}

/* Common Branding Styles */
.top-header {
    background-color: #333333 !important;
}

.mid-header {
    background-color: #ffffff !important;
}

/* Desktop Defaults */
@media (min-width: 992px) {
    .nav-menu-wrapper {
        background-color: #333333 !important;
        border-bottom: 3px solid #FFCC00 !important;
    }
}

.site-logo h2,
.site-logo h3 {
    color: #FFCC00 !important;
    font-weight: bold !important;
}

.header-social-share li a {
    color: #FFCC00 !important;
}

.top-header-nav li a {
    color: #ffffff !important;
}

.default-btn {
    background-color: #FFCC00 !important;
    color: #000000 !important;
    border: 2px solid #FFCC00 !important;
    font-weight: bold !important;
}

.page-header {
    background: linear-gradient(135deg, #FFCC00 0%, #FFA500 100%) !important;
}

.page-header h2,
.page-header h4 {
    color: #000000 !important;
}

.page-header h2 span {
    color: #ffffff !important;
}

.footer-section {
    background-color: #333333 !important;
}

.copyright-wrap {
    background-color: #000000 !important;
}

*[style*="background: linear-gradient"] {
    background: none !important;
}

/* ========================================
   HOMEPAGE RESPONSIVE UPDATES
======================================== */

/* General Layout Utilities */
.padding-bg-gray {
    background-color: #F5F5F5;
    padding: 80px 0;
}

/* Hero Section */
.hero-slider-section {
    background: #333333 !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-brand-badge {
    display: inline-block;
    background: #FFCC00;
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-brand-badge i {
    margin-right: 5px;
}

.hero-headline {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.highlight-text {
    color: #FFCC00 !important;
}

.hero-subheadline {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-description {
    color: #FFFFFF !important;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.85;
    max-width: 500px;
}

.hero-features-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-feature-item {
    text-align: center;
    color: #FFFFFF;
}

.hero-feature-item i {
    font-size: 28px;
    color: #FFCC00;
    display: block;
    margin-bottom: 8px;
}

.hero-feature-item span {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #FFCC00;
    color: #000000 !important;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #FFCC00;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
    color: #000000 !important;
}

.btn-hero-secondary {
    background: transparent;
    color: #FFCC00 !important;
    border: 2px solid #FFCC00;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #FFCC00;
    color: #000000 !important;
    transform: translateY(-3px);
}

.hero-image-wrap {
    text-align: center;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FFCC00;
    color: #000000;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.hero-bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFCC00, #FFA500);
}

/* Brand Texts */
.brand-text-accent {
    color: #FFCC00 !important;
    font-weight: 700 !important;
}

.section-main-title {
    color: #000000;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description-text {
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}

/* === MOBILE ADAPTATIONS (max-width: 991px) === */
@media (max-width: 991px) {
    .padding-bg-gray {
        padding: 50px 0;
    }

    .hero-slider-section {
        padding: 60px 0 40px;
        text-align: center;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

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

    .hero-btn-group {
        justify-content: center;
    }

    .hero-image-wrap {
        margin-top: 40px;
    }

    .hero-image-container img {
        border-radius: 15px;
    }

    .about-img {
        margin-bottom: 50px;
    }

    .section-main-title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .hero-btn-group a {
        width: 100%;
        justify-content: center;
    }

    .hero-headline {
        font-size: 28px;
    }
}

/* Location Cards */
.padding-bg-white {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.responsive-location-card {
    background: #F5F5F5;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.responsive-location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location-icon {
    font-size: 60px;
    color: #FFCC00;
    margin-bottom: 20px;
}

.location-title {
    color: #000000;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-desc {
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.location-list li {
    margin-bottom: 8px;
    color: #333333;
    display: flex;
    align-items: center;
}

.location-list li i {
    color: #FFCC00;
    margin-right: 8px;
    font-size: 18px;
}

/* Mobile Adjustments for Location Cards */
@media (max-width: 991px) {
    .location-icon {
        font-size: 45px;
    }

    .location-title {
        font-size: 20px;
    }

    .responsive-location-card {
        padding: 20px;
    }
}

/* Corporate Section */
.corporate-content-wrap {
    padding-right: 30px;
}

.corporate-sub-title {
    color: #000000;
    margin-bottom: 25px;
    font-weight: 700;
}

.corporate-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corporate-feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.corporate-feature-list li i {
    color: #FFCC00;
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.corporate-feature-list li h4 {
    color: #000000;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

.corporate-feature-list li p {
    color: #444444;
    margin: 0;
    font-size: 15px;
}

.corporate-cta-wrap {
    margin-top: 40px;
}

.btn-corporate-primary {
    background: #FFCC00;
    color: #000000;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-corporate-primary i {
    margin-right: 10px;
}

.btn-corporate-primary:hover {
    background: #333333;
    color: #FFCC00;
}

.img-responsive-rounded {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.corporate-stats-card {
    margin-top: 25px;
    padding: 30px;
    background: #v;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.corporate-stats-card h4 {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
}

.corporate-stats-card p {
    color: #555555;
    font-size: 15px;
    margin-bottom: 25px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #FFCC00;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666666;
    font-weight: 600;
    margin-top: 5px;
}

/* Mobile Adjustments for Corporate Section */
@media (max-width: 991px) {
    .corporate-content-wrap {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .corporate-feature-list li {
        text-align: left;
    }

    .corporate-cta-wrap {
        text-align: center;
    }
}

/* Vehicle Cards */
.responsive-vehicle-card-v2 {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.responsive-vehicle-card-v2:hover {
    transform: translateY(-5px);
}

.vehicle-icon-main {
    font-size: 50px;
    color: #FFCC00;
    margin-bottom: 15px;
}

.vehicle-card-title {
    color: #000000;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.vehicle-card-desc {
    color: #333333;
    font-size: 14px;
    margin-bottom: 15px;
}

.vehicle-sub-models {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.btn-vehicle-action {
    background: #FFCC00;
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
}

/* Airport Section */
.airport-mini-card {
    background: #F5F5F5;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.airport-mini-card .card-icon {
    font-size: 40px;
    color: #FFCC00;
    margin-bottom: 15px;
}

.airport-mini-card h4 {
    color: #000000;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.airport-mini-card p {
    color: #333333;
    font-size: 12px;
    margin-bottom: 15px;
}

.btn-mini-action {
    background: #FFCC00;
    color: #000000;
    padding: 8px 16px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.airport-benefits-box {
    background: #333333;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    color: #FFFFFF;
}

.airport-benefits-box h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.benefit-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefit-list li i {
    color: #FFCC00;
    margin-right: 12px;
    font-size: 18px;
}

.airport-info-image-card {
    margin-top: 20px;
}

.quick-facts-card {
    margin-top: 20px;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 10px;
}

.quick-facts-card h4 {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
}

.fact-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.fact-row span {
    color: #333333;
    font-size: 14px;
}

.fact-val {
    color: #FFCC00;
    font-weight: 700;
}

/* Durations Section */
.duration-mini-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.duration-mini-card i {
    font-size: 30px;
    color: #FFCC00;
    margin-bottom: 10px;
}

.duration-mini-card h4 {
    color: #000000;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.duration-mini-card p {
    color: #333333;
    font-size: 12px;
    margin-bottom: 10px;
}

.duration-highlight {
    font-size: 14px;
    color: #FFCC00;
    font-weight: 700;
}

/* Offers Section */
.exclusive-offer-card {
    background: linear-gradient(135deg, #FFCC00 0%, #FFA500 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    height: 100%;
    color: #000000;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.offer-main-icon {
    font-size: 60px;
    color: #000000;
    margin-bottom: 20px;
}

.offer-title {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 800;
}

.offer-desc {
    color: #000000;
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 16px;
}

.offer-discount-tag {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.btn-offer-action {
    background: #000000;
    color: #FFCC00;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-offer-action:hover {
    transform: scale(1.05);
}

/* Final Mobile Layout Specifics */
@media (max-width: 991px) {
    .airport-benefits-box {
        padding: 20px;
    }

    .exclusive-offer-card {
        padding: 30px;
    }

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

/* ==========================================================================
   HOMEPAGE MOBILE RESPONSIVENESS (Helper Classes Fix)
   ========================================================================== */

@media (max-width: 991px) {

    /* Global Section Fixes */
    [class*="res-"] {
        padding: 50px 0 !important;
        /* Reduce large desktop paddings */
    }

    /* Slider / Hero Section */
    .res-slider-section {
        padding: 60px 0 !important;
        text-align: center;
    }

    .res-slider-section h1 {
        font-size: 32px !important;
        line-height: 1.1 !important;
    }

    .res-slider-section h2 {
        font-size: 18px !important;
    }

    .res-slider-section .slider-content div[style*="flex"] {
        justify-content: center !important;
    }

    .res-slider-section .slider-btn {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .res-slider-section .slider-btn a {
        margin-right: 0 !important;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .res-slider-section .slider-thumb {
        margin-top: 50px;
    }

    /* About Section */
    .res-about-section {
        text-align: center;
    }

    .res-about-section .about-img {
        margin-bottom: 30px;
        height: auto !important;
    }

    /* Locations Section */
    .res-locations-section .location-card {
        margin-bottom: 20px;
    }

    /* Corporate Section */
    .res-corporate-section {
        text-align: center;
    }

    .res-corporate-section ul {
        text-align: left;
        display: inline-block;
        margin-top: 20px;
    }

    .res-corporate-section .corporate-image {
        margin-top: 40px;
    }

    /* Airport Section */
    .res-airport-section .airport-service {
        margin-bottom: 20px;
    }

    .res-airport-section .airport-image {
        margin-top: 30px;
    }

    /* Durations Section */
    .res-durations-section .duration-card {
        margin-bottom: 20px;
    }

    /* Offers Section */
    .res-offers-section .offer-card {
        margin-bottom: 25px;
    }

    /* Vehicles Section */
    .res-vehicles-section .vehicle-type-card {
        margin-bottom: 20px;
    }

    /* Search Section */
    .res-search-section {
        text-align: center;
    }

    .res-search-section .search-features {
        margin-bottom: 30px;
        text-align: left;
    }

    .res-search-section .search-app {
        text-align: left;
    }

    /* Comparison Section */
    .res-comparison-section .comparison-table {
        overflow-x: auto;
        padding: 15px !important;
    }

    .res-comparison-section .comparison-table .row {
        min-width: 800px;
        /* Force minimum width for table look */
        margin: 0 !important;
    }
}

@media (max-width: 575px) {

    /* Extra Small Devices */
    .res-slider-section h1 {
        font-size: 28px !important;
    }

    .res-slider-section p {
        font-size: 14px !important;
    }

    .section-heading h2 {
        font-size: 24px !important;
    }

    .res-contact-section .contact-form-card {
        padding: 20px !important;
    }

    .res-contact-section button {
        width: 100%;
    }
}

/* Fix for overlapping text in about section if images are absolute */
@media (max-width: 767px) {
    .about-img {
        position: relative;
        display: block;
        min-height: 300px;
    }

    .about-img1,
    .about-img2 {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        margin-bottom: 15px;
        transform: none !important;
    }
}