/* ============================================================================
   LAMBARDAR TRAVELS - CUSTOM STYLES
   Consolidated Master Stylesheet - All Custom Styling
   ============================================================================ */

:root {
    --primary: #03adee;
    --secondary: #ec2128;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --text-gray: #666;
    --border-gray: #e0e0e0;
    --gradient: linear-gradient(135deg, #03adee, #ec2128);
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #fff;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0px;
    margin-bottom: 8px;
}
/* ============================================================================
   TOP HEADER SECTION
   ============================================================================ */

.top-header {
    background: var(--dark);
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(3, 173, 238, 0.15);
    font-size: 13px;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-header-left {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header-item:hover {
    color: var(--primary);
}

.top-header-item i {
    color: var(--primary);
    font-size: 13px;
    width: 14px;
    text-align: center;
}

.top-header-text {
    display: inline;
}

.top-header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(3, 173, 238, 0.1);
    border: 1px solid rgba(3, 173, 238, 0.3);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================================================
   MAIN NAVBAR SECTION
   ============================================================================ */

.navbar {
    background: white;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--primary);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 0 !important;
    margin-right: auto;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-collapse {
    flex-grow: 0 !important;
}

.navbar-nav {
    display: flex;
    gap: 5px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

/* DRAWER VISIBILITY CONTROL */
@media (min-width: 992px) {
    /* Desktop: Hide drawer, show navbar */
    .mobile-drawer,
    .drawer-backdrop {
        display: none !important;
    }

    .navbar-toggler {
        display: none !important;
    }

    .navbar-collapse {
        display: block !important;
    }

    .navbar-nav {
        display: flex !important;
    }

    .nav-contact {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    /* Mobile/Tablet: Hide navbar collapse, show drawer */
    .navbar-collapse {
        display: none !important;
    }

    .navbar-nav {
        display: none !important;
    }

    .nav-contact {
        display: none !important;
    }

    .navbar-toggler {
        display: inline-flex !important;
    }
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    height: auto;
    line-height: 1.5;
    text-decoration: none !important;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(3, 173, 238, 0.05);
    border-radius: 6px;
    text-decoration: none !important;
}

.nav-link::after {
    display: none;
}

.navbar .dropdown-menu {
    border: 1px solid rgba(3, 173, 238, 0.2);
    border-radius: 10px;
    padding: 8px;
    margin-top: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.navbar .dropdown-item {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: 6px;
    color: #1a1a1a;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(3, 173, 238, 0.08);
    color: #03adee;
}

/* Dropdown chevron icon */
.dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.25s ease;
    display: inline-block;
}

.navbar .nav-item.dropdown:hover .dropdown-icon,
.navbar .nav-item.dropdown.show .dropdown-icon {
    transform: rotate(180deg);
}

/* Desktop hover-open dropdown */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.98);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
    }

    .navbar .nav-item.dropdown:hover .dropdown-menu,
    .navbar .nav-item.dropdown.show .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}

.nav-contact {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.btn-call-now {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 173, 238, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-call-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(3, 173, 238, 0.4);
    color: white;
}

.navbar-toggler {
    border: none !important;
    padding: 5px 10px !important;
    outline: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler:focus::after {
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2303adee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 28px !important;
    height: 28px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* ============================================================================
   MOBILE DRAWER MENU STYLES
   ============================================================================ */

.mobile-drawer {
    position: fixed;
    left: -50%;
    top: 0;
    width: 50%;
    height: 100vh;
    background: white;
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-drawer.open {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.08), rgba(236, 33, 40, 0.08));
}

.drawer-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.drawer-content {
    padding: 0;
}

.drawer-item {
    display: block;
    width: 100%;
    padding: 16px 20px;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    background: white;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    border: none;
}

.drawer-item:hover {
    background: rgba(3, 173, 238, 0.08);
    color: var(--primary);
    padding-left: 24px;
}

.drawer-item i {
    margin-right: 10px;
    color: var(--primary);
}

.drawer-submenu {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.drawer-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-toggle:hover {
    background: rgba(3, 173, 238, 0.08);
    color: var(--primary);
    padding-left: 24px;
}

.drawer-toggle i:last-child {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.drawer-toggle.active i:last-child {
    transform: rotate(90deg);
}

.drawer-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(3, 173, 238, 0.04);
}

.drawer-menu.active {
    max-height: 500px;
}

.drawer-sub {
    padding-left: 40px;
    font-size: 13px;
    font-weight: 400;
    background: rgba(3, 173, 238, 0.04);
}

.drawer-sub:hover {
    background: rgba(3, 173, 238, 0.12);
    padding-left: 44px;
}

.drawer-footer {
    padding: 16px 20px;
    border-top: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.04), rgba(236, 33, 40, 0.04));
}

.drawer-cta {
    display: block;
    padding: 14px 18px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white !important;
    text-decoration: none !important;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.drawer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 173, 238, 0.3);
    color: white !important;
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.open {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    visibility: visible;
}

/* ============================================================================
   MOBILE NAVBAR RESPONSIVE
   ============================================================================ */

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
        border-bottom: 2px solid var(--primary);
    }

    .navbar-brand img {
        height: 42px;
    }

    .navbar-collapse {
        display: none !important;
    }

    .navbar-toggler {
        display: inline-flex !important;
        padding: 6px 8px !important;
        border: none !important;
    }

    /* Hide Bootstrap navbar on mobile, show drawer instead */
    .navbar .collapse {
        display: none !important;
    }

    .navbar-nav {
        display: none !important;
    }

    .nav-contact {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-toggler {
        padding: 5px 6px !important;
    }

    .navbar-toggler-icon {
        width: 26px !important;
        height: 26px !important;
    }

    /* Top header mobile optimization */
    .top-header {
        padding: 8px 0;
    }

    .top-header-item {
        font-size: 11px;
    }

    .top-header-item span {
        display: none;
    }

    .top-header-email {
        display: none;
    }

    .top-header-hours {
        display: none;
    }

    .top-header-phone span {
        display: inline;
    }

    .top-header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }

    .top-header-left {
        flex-direction: row;
        gap: 0;
    }

    .top-header-right {
        width: auto;
        justify-content: flex-end;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 0;
    }

    .navbar-brand img {
        height: 36px;
    }

    .top-header-item {
        font-size: 10px;
    }

    .top-header-item i {
        font-size: 12px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    /* Drawer responsive */
    .mobile-drawer {
        width: 65%;
        left: -65%;
    }

    .drawer-item {
        padding: 14px 16px;
        font-size: 13px;
    }

    .drawer-toggle {
        padding: 14px 16px;
        font-size: 13px;
    }

    .drawer-sub {
        padding-left: 36px;
        font-size: 12px;
    }

    .drawer-sub:hover {
        padding-left: 40px;
    }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-section {
    min-height: 650px;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.85), rgba(236, 33, 40, 0.85)), url('../../assets/images/galley/1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 60px 0 60px;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.hero-section .container {
    width: 100%;
    height: auto;
    padding-left: clamp(18px, 3vw, 32px);
    padding-right: clamp(18px, 3vw, 32px);
}

.hero-section .row {
    height: auto;
    --bs-gutter-x: clamp(24px, 3vw, 44px);
    --bs-gutter-y: 24px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 620px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-content h1 i {
    font-size: 50px;
    margin-right: 10px;
    color: #fff;
}

.hero-content .subheading {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-cta, .btn-secondary-cta {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-cta {
    background: white;
    color: #03adee;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    color: #03adee;
}

.btn-secondary-cta {
    background: transparent;
    color: white;
    border: 2.5px solid white;
}

.btn-secondary-cta:hover {
    background: white;
    color: #03adee;
    border-color: white;
}

.btn-primary-cta i, .btn-secondary-cta i {
    font-size: 15px;
}

/* ============================================================================
   ENQUIRY FORM
   ============================================================================ */

.enquiry-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    height: fit-content;
}

.enquiry-form h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.enquiry-form h3 i {
    color: #03adee;
    font-size: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: #03adee;
    font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #03adee;
    box-shadow: 0 0 0 3px rgba(3, 173, 238, 0.1);
    background: white;
}

.form-group input::placeholder {
    color: #999;
}

.btn-submit {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(3, 173, 238, 0.3);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(3, 173, 238, 0.4);
}

.btn-submit i {
    font-size: 15px;
}

/* ============================================================================
   HERO SECTION RESPONSIVE
   ============================================================================ */

@media (max-width: 992px) {
    .hero-section {
        min-height: 600px;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .enquiry-form {
        padding: 30px;
        margin-top: 30px;
    }

    .form-row {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
        background-attachment: scroll;
    }

    .hero-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-section .row {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-content h1 i {
        font-size: 34px;
    }

    .hero-content .subheading {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .cta-buttons {
        gap: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .btn-primary-cta, .btn-secondary-cta {
        padding: 11px 22px;
        font-size: 12px;
    }

    .enquiry-form {
        padding: 22px;
        margin-top: 25px;
    }

    .enquiry-form h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 13px;
    }

    .btn-submit {
        padding: 11px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-section .row {
        --bs-gutter-x: 12px;
    }

    .hero-content {
        padding: 8px;
    }

    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-content h1 i {
        font-size: 26px;
    }

    .hero-content .subheading {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-primary-cta, .btn-secondary-cta {
        padding: 10px 18px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }

    .enquiry-form {
        padding: 18px;
        margin-top: 20px;
    }

    .enquiry-form h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group select {
        padding: 8px 10px;
        font-size: 12px;
    }

    .btn-submit {
        padding: 10px 14px;
        font-size: 11px;
        margin-top: 4px;
    }
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */

.about-section {
    padding: 56px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 450px;
    width: 100%;
    background: #f0f0f0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .about-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 0;
    }

    .about-image {
        height: 240px;
    }
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.about-feature-card {
    background: linear-gradient(135deg, #ffffff, #f8fbfd);
    border: 1px solid rgba(3, 173, 238, 0.12);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.about-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(3, 173, 238, 0.12);
    border-color: rgba(236, 33, 40, 0.22);
}

.about-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.12), rgba(236, 33, 40, 0.12));
    color: #03adee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.about-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.35;
}

.about-feature-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */

.services-section {
    padding: 56px 0;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.08), rgba(236, 33, 40, 0.08));
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(3, 173, 238, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .row > [class*='col-'],
.vehicles-section .row > [class*='col-'],
.cities-section .row > [class*='col-'],
.blog-section .row > [class*='col-'] {
    display: flex;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: none;
}

.service-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(3, 173, 238, 0.2);
}

.service-card:hover .service-media img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    right: 18px;
    bottom: 18px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
    padding-bottom: 12px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #03adee, #ec2128);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 55px;
}

.service-price {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ec2128;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.service-footer,
.vehicle-footer,
.image-card-footer,
.blog-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-more-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(3, 173, 238, 0.25);
}

/* ============================================================================
   VEHICLES SECTION
   ============================================================================ */

.vehicles-section {
    padding: 56px 0;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.03), rgba(236, 33, 40, 0.03));
    position: relative;
}

.vehicle-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(3, 173, 238, 0.2);
}

.vehicle-image {
    height: 160px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.vehicle-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.vehicle-icon {
    font-size: 80px;
    color: white;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

.vehicle-card:hover .vehicle-icon {
    transform: scale(1.15) rotate(-5deg);
}

.vehicle-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    padding-bottom: 12px;
    position: relative;
}

.vehicle-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #03adee, #ec2128);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.vehicle-card:hover .vehicle-content h3::after {
    width: 55px;
}

.vehicle-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.vehicle-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.vehicle-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #03adee;
    font-weight: 600;
}

.vehicle-features i {
    font-size: 14px;
}

.btn-view-more {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(3, 173, 238, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(3, 173, 238, 0.4);
    color: white;
}

.vehicles-action {
    margin-top: 28px;
}

/* ============================================================================
   CITIES SECTION
   ============================================================================ */

.cities-section {
    padding: 56px 0;
    background: white;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-card-media {
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.image-card:hover img {
    transform: scale(1.08);
}

.image-card-content {
    padding: 10px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.image-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    padding-bottom: 12px;
    position: relative;
}

.image-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #03adee, #ec2128);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.image-card:hover .image-card-content h3::after {
    width: 55px;
}

.image-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

/* ============================================================================
   STATS SECTION
   ============================================================================ */

.stats-section {
    padding: 44px 0;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    text-align: center;
}

.stat-item {
    margin: 20px 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================================================
   BLOG SECTION
   ============================================================================ */

.blog-section {
    padding: 56px 0;
    background: white;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
    padding-bottom: 12px;
    position: relative;
}

.blog-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #03adee, #ec2128);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.blog-card:hover .blog-content h3::after {
    width: 55px;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

/* ============================================================================
   SWIPER CAROUSEL STYLES
   ============================================================================ */

.services-carousel-wrapper,
.vehicles-carousel-wrapper,
.destinations-carousel-wrapper {
    display: none;
}

.services-desktop-grid,
.vehicles-desktop-grid,
.destinations-desktop-grid {
    display: flex;
    flex-wrap: wrap;
}

/* Hide desktop grids on mobile, show carousels */
@media (max-width: 991px) {
    .services-desktop-grid,
    .vehicles-desktop-grid,
    .destinations-desktop-grid {
        display: none !important;
    }

    .services-carousel-wrapper,
    .vehicles-carousel-wrapper,
    .destinations-carousel-wrapper {
        display: block;
    }
}

.swiper {
    padding: 0 0 50px 0;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    background: rgba(3, 173, 238, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #7aa7bf;
    top: -45px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(3, 173, 238, 0.18);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    right: 50px;
    left: auto;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary);
    color: white;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 12px;
    font-weight: 800;
}

/* Mobile Carousel Service Card */
.services-carousel-wrapper .service-card {
    margin: 0;
}

.vehicles-carousel-wrapper .vehicle-card {
    margin: 0;
}

.destinations-carousel-wrapper .image-card {
    margin: 0;
}

@media (max-width: 1024px) {
    .service-media {
        height: 180px;
    }

    .vehicle-image {
        height: 150px;
    }

    .image-card-media {
        height: 180px;
    }

    .blog-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .service-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .service-media {
        height: 140px;
    }

    .service-content {
        padding: 12px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .vehicle-image {
        height: 128px;
    }

    .vehicle-content {
        padding: 12px;
    }

    .vehicle-content h3 {
        font-size: 15px;
    }

    .vehicle-content p {
        font-size: 13px;
    }

    .image-card-media {
        height: 140px;
    }

    .image-card-content {
        padding: 12px;
    }

    .image-card-content h3 {
        font-size: 15px;
    }

    .image-card-content p {
        font-size: 13px;
    }

    .blog-card img {
        height: 160px;
    }

    .blog-content {
        padding: 16px;
    }

    .blog-content h3 {
        font-size: 15px;
    }

    .blog-content p {
        font-size: 13px;
    }

    /* Force 2-column layout for mobile/tablet cards (Bootstrap-version independent) */
    .how-it-works-section .row,
    .home-gallery-section .row,
    .stats-section .row {
        display: flex;
        flex-wrap: wrap;
    }

    .how-it-works-section .row > [class*='col-'],
    .home-gallery-section .row > [class*='col-'],
    .stats-section .row > [class*='col-'] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }

    .step-item {
        padding: 12px;
    }

    .home-gallery-item {
        height: 130px;
    }

    .home-gallery-item img {
        height: 100%;
        object-fit: cover;
    }

    .stat-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .how-it-works-section .row,
    .home-gallery-section .row,
    .stats-section .row {
        display: flex;
        flex-wrap: wrap;
    }

    .how-it-works-section .row > [class*='col-'],
    .home-gallery-section .row > [class*='col-'],
    .stats-section .row > [class*='col-'] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }

    .service-media {
        height: 120px;
    }

    .service-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .service-price {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .learn-more-btn {
        padding: 10px 14px;
        font-size: 12px;
    }

    .vehicle-image {
        height: 110px;
    }

    .vehicle-card:hover {
        transform: translateY(-8px);
    }

    .vehicle-content h3 {
        font-size: 14px;
    }

    .vehicle-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .vehicle-features {
        gap: 10px;
        margin-bottom: 12px;
    }

    .vehicle-features span {
        font-size: 12px;
    }

    .btn-view-more {
        padding: 12px 30px;
        font-size: 12px;
    }

    .image-card-media {
        height: 120px;
    }

    .image-card-content h3 {
        font-size: 14px;
    }

    .image-card-content p {
        font-size: 12px;
    }

    .blog-card img {
        height: 140px;
    }

    .blog-card:hover {
        transform: translateY(-4px);
    }

    .blog-content {
        padding: 14px;
    }

    .blog-content h3 {
        font-size: 14px;
    }

    .blog-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .step-item {
        padding: 10px;
    }

    .home-gallery-item {
        height: 110px;
    }

    /* Reduce space for carousel navigation on mobile */
    .swiper {
        padding: 0 0 40px 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 24px;
        height: 24px;
        top: -38px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 10px;
    }

    .swiper-button-next {
        right: 0;
    }

    .swiper-button-prev {
        right: 40px;
    }
}

.pricing-section {
    padding: 52px 0;
    background: #fff;
}

.pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid #e9eef2;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
    background: #fff;
}

.pricing-table thead th {
    background: linear-gradient(90deg, rgba(3, 173, 238, 0.12), rgba(236, 33, 40, 0.12));
    color: #1a1a1a;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 16px;
}

.pricing-table td {
    border-top: 1px solid #edf1f4;
    padding: 14px 16px;
    font-size: 14px;
    color: #40515e;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(3, 173, 238, 0.04);
}

.pricing-table tbody tr td:last-child {
    color: #ec2128;
    font-weight: 700;
}

.home-gallery-section {
    padding: 56px 0;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.04), rgba(236, 33, 40, 0.04));
}

.home-gallery-item {
    display: block;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    height: 185px;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq-section {
    padding: 56px 0;
    background: #f8f9fa;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-question:hover {
    background: rgba(3, 173, 238, 0.05);
    color: #03adee;
}

.faq-answer {
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

/* ============================================================================
   FOOTER SECTION
   ============================================================================ */

.footer {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #ccc;
    padding: 50px 0 20px;
    border-top: 2px solid #03adee;
}

.footer h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    padding: 0;
}

.footer-link:hover {
    color: #03adee;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: rgba(3, 173, 238, 0.15);
    border: 2px solid #03adee;
    border-radius: 999px;
    color: #03adee;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.social-links a:hover {
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    border-color: #ec2128;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(3, 173, 238, 0.3);
}

.social-links.icon-links a {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    font-size: 16px;
}

.social-links.icon-links a i {
    line-height: 1;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px;
    }

    .footer h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer p {
        font-size: 13px;
    }

    .contact-info {
        font-size: 13px;
    }

    .footer-link {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .social-links a {
        padding: 7px 12px;
        font-size: 12px;
    }
}

/* ============================================================================
   GENERAL RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .about-feature-card {
        padding: 16px 14px;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .about-feature-card h4 {
        font-size: 14px;
    }

    .about-feature-card p {
        font-size: 12px;
    }

    .services-section {
        padding: 60px 0;
    }

    .service-media,
    .vehicle-image,
    .image-card-media {
        height: 200px;
    }

    .blog-card img {
        height: 200px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .services-section {
        padding: 40px 0;
    }

    .cities-section {
        padding: 40px 0;
    }

    .service-media,
    .vehicle-image,
    .image-card-media,
    .blog-card img {
        height: 200px;
    }

    .image-card-content h3 {
        font-size: 16px;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .blog-section {
        padding: 40px 0;
    }

    .blog-card img {
        height: 180px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-content h3 {
        font-size: 16px;
    }

    .blog-content p {
        font-size: 13px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 15px;
        font-size: 13px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-section h4 {
        font-size: 15px;
    }

    .footer-section p {
        font-size: 12px;
    }
}

/* ============================================================================
   PAGE HEADER SECTIONS (About, Services, Contact, Fleet Pages)
   ============================================================================ */

.page-header-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.05), rgba(236, 33, 40, 0.05));
}

