/* ============================================
   DOUBLE S TRANSPORT - PREMIUM WEBSITE STYLES
   ============================================ */

:root {
    --primary-color: #0A0A0A;
    --secondary-color: #FFFFFF;
    --accent-color: #C0C0C0;
    --accent-light: #E8E8E8;
    --accent-dark: #8f8f8f;
    --text-dark: #171717;
    --text-gray: #666666;
    --text-light-gray: #8a8a8a;
    --charcoal: #202020;
    --light-gray: #F7F7F7;
    --border-color: #E7E7E7;
    --whatsapp: #25D366;
    --transition: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--secondary-color);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

h3 {
    font-size: 1.55rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-kicker,
.eyebrow,
.vehicle-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 14px;
}

.divider {
    width: 86px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-dark), transparent);
    margin: 28px auto 0;
}

.section-subtitle {
    margin-top: 18px;
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.8px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: rgba(255,255,255,0.7);
}

.btn-secondary:hover {
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.booking .btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.booking .btn-primary:hover {
    background: var(--charcoal);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10,10,10,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-container {
    width: min(1240px, calc(100% - 42px));
    margin: 0 auto;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--secondary-color);
    min-width: 210px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 3px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text span {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-text small {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.68rem;
    font-weight: 800;
    margin-top: 7px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.call-btn {
    color: var(--primary-color);
    background: var(--accent-color);
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.call-btn:hover {
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    margin: 6px 0;
    transition: var(--transition);
}

/* Hero */
.hero {
    min-height: calc(100vh - 86px);
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.68)),
        url("images/hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 55%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.72), rgba(10,10,10,0.36), rgba(10,10,10,0.72));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1050px, calc(100% - 48px));
    padding: 90px 0;
}

.hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

.hero-subtitle {
    color: rgba(255,255,255,0.86);
    font-size: clamp(1rem, 2vw, 1.35rem);
    max-width: 900px;
    margin: 0 auto 42px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-bottom-strip {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    width: min(780px, calc(100% - 48px));
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(18px);
    border-radius: 8px;
    overflow: hidden;
}

.hero-bottom-strip div {
    padding: 18px 20px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-bottom-strip div:last-child {
    border-right: none;
}

.hero-bottom-strip strong {
    display: block;
    color: white;
    font-size: 1.05rem;
}

.hero-bottom-strip span {
    color: rgba(255,255,255,0.68);
    font-size: 0.82rem;
}

/* Services */
.services,
.fleet,
.why-choose-us,
.booking,
.contact {
    padding: 128px 0;
}

.services {
    background: var(--secondary-color);
}

.services-grid,
.features-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.service-card,
.feature-card,
.contact-card,
.stat-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 42px 34px;
    transition: var(--transition);
    box-shadow: 0 10px 34px rgba(0,0,0,0.04);
}

.service-card:hover,
.feature-card:hover,
.contact-card:hover {
    transform: translateY(-9px);
    border-color: var(--accent-color);
    box-shadow: 0 22px 60px rgba(0,0,0,0.11);
}

.service-icon,
.feature-icon,
.contact-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.6rem;
    margin-bottom: 26px;
}

.service-card h3,
.feature-card h3,
.contact-card h3 {
    margin-bottom: 14px;
}

/* Fleet */
.fleet {
    background: linear-gradient(135deg, var(--light-gray), white);
}

.fleet-grid {
    display: grid;
    gap: 58px;
}

.vehicle-card {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 48px;
    align-items: stretch;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,0.08);
}

.vehicle-card-reverse {
    grid-template-columns: 0.94fr 1.06fr;
}

.vehicle-card-reverse .vehicle-image-wrap {
    order: 2;
}

.vehicle-image-wrap {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--primary-color);
}

.vehicle-image {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.045);
}

.fleet-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(10,10,10,0.78);
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
}

.vehicle-content {
    padding: 58px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicle-content h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 18px;
}

.features-list {
    list-style: none;
    margin-top: 28px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
    font-weight: 600;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--accent-dark);
    margin-top: 5px;
}

/* Why */
.why-choose-us {
    background: white;
}

/* Stats */
.statistics {
    padding: 104px 0;
    background:
        linear-gradient(rgba(10,10,10,0.92), rgba(10,10,10,0.92)),
        url("images/suburban.jpg") center/cover fixed no-repeat;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    background: rgba(255,255,255,0.075);
    border-color: rgba(255,255,255,0.13);
    backdrop-filter: blur(18px);
}

.stat-line {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.stat-number,
.stat-suffix {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 3.4rem;
    font-weight: 800;
}

.stat-suffix {
    color: var(--accent-color);
    font-size: 2rem;
}

.stat-card h3 {
    color: white;
    margin: 10px 0;
}

.stat-card p {
    color: rgba(255,255,255,0.68);
}

/* Booking */
.booking {
    background: var(--secondary-color);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 34px;
    align-items: stretch;
}

.booking-form,
.booking-side {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 44px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.08);
    background: white;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.form-group label {
    font-weight: 800;
    font-size: 0.86rem;
    margin-bottom: 9px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font: inherit;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    padding: 14px 16px;
    outline: none;
    transition: var(--transition);
    background: #fcfcfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 4px rgba(192,192,192,0.18);
    background: white;
}

textarea {
    min-height: 128px;
    resize: vertical;
}

.full-width {
    width: 100%;
}

.booking-logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    margin-bottom: 26px;
}

