@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@1,400;1,600;1,700&display=swap');

/* --- Core Design Tokens --- */
:root {
    --primary: #321cf1;
    --primary-light: #eef2ff;
    --primary-dark: #1d159e;
    --accent: #f97316;
    --accent-light: #ffedd5;
    --accent-dark: #ea580c;
    --neutral-dark: #0f172a;
    --neutral-muted: #475569;
    --neutral-light: #f8fafc;
    --white: #ffffff;
    --success: #22c55e;
    --error: #ef4444;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1240px;
}

/* --- Base Resets & Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    line-height: 1.6;
    width: 100%;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--neutral-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

select option {
    color: #0f172a !important;
    background-color: #ffffff !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.bg-white { background-color: var(--white); }

/* --- Top Utility Bar --- */
.topbar {
    background-color: var(--neutral-dark);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.topbar-item:hover {
    color: var(--accent);
}

.topbar-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.topbar-promo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Premium Navigation Bar --- */
.header-main {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.header-main.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 550;
    color: var(--neutral-muted);
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-link.active::after {
    width: 100%;
}

.btn-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(13, 148, 136, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-header:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(13, 148, 136, 0.25);
    color: var(--white);
}

.btn-header svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--neutral-dark);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* Feature/Sub Navigation Bar */
.feature-nav-bar {
    background-color: var(--primary-light);
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
    padding: 0.625rem 0;
}

.feature-nav-list {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.feature-nav-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
}

.feature-nav-item:hover {
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.feature-nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.feature-nav-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ================= PREMIUM ADS HERO SECTION ================= */

.premium-hero-section{
    position:relative;
    min-height:auto; /* Compact banner style */
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:1rem 0 1rem 0; /* Balanced vertical spacing */
    background:url('../images/hero-im.jpeg') center center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.88) 45%,
        rgba(255, 255, 255, 0) 100%
    );
}

.premium-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr 0.85fr;
    gap:4rem;
    align-items:center;
}

/* LEFT */

.premium-hero-content{
    color:#fff;
}

.premium-hero-badge{
    display:inline-flex;
    align-items:center;
    padding:0.8rem 1.5rem;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    border-radius:100px;
    font-size:0.85rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:1.5rem;
}

.premium-hero-title{
    font-size:3rem;
    line-height:1;
    font-weight:900;
    margin-bottom:1.5rem;
    letter-spacing:-3px;
    color:#fff;
}

.premium-hero-title span{
    display:block;
    font-family:'Playfair Display', serif;
    font-style:italic;
    font-weight:500;
    background:linear-gradient(135deg,#f97316,#ffd166);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.premium-hero-description{
    font-size:1.1rem;
    line-height:1.9;
    color:rgba(255,255,255,0.82);
    max-width:700px;
    margin-bottom:2rem;
}

/* FEATURES */

.premium-hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    margin-bottom:2.5rem;
}

.hero-feature-item{
    display:flex;
    align-items:center;
    gap:0.6rem;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:0.8rem 1.1rem;
    border-radius:14px;
    font-weight:600;
    color:#fff;
    backdrop-filter:blur(8px);
}

.hero-feature-item i{
    color:#f59e0b;
    font-size:1rem;
}

/* BUTTONS */

.premium-hero-buttons{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    margin-bottom:3rem;
}

.premium-btn-primary,
.premium-btn-call,
.premium-btn-whatsapp{
    padding:1rem 2rem;
    border-radius:14px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:0.7rem;
    transition:0.3s ease;
    font-size:0.95rem;
}

