/* ==========================================================================
   White Feather Cab India Pvt. Ltd. - Theme Stylesheet
   Author: Antigravity Code Assistant
   ========================================================================== */

/* 1. Design System & CSS Variables */
:root {
    --bg-dark: #0d0f12;          /* Deepest Charcoal */
    --bg-dark-light: #14161a;    /* Alternate Section Background */
    --bg-card: #1a1d21;          /* Component / Card Background */
    --accent-gold: #d4af37;      /* Primary Gold Accent */
    --accent-gold-hover: #bda030;/* Darker Gold for Hover */
    --accent-lavender: #a78bfa;  /* Secondary Lavender Accent */
    --text-light: #ffffff;
    --text-body: #e8e8e8;        /* Off-white Body Text */
    --text-muted: #a0a5b0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Responsive Spacings */
    --section-padding: 50px;
    --border-radius: 10px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.2);
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 38px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding: 28px;
    }
}

/* 2. Base & Reset Styles */
html, body {
    background-color: var(--bg-dark);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 700;
}

p, span, li, a, button, input, textarea {
    font-family: var(--font-body);
}

/* Hide Bootstrap default dropdown arrow indicator globally */
.dropdown-toggle::after {
    display: none !important;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Selection highlight color */
::selection {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #2a2e35;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* 3. Helper Classes */
.bg-dark-light {
    background-color: var(--bg-dark-light) !important;
}

.bg-card-element {
    background-color: var(--bg-card) !important;
}

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

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

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    border-radius: 6px;
    padding: 10px 24px;
    transition: var(--transition-smooth);
}

.btn-gold:hover, .btn-gold:focus {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent-gold);
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    border-radius: 6px;
    padding: 10px 24px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover, .btn-outline-gold:focus {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-outline-light-custom {
    background-color: transparent;
    color: var(--text-light);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    padding: 10px 24px;
    transition: var(--transition-smooth);
}

.btn-outline-light-custom:hover, .btn-outline-light-custom:focus {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
}

/* 4. Navigation & Layout Structures */
/* Mobile / Tablet Header Navigation Structure (< 992px) */
@media (max-width: 991.98px) {
    .top-bar {
        background-color: #000000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 13px;
        padding: 8px 0;
    }
    
    .top-bar a {
        color: var(--text-body);
        font-size: 13px;
    }
    
    .top-bar a:hover {
        color: var(--accent-gold);
    }
    
    .top-bar .social-icons a {
        margin-left: 12px;
    }

    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1020;
        transition: var(--transition-smooth);
        background-color: rgba(13, 15, 18, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .content-wrapper {
        margin-left: 0;
        margin-top: 70px; /* Offset for sticky top navbar */
        width: 100%;
        overflow-x: hidden;
    }
    
    .logo-img-file {
        height: 90px;
        width: auto;
        object-fit: contain;
    }

    .brand-name {
        font-family: var(--font-heading);
        font-size: 18px;
        line-height: 1.1;
        color: var(--text-light);
        letter-spacing: 0.5px;
    }

    .brand-sub {
        font-size: 9px;
        font-weight: 500;
        color: var(--accent-gold);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

/* Desktop Sidebar Navigation Structure (>= 992px) - Matching cabmykonos.com */
@media (min-width: 992px) {
    .top-bar {
        display: none !important; /* Hide standard top bar on desktop */
    }

    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 260px;
        height: 100vh;
        background-color: #000000;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1020;
        padding: 40px 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: visible !important; /* Allow submenu flyout visibility */
        transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* Collapsed state for sidebar on desktop */
    .main-header.sidebar-collapsed {
        transform: translateX(-100%);
    }

    /* Override Bootstrap navbar flex row rules for vertical layout */
    .main-header nav.navbar {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .main-header .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        overflow: visible !important; /* Prevent flyout clipping */
    }

    .content-wrapper {
        margin-left: 260px; /* Content offset matching sidebar width */
        width: calc(100% - 260px);
        position: relative;
        overflow-x: hidden;
        transition: margin-left 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* Expanded content wrapper state when sidebar is collapsed */
    .content-wrapper.sidebar-collapsed {
        margin-left: 0 !important;
        width: 100% !important;
    }

    /* Desktop Sidebar Toggle Button inside header */
    .sidebar-toggle-btn {
        position: absolute;
        top: 25px;
        right: 15px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--accent-gold);
        width: 32px;
        height: 32px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-smooth);
        z-index: 1030;
    }

    .sidebar-toggle-btn:hover {
        background: var(--accent-gold);
        color: var(--bg-dark);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-glow);
    }

    /* Floating Menu Trigger when collapsed */
    .sidebar-trigger-floating {
        position: fixed;
        top: 25px;
        left: 25px;
        z-index: 1010;
        background-color: rgba(6, 7, 9, 0.95);
        border: 1px solid var(--accent-gold);
        color: var(--accent-gold);
        padding: 10px 18px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
        display: flex;
        align-items: center;
        box-shadow: var(--shadow-premium);
        transition: var(--transition-smooth);
        animation: fadeInSidebarTrigger 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    }

    .sidebar-trigger-floating:hover {
        background-color: var(--accent-gold);
        color: var(--bg-dark);
        box-shadow: var(--shadow-glow);
    }

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

    .navbar-brand {
        display: block !important;
        margin-bottom: 40px !important; /* Gap logo to menu */
        width: 100% !important;
        padding: 0 !important; /* Remove all paddings on the brand container */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .logo-img-file {
        width: 100%;
        max-width: 100%; /* Stretch fully up to the sidebar container bounds */
        height: auto;
        max-height: 220px; /* Scaled up for clarity and prominence */
        display: block;
        margin: 0 !important; /* Align flush-left, remove center margins */
        padding: 0 !important; /* Remove all paddings */
        object-fit: contain;
    }

    .brand-name {
        font-family: var(--font-heading);
        font-size: 18px; /* Adjusted for clean multi-line wrapping */
        line-height: 1.35;
        color: var(--text-light);
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }

    .brand-sub {
        font-size: 10px;
        font-weight: 600;
        color: var(--accent-gold);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 2px;
    }

    .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15); /* Light gold horizontal separator line */
        padding-bottom: 14px;
        margin-bottom: 14px;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .navbar-nav .nav-link {
        color: var(--text-body);
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 0.5px;
        padding: 10px 0 !important; /* Flush-left alignment padding */
        width: 100%;
        transition: var(--transition-smooth);
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--accent-gold);
    }

    .navbar-nav .nav-link::after {
        display: none !important; /* Remove topbar line transitions */
    }

    .navbar-nav .nav-item.dropdown {
        position: relative !important;
    }

    .dropdown-menu-custom {
        position: absolute !important;
        top: 0 !important;
        left: calc(100% + 5px) !important; /* Position it exactly to the right of the sidebar */
        width: 250px !important;
        background-color: #0b0c0f !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 6px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7) !important;
        padding: 12px 0 !important;
        margin: 0 !important;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(10px) !important;
        transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s !important;
        z-index: 1050 !important;
    }

    /* Show flyout on hover */
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu-custom {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }

    /* Hide Bootstrap default arrow */
    .dropdown-toggle::after {
        display: none !important;
    }

    .dropdown-chevron {
        font-size: 11px;
        color: var(--text-muted);
        transition: var(--transition-smooth);
    }

    .navbar-nav .nav-item.dropdown:hover .dropdown-chevron {
        color: var(--accent-gold);
        transform: translateX(3px);
    }

    .dropdown-menu-custom li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
    }

    .dropdown-menu-custom li:last-child {
        border-bottom: none !important;
    }

    .dropdown-menu-custom .dropdown-item {
        padding: 10px 20px !important;
        font-size: 13px !important;
        color: var(--text-muted) !important;
        background-color: transparent !important;
        transition: var(--transition-smooth) !important;
        display: block !important;
        width: 100% !important;
    }

    .dropdown-menu-custom .dropdown-item:hover {
        color: var(--accent-gold) !important;
        background-color: rgba(255, 255, 255, 0.08) !important;
    }

    .sidebar-footer {
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .sidebar-socials {
        display: flex;
        justify-content: flex-start;
        gap: 15px;
        margin-top: 20px;
    }

    .sidebar-socials a {
        color: var(--text-muted);
        font-size: 16px;
        transition: var(--transition-smooth);
    }

    .sidebar-socials a:hover {
        color: var(--accent-gold);
    }
}

/* Custom Hamburger Icon styling */
.navbar-toggler-custom {
    border: none;
    background: transparent;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.navbar-toggler-custom span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Offcanvas Menu Override */
.offcanvas-custom {
    background-color: var(--bg-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 300px;
    height: 100vh !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
}

.offcanvas-custom .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-custom .offcanvas-title {
    color: var(--text-light);
}

.btn-close-white-custom {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.8;
}

.btn-close-white-custom:hover {
    opacity: 1;
}

/* Explicit layout and visibility overrides for offcanvas menu links */
.offcanvas-custom .navbar-nav {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
}

.offcanvas-custom .nav-item {
    width: 100% !important;
    display: block !important;
}

/* Dropdown Menu styling for Mobile drawer */
.dropdown-menu-custom-mobile {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    margin-top: 5px !important;
    position: static !important; /* Stack vertically to expand content height */
    width: 100% !important;
    float: none !important;
}

.dropdown-menu-custom-mobile .dropdown-item {
    color: var(--text-body) !important;
    font-size: 14px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    background-color: transparent !important;
    transition: var(--transition-smooth) !important;
}

.dropdown-menu-custom-mobile .dropdown-item:last-child {
    border-bottom: none !important;
}

.dropdown-menu-custom-mobile .dropdown-item:hover {
    color: var(--accent-gold) !important;
    padding-left: 6px !important;
}

/* 5. Hero Carousel & Section */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-slider-section .carousel,
.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
    height: 100%;
    width: 100%;
}

.hero-slider-section .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Dark Overlay to make text legible (Brightened for Laptop/Desktop displays) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 15, 18, 0.45) 0%, rgba(13, 15, 18, 0.65) 60%, rgba(13, 15, 18, 0.85) 100%);
    z-index: 1;
}