.booking-side {
    background: var(--primary-color);
}

.booking-side h3 {
    color: white;
    margin-bottom: 12px;
}

.booking-side p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 25px;
}

.side-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.side-link i {
    color: var(--accent-color);
}

/* Contact */
.contact {
    background: linear-gradient(135deg, var(--light-gray), white);
}

.contact-card a:hover {
    color: var(--accent-dark);
}

/* Final CTA */
.final-cta {
    padding: 90px 0;
    text-align: center;
    background: var(--primary-color);
}

.final-cta h2 {
    color: white;
    margin-bottom: 14px;
}

.final-cta p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
}

/* Footer */
.footer {
    background: #050505;
    padding: 86px 0 28px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 44px;
}

.footer-logo {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
}

.footer h4 {
    color: white;
    margin-bottom: 18px;
}

.footer p,
.footer li,
.footer a {
    color: rgba(255,255,255,0.66);
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.09);
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
}

/* Floating WhatsApp */
.whatsapp-button {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: white;
    display: grid;
    place-items: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 14px 38px rgba(37, 211, 102, 0.38);
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Animation helpers */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInRight {
    from { transform: translateX(110%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(110%); opacity: 0; }
}

/* Responsive */
@media (max-width: 980px) {
    .nav-menu,
    .call-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10,10,10,0.98);
        padding: 24px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .services-grid,
    .features-grid,
    .contact-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-card,
    .vehicle-card-reverse,
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .vehicle-card-reverse .vehicle-image-wrap {
        order: initial;
    }

    .hero-bottom-strip {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: -96px auto 28px;
        z-index: 3;
    }
}

@media (max-width: 640px) {
    .container,
    .navbar-container {
        width: min(100% - 32px, 1200px);
    }

    .navbar-container {
        height: 78px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-text span {
        font-size: 1.25rem;
    }

    .nav-menu.active {
        top: 78px;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding: 70px 0 120px;
    }

    .hero-bottom-strip {
        grid-template-columns: 1fr;
        margin-top: -96px;
    }

    .hero-bottom-strip div {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .services,
    .fleet,
    .why-choose-us,
    .booking,
    .contact {
        padding: 86px 0;
    }

    .services-grid,
    .features-grid,
    .contact-grid,
    .stats-grid,
    .footer-content,
    .form-row {
        grid-template-columns: 1fr;
    }

    .vehicle-image-wrap,
    .vehicle-image {
        min-height: 310px;
    }

    .vehicle-content,
    .booking-form,
    .booking-side {
        padding: 32px 24px;
    }

    .btn {
        width: 100%;
    }

    .whatsapp-button {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
    }
}
/* ============================================
   CLEAN FOOTER UPDATE
   ============================================ */

.final-cta {
    background: #050505;
    color: #ffffff;
    text-align: center;
    padding: 90px 20px;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 18px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: 1rem;
    line-height: 1.8;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 16px 38px;
}

.btn-outline:hover {
    background: #ffffff;
    color: #050505;
}

.footer {
    background: #030303;
    color: #ffffff;
    padding: 80px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 55px;
    align-items: flex-start;
}

.footer-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 18px;
    background: #ffffff;
}

.footer-brand h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.68);
    max-width: 310px;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-column li {
    margin-bottom: 11px;
    line-height: 1.5;
}

.footer-column a,
.footer-column li {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-column a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 55px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin: 0;
}

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

@media (max-width: 600px) {
    .final-cta h2 {
        font-size: 2.2rem;
    }

    .footer {
        padding: 60px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}
/* ============================================
   CONTACT SECTION GRID FIX
   4 ACROSS DESKTOP / 2X2 TABLET / 1 COLUMN MOBILE
   ============================================ */

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
}

.contact-card {
    width: 100%;
    min-height: 210px;
    padding: 38px 28px;
}

.contact-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    font-size: 1.35rem;
}

/* Tablet: 2x2 layout */
@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        gap: 24px;
    }
}

/* Mobile: 1 card per row */
@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .contact-card {
        min-height: auto;
        padding: 34px 24px;
    }
}
/* ============================================
   WHY CHOOSE US GRID FIX
   Your Journey, Our Priority
   4 ACROSS DESKTOP / 2X2 TABLET / 1 COLUMN MOBILE
   ============================================ */

.why-choose-us .features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
}

.why-choose-us .feature-card {
    width: 100%;
    min-height: 245px;
    padding: 38px 26px;
}

.why-choose-us .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.why-choose-us .feature-card h3 {
    font-size: 1.22rem;
    margin-bottom: 12px;
}

.why-choose-us .feature-card p {
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Tablet: 2x2 layout */
@media (max-width: 1000px) {
    .why-choose-us .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        gap: 24px;
    }
}

/* Mobile: 1 card per row */
@media (max-width: 600px) {
    .why-choose-us .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .why-choose-us .feature-card {
        min-height: auto;
        padding: 34px 24px;
    }
}
/* ============================================
   PREMIUM ISLAND INTRO ANIMATION
   ============================================ */