.premium-btn-primary{
    background:linear-gradient(135deg,#f97316,#ea580c);
    color:#fff;
    box-shadow:0 15px 35px rgba(249,115,22,0.35);
}

.premium-btn-call{
    background:#0f172a;
    color:#fff;
    border:1px solid rgba(255,255,255,0.15);
}

.premium-btn-whatsapp{
    background:#22c55e;
    color:#fff;
    box-shadow:0 15px 35px rgba(34,197,94,0.3);
}

.premium-btn-primary:hover,
.premium-btn-call:hover,
.premium-btn-whatsapp:hover{
    transform:translateY(-3px);
    color:#fff;
}



/* FORM */

.premium-enquiry-card{
    position:relative;
    background:rgba(15,23,42,0.92);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(18px);
    border-radius:32px;
    padding:3rem 2.2rem 2.2rem;
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

.premium-offer-ribbon{
    position:absolute;
    top:-22px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#f97316,#ea580c);
    color:#fff;
    padding:1rem 2rem;
    border-radius:100px;
    font-size:0.9rem;
    font-weight:800;
    letter-spacing:1px;
    white-space:nowrap;
    box-shadow:0 15px 35px rgba(249,115,22,0.45);
}

.premium-form-header{
    text-align:center;
    margin-bottom:2rem;
}

.premium-form-header h2{
    color:#fff;
    font-size:2rem;
    margin-bottom:0.5rem;
}

.premium-form-header p{
    color:#ffd166;
    font-weight:600;
}

/* INPUTS */

.premium-form-group{
    position:relative;
    margin-bottom:1.2rem;
}

.premium-form-input{
    width:100%;
    height:58px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    padding:0 1rem 0 3rem;
    color:#fff;
    font-size:0.95rem;
    transition:0.3s ease;
}

.premium-form-input:focus{
    border-color:#f97316;
    background:rgba(255,255,255,0.09);
    box-shadow:0 0 0 4px rgba(249,115,22,0.15);
}

.premium-form-input::placeholder{
    color:rgba(255,255,255,0.45);
}

.premium-form-group i{
    position:absolute;
    left:1rem;
    top:50%;
    transform:translateY(-50%);
    color:rgba(255,255,255,0.45);
}

/* SUBMIT */

.premium-submit-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#f97316,#ea580c);
    color:#fff;
    font-size:1rem;
    font-weight:800;
    margin-top:0.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0.8rem;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 15px 35px rgba(249,115,22,0.35);
}

.premium-submit-btn:hover{
    transform:translateY(-2px);
}

.premium-form-footer{
    text-align:center;
    color:rgba(255,255,255,0.5);
    margin-top:1.2rem;
    font-size:0.8rem;
}

/* RESPONSIVE */

@media(max-width:991px){

    .premium-hero-grid{
        grid-template-columns:1fr;
    }

    .premium-hero-title{
        font-size:3.5rem;
    }
}

@media(max-width:768px){

    .premium-hero-section{
        padding:5rem 0;
    }

    .premium-hero-title{
        font-size:2.7rem;
        letter-spacing:-1px;
    }

    .premium-hero-description{
        font-size:1rem;
    }

    .premium-hero-buttons{
        flex-direction:column;
    }

    .premium-btn-primary,
    .premium-btn-call,
    .premium-btn-whatsapp{
        width:100%;
        justify-content:center;
    }

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

    .hero-stat-box{
        width:100%;
    }

    .premium-enquiry-card{
        padding:2.5rem 1.5rem 1.5rem;
    }
}

/* =========================================================
   PREMIUM TOUR PACKAGE SECTION
========================================================= */

#packages{
    background:
    linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );
    position:relative;
    overflow:hidden;
}

/* GRID */

.packages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:2rem;
    align-items:stretch;
}

/* CARD */

.package-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,0.06);
    box-shadow:
    0 10px 35px rgba(15,23,42,0.06);
    transition:all 0.4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 30px 60px rgba(15,23,42,0.12);
}

/* IMAGE */

.package-img-wrapper{
    position:relative;
    width:100%;
    height:280px;
    overflow:hidden;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
}

.package-img{
    width:100%;
    height:100%;
    object-fit:fill;
    object-position:center;
    transition:transform 0.8s ease;
    background:#fff;
}

.package-card:hover .package-img{
    transform:scale(1.08);
}

/* IMAGE OVERLAY */

.package-img-wrapper::after{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,0) 40%,
        rgba(2,6,23,0.55) 100%
    );
    pointer-events:none;
}

/* BOOKING BADGE */

.package-booking-banner{
    position:absolute;
    top:1rem;
    left:1rem;
    z-index:5;
    background:
    linear-gradient(
        135deg,
        #f97316,
        #ea580c
    );
    color:#fff;
    padding:0.55rem 1rem;
    border-radius:100px;
    font-size:0.72rem;
    font-weight:800;
    letter-spacing:1px;
    box-shadow:
    0 10px 25px rgba(249,115,22,0.35);
    backdrop-filter:blur(10px);
}