/* Content over the slide */
.hero-content-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-tag {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    border-left: 3px solid var(--accent-gold);
    padding-left: 10px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-subline {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 650px;
}

@media (max-width: 767.98px) {
    .hero-headline {
        font-size: 2.2rem;
    }
    .hero-subline {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

/* Hero Trust Ribbon */
.hero-trust-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-gold);
    border-top: none;
    z-index: 3;
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0f12;
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.trust-badge-item i {
    color: #0d0f12;
    font-size: 20px;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .trust-badge-item {
        border-right: 1px solid rgba(13, 15, 18, 0.15);
    }
    .col-md-3:last-child .trust-badge-item {
        border-right: none;
    }
}

/* 6. Sections General Header Styles */
.section-subtitle {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 8px;
    display: block; /* Ensure it starts on its own line */
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    display: block; /* Ensure title does not sit inline */
    width: fit-content;
    padding-bottom: 12px;
}

.section-title.center-title {
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    bottom: 0;
    left: 0;
}

.section-title.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-intro-text {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* 7. About Us Section & Stats counter */
.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: none; /* Removed box shadow */
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 15, 18, 0.4), rgba(13, 15, 18, 0));
}

.stats-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px 15px;
    text-align: center;
    box-shadow: none; /* Removed box shadow */
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stats-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