.page-header-section h1 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-header-section > .container > p {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================================
   TEAM SECTION
   ============================================================================ */

.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.team-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.team-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
}

.team-card h3 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 18px;
}

.team-card p {
    color: #666;
    font-size: 14px;
}

/* ============================================================================
   CONTACT INFO CARDS
   ============================================================================ */

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.contact-card h3 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-card a {
    color: #03adee;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #ec2128;
}

/* ============================================================================
   FLEET CARDS & VEHICLE SECTION
   ============================================================================ */

.fleet-section {
    padding: 80px 0;
    background: white;
}

.fleet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fleet-card-image {
    background: linear-gradient(135deg, #03adee, #ec2128);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
}

.fleet-card-content {
    padding: 30px;
}

.fleet-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.fleet-specs {
    color: #666;
    font-size: 14px;
    line-height: 2;
}

.fleet-spec-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-spec-item:last-child {
    border-bottom: none;
}

.fleet-spec-item i {
    color: #03adee;
    min-width: 16px;
}

.fleet-spec-item strong {
    color: #1a1a1a;
}

.fleet-card-footer {
    margin-top: 20px;
}

.fleet-card-footer p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.fleet-card .book-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.fleet-card .book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 173, 238, 0.3);
}

/* ============================================================================
   WHY CHOOSE US / STATS BOX
   ============================================================================ */