body.intro-lock {
    overflow: hidden;
}

.site-intro {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08), transparent 35%),
        linear-gradient(135deg, #020202 0%, #080808 45%, #111111 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.site-intro.hide-intro {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-bg-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.18), transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: introGlow 2.6s ease-in-out infinite alternate;
}

.intro-logo-wrap {
    position: relative;
    z-index: 5;
    text-align: center;
    animation: logoReveal 1.4s ease forwards;
}

.intro-logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 6px;
    margin-bottom: 22px;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.18);
}

.intro-logo-wrap h1 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2.6rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.intro-logo-wrap p {
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.intro-road {
    position: absolute;
    bottom: 23%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(192, 192, 192, 0.15),
        rgba(255, 255, 255, 0.5),
        rgba(192, 192, 192, 0.15),
        transparent
    );
    overflow: visible;
}

.intro-suv {
    position: absolute;
    bottom: 10px;
    left: -120px;
    color: #ffffff;
    font-size: 3rem;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.35));
    animation: suvDrive 2.7s cubic-bezier(0.68, -0.1, 0.27, 1.1) forwards;
}
.intro-palm {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    font-size: 8rem;
    bottom: 12%;
    animation: palmFloat 3s ease-in-out infinite alternate;
}

.left-palm {
    left: 8%;
    transform: rotate(-18deg);
}

.right-palm {
    right: 8%;
    transform: rotate(18deg);
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes suvDrive {
    0% {
        left: -150px;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    70% {
        left: 52%;
        opacity: 1;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}

@keyframes introGlow {
    from {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.55;
    }
    to {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0.9;
    }
}

@keyframes palmFloat {
    from {
        opacity: 0.05;
        transform: translateY(0) rotate(-12deg);
    }
    to {
        opacity: 0.12;
        transform: translateY(-12px) rotate(-8deg);
    }
}

@media (max-width: 768px) {
    .intro-logo-wrap h1 {
        font-size: 2rem;
    }

    .intro-logo-wrap p {
        font-size: 0.75rem;
        padding: 0 30px;
        line-height: 1.6;
    }

    .intro-logo {
        width: 76px;
        height: 76px;
    }

    .intro-palm {
        font-size: 5rem;
    }

    .intro-suv {
        font-size: 2.4rem;
    }
}
.intro-palm {
    position: absolute;
    bottom: 12%;
    font-size: 5.5rem;
    line-height: 1;
    opacity: 0.12;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
    animation: palmFloat 3s ease-in-out infinite alternate;
    z-index: 2;
    user-select: none;
    pointer-events: none;
}

.left-palm {
    left: 7%;
    transform: rotate(-10deg);
}

.right-palm {
    right: 7%;
    transform: rotate(10deg);
}

@keyframes palmFloat {
    from {
        transform: translateY(0) rotate(-10deg);
        opacity: 0.12;
    }
    to {
        transform: translateY(-10px) rotate(-6deg);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .intro-palm {
        font-size: 4rem;
        bottom: 10%;
    }

    .left-palm {
        left: 4%;
    }

    .right-palm {
        right: 4%;
    }
}
 /* ============================================
   PNG TURKS & CAICOS OVERLAY
   ============================================ */

.intro-islands-overlay {
    position: absolute;
    width: min(52vw, 720px);
    height: auto;
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
    user-select: none;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.08));
    animation: tciOverlayReveal 2s ease forwards;
}

/* keep line and car above the map */
.intro-road {
    z-index: 3;
}

.intro-suv {
    z-index: 4;
}

.intro-logo-wrap {
    z-index: 5;
}

@keyframes tciOverlayReveal {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.96);
    }
    100% {
        opacity: 0.12;
        transform: translateX(-50%) scale(1);
    }
}

@media (max-width: 768px) {
    .intro-islands-overlay {
        width: 95vw;
        bottom: 4%;
        opacity: 0.10;
    }
}
.intro-islands-overlay {
    position: absolute;
    width: min(72vw, 980px);
    height: auto;
    left: 50%;
    bottom: 1%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.14;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: screen;
    filter: brightness(1.25) contrast(1.1) drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
    animation: tciOverlayReveal 2s ease forwards;
}
/* ============================================
   FINAL INTRO POSITION ADJUSTMENT
   Map higher / Logo lower
   ============================================ */

.intro-islands-overlay {
    width: min(58vw, 820px);
    left: 50%;
    top: 28%;
    bottom: auto;
    transform: translateX(-50%);
    opacity: 0.075;
    z-index: 1;
}

.intro-logo-wrap {
    position: relative;
    z-index: 5;
    transform: translateY(80px);
}

.intro-road {
    bottom: 20%;
}

@keyframes tciOverlayReveal {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.96);
    }

    100% {
        opacity: 0.075;
        transform: translateX(-50%) scale(1);
    }
}