/* 8. Services Grid & 3D Tilt Effect (Removing top border animation) */
.service-card,
.fleet-card,
.contact-form-card,
.contact-info-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 35px 25px;
    height: 100%;
    position: relative;
    
    /* 3D Hardware Accelerated Parameters */
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease;
}

/* 3D Smooth Hover Lift Effects */
.service-card:hover,
.fleet-card:hover,
.contact-form-card:hover,
.contact-info-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: none;
}

/* Specific 3D Perspective & Tilt Override for Service Cards (No Hover Shadow) */
.service-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease;
}

.service-card:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.35) !important;
}

.service-card h3,
.service-card p,
.service-card .explore-link {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--accent-gold);
    transform: translateZ(30px);
}

.service-card:hover h3 {
    transform: translateZ(20px);
}

.service-card:hover p {
    transform: translateZ(10px);
}

.service-card:hover .explore-link {
    transform: translateZ(15px);
}

.service-icon-box i {
    font-size: 24px;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box i {
    color: var(--bg-dark);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14.5px;
    /* color: var(--text-muted); */
    margin-bottom: 0;
}

/* 9. Fleet Section Customizations */
.fleet-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 !important; /* override the grouping padding for flush images */
}

.fleet-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.fleet-image-box {
    position: relative;
    width: 100%;
    padding-top: 65%; /* slightly taller aspect ratio for better framing */
    background-color: #0f1115;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.fleet-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fleet-card:hover .fleet-image-box img {
    transform: scale(1.06);
}

