* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame: #2e1fa3;
    --flame-deep: #B84D00;
    --flame-bright: #FF7A30;
    --flame-soft: rgb(7, 26, 159);
    --gold: #F0B429;
    --gold-soft: rgba(240, 180, 41, 0.1);
    --ink: #0D0A07;
    --ink2: #1E1610;
    --ink3: #2A1F17;
    --stone: #7A6A5A;
    --stone-light: #9E8E7E;
    --mist: #F8F4F0;
    --mist-dark: #EBE5DE;
    --white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --card-rad: 22px;
    --card-rad-sm: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 28px 80px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--mist);
    color: var(--ink);
    overflow-x: hidden;
}

/* Container Utility */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Section Headers */
.sec-header {
    text-align: center;
    margin-bottom: 48px;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--flame-soft);
    color: var(--flame);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 12px;
}

.sec-title span {
    color: var(--flame);
}

.sec-desc {
    color: var(--stone);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--flame);
}

.toast.show {
    transform: translateX(0);
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--error); }
.toast.warning { border-left-color: var(--warning); }

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--ink);
}
::-webkit-scrollbar-thumb {
    background: var(--flame);
    border-radius: 10px;
}

/* Page Loader */
#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader-logo span {
    color: var(--flame);
}
.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.loader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--flame), var(--gold));
    border-radius: 3px;
    animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Cursor Glow - Hidden on mobile */
.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232, 101, 26, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: 0.08s linear;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* Topbar */
.topbar {
    background: linear-gradient(90deg, #000000, #14001f, #6a00ff, #14001f, #000000);
    background-size: 300%;
    animation: topbarShift 6s linear infinite;
    padding: 9px 0;
    overflow: hidden;
}
@keyframes topbarShift {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
    width: max-content;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 1.8rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    gap: 7px;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 0.65rem;
        padding: 0 1rem;
    }
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 10, 7, 0.96);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(232, 101, 26, 0.18);
    padding: 13px 0;
    transition: box-shadow 0.3s;
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}
.logo-img img {
    height: 50px;
    width: auto;
}
.logo-text .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
}
.logo-text .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.35);
}
.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    padding: 9px 17px;
    border-radius: 40px;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--white);
    background: rgba(232, 101, 26, 0.15);
}
.nav-cta-btn {
    background: linear-gradient(135deg, var(--flame), var(--flame-deep)) !important;
    color: white !important;
    padding: 9px 22px !important;
    box-shadow: 0 4px 20px rgba(232, 101, 26, 0.4);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 3px;
    transition: 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 10, 7, 0.97);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(232, 101, 26, 0.18);
    z-index: 900;
    padding: 10px 0 20px;
}
.mobile-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
    font-weight: 600;
    transition: 0.25s;
}
.mob-nav-item.active, .mob-nav-item:hover {
    color: var(--flame);
}


nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff; /* WHITE */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb; /* light border */
    padding: 13px 0;
    transition: box-shadow 0.3s;
}

/* logo text */
.logo-text .logo-main {
    color: #1a1a1a; /* BLACK */
}

.logo-text .logo-sub {
    color: #777; /* grey */
}

/* nav links */
.nav-links a {
    color: #333; /* DARK TEXT */
}

/* hover */
.nav-links a:hover,
.nav-links a.active {
    color: #000;
    background: rgba(232, 101, 26, 0.1);
}

/* CTA button same (orange) */
.nav-cta-btn {
    background: linear-gradient(135deg, var(--flame), var(--flame-deep)) !important;
    color: white !important;
}

/* hamburger icon black */
.hamburger span {
    background: #1a1a1a;
}

/* MOBILE NAV */
.mobile-nav {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* mobile nav text */
.mob-nav-item {
    color: #666;
}

.mob-nav-item.active,
.mob-nav-item:hover {
    color: var(--flame);
}





/* WhatsApp Float - REMOVED as requested */
/* .wa-float is removed from CSS */

/* ========== HERO SECTION ========== */
.hero-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 36px 5%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 3;
}