.why-choose-box {
    background: linear-gradient(135deg, #03adee, #ec2128);
    padding: 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.why-choose-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.why-choose-item {
    margin-bottom: 5px;
}

.why-choose-item:last-child {
    margin-bottom: 0;
}

.why-choose-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-choose-label {
    font-size: 16px;
}

/* ============================================================================
   FEATURES & HIGHLIGHTS SECTION
   ============================================================================ */

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-item h4 {
    color: #03adee;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item h4 i {
    font-size: 16px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

.highlights-section {
    padding: 60px 0;
    background: white;
}

.highlight-card {
    text-align: center;
    margin-bottom: 30px;
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #03adee;
}

.highlight-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-card p {
    color: #666;
    font-size: 14px;
}

/* ============================================================================
   CONTACT FORM SECTION
   ============================================================================ */

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #03adee;
    box-shadow: 0 0 0 3px rgba(3, 173, 238, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 173, 238, 0.3);
}

/* ============================================================================
   UTILITIES & HELPERS
   ============================================================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.p-0 {
    padding: 0;
}

.g-4 {
    gap: 1.5rem;
}

.g-4 > * {
    display: flex;
    flex-direction: column;
}

/* ============================================================================
   SECTION TITLES & COMMON STYLES
   ============================================================================ */

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    background: linear-gradient(90deg, #03adee 0%, #ec2128 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    display: inline-block;
}

.section-title.text-center,
.section-title[style*="text-align: center"],
[style*="text-align: center"] .section-title,
.text-center .section-title {
    text-align: center;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 21px;
    }
}

.section-title span {
    color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

button:focus {
    outline: none;
}

/* ============================================================================
   WHY CHOOSE US SECTION
   ============================================================================ */

.why-choose-section {
    padding: 56px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
}

.why-choose-item {
    display: block;
    padding: 10px;
    border: 1px solid #e9eef2;
    border-left: 4px solid #03adee;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.why-choose-item:hover {
    transform: translateY(-1px);
    border-color: rgba(3, 173, 238, 0.22);
    border-left-color: #ec2128;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.why-choose-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.why-choose-visual img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}

.why-choose-badge {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.why-choose-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.why-choose-badge span {
    font-size: 13px;
    color: #666;
}

.why-choose-content {
    flex: 1;
}

.why-choose-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.35;
}

.why-choose-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */

.how-it-works-section {
    padding: 56px 0;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.05), rgba(236, 33, 40, 0.05));
}

.step-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ============================================================================
   TESTIMONIALS SECTION - AUTO CAROUSEL
   ============================================================================ */

.testimonials-section {
    padding: 56px 0;
    background: white;
}

.testimonials-flow-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 18px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-flow-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testimonialsFlow 26s linear infinite;
    will-change: transform;
}

