/* ============================================================
   DriveKing - Main Stylesheet
   Pure CSS (No Bootstrap, No Tailwind, No external UI libs)
   ============================================================ */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #1a1a2e;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

input,
textarea,
select,
button {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ---- VARIABLES ---- */
:root {
    --orange: #ff6b00;
    --orange-light: #ff9a00;
    --orange-pale: #fff3e8;
    --orange-pale2: #ffe8cc;
    --dark: #1a1a2e;
    --dark2: #16213e;
    --text: #333;
    --text-muted: #666;
    --text-light: #999;
    --border: #e8e8e8;
    --bg: #fff;
    --bg-light: #f8f9fb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .12);
    --shadow-orange: 0 6px 25px rgba(255, 107, 0, .25);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: .28s cubic-bezier(.4, 0, .2, 1);
}

/* ---- TYPOGRAPHY ---- */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    color: var(--text-muted);
}

/* ---- UTILITIES ---- */
.container {
    margin: 0 auto;
    padding: 0 4rem;
}

.section {
    padding: 2rem 0;
}

.bg-light {
    background: var(--bg-light);
}

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

.accent {
    color: var(--orange);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, .35);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .15);
}

.btn-white {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--orange-pale);
}

.btn-lg {
    padding: .85rem 2.2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: .4rem 1rem;
    font-size: .82rem;
}

.btn-full {
    width: 100%;
}

/* ---- SECTION HEADER ---- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange);
    font-size: .8rem;
    font-weight: 700;
    padding: .3rem .85rem;
    border-radius: 50px;
    margin-bottom: .75rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: .6rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.logo-icon {
    color: var(--orange);
    font-size: 1.2rem;
}

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

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

.nav-links a {
    font-weight: 500;
    font-size: .92rem;
    color: var(--text);
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .4rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    padding-top: 70px;
    background: linear-gradient(135deg, #fff9f5 0%, #fff3e8 50%, #ffecd4 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange), transparent);
    top: -150px;
    right: -150px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-light), transparent);
    bottom: -100px;
    left: -100px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--orange-pale);
    color: var(--orange);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    border: 1px solid var(--orange-pale2);
}

.hero-title {
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-image {
    position: relative;
}

.hero-car-wrapper {
    position: relative;
}

.hero-car-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255, 107, 0, .25), transparent);
    filter: blur(20px);
}

.hero-car-svg {
    animation: float 3.5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 0, .15));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.hero-badge-float {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: .6rem 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-badge-float span {
    color: var(--orange);
    font-size: 1rem;
}

.hero-badge-float-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-badge-float-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: -2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ---- HOW IT WORKS ---- */
.hiw-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: center;
}

.hiw-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid #4a4a4a;
}

.hiw-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange-pale2);
    position: absolute;
    top: 1rem;
    right: 1rem;
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--orange-pale);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.hiw-step h3 {
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.hiw-step p {
    font-size: .9rem;
    color: var(--text-muted);
}

.hiw-arrow {
    font-size: 1.75rem;
    color: var(--orange);
    opacity: .4;
    margin-top: 3.5rem;
    flex-shrink: 0;
}

/* ---- CITY SELECTOR BAR (services.php) ---- */
.city-selector-bar-wrap {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 90;
    box-shadow: var(--shadow-sm);
}

.city-selector-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    flex-wrap: wrap;
}

.city-selector-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.city-pills {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.city-pill {
    padding: .38rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1.4;
}

.city-pill:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-pale);
}

.city-pill.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 0, .25);
}

.city-selector-info {
    margin-left: auto;
    font-size: .8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.city-selector-info strong {
    color: var(--orange);
    font-weight: 700;
}

/* Booking modal — city display badge */
.booking-city-display {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--orange-pale);
    border: 1px solid var(--orange-pale2);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 700;
    padding: .25rem .8rem;
    border-radius: 50px;
    margin-top: .5rem;
}

.booking-city-display svg {
    stroke: var(--orange);
}

/* Dashboard — city badge */
.city-badge {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ---- SERVICES GRID ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
    border: 1px solid #4a4a4a;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-pale2);
    border: 1px solid #4a4a4a;
}

.service-icon {
    font-size: 2rem;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}