/* BODY */

.package-body{
    padding:1.6rem;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

/* TITLE */

.package-title{
    font-size:1.35rem;
    font-weight:800;
    line-height:1.35;
    margin-bottom:0.85rem;
    color:#0f172a;
    letter-spacing:-0.5px;
}

/* ROUTE */

.package-destinations{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:0.5rem;
    margin-bottom:1.3rem;
}

.package-duration{
    background:var(--primary-light);
    color:var(--primary-dark);
    padding:0.4rem 0.8rem;
    border-radius:10px;
    font-size:0.78rem;
    font-weight:700;
}

.package-route-split{
    color:#64748b;
    font-size:0.82rem;
    font-weight:600;
    line-height:1.5;
    display: inline-flex;
    align-items: center;
}

.package-route-split::before{
    content:"•";
    margin:0 0.5rem;
    color:#cbd5e1;
    font-size:1.1rem;
    vertical-align:middle;
}

/* INCLUSIONS */

.inclusions-container{
    display:flex;
    justify-content:space-between;
    gap:0.4rem;
    margin-bottom:1.4rem;
    padding-bottom:1.2rem;
    border-bottom:1px solid rgba(15,23,42,0.08);
}

.inclusion-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0.45rem;
    flex:1;
}

.inclusion-circle{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    transition:0.3s ease;
}

.inclusion-circle i{
    font-size:1.1rem;
    color:#94a3b8;
}

.inclusion-item span{
    font-size:0.68rem;
    font-weight:700;
    color:#94a3b8;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.inclusion-item.active .inclusion-circle{
    background:var(--primary-light);
    border-color:#c7d2fe;
    box-shadow:
    0 10px 25px rgba(50,28,241,0.08);
}

.inclusion-item.active .inclusion-circle i{
    color:var(--primary);
}

.inclusion-item.active span{
    color:#334155;
}

/* BULLETS */

.package-bullets-title{
    font-size:0.78rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:0.8rem;
    letter-spacing:1px;
}

.package-bullets{
    display:flex;
    flex-direction:column;
    gap:0.75rem;
    margin-bottom:1.5rem;
}

.package-bullet-item{
    position:relative;
    padding-left:1.3rem;
    font-size:0.9rem;
    line-height:1.6;
    color:#64748b;
    font-weight:500;
}

.package-bullet-item::before{
    content:'';
    position:absolute;
    left:0;
    top:0.55rem;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:
    0 0 0 4px rgba(249,115,22,0.12);
}

/* FOOTER */

.package-footer{
    margin-top:auto;
    padding-top:1.3rem;
    border-top:1px solid rgba(15,23,42,0.08);
}

/* PRICE */

.package-price-row{
    margin-bottom:1rem;
}

.price-amount{
    display:flex;
    align-items:flex-end;
    gap:0.5rem;
    font-size:2rem;
    font-weight:900;
    color:#0f172a;
    line-height:1;
}

.price-amount span{
    font-size:0.78rem !important;
    color:#64748b !important;
    margin-bottom:0.3rem;
    letter-spacing:1px;
    font-weight:700;
}

/* ACTION BUTTONS */

.package-actions-row{
    display:grid;
    grid-template-columns:1.1fr 0.9fr 1fr;
    gap:0.7rem;
}

.btn-action{
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0.5rem;
    font-size:0.82rem;
    font-weight:700;
    transition:all 0.3s ease;
    border:none;
    cursor:pointer;
    letter-spacing:0.3px;
}

.btn-action i{
    font-size:1rem;
}

/* WHATSAPP */

.btn-wa{
    background:#22c55e;
    color:#fff;
    box-shadow:
    0 10px 25px rgba(34,197,94,0.22);
}

.btn-wa:hover{
    background:#16a34a;
    transform:translateY(-2px);
    color:#fff;
}

/* CALL */

.btn-call{
    background:#0284c7;
    color:#fff;
    box-shadow:
    0 10px 25px rgba(2,132,199,0.22);
}

.btn-call:hover{
    background:#0369a1;
    transform:translateY(-2px);
    color:#fff;
}

/* ENQUIRE */