.testimonials-flow-wrap:hover .testimonials-flow-track {
    animation-play-state: paused;
}

@keyframes testimonialsFlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 10px));
    }
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonials-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 360px;
    margin-right: 0;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #03adee;
    animation: slideInUp 0.6s ease-out forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #ec2128;
}

.testimonial-text {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 3px 0;
}

.author-info p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: #03adee;
    border-color: #03adee;
}

.carousel-dot:hover {
    background: #03adee;
}

.carousel-nav {
    display: none;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: rgba(3, 173, 238, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #03adee;
    transform: scale(1.1);
}

/* ============================================================================
   CTA SECTION - READY TO TRAVEL
   ============================================================================ */

.cta-section {
    padding: 56px 0;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-section h2 i {
    font-size: 45px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
}

.btn-cta-white {
    background: white;
    color: #03adee;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.btn-cta {
    background: transparent;
    color: white;
}

.btn-cta:hover {
    background: white;
    color: #03adee;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================================================
   BLOG CARD ENHANCEMENTS
   ============================================================================ */

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-meta {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #03adee, #ec2128);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #03adee;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ============================================================================
   FAQ SECTION ENHANCEMENTS
   ============================================================================ */

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.faq-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-image img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* ============================================================================
   RESPONSIVE DESIGN - NEW SECTIONS
   ============================================================================ */

@media (max-width: 992px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-item {
        gap: 15px;
    }

    .why-choose-icon {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }

    .why-choose-content h4 {
        font-size: 16px;
    }

    .why-choose-content p {
        font-size: 13px;
    }

    .how-it-works-section {
        padding: 60px 0;
    }

    .step-item {
        padding: 25px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .step-item h3 {
        font-size: 16px;
    }

    .step-item p {
        font-size: 13px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        flex: 0 0 320px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons-group {
        gap: 15px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-item {
        gap: 12px;
    }

    .why-choose-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .why-choose-content h4 {
        font-size: 15px;
    }

    .why-choose-content p {
        font-size: 12px;
    }

    .how-it-works-section {
        padding: 50px 0;
    }

    .step-item {
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .step-item h3 {
        font-size: 15px;
    }

    .step-item p {
        font-size: 12px;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-card {
        flex: 0 0 280px !important;
        padding: 25px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .author-info h4 {
        font-size: 13px;
    }

    .author-info p {
        font-size: 11px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 28px;
        gap: 10px;
    }

    .cta-section h2 i {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 13px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .faq-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .about-feature-card {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .about-feature-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .about-feature-card h4 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .about-feature-card p {
        font-size: 11px;
        line-height: 1.5;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-item {
        gap: 10px;
    }

    .why-choose-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .why-choose-content h4 {
        font-size: 14px;
    }

    .why-choose-content p {
        font-size: 11px;
    }

    .how-it-works-section {
        padding: 40px 0;
    }

    .step-item {
        padding: 18px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step-item h3 {
        font-size: 14px;
    }

    .step-item p {
        font-size: 11px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        flex: 0 0 250px !important;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .author-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .author-info h4 {
        font-size: 12px;
    }

    .author-info p {
        font-size: 10px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 22px;
        flex-direction: column;
        gap: 8px;
    }

    .cta-section h2 i {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .btn-cta {
        padding: 11px 20px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot {
        margin: 0 4px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .faq-content {
        gap: 15px;
    }
}

/* ============================================================================
   ALL SECTIONS RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 992px) {
    .page-header-section {
        padding: 60px 0;
    }

    .page-header-section h1 {
        font-size: 36px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-section h2 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-box {
        padding: 30px;
    }

    .why-choose-box h2 {
        font-size: 30px;
    }

    .highlights-section {
        padding: 50px 0;
    }

    .fleet-card-image {
        height: 200px;
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 50px 0;
    }

    .page-header-section h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .page-header-section > .container > p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .team-section {
        padding: 50px 0;
    }

    .team-section h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .team-card {
        padding: 25px;
        margin-bottom: 15px;
    }

    .team-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .team-card p {
        font-size: 13px;
    }

    .contact-card {
        padding: 25px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .fleet-card {
        margin-bottom: 15px;
    }

    .fleet-card-image {
        height: 180px;
        font-size: 70px;
    }

    .fleet-card-content {
        padding: 25px;
    }

    .fleet-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .fleet-specs {
        font-size: 13px;
        line-height: 1.8;
    }

    .fleet-spec-item {
        padding: 6px 0;
    }

    .fleet-card-footer p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .fleet-card .book-btn {
        padding: 9px 18px;
        font-size: 12px;
    }

    .why-choose-box {
        padding: 25px;
    }

    .why-choose-box h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .why-choose-item {
        margin-bottom: 18px;
    }

    .why-choose-number {
        font-size: 40px;
    }

    .why-choose-label {
        font-size: 14px;
    }

    .highlight-card {
        margin-bottom: 25px;
    }

    .highlight-icon {
        font-size: 36px;
    }

    .highlight-card p {
        font-size: 13px;
    }

    .contact-form-section {
        padding: 30px;
    }

    .contact-form-section h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .form-field label {
        font-size: 13px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .form-field textarea {
        min-height: 100px;
    }

    .form-submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-header-section {
        padding: 40px 0;
    }

    .page-header-section h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .page-header-section > .container > p {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .team-section {
        padding: 40px 0;
    }

    .team-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .team-card {
        padding: 20px;
    }

    .team-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .team-card h3 {
        font-size: 15px;
    }

    .team-card p {
        font-size: 12px;
    }

    .contact-card {
        padding: 20px;
        margin-bottom: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .contact-card p {
        font-size: 12px;
    }

    .fleet-card {
        margin-bottom: 12px;
    }

    .fleet-card-image {
        height: 150px;
        font-size: 60px;
    }

    .fleet-card-content {
        padding: 20px;
    }

    .fleet-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .fleet-specs {
        font-size: 12px;
        line-height: 1.7;
    }

    .fleet-spec-item {
        padding: 5px 0;
    }

    .fleet-card-footer p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .fleet-card .book-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-item h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .why-choose-box {
        padding: 20px;
    }

    .why-choose-box h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .why-choose-item {
        margin-bottom: 15px;
    }

    .why-choose-number {
        font-size: 36px;
    }

    .why-choose-label {
        font-size: 12px;
    }

    .highlight-card {
        margin-bottom: 20px;
    }

    .highlight-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .highlight-card h4 {
        font-size: 14px;
    }

    .highlight-card p {
        font-size: 12px;
    }

    .contact-form-section {
        padding: 20px;
    }

    .contact-form-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .form-field label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 9px 10px;
        font-size: 12px;
    }

    .form-field textarea {
        min-height: 90px;
    }

    .form-submit-btn {
        padding: 11px;
        font-size: 13px;
    }
}

/* ============================================================================
   PAGE BANNER WITH BREADCRUMB (all inner pages)
   ============================================================================ */

.page-banner {
    position: relative;
    padding: 90px 0 55px;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.64) 0%, rgba(236, 33, 40, 0.58) 100%),
                url('../images/tempo-traveller-banner.jpg') center / cover no-repeat;
    color: white;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.06);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 44px;
    font-weight: 800;
    color: white !important;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.page-banner .page-banner-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
    max-width: 580px;
    line-height: 1.6;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: white;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 65px 0 45px;
    }

    .page-banner h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .page-banner .page-banner-sub {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 50px 0 35px;
    }

    .page-banner h1 {
        font-size: 24px;
    }

    .breadcrumb-nav {
        font-size: 12px;
    }
}

/* ============================================================================
   SECTION TITLE ENHANCEMENTS
   ============================================================================ */

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.12), rgba(236, 33, 40, 0.08));
    color: #03adee;
    border: 1px solid rgba(3, 173, 238, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ============================================================================
   WHY CHOOSE RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-grid {
        gap: 14px;
    }

    .why-choose-item {
        padding: 16px 18px;
    }

    .why-choose-content h4 {
        font-size: 15px;
    }

    .why-choose-content p {
        font-size: 13px;
    }

    .why-choose-visual img {
        min-height: 360px;
    }

    .why-choose-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 20px 0;
    }

    .why-choose-item {
        padding: 14px 16px;
    }

    .why-choose-visual img {
        min-height: 300px;
    }

    .why-choose-badge strong {
        font-size: 16px;
    }

    .why-choose-badge span {
        font-size: 12px;
    }
}

/* ============================================================================
   ABOUT PAGE CONTENT SECTION
   ============================================================================ */

.about-detail-section {
    padding: 80px 0;
    background: white;
}

@media (max-width: 768px) {
    .about-detail-section {
        padding: 55px 0;
    }
}

/* ============================================================================
   INTERNAL LANDING PAGE COMPONENTS
   ============================================================================ */

.internal-section {
    padding: 56px 0;
    background: #fff;
    position: relative;
}

.internal-section.alt {
    background: linear-gradient(135deg, rgba(3, 173, 238, 0.03), rgba(236, 33, 40, 0.03));
}

.internal-section.alt::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -80px;
    top: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 173, 238, 0.12) 0%, transparent 72%);
    pointer-events: none;
}

.internal-lead {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 22px;
    max-width: 920px;
}

.internal-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.internal-link-card {
    display: block;
    background: linear-gradient(145deg, #ffffff, #f4fbff);
    border: 1px solid #e8edf2;
    border-radius: 16px;
    padding: 18px;
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(3, 56, 82, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.internal-link-card::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -35px;
    top: -35px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 33, 40, 0.08), transparent 70%);
    transition: transform 0.35s ease;
}

.internal-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(3, 173, 238, 0.18);
    border-color: rgba(3, 173, 238, 0.35);
    color: #1a1a1a;
}

.internal-link-card:hover::before {
    transform: scale(1.15);
}

.internal-link-card h3,
.internal-link-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.internal-link-card p {
    margin: 0;
    color: #4f5a64;
    font-size: 13px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.type-image-card {
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
}

.type-image-card .card-media {
    position: relative;
    height: 225px;
    overflow: hidden;
}

.type-image-card .card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 17, 26, 0.52), rgba(4, 17, 26, 0.08));
}

.type-image-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.type-image-card:hover .card-media img {
    transform: scale(1.08);
}

.type-image-card .card-copy {
    padding: 16px 16px 18px;
    background: linear-gradient(160deg, #ffffff, #f5fbff);
}

.internal-split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: center;
}

.split-media {
    border-radius: 16px;
    overflow: hidden;
    min-height: 260px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.split-media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.internal-content-card {
    background: linear-gradient(150deg, #ffffff, #f6fbff);
    border: 1px solid #dfebf4;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 26px rgba(7, 44, 64, 0.08);
    height: 100%;
}

.internal-content-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.internal-list {
    margin: 0;
    padding-left: 18px;
    color: #465664;
}

.internal-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.internal-list li::marker {
    color: #03adee;
}

.internal-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}

.internal-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.internal-image-stack img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-booking-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: start;
}

.internal-booking-form {
    background: #fff;
    border: 1px solid #ebf0f4;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.internal-booking-form h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.internal-booking-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.internal-booking-form input,
.internal-booking-form textarea,
.internal-booking-form select {
    width: 100%;
    border: 1px solid #dde4ea;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.internal-booking-form input:focus,
.internal-booking-form textarea:focus,
.internal-booking-form select:focus {
    outline: none;
    border-color: #03adee;
    box-shadow: 0 0 0 3px rgba(3, 173, 238, 0.1);
}

.internal-booking-form textarea {
    min-height: 100px;
    resize: vertical;
}

.internal-booking-form button {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #03adee, #ec2128);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.internal-booking-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(3, 173, 238, 0.24);
}

.internal-cta {
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #03adee, #ec2128);
    box-shadow: 0 16px 34px rgba(3, 173, 238, 0.24);
}

.internal-cta h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 24px;
}

.internal-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
}

.internal-cta .btn-cta-lite {
    display: inline-block;
    border-radius: 999px;
    padding: 10px 20px;
    background: #fff;
    color: #03adee;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.internal-cta .btn-cta-lite:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    color: #03adee;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 8px;
}

/* Keep heading + paragraph rhythm clean across internal pages */
.internal-section .section-title + .section-subtitle,
.internal-section .section-title + .internal-lead,
.internal-section .section-title + p,
.internal-section h4.section-title + p {
    margin-top: 6px;
    margin-bottom: 20px;
}

/* Equal-height cards for "How to Book / Best Places / Best Time" blocks */
.planning-col {
    display: flex;
}

.planning-card {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.alternatives-grid .type-image-card {
    border-radius: 22px;
    border: 1px solid #dfeaf3;
    background: linear-gradient(150deg, #ffffff, #f4fbff);
    box-shadow: 0 14px 30px rgba(7, 46, 68, 0.12);
    overflow: hidden;
}

.alternatives-grid .type-image-card .card-media {
    height: 230px;
}

.alternatives-grid .type-image-card .card-media::after {
    background: linear-gradient(to top, rgba(8, 28, 42, 0.62), rgba(8, 28, 42, 0.08));
}

.alternatives-grid .type-image-card .card-copy {
    padding: 18px 18px 20px;
    background: linear-gradient(160deg, #ffffff, #f5fbff);
}

.alternatives-grid .type-image-card .card-copy h4 {
    font-size: 19px;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.alternatives-grid .type-image-card .card-copy p {
    font-size: 14px;
    line-height: 1.65;
    color: #4a5661;
}

.alternatives-grid .type-image-card:hover {
    transform: translateY(-8px);
    border-color: rgba(3, 173, 238, 0.42);
    box-shadow: 0 24px 40px rgba(3, 96, 139, 0.2);
}

.alternatives-grid .type-image-card:hover .card-media img {
    transform: scale(1.1);
}

.internal-section-title-left {
    text-align: left !important;
}

.internal-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.internal-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #03adee, #0689bd);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 20px rgba(3, 173, 238, 0.28);
}

.internal-hero-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.internal-hero-btn.secondary {
    background: #fff;
    color: #13222c;
    border: 1px solid #d4e5f0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.internal-hero-btn.secondary:hover {
    color: #13222c;
}

.internal-hero-image {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 18px;
}

.internal-photo-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
}

.internal-trust-card {
    min-height: 330px;
}

.internal-trust-image {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 16px;
}

.internal-benefit-card {
    margin-bottom: 28px;
}

.internal-subsection-title {
    font-size: 24px !important;
    margin-bottom: 10px !important;
}

.internal-muted-copy {
    margin-bottom: 12px;
    color: #58656f;
    line-height: 1.7;
}

.internal-list-no-margin {
    margin-bottom: 0;
}

.internal-feature-heading {
    font-size: 20px !important;
    margin-bottom: 10px !important;
}

.internal-feature-copy {
    margin-bottom: 20px;
}

.internal-feature-grid {
    margin-top: 2px;
}

.internal-planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.internal-alternative-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.internal-alternative-card {
    margin-top: 12px;
}

@media (max-width: 992px) {
    .internal-link-grid,
    .alternatives-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .internal-split,
    .faq-booking-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .internal-link-grid,
    .alternatives-grid,
    .internal-image-stack {
        grid-template-columns: 1fr;
    }

    .internal-section {
        padding: 42px 0;
    }
}

/* ============================================================================
   INTERNAL SHOWCASE + PREMIUM PAGE BLOCKS
   ============================================================================ */

.internal-showcase {
    padding-top: 26px;
}

.internal-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.internal-showcase-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    height: 210px;
}

.internal-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.internal-showcase-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06));
}

.internal-showcase-item:hover img {
    transform: scale(1.08);
}

.about-hero-card,
.contact-hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 460px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.about-hero-card img,
.contact-hero-card img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.about-hero-overlay,
.contact-hero-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 14px 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.about-info-card,
.contact-info-card {
    border: 1px solid #e8eef3;
    background: linear-gradient(145deg, #ffffff, #f8fbfd);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    height: 100%;
    margin-bottom: 10px;
}

.about-info-card h4,
.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.about-info-card p,
.contact-info-card p {
    color: #666;
    line-height: 1.75;
    font-size: 14px;
    margin: 0;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #03adee;
    margin-top: 10px;
}

/* Floating action buttons */
.floating-contact-buttons {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 20px;
}

.floating-contact-btn:hover {
    transform: translateY(-3px) scale(1.03);
    color: #fff;
}

.floating-contact-btn.call {
    background: linear-gradient(135deg, #03adee, #0a86b8);
}

.floating-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

@media (max-width: 992px) {
    .internal-split-content {
        grid-template-columns: 1fr;
    }

    .internal-showcase-grid,
    .contact-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-hero-card,
    .contact-hero-card {
        min-height: 360px;
    }

    .about-hero-card img,
    .contact-hero-card img {
        min-height: 360px;
    }
}

@media (max-width: 576px) {
    .type-image-card .card-media {
        height: 170px;
    }

    .alternatives-grid .type-image-card .card-media {
        height: 190px;
    }

    .split-media {
        min-height: 210px;
    }

    .split-media img {
        min-height: 210px;
    }

    .internal-showcase-grid,
    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .internal-showcase-item {
        height: 190px;
    }

    .floating-contact-buttons {
        right: 12px;
        bottom: 12px;
    }

    .floating-contact-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}