.service-icon-orange {
    background: var(--orange-pale);
}

.service-icon-blue {
    background: #e8f1ff;
}

.service-icon-purple {
    background: #f0eaff;
}

.service-icon-green {
    background: #e6f8f2;
}

.service-icon-red {
    background: #fff0f0;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .86rem;
    margin-bottom: 1.1rem;
}

.service-link {
    color: var(--orange);
    font-weight: 600;
    font-size: .88rem;
}

.service-link:hover {
    text-decoration: underline;
}

/* ---- CITY SELECTOR BAR (services.php) ---- */
.city-selector-bar-wrap {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 90;
    box-shadow: var(--shadow-sm);
}

.city-selector-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    flex-wrap: wrap;
}

.city-selector-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.city-pills {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.city-pill {
    padding: .38rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1.4;
}

.city-pill:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-pale);
}

.city-pill.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 0, .25);
}

.city-selector-info {
    margin-left: auto;
    font-size: .8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.city-selector-info strong {
    color: var(--orange);
    font-weight: 700;
}

/* Booking modal — city display badge */
.booking-city-display {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--orange-pale);
    border: 1px solid var(--orange-pale2);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 700;
    padding: .25rem .8rem;
    border-radius: 50px;
    margin-top: .5rem;
}

.booking-city-display svg {
    stroke: var(--orange);
}

/* Dashboard — city badge */
.city-badge {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ---- SERVICES 2-COLUMN GRID (services.php) ---- */
.services-page-section {
    background: var(--bg-light);
}

.services-2col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

/* Last card (5th) spans both columns */
.svc-card-wide {
    grid-column: 1 / -1;
}

.svc-card-wide .svc-features-wide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .4rem .75rem;
}

/* Card base */
.svc-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--svc-color), var(--svc-color2));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--svc-color, var(--orange-pale2));
}

/* Card top row: icon + title */
.svc-card-top {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.svc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    flex-shrink: 0;
    background: var(--svc-pale, var(--orange-pale));
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-icon {
    font-size: 1.9rem;
    line-height: 1;
}

.svc-label-wrap {
    flex: 1;
}

.svc-popular-tag {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    padding: .18rem .65rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .4rem;
}

.svc-label-wrap h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .35rem;
}

.svc-short {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Features list */
.svc-features {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin: 0;
}

.svc-features li {
    font-size: .875rem;
    color: var(--text);
    padding-left: 1.35rem;
    position: relative;
}

.svc-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--svc-color, var(--orange));
    font-weight: 700;
}

/* Card footer: price + button */
.svc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.svc-price {
    display: flex;
    flex-direction: column;
}

.svc-price span {
    font-size: .75rem;
    color: var(--text-muted);
}

.svc-price strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--svc-color, var(--orange));
    line-height: 1.2;
}

.svc-price strong span {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--svc-color, var(--orange));
    line-height: 1.2;
}

.svc-price strong small {
    font-size: .75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ---- TESTIMONIALS ---- */
.testimonials-layout {
    display: flex;
    grid-template-columns: 1fr 420px;
    gap: 3.5rem;
    align-items: center;
}

.section-header-left {
    text-align: left;
}

.section-header-left .section-sub {
    margin: 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .48s cubic-bezier(.4, 0, .2, 1);
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

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

.testimonial-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-pale2);
}

.stars {
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: .85rem;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author strong {
    display: block;
    font-size: .88rem;
    color: var(--dark);
}

.testimonial-author span {
    font-size: .78rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    background: #fff;
    color: var(--orange);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.testimonial-btn:hover {
    background: var(--orange);
    color: #fff;
}

.testimonial-dots {
    display: flex;
    gap: .45rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

/* ---- TESTIMONIAL RIGHT IMAGE PANEL ---- */
.testimonials-right {
    position: relative;
}

.testimonials-image-panel {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff3e8, #ffecd4);
    box-shadow: var(--shadow-md);
    aspect-ratio: 420 / 520;
}

.testimonials-svg-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-img-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: .7rem 1.1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .65rem;
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite;
}

.testimonials-img-badge-1 {
    top: 1.25rem;
    left: -1rem;
    animation-delay: 0s;
}

.testimonials-img-badge-2 {
    bottom: 1.5rem;
    right: -1rem;
    animation-delay: -2.1s;
}

.tib-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.testimonials-img-badge strong {
    display: block;
    font-size: .92rem;
    color: var(--dark);
    font-weight: 700;
}

.testimonials-img-badge span {
    font-size: .75rem;
    color: var(--text-muted);
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--dark2), var(--dark));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, .15), transparent);
    top: -100px;
    right: -100px;
}