.btn-enquire{
    background:
    linear-gradient(
        135deg,
        var(--accent),
        var(--accent-dark)
    );
    color:#fff;
    box-shadow:
    0 10px 25px rgba(249,115,22,0.25);
}

.btn-enquire:hover{
    transform:translateY(-2px);
    color:#fff;
}

/* SECTION HEADER */

.section-header{
    max-width:760px;
    margin:0 auto 4rem;
}

.section-title{
    font-size:3rem;
    font-weight:900;
    line-height:1.1;
    letter-spacing:-1px;
    margin-bottom:1rem;
    color:#0f172a;
}

.section-desc{
    font-size:1.05rem;
    line-height:1.8;
    color:#64748b;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .packages-grid{
        grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    }

}

@media(max-width:768px){

    .packages-grid{
        grid-template-columns:1fr;
        gap:1.5rem;
    }

    .package-img-wrapper{
        height:240px;
    }

    .package-title{
        font-size:1.2rem;
    }

    .section-title{
        font-size:2.2rem;
    }

    .package-actions-row{
        grid-template-columns:1fr;
    }

    .btn-action{
        width:100%;
    }

    .inclusions-container{
        gap:0.2rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1rem;
    }

    .inclusion-circle{
        width:46px;
        height:46px;
    }

    .inclusion-item span {
        display: none;
    }
}

@media(max-width:480px){

    .package-body{
        padding:1.2rem;
    }

    .package-img-wrapper{
        height:220px;
    }

    .price-amount{
        font-size:1.7rem;
    }

    .section-title{
        font-size:1.9rem;
    }

}
/* --- Section Styling & Headers --- */
.section-padding {
    padding: 6rem 0;
}

.section-bg-light {
    background-color: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: inline-block;
    background-color: var(--primary-light);
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--neutral-muted);
    font-size: 1.05rem;
}
/* --- Premium Customization Banner (Customize & Book Festive) --- */
.custom-banner {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
    padding: 6rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.03);
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
    text-align: center;
}

.banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.banner-top-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent); /* Brand Orange */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.banner-main-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--neutral-dark);
    line-height: 1.25;
    margin-bottom: 4rem;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

/* 4-column premium cards grid */
.customize-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.customize-feature-item {
    background: var(--white);
    border: 1px solid rgba(50, 28, 241, 0.06);
    border-radius: 24px;
    padding: 3rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(50, 28, 241, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.customize-feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08);
}

.customize-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary); /* Indigo icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    font-size: 1.75rem;
    box-shadow: 0 6px 15px rgba(50, 28, 241, 0.08);
    transition: all 0.4s ease;
}

.customize-feature-item:hover .customize-icon-wrapper {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transform: scale(1.05) rotate(5deg);
}

.customize-feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--neutral-dark);
    margin-bottom: 0.85rem;
    letter-spacing: 0.5px;
}

.customize-feature-item:hover .customize-feature-title {
    color: var(--primary);
}

.customize-feature-desc {
    font-size: 0.925rem;
    color: var(--neutral-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* Premium CTA button below */
.customize-btn-row {
    display: flex;
    justify-content: center;
}

.btn-customize-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.25rem 3.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.btn-customize-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.45);
    color: var(--white);
}

/* Responsiveness for Customize Section */
@media (max-width: 991px) {
    .customize-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 0;
    }
    
    .customize-feature-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .customize-features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem 0;
    }
    
    .customize-feature-item::after {
        display: none;
    }
    
    .banner-top-title {
        font-size: 1.75rem;
    }
    
    .banner-main-title {
        font-size: 1.6rem;
    }
    
    .btn-customize-cta {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--white);
    padding: 3rem 2rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(50, 28, 241, 0.06);
    box-shadow: 0 12px 30px rgba(50, 28, 241, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    font-size: 1.6rem;
    box-shadow: 0 6px 15px rgba(50, 28, 241, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-box {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transform: scale(1.05) rotate(5deg);
}

.feature-icon-box svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--neutral-dark);
    margin-bottom: 0.85rem;
    transition: var(--transition);
}

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

.feature-desc {
    color: var(--neutral-muted);
    font-size: 0.925rem;
    line-height: 1.6;
    font-weight: 500;
}