@media (max-width: 768px) {
    .intro-islands-overlay {
        width: 95vw;
        top: 26%;
        opacity: 0.065;
    }

    .intro-logo-wrap {
        transform: translateY(55px);
    }

    .intro-road {
        bottom: 19%;
    }
}
/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
    padding: 140px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.review-card {
    background: #ffffff;
    border: 1px solid rgba(192, 192, 192, 0.45);
    border-radius: 10px;
    padding: 42px 34px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
    border-color: #c0c0c0;
}

.review-stars {
    color: #0a0a0a;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.review-text {
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.review-card h4 {
    color: #0a0a0a;
    margin-bottom: 5px;
    font-size: 1rem;
}

.review-card span {
    color: #888888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-submit-box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: start;
    background: #050505;
    color: #ffffff;
    padding: 65px;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.review-submit-content h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.review-submit-content p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    max-width: 420px;
}

.review-form .form-group label {
    color: #ffffff;
}

.review-form input,
.review-form select,
.review-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

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

.review-form select option {
    color: #0a0a0a;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.review-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    margin: 20px 0;
    line-height: 1.6;
}

.review-consent input {
    margin-top: 4px;
}

@media (max-width: 1000px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
    }

    .review-submit-box {
        grid-template-columns: 1fr;
        padding: 50px 36px;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .reviews {
        padding: 90px 0;
    }

    .review-card {
        padding: 34px 26px;
    }

    .review-submit-box {
        padding: 42px 24px;
    }

    .review-submit-content h3 {
        font-size: 1.8rem;
    }
}
/* ============================================
   FIX INTRO SUV ANIMATION
   Drive in → stop center → drive out
   ============================================ */

.intro-suv {
    position: absolute;
    bottom: 10px;
    left: -160px;
    color: #ffffff;
    font-size: 3rem;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.35));
    animation: suvDrive 3.4s ease-in-out forwards;
    z-index: 4;
}