.fleet-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.fleet-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fleet-spec-item {
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.fleet-spec-item i {
    color: var(--accent-gold);
    margin-right: 4px;
    font-size: 14px;
}

.fleet-price {
    margin-top: auto;
    width: 100%;
}

.fleet-price .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Swiper Slider Layout & Equal Heights styling */
.fleet-swiper {
    padding: 15px 15px 30px 15px !important; /* top, sides, bottom padding for card hover lift */
    margin: -15px -15px 0 -15px !important;
    width: auto;
    overflow: hidden;
}

.fleet-swiper .swiper-slide {
    height: auto; /* force equal height slides */
    display: flex;
    flex-direction: column;
}

.fleet-swiper .fleet-card {
    height: 100%; /* fill slide height */
    margin-bottom: 8px; /* space for card drop shadow and translation */
}

/* Swiper Controls Custom Styling */
.swiper-controls-container {
    user-select: none;
    z-index: 10;
}

.swiper-btn {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.swiper-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.swiper-btn:active {
    transform: scale(0.95);
}

/* Custom Swiper Pagination Dots */
.fleet-swiper-pagination.swiper-pagination {
    position: relative;
    width: auto !important;
    bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 10px;
}

.fleet-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--text-muted) !important;
    opacity: 0.4;
    transition: var(--transition-smooth);
    border-radius: 50%;
    margin: 0 !important;
}

.fleet-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-gold) !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* 10. Testimonials & Quote indicator styling updates */
.carousel-indicators-custom button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: var(--text-muted) !important;
    border: none !important;
    margin: 0 5px !important;
    transition: var(--transition-smooth) !important;
}