/* ================= PREMIUM ABOUT SECTION ================= */

.premium-about-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.premium-about-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:5rem;
    align-items:center;
}

/* LEFT CONTENT */

.premium-about-badge{
    display:inline-flex;
    align-items:center;
    background:rgba(13,148,136,0.12);
    color:var(--primary-dark);
    padding:0.6rem 1.4rem;
    border-radius:50px;
    font-size:0.8rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:1.5rem;
}

.premium-about-title{
    font-size:3rem;
    line-height:1.15;
    font-weight:800;
    margin-bottom:1.5rem;
    color:var(--neutral-dark);
}

.premium-about-title span{
    color:var(--primary);
    display:block;
}

.premium-about-text{
    font-size:1.05rem;
    line-height:1.9;
    color:var(--neutral-muted);
    margin-bottom:2rem;
    max-width:650px;
}

/* FEATURE BOXES */

.premium-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.premium-about-features .premium-feature-box:nth-child(3) {
    grid-column: span 2;
}

@media(max-width: 768px) {
    .premium-about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .premium-about-features .premium-feature-box:nth-child(3) {
        grid-column: span 1;
    }
}

.premium-feature-box{
    display:flex;
    gap:1rem;
    align-items:flex-start;
    background:#fff;
    padding:1.2rem;
    border-radius:18px;
    border:1px solid rgba(15,23,42,0.06);
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    transition:0.3s ease;
}

.premium-feature-box:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(13,148,136,0.08);
}

.premium-feature-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.3rem;
    flex-shrink:0;
}

.premium-feature-box h4{
    font-size:1.05rem;
    margin-bottom:0.3rem;
    font-weight:700;
}

.premium-feature-box p{
    font-size:0.92rem;
    color:var(--neutral-muted);
    line-height:1.6;
}



/* CTA */

.premium-about-cta{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
}

.premium-about-call,
.premium-about-whatsapp{
    padding:1rem 2rem;
    border-radius:12px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:0.7rem;
    transition:0.3s ease;
}

.premium-about-call{
    background:linear-gradient(135deg,var(--accent),var(--accent-dark));
    color:#fff;
    box-shadow:0 10px 30px rgba(249,115,22,0.25);
}

.premium-about-call:hover{
    transform:translateY(-3px);
    color:#fff;
}

.premium-about-whatsapp{
    background:#25D366;
    color:#fff;
    box-shadow:0 10px 30px rgba(37,211,102,0.25);
}

.premium-about-whatsapp:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* RIGHT IMAGES */

.premium-about-images{
    position:relative;
    min-height:auto;
}

.premium-main-image{
    width:100%;
    height:100%;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

.premium-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.premium-floating-image{
    position:absolute;
    bottom:40px;
    left:-60px;
    width:280px;
    height:320px;
    border-radius:28px;
    overflow:hidden;
    border:8px solid #fff;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.premium-floating-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.experience-badge{
    position:absolute;
    top:30px;
    right:-30px;
    background:#fff;
    padding:1.5rem;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
    text-align:center;
    width:180px;
}

.experience-badge h3{
    font-size:2.5rem;
    color:var(--primary);
    line-height:1;
    margin-bottom:0.4rem;
}

.experience-badge p{
    font-size:0.85rem;
    font-weight:600;
    color:var(--neutral-muted);
}

/* RESPONSIVE */

@media(max-width:991px){

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

    .premium-about-images{
        min-height:auto;
    }

    .premium-floating-image{
        left:0;
        width:220px;
        height:260px;
    }

    .experience-badge{
        right:0;
    }
}

@media(max-width:768px){

    .premium-about-title{
        font-size:2.2rem;
    }

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

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

    .premium-about-call,
    .premium-about-whatsapp{
        width:100%;
        justify-content:center;
    }

    .premium-main-image{
        height:420px;
    }

    .premium-floating-image{
        width:180px;
        height:220px;
        bottom:-20px;
    }
}
/* --- Rich Footer --- */
.footer {
    background-color: #060417; /* High-end Midnight Indigo Black */
    color: rgba(255, 255, 255, 0.65);
    padding: 6rem 0 2.5rem;
    font-size: 0.925rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--primary-dark));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    color: var(--white);
}