@keyframes suvDrive {
    0% {
        left: -180px;
        transform: translateX(0) scale(0.96);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    42% {
        left: 50%;
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    68% {
        left: 50%;
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 180px);
        transform: translateX(0) scale(0.96);
        opacity: 0;
    }
}
/* ============================================
   MOBILE DESIGN CLEANUP
   Makes phone layout less cramped
   ============================================ */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 22px;
    }

    /* Navbar */
    .navbar {
        padding: 14px 0;
    }

    .navbar-container {
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .logo p {
        font-size: 0.72rem;
    }

    .nav-menu {
        top: 64px;
    }

    /* Hero Section */
    .hero {
        min-height: 88vh;
        height: auto;
        padding: 120px 20px 90px;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: 390px;
        padding: 0;
        margin: 0 auto;
        transform: none !important;
    }

    .hero-title {
        font-size: clamp(2.05rem, 10vw, 2.75rem);
        line-height: 1.08;
        letter-spacing: 0.4px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.7;
        letter-spacing: 0.4px;
        max-width: 340px;
        margin: 0 auto 34px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 13px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 15px 24px;
        font-size: 0.9rem;
    }

    /* General Section Spacing */
    .services,
    .fleet,
    .why-choose-us,
    .statistics,
    .booking,
    .contact,
    .reviews {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .section-subtitle {
        font-size: 0.92rem;
        line-height: 1.7;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .divider {
        margin-bottom: 26px;
    }

    /* Cards */
    .services-grid,
    .features-grid,
    .stats-grid,
    .contact-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card,
    .feature-card,
    .stat-card,
    .contact-card,
    .review-card {
        padding: 34px 24px;
        min-height: auto;
    }

    .service-card h3,
    .feature-card h3,
    .contact-card h3,
    .stat-card h3 {
        font-size: 1.25rem;
        line-height: 1.25;
    }

    .service-card p,
    .feature-card p,
    .contact-card p,
    .stat-card p,
    .review-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .service-icon,
    .feature-icon,
    .contact-icon {
        font-size: 2rem;
        height: auto;
        margin-bottom: 18px;
    }

    /* Fleet Section */
    .fleet-item {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .fleet-image {
        height: 260px;
        border-radius: 8px;
    }

    .fleet-content h3 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .fleet-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .features-list li {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 12px 0;
        gap: 12px;
    }

    /* Booking Form */
    .booking-wrapper {
        max-width: 420px;
    }

    .booking-form {
        padding: 34px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 70px 22px;
    }

    .final-cta h2 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .final-cta p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    /* Footer */
    .footer {
        padding: 58px 0 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand p,
    .footer-column a,
    .footer-column li {
        font-size: 0.9rem;
    }

    /* WhatsApp Button */
    .whatsapp-button {
        width: 58px;
        height: 58px;
        right: 22px;
        bottom: 22px;
        font-size: 1.55rem;
    }
}
/* ============================================
   FINAL MOBILE CLEANUP
   Fixes cramped layout, oversized hero, nav, cards
   ============================================ */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    /* Mobile Navbar */
    .navbar {
        padding: 12px 0 !important;
        min-height: auto !important;
    }

    .navbar-container {
        padding: 0 22px !important;
        min-height: 72px;
    }

    .logo {
        gap: 12px;
        align-items: center;
    }

    .logo img,
    .nav-logo,
    .logo-image {
        width: 58px !important;
        height: 58px !important;
        object-fit: contain;
    }

    .logo h1 {
        font-size: 1.55rem !important;
        line-height: 1.05 !important;
        letter-spacing: 0.5px !important;
    }

    .logo p {
        font-size: 0.76rem !important;
        letter-spacing: 4px !important;
        margin-top: 2px !important;
    }

    .hamburger {
        transform: scale(0.82);
    }

    .nav-menu {
        top: 96px !important;
    }

    /* Hero Section */
    .hero {
        min-height: 82vh !important;
        height: auto !important;
        padding: 105px 22px 75px !important;
        display: flex;
        align-items: center;
    }

    .hero-content {
        max-width: 360px !important;
        width: 100%;
        margin: 0 auto;
        padding: 0 !important;
        transform: none !important;
    }

    .hero-title {
        font-size: clamp(2.25rem, 11vw, 3.25rem) !important;
        line-height: 1.05 !important;
        letter-spacing: 0.2px !important;
        margin-bottom: 22px !important;
    }

    .hero-subtitle {
        font-size: 0.93rem !important;
        line-height: 1.65 !important;
        letter-spacing: 0.25px !important;
        max-width: 320px !important;
        margin: 0 auto 32px !important;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-buttons {
        width: 100%;
        max-width: 290px;
        margin: 0 auto;
        flex-direction: column;
        gap: 13px;
    }

    .hero-buttons .btn,
    .hero .btn {
        width: 100%;
        padding: 15px 22px !important;
        font-size: 0.9rem !important;
    }

    /* Hero stats / glass box fix */
    .hero-stats,
    .hero-highlights,
    .hero-info-card,
    .hero-card,
    .stats-preview {
        position: relative !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 32px auto 0 !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

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

    .hero-stats > *,
    .hero-highlights > *,
    .stats-preview > * {
        padding: 22px 18px !important;
        min-height: auto !important;
    }

    /* Section spacing */
    section {
        scroll-margin-top: 95px;
    }

    .services,
    .fleet,
    .why-choose-us,
    .statistics,
    .booking,
    .contact,
    .reviews {
        padding: 78px 0 !important;
    }

    .section-header {
        margin-bottom: 44px !important;
    }

    .section-label {
        font-size: 0.75rem !important;
        letter-spacing: 6px !important;
    }

    .section-header h2 {
        font-size: 2.45rem !important;
        line-height: 1.1 !important;
        margin-bottom: 18px !important;
    }

    .section-subtitle {
        font-size: 0.92rem !important;
        line-height: 1.65 !important;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .divider {
        margin-bottom: 26px !important;
    }

    /* Card layout */
    .services-grid,
    .features-grid,
    .stats-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        max-width: 345px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 26px !important;
    }

    .service-card,
    .feature-card,
    .stat-card,
    .contact-card {
        padding: 34px 28px !important;
        min-height: auto !important;
        border-radius: 14px !important;
    }

    .service-icon,
    .feature-icon,
    .contact-icon {
        width: 64px !important;
        height: 64px !important;
        font-size: 1.55rem !important;
        margin-bottom: 22px !important;
    }

    .service-card h3,
    .feature-card h3,
    .contact-card h3,
    .stat-card h3 {
        font-size: 1.48rem !important;
        line-height: 1.18 !important;
        margin-bottom: 16px !important;
    }

    .service-card p,
    .feature-card p,
    .contact-card p,
    .stat-card p {
        font-size: 0.98rem !important;
        line-height: 1.7 !important;
    }

    /* Fleet */
    .fleet-item {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .fleet-image {
        height: 250px !important;
        border-radius: 14px !important;
    }

    .fleet-content h3 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }

    .fleet-description {
        font-size: 0.96rem !important;
        line-height: 1.7 !important;
    }

    .features-list li {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        gap: 12px !important;
    }

    /* Booking */
    .booking-wrapper,
    .booking-form {
        max-width: 345px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .booking-form {
        padding: 32px 24px !important;
        border-radius: 14px !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 18px !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.92rem !important;
        padding: 14px 15px !important;
    }

    /* WhatsApp button */
    .whatsapp-button {
        width: 58px !important;
        height: 58px !important;
        right: 22px !important;
        bottom: 24px !important;
        font-size: 1.55rem !important;
    }
}
/* ============================================
   MOBILE REVIEW BELT / SLIDING CAROUSEL
   ============================================ */

@media (max-width: 768px) {

    .reviews {
        overflow: hidden;
    }

    .reviews-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 18px !important;
        width: max-content !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        animation: reviewBeltScroll 26s linear infinite;
        will-change: transform;
    }

    .reviews-grid:hover {
        animation-play-state: paused;
    }

    .review-card {
        width: 300px !important;
        min-width: 300px !important;
        padding: 32px 24px !important;
        border-radius: 14px !important;
    }

    .review-card h4 {
        font-size: 1rem !important;
    }

    .review-text {
        font-size: 0.92rem !important;
        line-height: 1.65 !important;
    }

    .review-stars {
        font-size: 0.82rem !important;
        letter-spacing: 2px !important;
    }

    @keyframes reviewBeltScroll {
        0% {
            transform: translateX(22px);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 430px) {
    .review-card {
        width: 285px !important;
        min-width: 285px !important;
    }
}
/* ============================================
   REVIEW PHOTO UPLOAD FIELD
   ============================================ */

.photo-note {
    display: block;
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
}

.review-form input[type="file"] {
    padding: 14px 16px;
    cursor: pointer;
}

.review-form input[type="file"]::file-selector-button {
    background: #ffffff;
    color: #050505;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    margin-right: 14px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.review-form input[type="file"]::file-selector-button:hover {
    background: #c0c0c0;
}
@media (max-width: 768px) {
    .photo-note {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .review-form input[type="file"] {
        width: 100%;
        font-size: 0.85rem;
    }

    .review-form input[type="file"]::file-selector-button {
        display: block;
        width: 100%;
        margin: 0 0 10px 0;
        padding: 12px 14px;
    }
}
/* ============================================
   FINAL MOBILE BUG FIXES
   Hero / Stats / Reviews / WhatsApp
   ============================================ */

@media (max-width: 768px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden !important;
    }

    /* NAVBAR */
    .navbar {
        width: 100%;
        overflow: hidden;
    }

    .navbar-container {
        min-height: 82px !important;
    }

    .logo img,
    .nav-logo,
    .logo-image {
        width: 54px !important;
        height: 54px !important;
    }

    .logo h1 {
        font-size: 1.35rem !important;
        line-height: 1.05 !important;
    }

    .logo p {
        font-size: 0.68rem !important;
        letter-spacing: 3px !important;
    }

    /* HERO */
    .hero {
        min-height: 88vh !important;
        padding: 100px 20px 70px !important;
        overflow: hidden !important;
    }

    .hero-content {
        max-width: 350px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        transform: none !important;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3rem) !important;
        line-height: 1.04 !important;
        letter-spacing: 0 !important;
        margin-bottom: 20px !important;
        max-width: 350px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-subtitle {
        font-size: 0.86rem !important;
        line-height: 1.65 !important;
        max-width: 310px !important;
        margin: 0 auto 28px !important;
        letter-spacing: 0.15px !important;
    }

    .hero-buttons {
        max-width: 285px !important;
        margin: 0 auto !important;
        gap: 12px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        min-height: 56px !important;
        font-size: 0.92rem !important;
    }

    /* FIX THE FLOATING HERO STATS CARD THAT IS OFF TO THE SIDE */
    .hero-stats,
    .hero-highlights,
    .stats-preview,
    .hero-info-card,
    .hero-card,
    .hero-feature-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 310px !important;
        margin: 28px auto 0 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
    }

    .hero-stats > *,
    .hero-highlights > *,
    .stats-preview > *,
    .hero-info-card > *,
    .hero-card > *,
    .hero-feature-card > * {
        width: 100% !important;
        padding: 22px 18px !important;
        text-align: center !important;
    }

    /* REMOVE SIDE FLOATING GLASS IF IT STILL APPEARS */
    .hero .floating-card,
    .hero .side-card,
    .hero .glass-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 28px auto 0 !important;
        max-width: 310px !important;
        width: 100% !important;
    }

    /* SERVICES CARDS */
    .services-grid,
    .features-grid,
    .stats-grid,
    .contact-grid {
        width: 100% !important;
        max-width: 345px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .service-card,
    .feature-card,
    .stat-card,
    .contact-card {
        width: 100% !important;
        padding: 34px 28px !important;
        border-radius: 14px !important;
        overflow: hidden !important;
    }

    .service-card h3,
    .feature-card h3,
    .stat-card h3,
    .contact-card h3 {
        font-size: 1.45rem !important;
        line-height: 1.2 !important;
    }

    .service-card p,
    .feature-card p,
    .stat-card p,
    .contact-card p {
        font-size: 0.96rem !important;
        line-height: 1.7 !important;
    }

    /* REVIEWS SECTION FIX */
    .reviews {
        overflow: hidden !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .reviews .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .reviews .section-header {
        padding: 0 24px !important;
    }

    .reviews-grid {
        display: flex !important;
        grid-template-columns: none !important;
        width: max-content !important;
        max-width: none !important;
        gap: 18px !important;
        margin: 0 !important;
        padding: 0 0 20px 24px !important;
        overflow: visible !important;
        animation: reviewMobileScroll 28s linear infinite !important;
        will-change: transform;
    }

    .reviews-grid.belt-ready {
        animation: reviewMobileScroll 28s linear infinite !important;
    }

    .review-card {
        flex: 0 0 300px !important;
        width: 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
        padding: 32px 24px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }

    .review-card p,
    .review-text {
        font-size: 0.92rem !important;
        line-height: 1.65 !important;
    }

    .review-card h4 {
        font-size: 1rem !important;
    }

    .review-card span {
        font-size: 0.72rem !important;
        letter-spacing: 1.8px !important;
    }

    @keyframes reviewMobileScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* REVIEW FORM */
    .review-submit-box {
        width: calc(100% - 40px) !important;
        margin: 50px auto 0 !important;
        padding: 38px 24px !important;
        border-radius: 16px !important;
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
    }

    .review-submit-content h3 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }

    .review-submit-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }

    /* WHATSAPP BUTTON */
    .whatsapp-button {
        width: 56px !important;
        height: 56px !important;
        right: 20px !important;
        bottom: 22px !important;
        font-size: 1.45rem !important;
        z-index: 9000 !important;
    }
}

@media (max-width: 430px) {
    .hero-title {
        font-size: 2.35rem !important;
    }

    .review-card {
        flex-basis: 285px !important;
        width: 285px !important;
        min-width: 285px !important;
        max-width: 285px !important;
    }
}
/* ============================================
   FINAL FIX: REMOVE FLOATING HERO STATS ON MOBILE
   ============================================ */

@media (max-width: 768px) {
    .hero-stats,
    .hero-highlights,
    .stats-preview,
    .hero-info-card,
    .hero-card,
    .hero-feature-card,
    .hero .floating-card,
    .hero .side-card,
    .hero .glass-card {
        display: none !important;
    }

    .hero {
        min-height: 82vh !important;
        padding: 95px 20px 75px !important;
    }

    .hero-content {
        max-width: 360px !important;
        margin: 0 auto !important;
        transform: none !important;
    }

    .hero-title {
        font-size: clamp(2.15rem, 10vw, 2.85rem) !important;
        line-height: 1.06 !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-subtitle {
        max-width: 315px !important;
        font-size: 0.88rem !important;
        line-height: 1.65 !important;
        margin-bottom: 28px !important;
    }

    .hero-buttons {
        max-width: 285px !important;
        margin: 0 auto !important;
    }
}
/* Hide hero stats/glass card on mobile */
@media (max-width: 768px) {
    .mobile-hide-hero-card {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
}
/* ============================================
   FINAL MOBILE HAMBURGER MENU FIX
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 10001;
        position: relative;
    }

    .hamburger span {
        width: 32px;
        height: 3px;
        background: #ffffff;
        display: block;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed !important;
        top: 96px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(10, 10, 10, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        z-index: 9999 !important;
        transition: max-height 0.4s ease, padding 0.4s ease !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.active {
        max-height: 520px !important;
        padding: 18px 0 !important;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        list-style: none;
    }

    .nav-menu a {
        display: block !important;
        width: 100%;
        padding: 16px 24px !important;
        color: #ffffff !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.menu-open {
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 48px;
        height: 48px;
        border: none;
        background: transparent;
        cursor: pointer;
        z-index: 10001;
        position: relative;
        padding: 0;
    }

    .hamburger span {
        width: 32px;
        height: 3px;
        background: #ffffff;
        display: block;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed !important;
        top: 96px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(10, 10, 10, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        z-index: 9999 !important;
        transition: max-height 0.4s ease, padding 0.4s ease !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.active {
        max-height: 520px !important;
        padding: 18px 0 !important;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        list-style: none;
    }

    .nav-menu a {
        display: block !important;
        width: 100%;
        padding: 16px 24px !important;
        color: #ffffff !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.menu-open {
        overflow: hidden;
    }
}
/* ============================================
   FINAL MOBILE MENU FIX
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        width: 48px !important;
        height: 48px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 100000 !important;
    }

    .hamburger span {
        display: block !important;
        width: 30px !important;
        height: 3px !important;
        background: #ffffff !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 88px !important;
        left: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        background: rgba(5, 5, 5, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 99999 !important;
        transition: max-height 0.35s ease, padding 0.35s ease !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .nav-menu.active {
        max-height: 600px !important;
        padding: 18px 0 !important;
    }

    .nav-menu li {
        width: 100% !important;
        list-style: none !important;
        text-align: center !important;
    }

    .nav-menu a {
        display: block !important;
        width: 100% !important;
        padding: 16px 24px !important;
        color: #ffffff !important;
        font-size: 0.95rem !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    body.menu-open {
        overflow: hidden !important;
    }
}
/* ============================================
   PURE CSS MOBILE MENU FIX
   No JavaScript needed
   ============================================ */

.mobile-menu-toggle {
    display: none !important;
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }

    .nav-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 10000;
    }

    .navbar-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 48px;
        height: 48px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 10002;
    }

    .hamburger span {
        display: block !important;
        width: 30px;
        height: 3px;
        background: #ffffff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(5, 5, 5, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 10001 !important;
        transition: max-height 0.35s ease, padding 0.35s ease !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
        text-align: center;
    }

    .nav-menu a {
        display: block !important;
        width: 100%;
        padding: 16px 24px !important;
        color: #ffffff !important;
        font-size: 0.95rem !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-toggle:checked ~ .nav-menu {
        max-height: 620px !important;
        padding: 18px 0 !important;
    }

    .mobile-menu-toggle:checked + .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle:checked + .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .call-btn {
        display: none !important;
    }
}
/* ============================================
   EMERGENCY MOBILE HAMBURGER FIX
   ============================================ */

#mobileMenuToggle,
.mobile-menu-toggle {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        width: 48px !important;
        height: 48px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 99999 !important;
    }

    .hamburger span {
        display: block !important;
        width: 32px !important;
        height: 3px !important;
        background: #ffffff !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }

    .nav-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(5, 5, 5, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 99998 !important;
        transition: max-height 0.35s ease, padding 0.35s ease !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .nav-menu li {
        width: 100% !important;
        list-style: none !important;
        text-align: center !important;
    }

    .nav-menu a {
        display: block !important;
        width: 100% !important;
        padding: 16px 24px !important;
        color: #ffffff !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    #mobileMenuToggle:checked ~ .nav-menu {
        max-height: 650px !important;
        padding: 18px 0 !important;
    }

    #mobileMenuToggle:checked + .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    #mobileMenuToggle:checked + .hamburger span:nth-child(2) {
        opacity: 0 !important;
    }

    #mobileMenuToggle:checked + .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }

    .call-btn {
        display: none !important;
    }
}
/* ============================================
   CLEAN FINAL NAVBAR / MOBILE MENU
   ============================================ */

.mobile-menu-btn,
.mobile-menu-panel {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        position: sticky !important;
        top: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        background: #121212 !important;
        overflow: visible !important;
    }

    .navbar-container {
        height: 96px !important;
        padding: 0 28px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }

    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        text-decoration: none !important;
    }

    .logo img {
        width: 58px !important;
        height: 58px !important;
        object-fit: contain !important;
        border-radius: 50% !important;
    }

    .logo h1 {
        color: #ffffff !important;
        font-size: 1.55rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    .logo p {
        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 0.72rem !important;
        letter-spacing: 4px !important;
        text-transform: uppercase !important;
        margin: 4px 0 0 !important;
    }

    .desktop-menu,
    .desktop-call,
    .nav-menu {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        width: 48px !important;
        height: 48px !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        cursor: pointer !important;
        z-index: 100001 !important;
    }

    .mobile-menu-btn span {
        display: block !important;
        width: 32px !important;
        height: 3px !important;
        background: #ffffff !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }

    .mobile-menu-panel {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        background: rgba(5, 5, 5, 0.98) !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s ease, padding 0.35s ease !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 0 !important;
    }

    .mobile-menu-panel.active {
        max-height: 600px !important;
        padding: 16px 0 !important;
    }

    .mobile-menu-panel a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        color: #ffffff !important;
        text-decoration: none !important;
        padding: 16px 24px !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .mobile-call-link {
        font-weight: 700 !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }
}

@media (min-width: 769px) {
    .desktop-menu {
        display: flex !important;
    }

    .desktop-call {
        display: inline-flex !important;
    }

    .mobile-menu-btn,
    .mobile-menu-panel {
        display: none !important;
    }
}
/* ============================================
   FIX NAVBAR SHOWING DURING INTRO
   ============================================ */

.site-intro {
    z-index: 999999 !important;
}

body.intro-lock .navbar {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.intro-lock .mobile-menu-panel,
body.intro-lock .mobile-menu-btn {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
/* ============================================
   FIX NAVBAR LOGO SIZE / PREVENT HUGE LOGO BUG
   ============================================ */

.navbar .logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    width: auto !important;
    max-width: 260px !important;
    overflow: hidden !important;
}

.navbar .logo img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    min-width: 56px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    display: block !important;
}

.navbar .logo .logo-text,
.navbar .logo div {
    display: block !important;
}

.navbar .logo h1 {
    font-size: 1.35rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    color: #ffffff !important;
}

.navbar .logo p {
    font-size: 0.7rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    margin: 4px 0 0 !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Keep navbar from allowing the logo to spill out */
.navbar,
.navbar-container {
    overflow: visible !important;
}

@media (max-width: 768px) {
    .navbar .logo img {
        width: 58px !important;
        height: 58px !important;
        max-width: 58px !important;
        max-height: 58px !important;
        min-width: 58px !important;
    }

    .navbar .logo h1 {
        font-size: 1.45rem !important;
    }

    .navbar .logo p {
        font-size: 0.7rem !important;
        letter-spacing: 3px !important;
    }
}
/* ============================================
   SLOWER PREMIUM INTRO TIMING
   ============================================ */

.intro-logo-wrap {
    animation-duration: 1.8s !important;
}

.intro-suv {
    animation-duration: 4.4s !important;
}

.site-intro {
    transition: opacity 0.9s ease, visibility 0.9s ease !important;
}

/* ============================================
   FINAL INTRO + MOBILE REVIEW BELT OVERRIDES
   ============================================ */

.site-intro {
    z-index: 999999 !important;
}

body.intro-lock .navbar,
body.intro-lock .mobile-menu-btn,
body.intro-lock .mobile-menu-panel {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.site-intro.hide-intro {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .reviews {
        overflow: hidden !important;
    }

    .reviews .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    .reviews .section-header {
        padding: 0 24px !important;
    }

    .reviews-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        gap: 18px !important;
        width: max-content !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 0 24px 24px !important;
        overflow: visible !important;
        animation: finalReviewBelt 32s linear infinite !important;
        will-change: transform !important;
    }

    .review-card {
        flex: 0 0 300px !important;
        width: 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
    }

    @keyframes finalReviewBelt {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-1 * var(--review-scroll-distance, 954px))); }
    }
}

@media (max-width: 430px) {
    .review-card {
        flex: 0 0 285px !important;
        width: 285px !important;
        min-width: 285px !important;
        max-width: 285px !important;
    }
}
.powered-by {
    margin-top: 18px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.powered-by span {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}