.carousel-indicators-custom button.active {
    background-color: var(--accent-gold) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* 11. Call-to-Action Strip */
.cta-strip {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1e2227 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-strip h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-strip-text {
    font-size: 15px;
    /* color: var(--text-muted); */
    margin-bottom: 0;
}

/* 12. Contact & Booking Form Section */
.form-control-custom {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border-radius: 6px;
    padding: 12px 16px;
    transition: var(--transition-smooth);
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-control-custom:focus {
    background-color: var(--bg-dark);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
}

select.form-control-custom {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 10px;
    padding-right: 40px;
}

/* Hide native webkit date picker indicator to prevent duplicate calendar icon */
input[type="date"].form-control-custom::-webkit-calendar-picker-indicator,
input[type="date"].form-control-custom::-webkit-inner-spin-button {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    min-width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-info-icon i {
    font-size: 16px;
    color: var(--accent-gold);
}

.contact-info-details h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: var(--accent-gold);
}

.contact-info-details p,
.contact-info-details a {
    font-size: 15.5px;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-info-details a:hover {
    color: var(--accent-gold);
}

.map-wrapper {
    margin-top: auto;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 220px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) grayscale(85%) contrast(95%);
}

.invalid-feedback {
    color: #e57373 !important;
    font-size: 12px;
    margin-top: 5px;
}

.was-validated .form-control:invalid {
    border-color: #e57373;
}

/* 13. Footer Section */
.footer-top {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 70px 0 40px 0;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo .logo-img-file-footer {
    height: 130px; /* Increased size prominently as the primary branding visual in the footer */
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-light);
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: 0;
    left: 0;
}

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

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

.footer-links a {
    color: #ffffff;
    font-size: 14.5px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact-block {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-block li {
    font-size: 14.5px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.footer-contact-block li a {
    color: #ffffff;
    transition: var(--transition-smooth);
}

.footer-contact-block li:hover,
.footer-contact-block li:hover a {
    color: var(--accent-gold);
}

.footer-contact-block li i {
    color: var(--accent-gold);
    font-size: 15px;
    margin-right: 12px;
    margin-top: 4px;
}

.footer-bottom {
    background-color: #030405;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px 0;
    font-size: 13.5px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--bg-card);
    border-radius: 50%;
    color: var(--text-body);
    margin-right: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* 14. Floating Utilities */
/* WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s, box-shadow 0.3s, border-radius 0.3s;
    animation: pulse-ring 2s infinite;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 15px;
}

.whatsapp-floating i {
    font-size: 30px;
    color: white;
    flex-shrink: 0;
}

.whatsapp-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: white;
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    transition: max-width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, margin-left 0.4s ease;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
}

.whatsapp-floating:hover {
    width: 165px;
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
    border-radius: 30px;
    animation: none;
}

.whatsapp-floating:hover .whatsapp-text {
    max-width: 90px;
    opacity: 1;
    margin-left: 8px;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    z-index: 999;
    width: 45px;
    height: 45px;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

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

.back-to-top:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.back-to-top i {
    font-size: 18px;
}

/* 15. Intersection Observer Scroll Reveal Animation */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.reveal-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* 16. Partner Logo & Custom Carousel Controls */
.partner-logo-top {
    position: absolute;
    top: 25px;
    right: 40px;
    z-index: 1009;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.partner-logo-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.partner-logo-top img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.carousel-control-custom {
    width: 50px;
    height: 50px;
    background-color: rgba(13, 15, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.hero-slider-section:hover .carousel-control-custom {
    opacity: 0.7;
}

.carousel-control-custom:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    opacity: 1 !important;
    box-shadow: var(--shadow-glow);
}

.carousel-control-custom i {
    font-size: 20px;
}

.carousel-control-prev.carousel-control-custom {
    left: 30px;
}

.carousel-control-next.carousel-control-custom {
    right: 30px;
}

@media (max-width: 991.98px) {
    .partner-logo-top {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
    }
    .partner-logo-top img {
        height: 48px;
    }
    .carousel-control-custom {
        display: none !important;
    }
}

/* 17. Service Cards Heading Links */
.service-card h3 a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.service-card h3 a:hover {
    color: var(--accent-gold);
}

/* 18. Service Cards Explore Links & Arrow Animations */
.explore-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.explore-link:hover {
    color: var(--accent-gold-hover);
}

.explore-link i {
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.explore-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   19. Laptop View & Mobile Responsiveness Optimizations
   ========================================================================== */

/* Laptop & Medium Screens Viewport Optimization */
@media (min-width: 992px) and (max-width: 1200px) {
    .main-header {
        width: 220px !important;
        padding: 30px 15px !important;
    }
    .content-wrapper {
        margin-left: 220px !important;
        width: calc(100% - 220px) !important;
    }
    .logo-img-file {
        max-height: 180px !important;
    }
    /* Scale down hero headings for better fit on laptop screens */
    .hero-headline {
        font-size: 2.6rem !important;
    }
    .hero-subline {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }
    .section-title {
        font-size: 1.8rem !important;
    }
}

/* Premium Mobile Drawer Offcanvas Navigation Styling */
.offcanvas-custom .nav-link {
    color: var(--text-body) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: var(--transition-smooth) !important;
}

.offcanvas-custom .nav-link:hover,
.offcanvas-custom .nav-link.active {
    color: var(--accent-gold) !important;
    border-bottom-color: var(--accent-gold) !important;
    padding-left: 6px !important;
}

/* ==========================================================================
   19. Comprehensive Mobile & Tablet Responsiveness Refinements
   ========================================================================== */

/* Mobile & Tablet Media Query overrides (< 992px) */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 48px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    /* Reduce Hero section height on mobile to make text content tighter and less spaced out */
    .hero-slider-section {
        height: 55vh !important;
        min-height: 400px !important;
    }
    
    /* Center Swiper controls on mobile to prevent asymmetric right alignment */
    .swiper-controls-container {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin: 20px auto 0 auto !important;
        justify-content: center !important;
        width: fit-content !important;
        z-index: 10 !important;
    }
}

/* Medium Mobile & Tablet Devices (< 768px) */
@media (max-width: 767.98px) {
    body {
        font-size: 15px; /* Density improvement for smaller screens */
    }
    
    .hero-headline {
        font-size: 2.0rem !important;
        line-height: 1.25 !important;
    }
    
    .hero-subline {
        font-size: 14px !important;
        margin-bottom: 25px !important;
        line-height: 1.5 !important;
    }
    
    /* Slightly reduce hero button sizes to make content more compact on mobile */
    .hero-content-container .btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    /* Pull indicators slightly lower on mobile to prevent overlapping buttons */
    .carousel-indicators-custom {
        margin-bottom: 6px !important;
    }
    
    /* Center footer logo and social links on mobile */
    .footer-logo {
        text-align: center !important;
    }
    
    .footer-logo .logo-img-file-footer {
        margin: 0 auto !important;
    }
    
    .footer-social-icons {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-bottom: 20px;
    }
    
    .footer-social-icons a {
        margin-right: 0 !important;
    }
    
    /* Reduce CTA strip heading font size to prevent wrapping */
    .cta-strip h3 {
        font-size: 1.6rem !important;
    }
    
    /* Give cards more text layout space on mobile */
    .contact-form-card,
    .contact-info-card {
        padding: 24px 16px !important;
    }
    
    .section-title {
        font-size: 1.7rem !important;
    }
    
    /* Make section title underline look visually centered if parent centers it */
    .section-title.center-title {
        margin-bottom: 24px;
    }
    
    /* Mobile Hero Trust Ribbon styling */
    .hero-trust-ribbon-mobile {
        background-color: var(--accent-gold);
        padding: 20px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .trust-badge-item-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #0d0f12;
        text-align: center;
    }
    
    .trust-badge-item-mobile i {
        font-size: 22px;
        color: #0d0f12;
        margin-bottom: 6px;
    }
    
    .trust-badge-item-mobile span {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.35;
        color: #0d0f12 !important;
    }
}

/* Mobile Devices (< 576px) */
@media (max-width: 575.98px) {
    :root {
        --section-padding: 38px;
    }
    
    .section-title {
        font-size: 1.55rem !important;
    }
    
    /* Compact Hero section height and push text up slightly to offset header overlay */
    .hero-slider-section {
        height: 60vh !important;
        min-height: 400px !important;
    }
    
    .hero-content-container {
        padding-top: 15px !important;
    }
    
    .service-card {
        padding: 28px 18px !important;
    }
    
    /* Scale CTA heading down on small screens and prevent wrapping */
    .cta-strip h3 {
        font-size: 1.35rem !important;
        white-space: nowrap !important;
    }
    
    /* Force CTA strip buttons to be side-by-side on mobile in a single row */
    .cta-strip .d-flex {
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }
    
    .cta-strip .btn {
        padding: 10px 12px !important;
        font-size: 12px !important;
        flex: 1 1 0% !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    
    .cta-strip .btn i {
        font-size: 13px !important;
        margin-right: 4px !important;
    }
    
    /* Force Hero buttons to be side-by-side on mobile in a single row */
    .hero-content-container .d-flex {
        flex-wrap: nowrap !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .hero-content-container .btn {
        padding: 10px 8px !important;
        font-size: 11px !important;
        flex: 1 1 0% !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    
    .hero-content-container .btn i {
        font-size: 12px !important;
        margin-right: 3px !important;
    }
    
    /* Partner logo sizing adjustment to fit header nicely */
    .partner-logo-top {
        top: 10px !important;
        right: 10px !important;
        padding: 4px 8px !important;
    }
    
    .partner-logo-top img {
        height: 36px !important;
    }
    
    /* Prevent floating icons from overlaying primary content fields */
    .whatsapp-floating {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        padding: 0 !important;
    }
    
    .whatsapp-floating i {
        font-size: 26px !important;
    }
    
    /* Disable text expansion on hover/touch for small screens */
    .whatsapp-floating:hover {
        width: 50px !important;
        border-radius: 50% !important;
    }
    
    .whatsapp-floating:hover .whatsapp-text {
        max-width: 0 !important;
        opacity: 0 !important;
        margin-left: 0 !important;
    }
    
    .back-to-top {
        bottom: 80px !important;
        right: 20px !important;
        width: 38px !important;
        height: 38px !important;
    }
    
    .back-to-top i {
        font-size: 14px !important;
    }
}

/* Extra Small Phones (< 400px) */
@media (max-width: 399.98px) {
    .hero-headline {
        font-size: 1.7rem !important;
    }
    
    .hero-subline {
        font-size: 13px !important;
    }
    
    .section-title {
        font-size: 1.4rem !important;
    }
    
    .hero-tag {
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }
    
    /* Scale CTA heading further down on extra small screens */
    .cta-strip h3 {
        font-size: 1.25rem !important;
    }
}

/* 15. Secure Payment Gateway Styling */
.sidebar-payment {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    width: 100%;
    margin-bottom: 30px; /* Generous gap above the BOOK NOW button */
}

.sidebar-payment .payment-title {
    font-family: var(--font-body);
    font-size: 15px; /* Matches navigation button font size */
    font-weight: 600; /* Matches navigation weight */
    letter-spacing: 0.5px; /* Matches navigation letter spacing */
    color: var(--text-light); /* Matches active nav link light color */
    text-transform: uppercase;
    margin-bottom: 15px; /* Clean gap below the title */
}

.sidebar-payment .payment-row {
    display: flex;
    align-items: center;
    gap: 8px; /* Balanced layout gap */
    margin-bottom: 12px;
}

.sidebar-payment .payment-row:last-child {
    margin-bottom: 0;
}

.sidebar-payment .payment-currency {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    width: 35px; /* Aligns both columns perfectly */
    min-width: 35px;
    letter-spacing: 0.5px;
}

.sidebar-payment .payment-gateway {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Solid white background for logo clarity */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px; /* Smooth professional rounding */
    padding: 2px 10px; /* Generous breathing room */
    height: 35px; /* Standardized height */
    min-width: 72px; /* Uniform width */
    transition: var(--transition-smooth);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Soft shadow */
}

.sidebar-payment .payment-gateway:hover {
    transform: translateY(-2px) scale(1.03); /* Modern bounce/scale hover action */
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35); /* Gold glow overlay */
    border-color: var(--accent-gold);
}

.sidebar-payment .payment-gateway img {
    height: 100%;
    width: auto;
    max-width: 54px; /* Perfectly sized images inside badge */
    object-fit: contain;
}

/* Responsive override for mobile offcanvas drawer */
@media (max-width: 991.98px) {
    .offcanvas-custom .sidebar-payment {
        margin-bottom: 15px; /* Compact bottom margin to save vertical space on smaller mobile screens */
    }
}

/* ==========================================================================
   16. Subpage / Inner Page Custom Styles
   ========================================================================== */
.page-banner {
    position: relative;
    height: 320px;
    background-image: url('images/breadcum.png');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 15, 18, 0.75) 0%, rgba(13, 15, 18, 0.9) 100%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.page-banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-banner-breadcrumbs {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-banner-breadcrumbs a {
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.page-banner-breadcrumbs a:hover {
    color: var(--text-light);
}

.page-banner-breadcrumbs span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    .page-banner {
        height: 240px;
    }
    .page-banner-title {
        font-size: 1.8rem;
    }
}

.about-vision-mission-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.corporate-badge-card {
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-glow);
}

.corporate-badge-text {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   17. Services Switcher Sidebar Widget Styles
   ========================================================================== */
.service-widget-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px 24px;
}

.service-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-widget-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 14.5px;
}

.service-widget-link i.arrow-icon {
    font-size: 11px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.service-widget-link.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: var(--shadow-glow);
}

.service-widget-link.active i.arrow-icon {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.service-widget-link:hover:not(.active) {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.04);
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .service-widget-list {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }
    .service-widget-link {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 13.5px;
    }
    .service-widget-link i.arrow-icon {
        display: none !important;
    }
}

/* ==========================================================================
   Certificate & Accreditation Section Styles
   ========================================================================== */
.certificate-section {
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-light) 50%, var(--bg-dark) 100%);
}

.certificate-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.sidebar-payment .payment-gateway img {
    height: 100%;
    width: auto;
    max-width: 54px; /* Perfectly sized images inside badge */
    object-fit: contain;
}

/* Responsive override for mobile offcanvas drawer */
@media (max-width: 991.98px) {
    .offcanvas-custom .sidebar-payment {
        margin-bottom: 15px; /* Compact bottom margin to save vertical space on smaller mobile screens */
    }
}

/* ==========================================================================
   16. Subpage / Inner Page Custom Styles
   ========================================================================== */
.page-banner {
    position: relative;
    height: 320px;
    background-image: url('images/breadcum.png');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 15, 18, 0.75) 0%, rgba(13, 15, 18, 0.9) 100%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.page-banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-banner-breadcrumbs {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-banner-breadcrumbs a {
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.page-banner-breadcrumbs a:hover {
    color: var(--text-light);
}

.page-banner-breadcrumbs span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    .page-banner {
        height: 240px;
    }
    .page-banner-title {
        font-size: 1.8rem;
    }
}

.about-vision-mission-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.corporate-badge-card {
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-glow);
}

.corporate-badge-text {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   17. Services Switcher Sidebar Widget Styles
   ========================================================================== */
.service-widget-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px 24px;
}

.service-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-widget-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 14.5px;
}

.service-widget-link i.arrow-icon {
    font-size: 11px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.service-widget-link.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: var(--shadow-glow);
}

.service-widget-link.active i.arrow-icon {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.service-widget-link:hover:not(.active) {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.04);
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .service-widget-list {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }
    .service-widget-link {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 13.5px;
    }
    .service-widget-link i.arrow-icon {
        display: none !important;
    }
}

/* ==========================================================================
   Certificate & Accreditation Section Styles
   ========================================================================== */
.certificate-section {
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-light) 50%, var(--bg-dark) 100%);
}

.certificate-card-simple {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    background: transparent;
    max-width: 420px;
    margin: 0 auto;
}

.certificate-card-simple:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
}

.certificate-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    width: 100%;
    max-height: 460px;
    aspect-ratio: 3 / 3.7;
}

.certificate-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

.certificate-card-simple:hover .certificate-img {
    transform: scale(1.02);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 15, 18, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.certificate-card-simple:hover .certificate-overlay {
    opacity: 1;
}

.certificate-btn-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #bda030 100%);
    color: #0d0f12;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.certificate-card-simple:hover .certificate-btn-badge {
    transform: translateY(0);
}

.certificate-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.certificate-title {
    font-size: 1.22rem;
    color: var(--text-light);
    margin-top: 8px;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.certificate-card:hover .certificate-title {
    color: var(--accent-gold);
}

.certificate-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.bg-gold-subtle {
    background-color: rgba(212, 175, 55, 0.12) !important;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.fs-7 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