.footer-logo span {
    color: var(--accent);
}

.footer-desc {
    line-height: 1.7;
    font-weight: 500;
}

.footer-payments h4 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.payment-badge:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: var(--radius-full);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    display: inline-block;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--accent); /* Brand Orange on hover */
    transform: translateX(6px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-contact-item svg,
.footer-contact-item i {
    width: 18px;
    height: 18px;
    color: var(--accent); /* Orange icons */
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    transform: scale(1.15);
    color: var(--white);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    transition: var(--transition);
}

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

/* --- Floating Sticky Widgets & Expanded Call Bubble --- */
.floating-widgets {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.widget-btn {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
}

.widget-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.widget-whatsapp {
    background-color: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.widget-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
}

.widget-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.widget-call {
    background-color: var(--primary);
    display: flex; /* Active across all viewports */
    align-items: center;
    justify-content: center;
}

.widget-call svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hover-to-expand phone bubble on desktop */
.call-expand-bubble {
    position: absolute;
    right: 70px;
    background-color: var(--neutral-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.call-expand-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--neutral-dark);
}

.widget-call:hover .call-expand-bubble {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll To Top widget */
.widget-scroll-top {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.widget-scroll-top svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

/* --- Premium Center Left Sticky Enquiry Vertical Badge --- */
.sticky-left-enquiry {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 0.75rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: 4px 0 15px rgba(249, 115, 22, 0.35);
    font-weight: 850;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    border-left: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
}

.sticky-left-enquiry:hover {
    padding-left: 1.15rem; /* Expands outwards slightly when hovered */
    background: linear-gradient(135deg, var(--accent-dark), #c2410c);
    box-shadow: 6px 0 20px rgba(249, 115, 22, 0.45);
}

.sticky-left-enquiry i {
    font-size: 1.1rem;
}

/* Hide Left Sticky Badge on small devices to prevent keyboard overlaps */
@media (max-width: 768px) {
    .sticky-left-enquiry {
        display: none;
    }
}

/* --- Mobile Responsive Drawer Layout --- */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

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

.drawer-close {
    width: 32px;
    height: 32px;
    background-color: var(--neutral-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--neutral-dark);
}

.drawer-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--neutral-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-drawer-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


/* --- Fleet (Cabs & Tempo Travellers) Section --- */
.fleet-section {
    background-color: var(--white);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.fleet-card {
    background-color: var(--neutral-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(13, 148, 136, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid rgba(13, 148, 136, 0.15);
    padding-bottom: 1rem;
}

.fleet-badge {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-dark);
}

.fleet-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.fleet-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--neutral-muted);
}

.fleet-info-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.fleet-info-item strong {
    color: var(--neutral-dark);
}

.fleet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
}

.fleet-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--accent-dark);
}

.fleet-price span {
    font-size: 0.85rem;
    color: var(--neutral-muted);
    font-weight: 400;
}

.btn-fleet-whatsapp {
    background-color: #25d366;
    color: var(--white);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-fleet-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-1px);
    color: var(--white);
}

.btn-fleet-whatsapp svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-content {
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-title-serif {
        font-size: 3rem;
    }

    .hero-description-text {
        max-width: 100%;
    }

    .hero-check-bullets {
        max-width: 100%;
    }
    
    .enquiry-card {
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image-collage {
        max-width: 600px;
        height: 380px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .feature-nav-list {
        gap: 1.5rem;
    }
    
    .feature-nav-item {
        font-size: 0.85rem;
    }
    
    .hero-title-serif {
        font-size: 2.4rem;
        letter-spacing: -0.5px;
    }

    .hero-description-text {
        font-size: 0.975rem;
    }

    .hero-check-bullets {
        gap: 1rem;
    }

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

    .btn-hero-primary,
    .btn-hero-wa {
        width: 100%;
        justify-content: center;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .widget-call {
        display: flex; /* Active call widget on mobile */
    }
}

@media (max-width: 480px) {
    .feature-nav-bar {
        display: none; /* Hide sub nav bar on small mobiles */
    }
    
    .logo {
        font-size: 1.2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-actions-row {
        grid-template-columns: 1fr;
    }
    
    .hero-masked-title {
        font-size: 2.8rem;
    }
    
    .hero-title-main {
        font-size: 2.1rem;
    }

    .enquiry-card {
        padding: 1.5rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-card {
        padding: 1.5rem;
    }

    .floating-widgets {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }
    
    .widget-btn {
        width: 48px;
        height: 48px;
    }
    
    .widget-whatsapp svg {
        width: 26px;
        height: 26px;
    }
    
    .widget-call svg {
        width: 20px;
        height: 20px;
    }
    
    .widget-scroll-top svg {
        width: 22px;
        height: 22px;
    }
}

/* --- Premium Contact Us Section --- */
.contact-section {
    background-color: var(--neutral-light);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-pretitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    align-self: flex-start;
    background-color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.contact-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--neutral-dark);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    font-size: 0.975rem;
    color: var(--neutral-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Glassmorphic Contact Card Items */
.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card-item {
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
}

.contact-card-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.15);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card-item:hover .contact-card-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(15deg);
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-card-title {
    font-size: 0.75rem;
    font-weight: 750;
    color: var(--neutral-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--neutral-dark);
}

.contact-card-value a {
    color: inherit;
    transition: var(--transition);
}

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

.contact-card-subtext {
    font-size: 0.8rem;
    color: var(--neutral-muted);
}

/* --- Glassmorphic Contact Enquiry Card Column Styles --- */
.contact-form-column {
    position: relative;
    width: 100%;
}

.contact-enquiry-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 3rem 2.25rem 2.25rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.contact-enquiry-card .enquiry-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-enquiry-card .enquiry-header h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.contact-enquiry-card .enquiry-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-textarea {
    min-height: 100px;
    line-height: 1.5;
}

/* Responsive queries */
@media (max-width: 991px) {
    .topbar {
        display: none; /* Hide topbar to save vertical space on tablets */
    }
    
    .header-main {
        position: sticky;
        top: 10px;
        margin: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(13, 148, 136, 0.15);
        box-shadow: var(--shadow-md);
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .nav-container {
        padding: 0.75rem 1.25rem;
    }
    
    .nav-links, .btn-header {
        display: none; /* Collapsed under hamburger drawer */
    }
    
    .nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 52px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-card-item {
        align-items: flex-start !important;
        padding: 1.25rem !important;
    }

    .contact-card-value {
        font-size: 0.95rem !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
    }
}

/* --- Responsive Mobile Navigation Drawer & Overlay --- */

/* The overlay background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* The side drawer menu container */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px; /* Hidden offscreen by default */
    width: 320px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid rgba(13, 148, 136, 0.15);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    right: 0;
}

/* Header inside drawer */
.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid rgba(13, 148, 136, 0.1);
}

.drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.drawer-close:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* Links inside drawer */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--neutral-dark);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--primary);
    background-color: var(--primary-light);
    border-left-color: var(--primary);
    padding-left: 1.25rem;
}

/* Footer inside drawer */
.mobile-drawer-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
}

.mobile-drawer-footer .btn-submit {
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 750;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.mobile-drawer-footer .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.3);
}