.cta-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, .1), transparent);
    bottom: -80px;
    left: -80px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-inner h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: .5rem;
}

.cta-inner p {
    color: rgba(255, 255, 255, .7);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, #fff9f5 0%, #ffe8cc 100%);
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.page-hero-sm {
    padding: 6rem 0 3rem;
}

.page-hero-content {
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: .75rem;
}

.page-hero-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--orange);
}

.breadcrumb span {
    color: var(--text-light);
}

/* ---- CONTACT PAGE ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 1px 1.5px 1.5px 1.5px;
    border: 1px solid var(--dark);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--orange-pale2);
}

.contact-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: .1rem;
}

.contact-info-card h4 {
    font-size: .9rem;
    margin-bottom: .25rem;
}

.contact-info-card p,
.contact-info-card a {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-info-card a:hover {
    color: var(--orange);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ---- FORM ELEMENTS ---- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: .72rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--bg-light);
    font-size: .9rem;
    color: var(--dark);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, .1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-msg {
    padding: .7rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    font-weight: 500;
    margin-bottom: .75rem;
    display: none;
}

.form-msg.success {
    background: #e6f8f2;
    color: #0d9f6e;
    border: 1px solid #b3e6d3;
    display: block;
}

.form-msg.error {
    background: #fff0f0;
    color: #e53935;
    border: 1px solid #ffcdd2;
    display: block;
}

/* ---- MODAL ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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

.modal {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: translateY(24px) scale(.97);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
}

.modal-lg {
    max-width: 640px;
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--orange);
    color: #fff;
}

.modal-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.75rem;
    background: var(--bg-light);
    border-radius: 50px;
    padding: .25rem;
}

.modal-tab {
    flex: 1;
    padding: .55rem 1rem;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    background: transparent;
}

.modal-tab.active {
    background: #fff;
    color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.modal-body {
    display: none;
}

.modal-body.active {
    display: block;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: .3rem;
}

.modal-header p {
    font-size: .9rem;
}

.modal-header-booking {
    margin-bottom: 1.75rem;
}

.modal-header-booking h2 {
    font-size: 1.4rem;
    margin-bottom: .3rem;
}

.modal-header-booking p {
    font-size: .9rem;
}

.modal-switch {
    text-align: center;
    font-size: .85rem;
    margin-top: 1.25rem;
    color: var(--text-muted);
}

.modal-switch a {
    color: var(--orange);
    font-weight: 600;
}

/* ---- DASHBOARD ---- */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card-icon {
    font-size: 2rem;
}

.stat-card-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-card-label {
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: .2rem;
}

.stat-total {
    border-left: 4px solid var(--orange);
}

.stat-pending {
    border-left: 4px solid #f59e0b;
}

.stat-confirmed {
    border-left: 4px solid #10b981;
}