/* Slider */
.offer-slider-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 460px;
    background: var(--ink2);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
}
.offer-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}
.offer-slide.active {
    opacity: 1;
    z-index: 2;
}
.offer-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
    z-index: 1;
}
.offer-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 8px;
}
.offer-arrows {
    position: absolute;
    bottom: 22px;
    right: 22px;
    z-index: 5;
    display: flex;
    gap: 8px;
}
.offer-arrow {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s;
}
.offer-arrow:hover {
    background: var(--flame);
    border-color: var(--flame);
}

/* Booking Form (Hero) */
.booking-form-card {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
    padding: 26px 22px;
    position: relative;
}
.booking-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--flame), var(--gold), var(--flame));
    background-size: 200%;
    animation: shimmer 3s infinite linear;
    border-radius: 28px 28px 0 0;
}
@keyframes shimmer {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}
.bfc-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ink);
}
.trip-tabs {
    display: flex;
    background: var(--mist);
    border-radius: 12px;
    padding: 4px;
    gap: 2px;
    margin-bottom: 14px;
}
.trip-tab {
    flex: 1;
    padding: 0.38rem 0.2rem;
    text-align: center;
    border-radius: 9px;
    font-size: 0.62rem;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: var(--stone);
    border: none;
    transition: 0.25s;
}
.trip-tab.active {
    background: var(--flame);
    color: #fff;
    box-shadow: 0 4px 14px rgba(232, 101, 26, 0.4);
}
.bfc-label {
    display: block;
    font-size: 0.59rem;
    font-weight: 800;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.bfc-input, .bfc-select {
    width: 100%;
    padding: 0.55rem 0.85rem;
    border: 1.5px solid #EDE8E2;
    border-radius: 12px;
    font-size: 0.82rem;
    font-family: 'Outfit', sans-serif;
    background: #fff;
    outline: none;
    transition: 0.25s;
}
.bfc-input:focus, .bfc-select:focus {
    border-color: var(--flame);
    box-shadow: 0 0 0 3px rgba(232, 101, 26, 0.1);
}
.bfc-group {
    margin-bottom: 12px;
}
.car-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.car-type-opt {
    border: 1.5px solid #EDE8E2;
    border-radius: 11px;
    padding: 0.42rem 0.2rem;
    cursor: pointer;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--stone);
    background: #fff;
    transition: 0.25s;
}
.car-type-opt.selected {
    border-color: var(--flame);
    background: linear-gradient(135deg, rgba(232, 101, 26, 0.08), rgba(240, 180, 41, 0.08));
    color: var(--flame-deep);
}
.bfc-submit {
    width: 100%;
    padding: 0.78rem;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: 0.3s;
    margin-top: 6px;
}
.bfc-submit-dark {
    background: var(--ink2);
    color: #fff;
}
.bfc-submit-green {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}
.bfc-submit:hover {
    transform: translateY(-2px);
}
.bfc-note {
    font-size: 0.65rem;
    text-align: center;
    margin-top: 12px;
    color: var(--stone);
}

/* Stats Strip */
.stats-strip {
    background: linear-gradient(135deg, var(--flame-deep), var(--flame), var(--flame-bright));
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: shine 8s infinite;
}
@keyframes shine {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(100%) skewX(-20deg); }
}
.stats-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}
.strip-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}
.strip-stat:last-child {
    border-right: none;
}
.strip-stat:hover {
    transform: translateY(-5px);
}
.strip-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    transition: all 0.3s ease;
}
.strip-stat:hover .strip-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}
.strip-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 900;
}
.strip-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Services Section */
.qs-strip {
    padding: 70px 5%;
    background: linear-gradient(180deg, #ffffff, #fafafa);
}

.qs-sec-label {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.qs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.qs-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 30px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

/* subtle glow effect */
.qs-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,120,0,0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

.qs-card:hover::before {
    opacity: 1;
}

.qs-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--flame);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.qs-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--flame-soft), var(--gold-soft));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--flame);
    transition: all 0.3s ease;
}