.mobile-drawer-contact {
    font-size: 0.85rem;
    color: var(--neutral-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-drawer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Cohesive Contact Section Form Styling (Identical to Hero Form) --- */
.contact-enquiry-card .form-group {
    position: relative;
    margin-bottom: 1.2rem;
    width: 100%;
}

.contact-enquiry-card .form-input {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    padding: 0 1rem 0 3rem;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.contact-enquiry-card .form-textarea {
    height: auto;
    min-height: 120px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    line-height: 1.6;
}

.contact-enquiry-card .form-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.contact-enquiry-card .form-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-enquiry-card .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
}

.contact-enquiry-card .form-group i.bi-chat-left-dots-fill {
    top: 1.8rem;
}

.contact-enquiry-card .btn-submit {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.35);
    text-transform: uppercase;
}

.contact-enquiry-card .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.45);
}

/* --- Premium Short-Height Quick Enquiry Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    width: 100%;
    max-width: 440px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.modal-header h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.modal-card .form-group {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
}

.modal-card .form-input {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    padding: 0 1rem 0 3rem;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.modal-card .form-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.modal-card .form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modal-card .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
}

.modal-card .btn-submit {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
}

.modal-card .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

/* ================= PREMIUM FAQ SECTION ================= */
.premium-faq-section {
    background-color: var(--white);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Accordion Column */
.faq-accordion-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--neutral-light);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.15);
}