.stat-completed {
    border-left: 4px solid #6366f1;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.table-wrapper {
    overflow-x: auto;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.bookings-table th {
    text-align: left;
    padding: .75rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.bookings-table td {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.bookings-table tr:last-child td {
    border-bottom: none;
}

.bookings-table tr:hover td {
    background: var(--bg-light);
}

.service-badge {
    display: inline-block;
    padding: .25rem .7rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: capitalize;
}

.service-badge-hourly {
    background: var(--orange-pale);
    color: var(--orange);
}

.service-badge-daily {
    background: #e8f1ff;
    color: #1a73e8;
}

.service-badge-night {
    background: #f0eaff;
    color: #6f42c1;
}

.service-badge-outstation {
    background: #e6f8f2;
    color: #0d9f6e;
}

.service-badge-permanent {
    background: #fff0f0;
    color: #e53935;
}

.status-badge {
    display: inline-block;
    padding: .25rem .7rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
}

.status-pending {
    background: #fff8e6;
    color: #b45309;
}

.status-confirmed {
    background: #e6f8f2;
    color: #0d9f6e;
}

.status-completed {
    background: #ede9fe;
    color: #6366f1;
}

.status-cancelled {
    background: #fff0f0;
    color: #e53935;
}

.profile-card {
    text-align: center;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card h3 {
    font-size: 1.1rem;
    margin-bottom: .25rem;
}

.profile-email {
    font-size: .85rem;
    margin-bottom: .5rem;
}

.profile-meta span {
    font-size: .78rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: .2rem .6rem;
    border-radius: 50px;
}

.profile-card hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.25rem 0;
}

.profile-stats-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.profile-stats-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
}

.profile-stats-list span {
    color: var(--text-muted);
}

.profile-stats-list strong {
    color: var(--dark);
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
    font-size: .9rem;
}

.booking-login-notice {
    background: var(--orange-pale);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    color: var(--orange);
    font-weight: 500;
}

.booking-login-notice a {
    color: var(--dark);
    font-weight: 700;
    text-decoration: underline;
}

/* ---- FLOATING SIDE MENU ---- */
.side-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.side-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: grey;
    border: 1px solid var(--border);
    padding: .7rem 1rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--dark);
    transition: all var(--transition);
    overflow: hidden;
    max-width: 44px;
    border-radius: 12px 0 0 12px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.side-link:hover {
    background: var(--orange);
    color: #fff;
    max-width: 160px;
}

.side-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.side-link span {
    opacity: 0;
    transition: opacity var(--transition);
    font-size: 0;
}

.side-link:hover span {
    opacity: 1;
    font-size: .78rem;
}

/* ---- FAB ---- */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    box-shadow: var(--shadow-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.fab-main:hover {
    transform: scale(1.1) rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 65px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    transform: translateY(10px);
}

.fab-container.open .fab-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-container.open .fab-main {
    transform: rotate(45deg);
}

.fab-item {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.fab-item:hover {
    transform: scale(1.12);
}

.fab-whatsapp {
    background: #25d366;
    color: #fff;
}

.fab-call {
    background: var(--dark);
    color: #fff;
}

.fab-book {
    background: var(--orange);
    color: #fff;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-3px);
}

/* ---- FOOTER ---- */
.footer {
    background: #111827;
    color: rgba(255, 255, 255, .75);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: .88rem;
    line-height: 1.7;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: .75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 600;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: .65rem;
}

.footer-col ul a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    transition: color var(--transition);
}

.footer-col ul a:hover,
.footer-col ul li:not(:has(a)):hover {
    color: var(--orange);
}

.footer-col ul li:not(:has(a)) {
    font-size: .88rem;
}

.footer-bottom {
    background: #000;
    padding: 1.1rem 0;
}

.footer-bottom p {
    font-size: .82rem;
    color: white;
    text-align: center;
}

/* ---- ANIMATE ON SCROLL ---- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        gap: .5rem;
        box-shadow: var(--shadow-md);
        z-index: 999;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-image {
        display: none;
    }

    .hiw-steps {
        flex-direction: column;
        align-items: center;
    }

    .hiw-arrow {
        transform: rotate(90deg);
        margin: .5rem 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-full-card {
        flex-direction: column;
    }

    .service-full-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .side-menu {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-right {
        display: none;
    }

    .section-header-left {
        text-align: center;
    }

    .section-header-left .section-sub {
        margin: 0 auto;
    }

    .testimonial-controls {
        justify-content: center;
    }

    .testimonials-img-badge-1,
    .testimonials-img-badge-2 {
        display: none;
    }

    .testimonial-pair {
        grid-template-columns: 1fr;
        gap: .85rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

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

    .services-2col-grid {
        grid-template-columns: 1fr;
    }

    .svc-card-wide {
        grid-column: 1;
    }

    .svc-card-wide .svc-features-wide {
        grid-template-columns: 1fr;
    }

    .svc-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: .85rem;
    }

    .svc-card-footer .btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .services-2col-grid {
        grid-template-columns: 1fr;
    }

    .svc-card-wide {
        grid-column: 1;
    }

    .svc-card-wide .svc-features-wide {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sm_msg {
    font-weight: 400;
    color: var(--muted, #888);
    font-size: .78rem;
}