.qs-card:hover .qs-icon {
    background: linear-gradient(135deg, var(--flame), var(--gold));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.qs-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.3px;
}

/* 📱 Mobile Optimization */
@media (max-width: 600px) {
    .qs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .qs-card {
        padding: 22px 12px;
    }

    .qs-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .qs-name {
        font-size: 0.8rem;
    }
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.fleet-card {
    background: white;
    border-radius: var(--card-rad);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}
.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.fleet-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: var(--ink2);
}
.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.fleet-card:hover .fleet-img {
    transform: scale(1.08);
}
.fleet-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(13, 10, 7, 0.85);
    backdrop-filter: blur(8px);
    color: var(--flame-bright);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
}
.fleet-body {
    padding: 1.6rem;
}
.fleet-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--ink);
}
.fleet-price {
    color: var(--flame);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 8px 0;
}
.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
}
.fleet-feature {
    background: var(--mist);
    padding: 0.25rem 0.85rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--stone);
}
.fleet-book {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--flame), var(--flame-deep));
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fleet-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 101, 26, 0.4);
}

/* Services Section (Dark Theme) */
.services-section {
    background: var(--ink);
    position: relative;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--flame), transparent);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.svc-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--card-rad);
    padding: 2rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}
.svc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 101, 26, 0.4);
    background: rgba(255, 255, 255, 0.05);
}
.svc-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(232, 101, 26, 0.15), rgba(240, 180, 41, 0.1));
    border-radius: 24px;
    display: flex;
    margin: 0 auto 1.2rem;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--flame);
    transition: all 0.3s ease;
}
.svc-card:hover .svc-icon-wrap {
    background: linear-gradient(135deg, var(--flame), var(--gold));
    color: white;
    transform: scale(1.05);
}
.svc-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.svc-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Why Us Section */
.why-section {
    background: var(--mist);
    padding: 80px 0;
}
.why-section .sec-title {
    color: var(--ink);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.why-card {
    background: var(--white);
    border-radius: var(--card-rad);
    padding: 2rem 1.8rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--flame);
    box-shadow: var(--shadow-lg);
}
.why-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--flame-soft), var(--gold-soft));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}
.why-card:hover .why-icon-wrap {
    background: linear-gradient(135deg, var(--flame), var(--gold));
    transform: scale(1.05);
}
.why-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.5;
}

/* Dark card */
.why-card {
    background: #1a1a1a; /* DARK */
    color: #ffffff; /* default text white */
}

/* Heading white */
.why-card h4 {
    color: #ffffff;
}

/* Paragraph light white */
.why-card p {
    color: rgba(255, 255, 255, 0.7);
}






/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, var(--flame-deep), var(--flame), var(--flame-bright));
    padding: 60px 48px;
    text-align: center;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.cta-band h2 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}
.btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}
.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
.btn-primary {
    background: linear-gradient(135deg, var(--flame), var(--flame-deep));
    color: #fff;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 101, 26, 0.3);
}
.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.btn-outline-white:hover {
    border-color: var(--flame);
    background: rgba(232, 101, 26, 0.1);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    z-index: 5000;
    display: none;
    place-items: center;
    padding: 20px;
}
.modal-overlay.open {
    display: grid;
}
.modal-box {
    background: white;
    border-radius: 32px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: var(--mist);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}
.modal-close:hover {
    background: var(--error);
    color: white;
}
.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.modal-service {
    background: linear-gradient(135deg, var(--flame-soft), var(--gold-soft));
    color: var(--flame-deep);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}