.faq-item.active {
    background-color: var(--white);
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.08);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 750;
    color: var(--neutral-dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq-trigger span {
    padding-right: 1.5rem;
    line-height: 1.4;
}

.faq-trigger i {
    font-size: 1.25rem;
    color: var(--neutral-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-trigger {
    color: var(--primary);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.faq-item.active .faq-panel {
    max-height: 200px;
    opacity: 1;
}

.faq-panel p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--neutral-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Image Column */
.faq-image-column {
    display: flex;
    justify-content: center;
}

.faq-img-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--white);
    border: 8px solid var(--white);
}

.faq-img-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-image-column {
        order: -1; /* Place image on top on mobile/tablet */
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ================= REFERENCE STYLE HERO LEFT SIDE ================= */
.hero-cursive-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.premium-hero-title-ref {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.premium-hero-title-ref span.teal-text {
    color: var(--primary); /* Signature Electric Blue */
}

.premium-hero-title-ref span.navy-text {
    color: #0f172a; /* Signature Navy */
}

.hero-ribbon-badge {
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
}

.hero-desc-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569; /* Slate grey body text */
    max-width: 620px;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Feature Grid (4 columns) */
.hero-features-grid-ref {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.hero-feature-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 10px rgba(50,28,241,0.15);
}

.hero-feature-col h5 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-feature-col p {
    font-size: 0.68rem;
    color: #64748b;
    line-height: 1.3;
    font-weight: 500;
}

/* Action Prompt */
.hero-action-prompt {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* Action Buttons */
.hero-action-buttons-ref {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

.hero-btn-ref {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
}

.hero-btn-ref i {
    font-size: 1.75rem;
}

.hero-btn-ref .btn-text-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-btn-ref .btn-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero-btn-ref .btn-val {
    font-size: 1rem;
    font-weight: 700;
}

.call-btn-ref {
    background-color: var(--primary);
    box-shadow: 0 10px 25px rgba(50, 28, 241, 0.2);
}

.call-btn-ref:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(50, 28, 241, 0.3);
}

.wa-btn-ref {
    background-color: #2e7d32;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

.wa-btn-ref:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
}

/* Trust Badges Row */
.hero-trust-badges-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    position: relative;
}

.hero-trust-badge-item i {
    color: var(--primary);
    font-size: 1.05rem;
}

.hero-trust-badge-item:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 14px;
    background-color: #cbd5e1;
    margin-left: 1.25rem;
    display: inline-block;
    vertical-align: middle;
}

.mobile-hero-banner {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .premium-hero-title-ref {
        font-size: 3.8rem;
    }
    .hero-cursive-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .premium-hero-section {
        background: #f8fafc !important; /* Clean premium solid background */
        padding: 0 0 3rem 0 !important; /* Zero top padding so banner sits right below header */
    }
    .hero-overlay {
        display: none !important; /* Hide overlay on mobile since we don't use the background image */
    }
    .premium-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0; /* Remove gap so elements stack tightly */
        width: 100%;
    }
    .premium-hero-content {
        display: none !important; /* Completely hide redundant text on mobile/tablet */
    }
    .mobile-hero-banner {
        display: block !important;
        order: 2 !important;
        width: calc(100% + 3rem) !important; /* Stretch past parent container padding */
        margin-left: -1.5rem !important; /* Pull to exact left edge */
        margin-right: -1.5rem !important; /* Pull to exact right edge */
        margin-top: 0 !important; /* Close gap with header */
        margin-bottom: 2rem !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        overflow: hidden;
    }
    .mobile-hero-banner img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 0 !important;
        max-height: none !important;
    }
    .premium-hero-form-wrapper {
        order: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        
    }
    .premium-enquiry-card {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 24px;
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }
    .hero-trust-badge-item::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .premium-hero-title-ref {
        font-size: 2.8rem;
    }
    .hero-cursive-subtitle {
        font-size: 1.6rem;
    }
    .hero-action-buttons-ref {
        flex-direction: column;
    }
    .hero-btn-ref {
        width: 100%;
    }
}