.form-input {
    border-radius: 14px;
    border: 1.5px solid #EDE8E2;
    padding: 12px 16px;
    width: 100%;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
    transition: 0.25s;
}
.form-input:focus {
    border-color: var(--flame);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 101, 26, 0.1);
}
.btn-wa-send {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-wa-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Contact Page */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 36px;
    padding: 52px;
    box-shadow: var(--shadow-lg);
}
.contact-info-card {
    background: linear-gradient(135deg, var(--ink), var(--ink2));
    border-radius: 28px;
    padding: 40px;
}
.contact-info-card h3 {
    color: white;
    margin-bottom: 28px;
    font-size: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}
.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 101, 26, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--flame);
    font-size: 1.3rem;
    transition: 0.3s;
}
.contact-item:hover .contact-icon {
    background: var(--flame);
    color: white;
}
.map-box {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
}
.map-box iframe {
    transition: 0.3s;
}
.map-box iframe:hover {
    transform: scale(1.02);
}

/* Pricing Table */
.pricing-wrapper {
    background: white;
    border-radius: 28px;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}
.pricing-table thead tr {
    background: linear-gradient(135deg, var(--ink), var(--ink2));
    color: white;
}
.pricing-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
}
.pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #EDE8E2;
}
.pricing-table tbody tr:hover {
    background: var(--flame-soft);
}
.tbl-badge {
    background: var(--flame);
    color: white;
    border: none;
    padding: 6px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.tbl-badge:hover {
    background: var(--flame-deep);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--ink);
    padding: 60px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img {
    height: 55px;
    width: auto;
}
.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 18px 0 20px;
    line-height: 1.5;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--flame);
    color: white;
    transform: translateY(-3px);
}
.footer-heading {
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.25s;
}
.footer-links a:hover {
    color: var(--flame);
    padding-left: 5px;
}
.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Page Hero (Inner Pages) */
.page-hero {
    background: linear-gradient(135deg, var(--ink), var(--ink2));
    padding: 60px 5%;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
}
.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== COMPLETE MOBILE RESPONSIVE ========== */

/* Large Tablet (1024px - 1200px) */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr 380px;
    }
    .footer-grid {
        gap: 30px;
    }
    section {
        padding: 60px 0;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 30px 4%;
    }
    .offer-slider-wrap {
        min-height: 380px;
    }
    .offer-slide {
        padding: 25px;
    }
    .booking-form-card {
        padding: 20px 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .contact-grid-modern {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .stats-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .strip-stat {
        justify-content: center;
        padding: 20px 15px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .sec-header {
        margin-bottom: 35px;
    }
    section {
        padding: 50px 0;
    }
    .why-section {
        padding: 60px 0;
    }
    .qs-strip {
        padding: 50px 0;
    }
}

/* Mobile Landscape (480px - 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 10, 7, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }
    .nav-links.show {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .mobile-nav {
        display: block;
    }
    body {
        padding-bottom: 72px;
    }
    
    /* Hero Adjustments */
    .hero-inner {
        padding: 20px 4%;
        gap: 20px;
    }
    .offer-slider-wrap {
        min-height: 320px;
        border-radius: 20px;
    }
    .offer-slide {
        padding: 20px;
    }
    .offer-title {
        font-size: 1.5rem;
    }
    .offer-sub {
        font-size: 0.8rem;
    }
    .offer-arrows {
        bottom: 15px;
        right: 15px;
    }
    .offer-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    /* Booking Form */
    .booking-form-card {
        padding: 18px 15px;
        border-radius: 20px;
    }
    .bfc-head h3 {
        font-size: 1.3rem;
    }
    .trip-tab {
        font-size: 0.55rem;
        padding: 0.3rem 0.1rem;
    }
    .bfc-label {
        font-size: 0.55rem;
    }
    .bfc-input, .bfc-select {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
    }
    .car-type-opt {
        font-size: 0.55rem;
        padding: 0.35rem 0.1rem;
    }
    .bfc-submit {
        padding: 0.65rem;
        font-size: 0.75rem;
    }
    
    /* Stats Strip */
    .strip-stat {
        padding: 15px 10px;
        gap: 10px;
    }
    .strip-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .strip-num {
        font-size: 1.3rem;
    }
    .strip-label {
        font-size: 0.55rem;
    }
    
    /* Quick Services */
    .qs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .qs-card {
        padding: 20px 12px;
    }
    .qs-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    .qs-name {
        font-size: 0.75rem;
    }
    
    /* Fleet Section */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fleet-img-wrap {
        height: 200px;
    }
    .fleet-body {
        padding: 1.2rem;
    }
    .fleet-name {
        font-size: 1.2rem;
    }
    .fleet-price {
        font-size: 1rem;
    }
    .fleet-feature {
        font-size: 0.65rem;
    }
    .fleet-book {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .svc-card {
        padding: 1.5rem 1.2rem;
    }
    .svc-icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .svc-card h3 {
        font-size: 1.1rem;
    }
    .svc-card p {
        font-size: 0.8rem;
    }
    
    /* Why Us Section */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-card {
        padding: 1.5rem 1.2rem;
    }
    .why-icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    .why-card h4 {
        font-size: 1rem;
    }
    .why-card p {
        font-size: 0.8rem;
    }
    
    /* CTA Section */
    .cta-band {
        padding: 35px 20px;
        border-radius: 25px;
    }
    .cta-band h2 {
        font-size: 1.5rem;
    }
    .cta-band p {
        font-size: 0.85rem;
    }
    .btn-wa, .btn-primary {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    /* Contact Page */
    .contact-grid-modern {
        padding: 20px;
        border-radius: 25px;
    }
    .contact-info-card {
        padding: 25px;
    }
    .contact-info-card h3 {
        font-size: 1.3rem;
    }
    .contact-item {
        gap: 12px;
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Modal */
    .modal-box {
        padding: 30px 20px;
    }
    .modal-title {
        font-size: 1.5rem;
    }
    .modal-service {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .form-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    /* Section Headers */
    .sec-header {
        margin-bottom: 30px;
    }
    .sec-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .sec-title {
        font-size: 1.6rem;
    }
    .sec-desc {
        font-size: 0.85rem;
    }
    
    /* Section Padding */
    section {
        padding: 40px 0;
    }
    .qs-strip {
        padding: 40px 0;
    }
    .why-section {
        padding: 50px 0;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-heading {
        font-size: 0.75rem;
    }
    .footer-links a {
        font-size: 0.8rem;
    }
    .footer-copy {
        font-size: 0.7rem;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero-inner {
        padding: 15px 3%;
    }
    .offer-slider-wrap {
        min-height: 260px;
    }
    .offer-slide {
        padding: 15px;
    }
    .offer-title {
        font-size: 1.2rem;
    }
    .offer-sub {
        font-size: 0.7rem;
    }
    
    /* Booking Form */
    .booking-form-card {
        padding: 15px 12px;
    }
    .bfc-head h3 {
        font-size: 1.1rem;
    }
    .trip-tab {
        font-size: 0.5rem;
        padding: 0.25rem 0.1rem;
    }
    .car-type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .car-type-opt {
        font-size: 0.5rem;
        padding: 0.3rem 0.1rem;
    }
    
    /* Stats Strip */
    .stats-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .strip-stat {
        padding: 12px 8px;
        gap: 8px;
    }
    .strip-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .strip-num {
        font-size: 1rem;
    }
    .strip-label {
        font-size: 0.5rem;
    }
    
    /* Quick Services */
    .qs-grid {
        gap: 10px;
    }
    .qs-card {
        padding: 15px 8px;
    }
    .qs-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .qs-name {
        font-size: 0.7rem;
    }
    
    /* Fleet */
    .fleet-img-wrap {
        height: 180px;
    }
    .fleet-body {
        padding: 1rem;
    }
    .fleet-name {
        font-size: 1rem;
    }
    .fleet-price {
        font-size: 0.9rem;
    }
    .fleet-features {
        gap: 5px;
    }
    .fleet-feature {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Services */
    .svc-icon-wrap {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    .svc-card h3 {
        font-size: 1rem;
    }
    .svc-card p {
        font-size: 0.75rem;
    }
    
    /* Why Us */
    .why-icon-wrap {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    .why-card h4 {
        font-size: 0.95rem;
    }
    .why-card p {
        font-size: 0.75rem;
    }
    
    /* CTA */
    .cta-band {
        padding: 25px 15px;
    }
    .cta-band h2 {
        font-size: 1.2rem;
    }
    .cta-band p {
        font-size: 0.75rem;
    }
    .btn-wa, .btn-primary {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
    
    /* Contact */
  /* Desktop default (already fine) */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Tablet */
@media (max-width: 992px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        padding: 30px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px !important;
        border-radius: 20px !important;
    }

    /* form inputs */
    .form-input {
        font-size: 0.9rem;
        padding: 10px;
    }

    /* button */
    .btn-wa-send {
        font-size: 0.9rem;
        padding: 12px;
    }

    /* right card */
    .contact-info-card {
        padding: 20px !important;
        border-radius: 15px;
    }

    .contact-info-card h3 {
        font-size: 1.2rem;
    }

    /* contact item */
    .contact-item {
        gap: 10px;
        margin-bottom: 15px;
    }

    /* icon */
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem;
    }

    /* map */
    .map-box iframe {
        height: 120px;
    }
}
.contact-grid-modern {
    background: white;
    border-radius: 30px;
    padding: 50px;
}
    /* Modal */
    .modal-box {
        padding: 25px 15px;
    }
    .modal-title {
        font-size: 1.3rem;
    }
    .form-input {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    /* Section Headers */
    .sec-title {
        font-size: 1.4rem;
    }
    .sec-desc {
        font-size: 0.75rem;
    }
    .sec-tag {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    /* Section Padding */
    section {
        padding: 30px 0;
    }
    .qs-strip {
        padding: 30px 0;
    }
    .why-section {
        padding: 40px 0;
    }
    
    /* Container */
    .container {
        padding: 0 3%;
    }
}

/* Small Phones (up to 360px) */
@media (max-width: 360px) {
    .offer-title {
        font-size: 1rem;
    }
    .trip-tab {
        font-size: 0.45rem;
    }
    .bfc-label {
        font-size: 0.5rem;
    }
    .qs-card {
        padding: 12px 6px;
    }
    .qs-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    .qs-name {
        font-size: 0.65rem;
    }
    .strip-stat {
        padding: 10px 5px;
    }
    .strip-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    .strip-num {
        font-size: 0.9rem;
    }
    .cta-band h2 {
        font-size: 1rem;
    }
}

/* Services Light Variant (for services page) */
.services-grid.svc-light .svc-card {
    background: #f3f4f6; /* light silver */
    border: 1px solid #e2e2e2;
}

/* Heading dark */
.services-grid.svc-light .svc-card h3 {
    color: #1a1a1a; /* dark */
}

/* Paragraph dark grey */
.services-grid.svc-light .svc-card p {
    color: #555;
}

/* Icon dark orange */
.services-grid.svc-light .svc-icon-wrap {
    background: rgba(232, 101, 26, 0.15);
    color: #e8651a; /* dark orange */
}

/* Hover */
.services-grid.svc-light .svc-card:hover {
    background: #ffffff;
    border-color: var(--flame);
    box-shadow: var(--shadow-lg);
}


/* icon wrap improved */
/* Card */
.svc-card {
    background: #f3f4f6;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

/* BIG IMAGE */
.svc-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Hover zoom */
.svc-card:hover .svc-img img {
    transform: scale(1.1);
}

/* Content */
.svc-content {
    padding: 18px;
    text-align: center;
}

.svc-card h3 {
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 8px;
}

.svc-card p {
    color: #555;
    font-size: 0.9rem;
}

/* Hover effect */
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}




.select2-container--default .select2-selection--single {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.select2-selection__rendered {
    line-height: 45px !important;
}

.select2-selection__arrow {
    height: 45px !important;
}











