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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #0b0b0d;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* =========================
   GLOBAL
========================= */
.container {
    width: min(92%, 1120px);
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #ff4d6d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    color: #ffffff;
    max-width: 12ch;
}

.section-subtext {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    max-width: 680px;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #800020, #b11226);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(177, 18, 38, 0.5);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* =========================
   NAVBAR
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(128, 0, 32, 0.18);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    background: rgba(8, 8, 8, 0.88);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
    white-space: nowrap;
}

.logo span {
    color: #ff4d6d;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ffffff;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 18px;
    font-size: 0.94rem;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(128, 0, 32, 0.24);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(128, 0, 32, 0.16);
    border-color: rgba(255, 77, 109, 0.45);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-cta {
    display: none;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background:
        linear-gradient(rgba(10, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
        url("assets/hero-car.jpg") center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(128, 0, 32, 0.25), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 25%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff4d6d;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.hero-subtext {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.trust-bar-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(128, 0, 32, 0.22);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.trust-bar-item strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.trust-bar-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0b0b0d 0%, #140709 100%);
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: 12ch;
}

.page-hero-text {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    font-size: 1.02rem;
}

/* =========================
   SERVICES
========================= */
.services,
.services-page {
    padding: 100px 0;
    background: linear-gradient(180deg, #080808 0%, #11090b 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-card {
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #800020, #b11226);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 24px rgba(128, 0, 32, 0.28);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.service-card p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
}

.service-list {
    display: grid;
    gap: 10px;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ff4d6d;
    box-shadow: 0 0 12px rgba(255, 77, 109, 0.4);
}

.services-cta {
    margin-top: 36px;
    padding: 24px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 0, 32, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.services-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

/* =========================
   PRICING
========================= */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #11090b 0%, #070707 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.featured-pricing {
    position: relative;
    border-color: rgba(255, 77, 109, 0.48);
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(128, 0, 32, 0.2);
    animation: pricingPulse 2.6s ease-in-out infinite;
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ff4d6d;
    color: white;
    font-size: 0.7rem;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.pricing-card:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}

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

.featured-pricing::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(255, 77, 109, 0.18);
    animation: pricingGlow 2.6s ease-in-out infinite;
}

.pricing-tier {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff4d6d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.pricing-copy {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 20px;
}

.pricing-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.82);
}

.pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ff4d6d;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

@keyframes pricingPulse {

    0%,
    100% {
        box-shadow:
            0 26px 52px rgba(128, 0, 32, 0.2),
            0 0 0 1px rgba(255, 77, 109, 0.18);
    }

    50% {
        box-shadow:
            0 30px 60px rgba(128, 0, 32, 0.28),
            0 0 22px rgba(255, 77, 109, 0.22);
    }
}

@keyframes pricingGlow {

    0%,
    100% {
        opacity: 0.55;
        box-shadow: 0 0 18px rgba(255, 77, 109, 0.14);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 34px rgba(255, 77, 109, 0.26);
    }
}

/* =========================
   WHY CHOOSE
========================= */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, #11090b 0%, #070707 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.why-choose-content h2 {
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
    max-width: 12ch;
    margin-bottom: 18px;
}

.why-choose-text {
    max-width: 620px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 34px;
}

.why-points {
    display: grid;
    gap: 18px;
}

.why-point {
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 0, 32, 0.18);
}

.why-point h3 {
    font-size: 1.12rem;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.why-point p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 0.97rem;
}

.why-choose-card {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.why-card-inner {
    padding: 32px;
}

.why-card-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #ff4d6d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-card-list {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.why-card-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.why-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    box-shadow: 0 0 14px rgba(255, 77, 109, 0.35);
}

/* =========================
   GALLERY
========================= */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, #070707 0%, #120709 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 260px;
    border: 1px solid rgba(128, 0, 32, 0.2);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.gallery-card.large {
    grid-column: span 2;
    height: 320px;
}

.gallery-card.wide {
    grid-column: span 2;
    height: 240px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
    pointer-events: none;
}

.gallery-overlay {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
}

.gallery-overlay span {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(128, 0, 32, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.25), rgba(0, 0, 0, 0.6));
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #120709 0%, #070707 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.stars {
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: #ff4d6d;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #ffffff;
    font-size: 0.98rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* =========================
   FAQ
========================= */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #070707 0%, #120709 100%);
}

.faq-heading {
    max-width: 820px;
}

.faq-grid {
    display: grid;
    gap: 16px;
}

.faq-item {
    width: 130%;
    max-width: 1100px;
    margin: 0 auto 16px;
    padding: 3px 5px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 0, 32, 0.2);
    color: #ff4d6d;
    font-size: 1.1rem;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 77, 109, 0.18);
}

/* =========================
   SERVICE AREA
========================= */
.service-area-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #120709 0%, #070707 100%);
}

.service-area-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.service-area-content h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: 13ch;
}

.service-area-text {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-area-list span {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(128, 0, 32, 0.22);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
}

.service-area-card {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.service-area-card-label {
    color: #ff4d6d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.service-area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.service-area-card p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* =========================
   PRICING SECTION
========================= */
.pricing-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f1115 0%, #151922 100%);
    color: #fff;
}

.pricing-section .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-section .section-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d7b36a;
    background: rgba(255, 255, 255, 0.03);
}

.pricing-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.pricing-section .section-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 34px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 179, 106, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured {
    transform: scale(1.03);
    border: 1px solid rgba(215, 179, 106, 0.45);
    background: linear-gradient(180deg, rgba(215, 179, 106, 0.12), rgba(255, 255, 255, 0.04));
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(215, 179, 106, 0.14);
    border: 1px solid rgba(215, 179, 106, 0.35);
    color: #f3d290;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-subtext {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 48px;
}

.price {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d7b36a;
    font-weight: 700;
}

.pricing-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 28px;
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .pricing-card.featured,
    .pricing-card.featured:hover {
        transform: none;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 80px 16px;
    }

    .pricing-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .price {
        font-size: 2.2rem;
    }
}

/* =========================
   CLIENT FUNNEL
========================= */
.client-funnel {
    padding: 100px 20px;
    background: #11151d;
    color: #fff;
}

.client-funnel .section-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.funnel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
}

.funnel-step {
    padding: 30px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
}

.funnel-number {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #111;
    background: #d7b36a;
}

.funnel-step h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.funnel-step p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.funnel-cta {
    text-align: center;
    margin-top: 34px;
}

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

/* =========================
   FINAL CTA
========================= */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #070707 0%, #140709 100%);
}

.final-cta-card {
    padding: 40px;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.28);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.final-cta-card h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.final-cta-card p {
    max-width: 700px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #070707 0%, #140709 100%);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.contact-content h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
    max-width: 12ch;
    margin-bottom: 18px;
}

.contact-text {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 26px;
}

.contact-points {
    display: grid;
    gap: 14px;
}

.contact-point {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 0, 32, 0.22);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
}

.contact-card {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 77, 109, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form .btn {
    width: 100%;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page-hero {
    padding-bottom: 60px;
}

.contact-page-section {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, #140709 0%, #070707 100%);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.contact-info-panel {
    padding: 32px;
}

.contact-form-panel {
    padding: 32px;
}

.contact-info-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: 12ch;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 520px;
}

.contact-info-list {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 0, 32, 0.18);
}

.info-label {
    display: block;
    margin-bottom: 8px;
    color: #ff4d6d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 0.98rem;
}

.contact-info-item a:hover {
    color: #ffffff;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.contact-form-panel .contact-form {
    display: grid;
    gap: 18px;
}

.contact-form-panel .form-group {
    display: grid;
    gap: 8px;
}

.contact-form-panel .form-group label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-form-panel .form-group input,
.contact-form-panel .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-form-panel .form-group input::placeholder,
.contact-form-panel .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.contact-form-panel .form-group input:focus,
.contact-form-panel .form-group textarea:focus {
    border-color: rgba(255, 77, 109, 0.6);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.contact-form-panel .btn {
    width: 100%;
    margin-top: 4px;
}

/* =========================
   GALLERY PAGE
========================= */
.gallery-page-hero {
    padding-bottom: 60px;
}

.gallery-page-section {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, #140709 0%, #070707 100%);
}

/* =========================
   LUXURY GALLERY GRID
========================= */

.gallery-page-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-auto-rows: 280px;
    gap: 16px;
    align-items: stretch;
}

/* base card */
.gallery-showcase-card {
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 70, 110, 0.14);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    min-height: 0;
}

.gallery-showcase-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-showcase-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.gallery-showcase-image img {
    transition: transform 0.6s ease;
}

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

.gallery-showcase-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0) 100%);
}

.gallery-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1;
    transition: transform 0.45s ease;
}

.gallery-showcase-card:hover .gallery-showcase-image {
    transform: scale(1.03);
}

/* overlays */
.gallery-page-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1rem 0.95rem;
    background: linear-gradient(to top, rgba(5, 5, 8, 0.92), rgba(5, 5, 8, 0.15), transparent);
}

.gallery-card-meta {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.34rem 0.62rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.gallery-page-overlay h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    line-height: 1.2;
    color: #ffffff;
}

.gallery-page-overlay p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

/* LUXURY PLACEMENT */

/* 1 - Bentley hero */
.gallery-page-grid>.gallery-showcase-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* 2 - Porsche tall feature */
.gallery-page-grid>.gallery-showcase-card:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

/* 3 - X6 */
.gallery-page-grid>.gallery-showcase-card:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

/* 4 - carpet lines / detail finish */
.gallery-page-grid>.gallery-showcase-card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

/* 5 - motorcycle taller */
.gallery-page-grid>.gallery-showcase-card:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 4 / 6;
}

/* 6 - wheel taller but not ridiculous */
.gallery-page-grid>.gallery-showcase-card:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 4 / 6;
}

/* image crop tuning */
.gallery-page-grid>.gallery-showcase-card:nth-child(1) .gallery-showcase-image {
    object-position: center;
}

.gallery-page-grid>.gallery-showcase-card:nth-child(2) .gallery-showcase-image {
    object-position: center;
}

.gallery-page-grid>.gallery-showcase-card:nth-child(5) .gallery-showcase-image {
    object-position: center 18%;
}

.gallery-page-grid>.gallery-showcase-card:nth-child(6) .gallery-showcase-image {
    object-position: center;
}

/* mobile */
@media (max-width: 900px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-page-grid>.gallery-showcase-card:nth-child(1),
    .gallery-page-grid>.gallery-showcase-card:nth-child(2),
    .gallery-page-grid>.gallery-showcase-card:nth-child(3),
    .gallery-page-grid>.gallery-showcase-card:nth-child(4),
    .gallery-page-grid>.gallery-showcase-card:nth-child(5),
    .gallery-page-grid>.gallery-showcase-card:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-page-overlay h3 {
        font-size: 0.95rem;
    }

    .gallery-page-overlay p {
        font-size: 0.76rem;
    }
}

.gallery-page-cta {
    margin-top: 36px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gallery-page-cta-label {
    color: #ff4d6d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gallery-page-cta h2 {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 18ch;
}

/* =========================
   REVIEWS PAGE
========================= */
.reviews-page-hero {
    padding-bottom: 60px;
}

.reviews-page-section {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, #140709 0%, #070707 100%);
}

.reviews-summary {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 34px;
}

.reviews-summary-card {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.reviews-score {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
}

.reviews-summary-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
}

.reviews-summary-text h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    max-width: 18ch;
}

.reviews-summary-text p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-feature-card {
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.review-feature-text {
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 22px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author strong {
    color: #ffffff;
    font-size: 0.98rem;
}

.review-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.reviews-page-cta {
    margin-top: 36px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.reviews-page-cta h2 {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 20ch;
}

/* =========================
   CERAMIC PAGE
========================= */
.ceramic-page-hero {
    padding-bottom: 60px;
}

.ceramic-section {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, #140709 0%, #070707 100%);
}

.ceramic-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 56px;
}

.ceramic-main {
    display: grid;
    gap: 22px;
}

.ceramic-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: 13ch;
}

.ceramic-text {
    max-width: 660px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
}

.ceramic-benefits {
    display: grid;
    gap: 18px;
}

.ceramic-benefit {
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 0, 32, 0.18);
}

.ceramic-benefit h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.ceramic-benefit p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.ceramic-sidebar {
    position: sticky;
    top: 110px;
}

.ceramic-card {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.ceramic-card-inner {
    padding: 32px;
}

.ceramic-card-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #ff4d6d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ceramic-list {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.ceramic-list li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.ceramic-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    box-shadow: 0 0 14px rgba(255, 77, 109, 0.35);
}

.ceramic-process {
    margin-top: 10px;
}

.ceramic-process-heading {
    max-width: 920px;
}

.ceramic-process-heading h2 {
    max-width: 15ch;
}

.ceramic-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ceramic-step-card {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    min-width: 0;
}

.ceramic-step-card:last-child {
    grid-column: span 2;
}

.step-number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #800020, #b11226);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(128, 0, 32, 0.28);
}

.ceramic-step-card h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #ffffff;
}

.ceramic-step-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 0.95rem;
}

.ceramic-cta {
    margin-top: 36px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ceramic-cta-label {
    color: #ff4d6d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ceramic-cta h2 {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 18ch;
}

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

    .ceramic-sidebar {
        position: static;
    }

    .ceramic-steps {
        grid-template-columns: 1fr;
    }

    .ceramic-step-card:last-child {
        grid-column: span 1;
    }

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

@media (max-width: 640px) {
    .ceramic-section {
        padding: 28px 0 80px;
    }

    .ceramic-card-inner,
    .ceramic-step-card,
    .ceramic-cta {
        padding: 22px;
    }

    .ceramic-intro h2,
    .ceramic-process-heading h2 {
        max-width: none;
    }
}

/* =========================
   SPECIALTY PAGE
========================= */
.specialty-page-hero {
    padding-bottom: 60px;
}

.specialty-section {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, #140709 0%, #070707 100%);
}

.specialty-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 36px;
}

.specialty-heading {
    margin-bottom: 0;
}

.specialty-heading h2 {
    max-width: 14ch;
}

.specialty-intro-card {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.specialty-intro-label {
    color: #ff4d6d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.specialty-intro-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.specialty-intro-card p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    margin-bottom: 20px;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}

.specialty-card {
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    min-width: 0;
}

.specialty-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #800020, #b11226);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(128, 0, 32, 0.28);
}

.specialty-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.specialty-card p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
}

.specialty-list {
    display: grid;
    gap: 10px;
}

.specialty-list li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.specialty-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ff4d6d;
    box-shadow: 0 0 12px rgba(255, 77, 109, 0.4);
}

.specialty-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 36px;
}

.specialty-feature-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: 14ch;
}

.specialty-feature-content p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.specialty-feature-card {
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.specialty-feature-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #ff4d6d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.specialty-feature-card ul {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.specialty-feature-card li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.specialty-feature-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    box-shadow: 0 0 14px rgba(255, 77, 109, 0.35);
}

.specialty-cta {
    margin-top: 10px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.specialty-cta-label {
    color: #ff4d6d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.specialty-cta h2 {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 18ch;
}

@media (max-width: 900px) {

    .specialty-top,
    .specialty-grid,
    .specialty-feature {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .specialty-section {
        padding: 28px 0 80px;
    }

    .specialty-intro-card,
    .specialty-card,
    .specialty-feature-card,
    .specialty-cta {
        padding: 22px;
    }

    .specialty-feature-content h2,
    .specialty-heading h2 {
        max-width: none;
    }
}

/* =========================
   THANK YOU PAGE
========================= */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(180deg, #0b0b0d 0%, #140709 100%);
}

.thank-you-card {
    max-width: 520px;
    width: 100%;
    padding: 42px;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.28);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.thank-you-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    color: #fff;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
}

.thank-you-card h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}

.thank-you-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 26px;
}

.thank-you-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.thank-you-small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.thank-you-small a {
    color: #ff4d6d;
    font-weight: 600;
}

.thank-you-small a:hover {
    color: #ffffff;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    padding: 80px 0 30px;
    background: linear-gradient(180deg, #140709 0%, #050505 100%);
    border-top: 1px solid rgba(128, 0, 32, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 28px;
    padding-bottom: 30px;
}

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

.footer-logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.footer-logo span {
    color: #ff4d6d;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

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

.footer-social-block {
    margin-top: 20px;
}

.footer-social-label {
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff4d6d;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(128, 0, 32, 0.28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-pill:hover {
    transform: translateY(-3px);
    background: rgba(128, 0, 32, 0.22);
    border-color: rgba(255, 77, 109, 0.55);
    box-shadow: 0 14px 28px rgba(128, 0, 32, 0.22);
}

.social-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(128, 0, 32, 0.28);
}

/* =========================
   MOBILE STICKY CTA
========================= */
.mobile-sticky-cta {
    display: none;
}

/* =========================
   POLISH HOVERS
========================= */
.service-card,
.pricing-card,
.testimonial-card,
.why-point,
.gallery-card,
.faq-item,
.service-area-card,
.contact-card,
.contact-info-panel,
.contact-form-panel,
.review-feature-card,
.specialty-card,
.specialty-feature-card,
.ceramic-benefit,
.ceramic-step-card {
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.service-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.why-point:hover,
.gallery-card:hover,
.faq-item:hover,
.service-area-card:hover,
.contact-card:hover,
.contact-info-panel:hover,
.contact-form-panel:hover,
.review-feature-card:hover,
.specialty-card:hover,
.specialty-feature-card:hover,
.ceramic-benefit:hover,
.ceramic-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 77, 109, 0.4);
    box-shadow: 0 26px 50px rgba(128, 0, 32, 0.16);
}

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

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

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .nav-wrap {
        position: relative;
        min-height: 78px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 22px;
        background: rgba(10, 10, 12, 0.96);
        border: 1px solid rgba(128, 0, 32, 0.22);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav a:hover,
    .site-nav a.active {
        background: rgba(128, 0, 32, 0.16);
    }

    .mobile-nav-cta {
        display: inline-flex;
        margin-top: 8px;
        justify-content: center;
        width: 100%;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .contact-wrap,
    .why-choose-grid,
    .footer-grid,
    .contact-page-grid,
    .gallery-page-grid,
    .reviews-page-grid,
    .specialty-grid,
    .specialty-feature,
    .ceramic-grid,
    .ceramic-steps,
    .reviews-summary,
    .service-area-wrap,
    .trust-bar,
    .form-row {
        grid-template-columns: 1fr;
    }

    .services-cta,
    .gallery-page-cta,
    .reviews-page-cta,
    .specialty-cta,
    .ceramic-cta,
    .final-cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .gallery-card.large,
    .gallery-card.wide,
    .gallery-showcase-card.large,
    .gallery-showcase-card.wide {
        grid-column: span 1;
    }

    .featured-pricing {
        transform: none;
    }
}

@media (max-width: 640px) {
    .mobile-sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        border-radius: 18px;
        background: rgba(8, 8, 10, 0.92);
        border: 1px solid rgba(128, 0, 32, 0.24);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .mobile-call-btn,
    .mobile-quote-btn {
        min-height: 50px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.95rem;
    }

    .mobile-call-btn {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }

    .mobile-quote-btn {
        background: linear-gradient(135deg, #800020, #b11226);
        color: #ffffff;
        box-shadow: 0 10px 24px rgba(128, 0, 32, 0.28);
    }

    body {
        padding-bottom: 86px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1,
    .page-hero h1,
    .section-heading h2,
    .why-choose-content h2,
    .contact-content h2,
    .contact-info-panel h2,
    .reviews-summary-text h2,
    .specialty-feature-content h2,
    .ceramic-content h2,
    .gallery-page-cta h2,
    .reviews-page-cta h2,
    .specialty-cta h2,
    .ceramic-cta h2,
    .service-area-content h2,
    .final-cta-card h2 {
        max-width: none;
    }

    .hero-buttons,
    .thank-you-actions,
    .final-cta-actions {
        flex-direction: column;
    }

    .btn,
    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .services,
    .services-page,
    .pricing-section,
    .why-choose,
    .before-after-slider-section,
    .gallery,
    .testimonials,
    .faq-section,
    .service-area-section,
    .final-cta-section,
    .contact-section,
    .gallery-page-section,
    .reviews-page-section,
    .ceramic-section,
    .specialty-section,
    .contact-page-section {
        padding: 80px 0;
    }

    .service-card,
    .pricing-card,
    .testimonial-card,
    .contact-card,
    .why-card-inner,
    .why-point,
    .service-area-card,
    .final-cta-card,
    .thank-you-card,
    .ba-slider-card,
    .contact-info-panel,
    .contact-form-panel,
    .gallery-page-overlay,
    .gallery-page-cta,
    .reviews-summary-card,
    .review-feature-card,
    .reviews-page-cta,
    .ceramic-card-inner,
    .ceramic-step-card,
    .specialty-card,
    .specialty-feature-card,
    .ceramic-cta,
    .specialty-cta {
        padding: 22px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
    }

    .gallery-grid,
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card.large,
    .gallery-card.wide,
    .gallery-showcase-card,
    .gallery-showcase-card.large,
    .gallery-showcase-card.wide {
        grid-column: span 1;
        height: 240px;
        min-height: 240px;
    }

    .ba-slider {
        height: 280px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

/* =========================
   B&G DETAIL POLISH LAYER
   Add this at the VERY bottom
========================= */

/* Shared newer section styling */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 77, 109, 0.18);
    color: #ff6b86;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-header p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 1rem;
}

/* Make newer premium cards feel consistent */
.gallery-stat-card,
.service-area-section,
.reviews-summary-card,
.review-feature-card,
.contact-info-panel,
.contact-form-panel,
.gallery-page-cta,
.reviews-page-cta,
.pricing-card,
.why-point {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 77, 109, 0.14);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Slightly cleaner card radius consistency */
.pricing-card,
.why-point,
.gallery-stat-card,
.service-area-card,
.review-feature-card,
.contact-info-item,
.contact-info-panel,
.contact-form-panel,
.gallery-page-cta,
.reviews-page-cta {
    border-radius: 22px;
}

/* Pricing polish */
.pricing-section {
    padding-top: 70px;
}

.pricing-grid {
    gap: 24px;
}

.pricing-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.pricing-subtext {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 18px;
    line-height: 1.7;
}

.price {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: #ffffff;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.78);
}

/* Gallery page polish */
.gallery-page-section {
    padding-top: 90px;
}

.gallery-intro-bar {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: stretch;
    margin-bottom: 34px;
}

.gallery-intro-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 14px;
}

.gallery-intro-copy p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.gallery-intro-stats {
    display: grid;
    gap: 16px;
}

.gallery-stat-card {
    padding: 22px 20px;
}

.gallery-stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.gallery-stat-card span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.95rem;
}

.gallery-showcase-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 24px;
    border: 1px solid rgba(255, 77, 109, 0.14);
    background: #111;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.gallery-showcase-card.large {
    min-height: 420px;
}

.gallery-showcase-card.wide {
    min-height: 320px;
}

.gallery-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-showcase-card:hover .gallery-showcase-image {
    transform: scale(1.04);
}

.gallery-page-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 72%);
}

.gallery-card-meta {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-page-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.gallery-page-overlay p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 55ch;
}

.gallery-page-cta {
    margin-top: 38px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gallery-page-cta-label {
    color: #ff6b86;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gallery-page-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.1;
    max-width: 18ch;
}

/* Reviews page polish */
.reviews-summary {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    align-items: stretch;
    margin-bottom: 30px;
}

.reviews-summary-card {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 34px 24px;
    border-radius: 24px;
}

.reviews-score {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
}

.reviews-summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
}

.reviews-summary-text {
    padding: 30px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 77, 109, 0.14);
}

.reviews-summary-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.reviews-summary-text p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.review-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.review-trust-points span,
.proof-pill {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    font-weight: 600;
}

.reviews-page-grid {
    gap: 22px;
}

.review-feature-card {
    padding: 28px 24px;
}

.review-feature-text {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin: 14px 0 18px;
}

.review-author strong {
    display: block;
    font-size: 1rem;
}

.review-author span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.reviews-proof-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.reviews-page-cta {
    margin-top: 34px;
    text-align: center;
    padding: 32px 24px;
    border-radius: 24px;
}

.reviews-page-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

/* Contact page polish */
.contact-page-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    padding: 30px;
}

.contact-info-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    margin-bottom: 12px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-info-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 77, 109, 0.3);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.info-label {
    display: block;
    margin-bottom: 6px;
    color: #ff6b86;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 77, 109, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.08);
}

/* Service area polish */
.service-area-section {
    margin-top: 44px;
    padding: 34px 28px;
    border-radius: 26px;
}

.service-area-copy {
    max-width: 740px;
    margin: 0 auto 26px;
    text-align: center;
}

.service-area-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.service-area-copy p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-area-card {
    padding: 16px 14px;
    border-radius: 18px;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Trust strip */
.trust-strip {
    padding-top: 10px;
}

.trust-strip-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.trust-pill {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    font-weight: 600;
}

/* Better hover consistency */
.service-card,
.pricing-card,
.why-point,
.gallery-showcase-card,
.review-feature-card,
.contact-info-item,
.contact-info-panel,
.contact-form-panel,
.service-area-card,
.gallery-stat-card {
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.service-card:hover,
.pricing-card:hover,
.why-point:hover,
.gallery-showcase-card:hover,
.review-feature-card:hover,
.contact-info-item:hover,
.contact-info-panel:hover,
.contact-form-panel:hover,
.service-area-card:hover,
.gallery-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 77, 109, 0.34);
    box-shadow: 0 24px 48px rgba(128, 0, 32, 0.15);
}

/* Mobile polish */
@media (max-width: 900px) {

    .gallery-intro-bar,
    .reviews-summary,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-page-cta h2 {
        max-width: none;
    }

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

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

@media (max-width: 640px) {

    .section-header,
    .service-area-copy {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .section-header p,
    .service-area-copy p {
        margin-left: 0;
        margin-right: 0;
    }

    .gallery-showcase-card,
    .gallery-showcase-card.large,
    .gallery-showcase-card.wide {
        min-height: 240px;
    }

    .gallery-page-overlay,
    .reviews-summary-text,
    .contact-info-panel,
    .contact-form-panel,
    .gallery-page-cta,
    .reviews-page-cta,
    .service-area-section {
        padding: 22px;
    }

    .service-area-grid {
        grid-template-columns: 1fr;
    }

    .review-trust-points,
    .reviews-proof-strip,
    .trust-strip-wrap {
        justify-content: flex-start;
    }

    .mobile-sticky-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

/* =========================
   SERVICES PAGE BEFORE / AFTER FIX
========================= */
.before-after-section {
    padding: 80px 0 20px;
    background: transparent;
    color: #ffffff;
}

.before-after-section .section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.before-after-section .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 77, 109, 0.2);
    color: #ff6b86;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.before-after-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 14px;
    color: #ffffff;
}

.before-after-section .section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.ba-card {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 77, 109, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #11151d;
}

.ba-slider>.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.ba-after-wrap .ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    z-index: 4;
    pointer-events: none;
}

.ba-handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
}

.ba-handle span {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    box-shadow: 0 12px 30px rgba(177, 18, 38, 0.35);
}

.ba-handle span::before,
.ba-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.ba-handle span::before {
    left: 15px;
    transform: translateY(-50%) rotate(-135deg);
}

.ba-handle span::after {
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
}

.ba-label {
    position: absolute;
    top: 14px;
    z-index: 6;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(28, 28, 34, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: transparent;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    width: auto;
    min-width: 0;
}

.ba-label-left {
    left: 14px;
    right: auto;
}

.ba-label-right {
    right: 14px;
    left: auto;
}

.ba-content {
    padding: 24px 22px;
}

.ba-content h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    color: #ffffff;
}

.ba-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

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

@media (max-width: 640px) {
    .before-after-section {
        padding: 70px 0 10px;
    }

    .ba-card {
        border-radius: 20px;
    }

    .ba-content {
        padding: 20px 18px;
    }

    .ba-label {
        top: 12px;
        padding: 7px 10px;
        font-size: 0.68rem;
    }

    .ba-label-left {
        left: 12px;
    }

    .ba-label-right {
        right: 12px;
    }

    .ba-handle span {
        width: 46px;
        height: 46px;
    }
}

/* =========================
   HOME PAGE OLD SLIDER HANDLE FIX
========================= */
#ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    z-index: 4;
    pointer-events: none;
}

#ba-handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

#ba-handle span {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    box-shadow: 0 12px 30px rgba(177, 18, 38, 0.35);
}

#ba-handle span::before,
#ba-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

#ba-handle span::before {
    left: 15px;
    transform: translateY(-50%) rotate(-135deg);
}

#ba-handle span::after {
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 640px) {
    #ba-handle span {
        width: 46px;
        height: 46px;
    }
}

/* =========================
   HOME SLIDER LINE CLEANUP
========================= */
#ba-handle::before {
    top: 50%;
    bottom: auto;
    height: 140px;
    transform: translate(-50%, -50%);
}

/* =========================
   SERVICES SLIDER LINE MATCH (like home)
========================= */
.ba-handle::before {
    top: 50%;
    bottom: auto;
    height: 140px;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.ba-label {
    backdrop-filter: blur(6px);
    background: rgba(10, 10, 12, 0.6);
}

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
}

/* =========================
   REMOVE OLD FULL LINE + KEEP CLEAN CENTER LINE
========================= */

/* Kill any old full-height line */
.ba-handle::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    /* THIS removes the old behavior */
    top: 50%;
    bottom: auto !important;
    height: 140px;

    /* clean centered line */
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.9),
            transparent);

    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* Services slider: remove full-height divider from image split */
.ba-after-wrap {
    border-right: none !important;
}

/* Keep only the shorter intentional center line */
.ba-handle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50% !important;
    bottom: auto !important;
    width: 2px;
    height: 140px !important;
    transform: translate(-50%, -50%);
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.9),
            transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* =========================
   FULL PRICING BREAKDOWN
========================= */
.pricing-subsection {
    margin-top: 90px;
}

.pricing-subtitle {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.pricing-subsection::before {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin: 0 auto 22px;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 109, 0.9), transparent);
}

.pricing-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-block {
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 77, 109, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pricing-block:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 77, 109, 0.24);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.pricing-block h3 {
    margin-bottom: 16px;
    color: #ff4d6d;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.pricing-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.pricing-block li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.55;
}

.pricing-block li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.74);
}

.pricing-value {
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
}

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

@media (max-width: 640px) {
    .pricing-subsection {
        margin-top: 70px;
    }

    .pricing-block {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .pricing-block li {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .pricing-value {
        white-space: normal;
    }
}

.pricing-showcase {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.pricing-showcase-image {
    height: 100%;
}

.pricing-showcase-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.pricing-block-image {
    margin-bottom: 1rem;
    border-radius: 18px;
    overflow: hidden;
}

.pricing-block-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .pricing-showcase {
        grid-template-columns: 1fr;
    }

    .pricing-showcase-image img {
        min-height: 320px;
    }
}

/* =========================
   SERVICES PAGE POLISH
========================= */

/* Package section wrapper */
.pricing-section {
    margin-top: 5rem;
    padding: 4rem 2rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 45%),
        linear-gradient(180deg, rgba(10, 18, 35, 0.96), rgba(8, 10, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

/* Featured image + cards */
.pricing-showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 2.5rem;
}

.pricing-showcase-image {
    border-radius: 24px;
    overflow: hidden;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-showcase-image img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Package cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 1.5rem 1.2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 80, 120, 0.18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 80, 120, 0.35);
}

.pricing-card.featured {
    transform: translateY(-8px);
    border-color: rgba(255, 196, 94, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-12px);
}

.pricing-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f5d27a;
    background: rgba(245, 210, 122, 0.1);
    border: 1px solid rgba(245, 210, 122, 0.26);
}

.pricing-card h3 {
    font-size: 1.55rem;
    line-height: 1.15;
    margin-bottom: 0.7rem;
}

.pricing-subtext {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.price span {
    font-size: 1.2rem;
    opacity: 0.75;
}

.pricing-features {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1.6rem;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f5d27a;
    font-weight: 800;
}

.pricing-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    border-radius: 999px;
    padding: 0.95rem 1rem;
}

/* Pricing note */
.pricing-note {
    margin-top: 1.4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

/* Full pricing section */
.pricing-subsection {
    margin-top: 5rem;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.pricing-block {
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 80, 120, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.pricing-block h3 {
    margin: 0.85rem 0 1rem;
    font-size: 1.15rem;
}

.pricing-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-block li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.95rem;
}

.pricing-block li:last-child {
    border-bottom: none;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-value {
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-block-image {
    margin-bottom: 0.3rem;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.pricing-block-image img {
    width: 100%;
    height: 170px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Make logo images look clean */
.pricing-block:nth-child(3) .pricing-block-image img,
.pricing-block:nth-child(4) .pricing-block-image img {
    object-fit: contain;
    padding: 0.8rem;
    background: #0b0b10;
}

/* Before / after section */
.before-after-section {
    margin-top: 5rem;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.ba-card {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 80, 120, 0.14);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.ba-slider {
    aspect-ratio: 1 / 1;
}

.ba-content {
    padding: 1.25rem 1.25rem 1.4rem;
}

.ba-content h3 {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.ba-content p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
    font-size: 0.94rem;
}

/* Mobile */
@media (max-width: 1100px) {
    .pricing-showcase {
        grid-template-columns: 1fr;
    }

    .pricing-showcase-image img {
        min-height: 320px;
        max-height: 420px;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 1.2rem;
        border-radius: 24px;
    }

    .pricing-columns,
    .ba-grid {
        grid-template-columns: 1fr;
    }

    .pricing-block-image img {
        height: 190px;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* =========================================
   SERVICES PAGE FINAL CLEANUP OVERRIDES
   Paste at very bottom of style.css
========================================= */

/* Main services page spacing */
.services-page {
    padding: 5rem 0 6rem;
}

.services-page .container {
    max-width: 1200px;
}

/* Section headers */
.services-page .section-header,
.before-after-section .section-header,
.client-funnel .section-header,
.pricing-subsection .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.2rem;
}

.section-tag,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 70, 110, 0.22);
    background: rgba(255, 70, 110, 0.08);
    color: #ff4d73;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-hero {
    padding: 5rem 0 2.5rem;
    text-align: center;
}

.page-hero h1 {
    max-width: 860px;
    margin: 0 auto 1rem;
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    line-height: 1.02;
}

.page-hero-text {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 1.02rem;
}

/* Service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.service-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 70, 110, 0.14);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 70, 110, 0.28);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.service-card h3 {
    margin: 0.9rem 0 0.8rem;
    font-size: 1.25rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
    font-size: 0.95rem;
}

.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.88rem;
    color: #fff;
    background: linear-gradient(135deg, #ff295f, #b30038);
    box-shadow: 0 10px 22px rgba(179, 0, 56, 0.28);
}

.service-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.service-list li {
    position: relative;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
    font-size: 0.92rem;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4d73;
    font-weight: 800;
}

/* Packages section */
.pricing-section {
    margin-top: 5rem;
    padding: 4rem 2rem 2.4rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(40, 90, 255, 0.10), transparent 38%),
        linear-gradient(180deg, rgba(10, 16, 30, 0.98), rgba(7, 8, 14, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.pricing-section h2 {
    max-width: 620px;
    margin: 0 auto 1rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.pricing-section .section-header p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

/* Featured image + cards layout */
.pricing-showcase {
    display: grid;
    grid-template-columns: 1.05fr 1.45fr;
    gap: 1.1rem;
    align-items: stretch;
    margin-top: 2.2rem;
}

.pricing-showcase-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    min-height: 100%;
}

.pricing-showcase-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 430px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Package cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.15rem 1rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(255, 70, 110, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    min-height: 430px;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(255, 198, 92, 0.4);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.pricing-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    color: #f8cf74;
    background: rgba(248, 207, 116, 0.1);
    border: 1px solid rgba(248, 207, 116, 0.24);
}

.pricing-card h3 {
    font-size: 1.05rem;
    line-height: 1.18;
    margin: 0 0 0.6rem;
}

.pricing-subtext {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    opacity: 0.72;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
    display: grid;
    gap: 0.65rem;
}

.pricing-features li {
    position: relative;
    padding-left: 0.95rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.84);
}

.pricing-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f8cf74;
    font-weight: 800;
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
    text-align: center;
    border-radius: 999px;
    padding: 0.9rem 0.95rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-note {
    margin-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
}

/* Full pricing breakdown */
.pricing-subsection {
    margin-top: 4.5rem;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.pricing-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
    align-items: start;
}

.pricing-block {
    padding: 0.8rem 0.8rem 0.55rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
    border: 1px solid rgba(255, 70, 110, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.pricing-block-image {
    margin-bottom: 0.65rem;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.025);
}

.pricing-block-image img {
    width: 100%;
    height: 140px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Logo cards */
.pricing-block:nth-child(3) .pricing-block-image img,
.pricing-block:nth-child(4) .pricing-block-image img {
    object-fit: contain;
    padding: 1rem;
    background: #0a0a0f;
}

.pricing-block h3 {
    margin: 0.5rem 0 0.85rem;
    font-size: 1rem;
    color: #ff4d73;
}

.pricing-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-block li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
}

.pricing-block li:last-child {
    border-bottom: none;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-value {
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

/* Before / after */
.before-after-section {
    margin-top: 5rem;
    padding-top: 0.5rem;
}

.before-after-section .section-header {
    margin-bottom: 2rem;
}

.before-after-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.before-after-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 980px;
    margin: 0 auto;
}

.ba-card {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
    border: 1px solid rgba(255, 70, 110, 0.16);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.ba-slider {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

.ba-content {
    padding: 1rem 1rem 1.15rem;
}

.ba-content h3 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
}

.ba-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.74);
}

/* Client funnel */
.client-funnel {
    margin-top: 5rem;
    padding: 4rem 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(40, 90, 255, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(10, 16, 30, 0.98), rgba(7, 8, 14, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-funnel h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.client-funnel .section-header p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.funnel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.funnel-step {
    padding: 1.4rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 70, 110, 0.12);
}

.funnel-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff295f, #b30038);
    color: #fff;
}

.funnel-step h3 {
    margin-bottom: 0.65rem;
    font-size: 1.08rem;
}

.funnel-step p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.6;
    font-size: 0.93rem;
}

.funnel-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Bottom CTA */
.services-cta {
    margin-top: 4rem;
    text-align: center;
}

.services-cta p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.02rem;
}

/* Buttons polish */
.btn.btn-primary,
.pricing-btn,
.funnel-cta .btn,
.services-cta .btn {
    background: linear-gradient(135deg, #e1004f, #b30038);
    border: none;
    box-shadow: 0 14px 28px rgba(179, 0, 56, 0.25);
}

.btn.btn-primary:hover,
.pricing-btn:hover,
.funnel-cta .btn:hover,
.services-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(179, 0, 56, 0.32);
}

/* Responsive */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-showcase {
        grid-template-columns: 1fr;
    }

    .pricing-showcase-image img {
        min-height: 300px;
        max-height: 360px;
    }

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

    .pricing-card,
    .pricing-card.featured {
        min-height: auto;
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .services-page {
        padding: 4rem 0 5rem;
    }

    .page-hero {
        padding: 4rem 0 2rem;
    }

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

    .pricing-section,
    .client-funnel {
        padding: 2.2rem 1.2rem;
        border-radius: 22px;
    }

    .pricing-showcase-image img {
        min-height: 250px;
        max-height: 300px;
    }

    .pricing-block-image img {
        height: 170px;
    }

    .price {
        font-size: 2rem;
    }
}

.pricing-showcase-image img {
    object-position: center bottom;
}

.pricing-card {
    min-height: 400px;
}

.pricing-showcase-image img {
    max-height: 400px;
}

/* Fix package badge overlap */
.pricing-card {
    position: relative;
    padding-top: 3.2rem;
}

.pricing-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    margin: 0;
    z-index: 2;
    white-space: nowrap;
}

.pricing-card h3 {
    margin-top: 0;
    padding-right: 4.8rem;
    line-height: 1.2;
}

.pricing-grid {
    gap: 1rem;
}

.pricing-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.pricing-features li {
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-subtitle {
    margin-bottom: 2.5rem;
}

.pricing-block {
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.pricing-block h3 {
    font-size: 1.08rem;
    margin-bottom: 1rem;
}

.pricing-block li {
    padding: 1rem 0;
}

.pricing-card {
    position: relative;
    padding-top: 3.2rem;
}

.pricing-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    margin: 0;
    z-index: 2;
    white-space: nowrap;
}

.pricing-card h3 {
    margin-top: 0;
    padding-right: 4.8rem;
    line-height: 1.2;
}

/* =========================================
   MAKE PACKAGES SECTION WIDER + BALANCED
========================================= */

.pricing-showcase {
    grid-template-columns: 0.85fr 1.6fr;
    gap: 1.5rem;
}

/* shrink image slightly */
.pricing-showcase-image img {
    max-height: 380px;
    min-height: 360px;
    object-fit: cover;
}

/* make cards feel wider + less cramped */
.pricing-grid {
    gap: 1.1rem;
}

.pricing-card {
    padding: 1.4rem 1.3rem 1.2rem;
    min-height: 380px;
}

/* slightly bigger titles */
.pricing-card h3 {
    font-size: 1.15rem;
}

/* cleaner spacing */
.pricing-subtext {
    font-size: 0.92rem;
}

/* tighten price block */
.price {
    font-size: 2.4rem;
    margin-bottom: 0.9rem;
}

/* less vertical stretching */
.pricing-features {
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.pricing-showcase-image {
    border-radius: 18px;
}

.pricing-section {
    padding: 3rem 2rem 2rem;
}

.pricing-showcase {
    grid-template-columns: 0.85fr 1.6fr;
}

.pricing-showcase-image img {
    max-height: 380px;
}

.pricing-card {
    min-height: 380px;
}

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.trust-row span {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.25);
}

/* =========================================
   SERVICES PAGE FINAL POLISH
========================================= */

/* Move the "built for drivers" section into a cleaner centered block */
.who-this-is-for {
    max-width: 760px;
    margin: 2rem auto 0;
    text-align: center;
}

.who-this-is-for p {
    margin-bottom: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.who-this-is-for ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    justify-content: center;
}

.who-this-is-for li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    line-height: 1.5;
}

/* Make pricing breakdown cleaner */
.pricing-subsection {
    margin-top: 5rem;
}

.pricing-subtitle {
    margin-bottom: 2rem;
}

/* Remove awkward loose value-strip spacing if you keep it */
.value-strip {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
}

.value-strip div {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Better proof text placement */
.mini-proof {
    text-align: center;
    margin: 1.2rem auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    max-width: 620px;
}

/* Motorcycle image fix */
.pricing-block:last-child .pricing-block-image img {
    height: 220px;
    object-fit: cover;
    object-position: center 30%;
}

/* Boat + ceramic logos look cleaner */
.pricing-block:nth-child(3) .pricing-block-image img,
.pricing-block:nth-child(4) .pricing-block-image img {
    object-fit: contain;
    object-position: center;
    padding: 1rem;
}

/* Add a touch more polish to all pricing block images */
.pricing-block-image {
    border-radius: 16px;
    overflow: hidden;
}

.pricing-block-image img {
    transition: transform 0.35s ease;
}

.pricing-block:hover .pricing-block-image img {
    transform: scale(1.02);
}

/* Before/after cards aligned better */
.ba-grid {
    align-items: stretch;
}

.ba-card {
    display: flex;
    flex-direction: column;
}

.ba-content {
    flex: 1;
}

/* CTA row cleaner */
.services-cta {
    margin-top: 4rem;
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 70, 110, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.services-cta p {
    margin: 0;
}

@media (max-width: 768px) {
    .services-cta {
        flex-direction: column;
        text-align: center;
    }

    .pricing-block:last-child .pricing-block-image img {
        height: 190px;
    }
}

/* FINAL PREMIUM POLISH */

/* Remove clutter if you keep those helper sections in HTML */
.who-this-is-for,
.value-strip {
    display: none;
}

/* Center proof text better */
.mini-proof {
    text-align: center;
    margin: 1.2rem auto 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Make the motorcycle card image show more of the bike */
.pricing-block:last-child .pricing-block-image img {
    height: 220px;
    object-fit: cover;
    object-position: center 22%;
}

/* Keep logo cards intentional */
.pricing-block:nth-child(3) .pricing-block-image img,
.pricing-block:nth-child(4) .pricing-block-image img {
    object-fit: contain;
    object-position: center;
    padding: 1rem;
    background: #0a0a0f;
}

/* Slightly cleaner package note area */
.trust-row {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-block:last-child .pricing-block-image img {
        height: 190px;
    }
}

.hero-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
    align-items: center;
}

.hero img {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

.hero-copy {
    max-width: 760px;
}

.hero-trust-upgrade {
    margin-top: 1.4rem;
}

.hero-visual {
    display: grid;
    gap: 1rem;
}

.hero-visual-main img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-visual-main {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.hero-visual-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-mini-card {
    padding: 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mini-card span {
    display: block;
    margin-bottom: 0.35rem;
    color: #ff4d73;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-mini-card strong {
    font-size: 0.92rem;
    line-height: 1.45;
}

.pricing-micro-proof {
    text-align: center;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.6;
}

.before-after-slider-section .ba-slider-card {
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 70, 110, 0.14);
}

.before-after-slider .ba-slider {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.before-after-slider-section .ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-after-slider-section .ba-after-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-after-slider-section .ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 3;
}

.before-after-slider-section .ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.82);
    transform: translatex(-50%);
    z-index: 2;
}

.before-after-slider-section .ba-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e1004f, #b30038);
    transform: translate(-50%, -50%);
    box-shadow: 0 14px 30px rgba(179, 0, 56, 0.28);
}

.before-after-slider-section .ba-handle span::before,
.before-after-slider-section .ba-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.before-after-slider-section .ba-handle span::before {
    left: 16px;
    transform: translateY(-50%) rotate(45deg);
}

.before-after-slider-section .ba-label {
    position: absolute;
    top: 16px;
    z-index: 2;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(20, 20, 24, 0.72);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.before-after-slider-section .ba-label-left {
    left: 16px;
}

.before-after-slider-section .ba-label-right {
    right: 16px;
}

.before-after-slider-section .ba-copy {
    padding: 1.35rem 1.4rem 1.5rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: auto 14px 14px 14px;
    z-index: 2;
}

.gallery-overlay span {
    display: inline-flex;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(225, 0, 79, 0.9);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 10px 24px rgba(179, 0, 56, 0.2);
}

.gallery-card.wide img {
    object-fit: contain;
    background: linear-gradient(180deg, rgba(10, 10, 10, 1), rgba(8, 8, 12, 1));
    padding: 1.4rem;
}

@media (max-width: 1100px) {
    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-visual-main img {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .hero-visual-stack {
        grid-template-columns: 1fr;
    }

    .hero-visual-main img {
        height: 300px;
    }

    .before-after-slider-section .ba-slider {
        aspect-ratio: 1 / 1;
    }
}

/* =========================================
   HOMEPAGE FINAL CLEANUP OVERRIDES
   Paste at very bottom of style.css
========================================= */

/* HERO: cleaner flow */
.hero {
    min-height: auto;
    padding: 120px 0 72px;
    background:
        linear-gradient(rgba(10, 0, 0, 0.74), rgba(0, 0, 0, 0.86)),
        radial-gradient(circle at top right, rgba(128, 0, 32, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.03), transparent 24%);
}

.hero-content.hero-split {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 2.6rem;
    align-items: center;
    max-width: none;
}

.hero-copy {
    max-width: 720px;
}

.hero h1 {
    max-width: 11ch;
    margin-bottom: 1rem;
    font-size: clamp(2.9rem, 6vw, 5.1rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-subtext {
    max-width: 620px;
    margin-bottom: 1.4rem;
    font-size: 1rem;
    line-height: 1.75;
}

.hero-buttons {
    margin-bottom: 1.35rem;
}

/* keep only the top trust row feeling intentional */
.hero-proof-row,
.hero-trust-upgrade,
.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0;
}

.hero-proof-item,
.trust-bar-item {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 70, 110, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.hero-proof-item strong,
.trust-bar-item strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.94rem;
}

.hero-proof-item span,
.trust-bar-item span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.87rem;
    line-height: 1.45;
}

/* HERO IMAGE: make it premium, not dropped in */
.hero-visual {
    display: block;
}

.hero-visual-main {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.hero-visual-main::after {
    content: "";
    position: absolute;
    inset: auto 10% -18px 10%;
    height: 46px;
    background: rgba(255, 77, 109, 0.16);
    filter: blur(28px);
    z-index: -1;
}

.hero-visual-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* hide the extra mini cards under image - they clutter the top */
.hero-visual-stack,
.hero-mini-card {
    display: none !important;
}

/* add a cleaner image label */
.hero-visual-main::before {
    content: "Real Client Result";
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(12, 12, 18, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    backdrop-filter: blur(10px);
}

/* SERVICES CTA */
.services-cta {
    margin-top: 2rem;
    padding: 1.15rem 1.35rem;
    border-radius: 18px;
}

/* PRICING: tighten CTA overload visually */
.pricing-card .btn {
    width: auto;
}

.pricing-card .btn-secondary {
    opacity: 0.92;
}

.pricing-micro-proof {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* WHY CHOOSE: better balance */
.why-choose-grid {
    align-items: start;
    gap: 2rem;
}

.why-card-inner {
    padding: 2rem;
}

.why-choose-card {
    position: sticky;
    top: 110px;
}

/* BEFORE / AFTER */
.before-after-slider-section .section-heading {
    margin-bottom: 2rem;
}

.before-after-slider-section .ba-slider-card {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 70, 110, 0.14);
}

.before-after-slider-section .ba-slider {
    aspect-ratio: 16 / 9;
    height: auto;
    margin-bottom: 0;
}

.before-after-slider-section .ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-after-slider-section .ba-after-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-after-slider-section .ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 3;
}

.before-after-slider-section .ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.84);
    transform: translateX(-50%);
    z-index: 2;
}

.before-after-slider-section .ba-handle::before {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(128, 0, 32, 0.28);
}

.before-after-slider-section .ba-copy {
    padding: 1.2rem 1.35rem 1.4rem;
}

/* GALLERY: make last card feel real, not placeholder */
.gallery-grid {
    align-items: stretch;
}

.gallery-card {
    border-radius: 22px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.gallery-card.wide img {
    object-fit: cover;
    object-position: center;
    padding: 0;
    background: none;
}

.gallery-overlay span {
    background: rgba(225, 0, 79, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(179, 0, 56, 0.2);
}

/* TESTIMONIALS */
.testimonial-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
    border-color: rgba(255, 70, 110, 0.28);
}

/* FAQ */
.faq-grid {
    max-width: 920px;
}

/* FINAL CTA + CONTACT spacing */
.final-cta-card {
    max-width: 980px;
    margin: 0 auto;
}

.contact-wrap {
    align-items: start;
    gap: 2.2rem;
}

.contact-card {
    max-width: 520px;
    margin-left: auto;
}

.contact-form .btn {
    width: 100%;
}

/* MOBILE */
@media (max-width: 1100px) {
    .hero-content.hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual-main img {
        height: 420px;
    }

    .why-choose-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 108px 0 64px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 11vw, 4.1rem);
        max-width: 10ch;
    }

    .hero-proof-row,
    .hero-trust-upgrade,
    .trust-bar {
        grid-template-columns: 1fr;
    }

    .hero-visual-main img {
        height: 300px;
        border-radius: 22px;
    }

    .hero-visual-main {
        border-radius: 22px;
    }

    .services-cta,
    .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .before-after-slider-section .ba-slider {
        aspect-ratio: 1 / 1;
    }
}

/* =========================================
   HOMEPAGE FINAL OVERRIDES
========================================= */

/* HERO - Porsche text underneath */
.hero-image-wrap .hero-result-copy {
    margin-top: 12px;
    max-width: 410px;
    padding-right: 6px;
}

.hero-image-wrap .hero-result-copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-image-wrap .hero-result-copy span {
    display: block;
    max-width: 34ch;
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

/* BEFORE / AFTER - remove eyebrow pill above heading */
.before-after-slider-section .section-eyebrow {
    display: none;
}

/* BEFORE / AFTER - tighter top labels */
.before-after-slider-section .ba-label {
    min-width: 0;
    width: auto;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(28, 28, 34, 0.84);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 6;
}

/* BEFORE / AFTER - keep only the center bubble, no extra oval */
.before-after-slider-section .ba-handle {
    width: 2px;
    background: rgba(255, 255, 255, 0.88);
    z-index: 5;
}

.before-after-slider-section .ba-handle::before,
.before-after-slider-section .ba-handle::after {
    content: none !important;
    display: none !important;
}

.before-after-slider-section .ba-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: linear-gradient(135deg, #c4004b, #ff1f6a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(196, 0, 75, 0.28);
    z-index: 6;
    font-size: 0;
}

.before-after-slider-section .ba-handle span::before,
.before-after-slider-section .ba-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.before-after-slider-section .ba-handle span::before {
    left: 15px;
    transform: translateY(-50%) rotate(225deg);
}

.before-after-slider-section .ba-handle span::after {
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
}

/* GALLERY - fully control layout without :has() */
.gallery .gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.3fr 1fr;
    grid-template-rows: 210px 210px 210px 210px;
    gap: 24px;
    align-items: stretch;
}

/* 1: big exterior */
.gallery .gallery-grid>.gallery-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    height: auto;
}

/* 2: interior refresh */
.gallery .gallery-grid>.gallery-card:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    height: auto;
}

/* 3: premium finish */
.gallery .gallery-grid>.gallery-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    height: auto;
}

/* 4: motorcycle vertical */
.gallery .gallery-grid>.gallery-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    height: auto;
}

/* 5: tire vertical */
.gallery .gallery-grid>.gallery-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 5;
    height: auto;
}

/* spacing + crops */
.gallery .gallery-card {
    overflow: hidden;
    border-radius: 22px;
}

.gallery .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery .gallery-grid>.gallery-card:nth-child(4) img {
    object-position: center 16%;
}

.gallery .gallery-grid>.gallery-card:nth-child(5) img {
    object-position: center;
}

.gallery .gallery-overlay {
    left: 16px;
    bottom: 16px;
}

.gallery .gallery-overlay span {
    padding: 11px 16px;
    font-size: 0.86rem;
    white-space: nowrap;
}

/* mobile */
@media (max-width: 900px) {
    .hero-image-wrap .hero-result-copy {
        max-width: 100%;
    }

    .gallery .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 18px;
    }

    .gallery .gallery-grid>.gallery-card:nth-child(1),
    .gallery .gallery-grid>.gallery-card:nth-child(2),
    .gallery .gallery-grid>.gallery-card:nth-child(3),
    .gallery .gallery-grid>.gallery-card:nth-child(4),
    .gallery .gallery-grid>.gallery-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        height: 260px;
    }
}

/* =========================================
   HOMEPAGE FINAL CLEAN FIXES
========================================= */

/* HERO */
.hero-content.hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.8rem;
    align-items: center;
}

.hero-image-wrap {
    max-width: 520px;
    margin-left: auto;
}

.hero-main-image {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-image-wrap .hero-result-copy {
    margin-top: 14px;
    max-width: 420px;
    padding-right: 6px;
}

.hero-image-wrap .hero-result-copy strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-image-wrap .hero-result-copy span {
    display: block;
    max-width: 34ch;
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

/* BEFORE / AFTER */
.before-after-slider-section .section-eyebrow {
    display: none;
}

.before-after-slider-section .ba-label {
    min-width: 0;
    width: auto;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(28, 28, 34, 0.84);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 6;
}

.before-after-slider-section .ba-handle {
    width: 2px;
    background: rgba(255, 255, 255, 0.88);
    z-index: 5;
}

.before-after-slider-section .ba-handle::before,
.before-after-slider-section .ba-handle::after {
    content: none !important;
    display: none !important;
}

.before-after-slider-section .ba-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: linear-gradient(135deg, #c4004b, #ff1f6a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(196, 0, 75, 0.28);
    z-index: 6;
    font-size: 0;
}

.before-after-slider-section .ba-handle span::before,
.before-after-slider-section .ba-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.before-after-slider-section .ba-handle span::before {
    left: 15px;
    transform: translateY(-50%) rotate(225deg);
}

.before-after-slider-section .ba-handle span::after {
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
}

/* CONTACT / BOOK YOUR DETAIL */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.22fr;
    gap: 3rem;
    align-items: start;
}

.contact-content {
    max-width: 600px;
}

.contact-card {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    padding: 2rem;
    border-radius: 26px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
}

.contact-form textarea {
    min-height: 160px;
}

.contact-form .btn {
    width: 100%;
}

/* MOBILE */
@media (max-width: 1100px) {

    .hero-content.hero-split,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image-wrap,
    .contact-card {
        max-width: 100%;
        margin-left: 0;
    }

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

@media (max-width: 768px) {
    .hero-main-image {
        height: 320px;
    }

    .hero-image-wrap .hero-result-copy {
        max-width: 100%;
    }
}

/* FINAL HOMEPAGE FIXES */

/* HERO */
.hero-content.hero-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.8rem;
    align-items: center;
}

.hero-image-wrap {
    max-width: 520px;
    margin-left: auto;
}

.hero-main-image {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 26px;
}

.hero-result-copy {
    margin-top: 14px;
    max-width: 420px;
    padding-right: 6px;
}

.hero-result-copy strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-result-copy span {
    display: block;
    max-width: 34ch;
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

/* BEFORE / AFTER */
.ba-handle::before,
.ba-handle::after {
    display: none !important;
}

.ba-handle span {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c4004b, #ff1f6a);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LABEL FIX */
.ba-label {
    width: auto;
    padding: 6px 12px;
}

/* CONTACT */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.22fr;
    gap: 3rem;
    align-items: start;
}

.contact-card {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    padding: 2rem;
    border-radius: 26px;
}

/* FINAL HOME SLIDER LABEL FIX */
.ba-label {
    position: absolute;
    top: 14px;
    z-index: 6;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(28, 28, 34, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    width: auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
}

.ba-label-left {
    left: 14px !important;
    right: auto !important;
    color: #ffffff !important;
}

.ba-label-right {
    right: 14px !important;
    left: auto !important;
    color: #ffffff !important;
}

.ba-label::after,
.ba-label-left::after,
.ba-label-right::after {
    content: none !important;
}

/* =========================
   VEHICLE TYPE FUNNEL PAGE
========================= */

.vehicle-funnel-page {
    background:
        radial-gradient(circle at top, rgba(120, 0, 30, 0.18), transparent 30%),
        linear-gradient(180deg, #050507 0%, #09090c 52%, #050507 100%);
}

.vehicle-funnel-hero,
.vehicle-type-selector,
.vehicle-funnel-benefits,
.vehicle-funnel-info,
.vehicle-funnel-faq,
.vehicle-funnel-cta {
    padding: 6.5rem 0;
}

.vehicle-funnel-hero {
    padding-top: 8rem;
    padding-bottom: 5.5rem;
}

.vehicle-funnel-hero-grid,
.vehicle-funnel-benefits-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.vehicle-funnel-copy h1,
.vehicle-funnel-benefits-copy h2,
.vehicle-funnel-cta-box h2,
.section-heading h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.vehicle-funnel-benefits-copy h2,
.vehicle-funnel-cta-box h2,
.section-heading h2 {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.02;
}

.vehicle-funnel-lead,
.vehicle-funnel-copy p,
.vehicle-funnel-benefits-copy p,
.vehicle-funnel-cta-box p,
.section-heading p,
.vehicle-type-card p,
.vehicle-funnel-info-card p,
.vehicle-funnel-faq-card p,
.vehicle-funnel-side-card li,
.hero-panel-card p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    font-size: 1rem;
}

.vehicle-funnel-mini-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.mini-proof-card,
.vehicle-funnel-info-card,
.vehicle-funnel-faq-card,
.funnel-point-card,
.vehicle-funnel-side-card,
.hero-panel-card,
.vehicle-type-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 50, 110, 0.16);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.mini-proof-card {
    padding: 1.1rem 1rem;
}

.mini-proof-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1rem;
    color: #ffffff;
}

.mini-proof-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
}

.vehicle-funnel-hero-panel {
    position: relative;
}

.hero-panel-glow {
    position: absolute;
    inset: 18% 10% auto 10%;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 0, 90, 0.18), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

.hero-panel-card {
    position: relative;
    padding: 2rem;
    min-height: 100%;
}

.hero-panel-label,
.side-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 70, 120, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: #ff4f8f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel-steps {
    margin: 0 0 1rem;
    padding-left: 1.15rem;
    color: #ffffff;
    line-height: 1.9;
}

.hero-panel-steps li {
    margin-bottom: 0.2rem;
}

.section-heading.centered {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.vehicle-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}

.vehicle-type-card {
    position: relative;
    padding: 1.6rem;
    overflow: hidden;
}

.vehicle-type-card.featured {
    background:
        radial-gradient(circle at top right, rgba(255, 0, 90, 0.14), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.vehicle-type-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #d50057, #ff2d7a);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 12px 24px rgba(213, 0, 87, 0.28);
}

.vehicle-type-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #ff5a94;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.vehicle-type-card h3,
.vehicle-funnel-info-card h3,
.vehicle-funnel-faq-card h3,
.funnel-point-card h3 {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.15;
}

.vehicle-type-list {
    margin: 1rem 0 1.5rem;
    padding: 0;
    list-style: none;
}

.vehicle-type-list li,
.vehicle-funnel-side-card li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.vehicle-type-list li::before,
.vehicle-funnel-side-card li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff3c81;
}

.vehicle-funnel-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.funnel-point-card {
    padding: 1.25rem 1.35rem;
}

.vehicle-funnel-side-card {
    padding: 1.75rem;
    height: fit-content;
}

.vehicle-funnel-side-card ul {
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
}

.vehicle-funnel-info-grid,
.vehicle-funnel-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.vehicle-funnel-info-card,
.vehicle-funnel-faq-card {
    padding: 1.5rem;
}

.info-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 70, 120, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
}

.vehicle-funnel-cta-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 2.25rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 70, 110, 0.18);
    background:
        radial-gradient(circle at top, rgba(145, 0, 45, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.vehicle-funnel-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 1100px) {

    .vehicle-funnel-hero-grid,
    .vehicle-funnel-benefits-grid,
    .vehicle-funnel-info-grid,
    .vehicle-funnel-faq-grid,
    .vehicle-type-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-funnel-mini-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .vehicle-funnel-hero,
    .vehicle-type-selector,
    .vehicle-funnel-benefits,
    .vehicle-funnel-info,
    .vehicle-funnel-faq,
    .vehicle-funnel-cta {
        padding: 4.5rem 0;
    }

    .vehicle-type-card,
    .vehicle-funnel-info-card,
    .vehicle-funnel-faq-card,
    .vehicle-funnel-side-card,
    .hero-panel-card {
        padding: 1.25rem;
    }

    .vehicle-funnel-copy h1,
    .vehicle-funnel-benefits-copy h2,
    .vehicle-funnel-cta-box h2,
    .section-heading h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }
}

/* ==========================================
   VEHICLE TYPE PAGE - ISOLATED HEADER/FOOTER
========================================== */

.vehicle-type-page {
    background: #050507;
}

.vehicle-type-page .vehicle-page-shell {
    width: min(92%, 1120px);
    margin: 0 auto;
}

/* HEADER */
.vehicle-type-page .vehicle-page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(128, 0, 32, 0.18);
}

.vehicle-type-page .vehicle-page-nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vehicle-type-page .vehicle-page-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
    white-space: nowrap;
}

.vehicle-type-page .vehicle-page-logo span {
    color: #ff4d6d;
}

.vehicle-type-page .vehicle-page-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.vehicle-type-page .vehicle-page-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.vehicle-type-page .vehicle-page-nav a:hover,
.vehicle-type-page .vehicle-page-nav a.active {
    color: #ffffff;
}

.vehicle-type-page .vehicle-page-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    transition: width 0.25s ease;
}

.vehicle-type-page .vehicle-page-nav a:hover::after,
.vehicle-type-page .vehicle-page-nav a.active::after {
    width: 100%;
}

.vehicle-type-page .vehicle-page-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #800020, #b11226);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
    transition: 0.25s ease;
    white-space: nowrap;
}

.vehicle-type-page .vehicle-page-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(177, 18, 38, 0.5);
}

/* PAGE WIDTH + TEXT FLOW */
.vehicle-type-page .vehicle-funnel-copy {
    max-width: 760px;
}

.vehicle-type-page .vehicle-funnel-copy h1 {
    max-width: 12ch;
}

.vehicle-type-page .vehicle-funnel-lead {
    max-width: 62ch;
}

.vehicle-type-page .section-heading.centered {
    max-width: 860px;
    margin: 0 auto 3rem;
    text-align: center;
}

.vehicle-type-page .section-heading.centered h2,
.vehicle-type-page .section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

.vehicle-type-page .section-heading h2 {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
}

.vehicle-type-page .section-heading p {
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
}

.vehicle-type-page .vehicle-funnel-benefits-copy h2 {
    max-width: 18ch;
}

.vehicle-type-page .vehicle-funnel-benefits-copy p {
    max-width: 58ch;
}

.vehicle-type-page .vehicle-funnel-cta-box h2,
.vehicle-type-page .vehicle-funnel-cta-box p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
.vehicle-type-page .vehicle-page-footer {
    margin-top: 0;
    padding: 5.5rem 0 1.5rem;
    background:
        linear-gradient(180deg, rgba(60, 0, 15, 0.35) 0%, rgba(8, 8, 12, 0.98) 24%, #050507 100%);
    border-top: 1px solid rgba(255, 0, 90, 0.08);
}

.vehicle-type-page .vehicle-page-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.vehicle-type-page .vehicle-page-footer-logo {
    display: inline-block;
    margin-bottom: 1.1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.vehicle-type-page .vehicle-page-footer-logo span {
    color: #ff2d7a;
}

.vehicle-type-page .vehicle-page-footer-brand p {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0 0 1.8rem;
}

.vehicle-type-page .vehicle-page-footer h4 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
}

.vehicle-type-page .vehicle-page-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vehicle-type-page .vehicle-page-footer-links li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.vehicle-type-page .vehicle-page-footer-links a {
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.25s ease;
}

.vehicle-type-page .vehicle-page-footer-links a:hover {
    color: #ff4d8f;
}

.vehicle-type-page .vehicle-page-footer-social span {
    display: block;
    margin-bottom: 0.95rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.vehicle-type-page .vehicle-page-footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.vehicle-type-page .vehicle-page-social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 70, 120, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.vehicle-type-page .vehicle-page-social-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 70, 120, 0.45);
}

.vehicle-type-page .vehicle-page-footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.vehicle-type-page .vehicle-page-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

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

    .vehicle-type-page .vehicle-page-nav {
        gap: 16px;
    }

    .vehicle-type-page .vehicle-page-nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 860px) {
    .vehicle-type-page .vehicle-page-nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .vehicle-type-page .vehicle-page-logo {
        width: 100%;
        text-align: center;
    }

    .vehicle-type-page .vehicle-page-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

@media (max-width: 768px) {
    .vehicle-type-page .vehicle-page-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vehicle-type-page .vehicle-page-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .vehicle-type-page .vehicle-funnel-copy h1,
    .vehicle-type-page .section-heading h2,
    .vehicle-type-page .vehicle-funnel-benefits-copy h2,
    .vehicle-type-page .vehicle-funnel-cta-box h2,
    .vehicle-type-page .vehicle-funnel-copy p,
    .vehicle-type-page .section-heading p,
    .vehicle-type-page .vehicle-funnel-benefits-copy p,
    .vehicle-type-page .vehicle-funnel-cta-box p {
        max-width: 100%;
    }
}

/* =========================
   SEDAN BOOKING PAGE
========================= */

.sedan-booking-page {
    background:
        radial-gradient(circle at top, rgba(120, 0, 30, 0.18), transparent 30%),
        linear-gradient(180deg, #050507 0%, #09090c 52%, #050507 100%);
}

.sedan-booking-hero,
.sedan-packages-section,
.sedan-addons-section,
.sedan-booking-benefits,
.sedan-booking-faq,
.sedan-booking-final-cta {
    padding: 6rem 0;
}

.sedan-booking-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.sedan-booking-hero-grid,
.sedan-booking-benefits-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.sedan-booking-copy h1,
.sedan-booking-benefits-copy h2,
.sedan-booking-final-box h2,
.section-heading h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4.8vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.sedan-booking-benefits-copy h2,
.sedan-booking-final-box h2,
.section-heading h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.02;
}

.sedan-booking-lead,
.sedan-booking-copy p,
.section-heading p,
.sedan-package-summary,
.sedan-package-block p,
.sedan-addon-card p,
.sedan-booking-benefits-copy p,
.sedan-benefit-card p,
.sedan-booking-side-card li,
.sedan-faq-card p,
.sedan-booking-final-box p,
.sedan-booking-hero-note span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    font-size: 1rem;
}

.sedan-booking-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.proof-pill {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 70, 120, 0.16);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
}

.sedan-booking-actions,
.sedan-booking-final-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

.sedan-booking-hero-card,
.sedan-package-card,
.sedan-addon-card,
.sedan-benefit-card,
.sedan-booking-side-card,
.sedan-faq-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 50, 110, 0.16);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.sedan-booking-hero-card {
    overflow: hidden;
}

.sedan-booking-hero-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}

.sedan-booking-hero-note {
    padding: 1.15rem 1.2rem 1.3rem;
}

.sedan-booking-hero-note strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #ffffff;
    font-size: 1rem;
}

.section-heading.centered {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.sedan-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.sedan-package-card {
    padding: 1.5rem;
}

.sedan-package-card.featured {
    background:
        radial-gradient(circle at top right, rgba(255, 0, 90, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border-color: rgba(255, 125, 165, 0.28);
    transform: translateY(-4px);
}

.sedan-package-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ff5a94;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-badge {
    background: linear-gradient(135deg, #d50057, #ff2d7a);
    color: #ffffff;
}

.sedan-package-card h3,
.sedan-addon-card h3,
.sedan-benefit-card h3,
.sedan-faq-card h3 {
    margin: 0 0 0.8rem;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.15;
}

.sedan-package-price {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    font-weight: 600;
}

.sedan-package-price span {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.sedan-package-block {
    margin-top: 1.15rem;
}

.sedan-package-block h4 {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sedan-package-block ul,
.sedan-booking-side-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sedan-package-block li,
.sedan-booking-side-card li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.sedan-package-block li::before,
.sedan-booking-side-card li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff3c81;
}

.sedan-package-btn {
    margin-top: 1.35rem;
    width: 100%;
    justify-content: center;
}

.sedan-pricing-note {
    margin: 1.4rem auto 0;
    text-align: center;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.94rem;
    line-height: 1.6;
}

.sedan-addon-grid,
.sedan-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.sedan-addon-card,
.sedan-faq-card {
    padding: 1.4rem;
}

.addon-price {
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
}

.sedan-benefit-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.sedan-benefit-card,
.sedan-booking-side-card {
    padding: 1.4rem;
}

.side-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 70, 120, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: #ff4f8f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sedan-booking-final-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 2.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 70, 110, 0.18);
    background:
        radial-gradient(circle at top, rgba(145, 0, 45, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

/* Responsive */
@media (max-width: 1100px) {

    .sedan-booking-hero-grid,
    .sedan-booking-benefits-grid,
    .sedan-package-grid,
    .sedan-addon-grid,
    .sedan-faq-grid {
        grid-template-columns: 1fr;
    }

    .sedan-package-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {

    .sedan-booking-hero,
    .sedan-packages-section,
    .sedan-addons-section,
    .sedan-booking-benefits,
    .sedan-booking-faq,
    .sedan-booking-final-cta {
        padding: 4.5rem 0;
    }

    .sedan-booking-copy h1,
    .sedan-booking-benefits-copy h2,
    .sedan-booking-final-box h2,
    .section-heading h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .sedan-booking-hero-image {
        height: 360px;
    }

    .sedan-package-card,
    .sedan-addon-card,
    .sedan-benefit-card,
    .sedan-booking-side-card,
    .sedan-faq-card,
    .sedan-booking-final-box {
        padding: 1.25rem;
    }
}

/* ==========================================
   SEDAN PAGE - ISOLATED HEADER / FOOTER
========================================== */

.sedan-page {
    background: #050507;
}

.sedan-page .sedan-page-shell {
    width: min(92%, 1120px);
    margin: 0 auto;
}

/* HEADER */
.sedan-page .sedan-page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(128, 0, 32, 0.18);
}

.sedan-page .sedan-page-nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sedan-page .sedan-page-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
    white-space: nowrap;
}

.sedan-page .sedan-page-logo span {
    color: #ff4d6d;
}

.sedan-page .sedan-page-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sedan-page .sedan-page-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.sedan-page .sedan-page-nav a:hover,
.sedan-page .sedan-page-nav a.active {
    color: #ffffff;
}

.sedan-page .sedan-page-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    transition: width 0.25s ease;
}

.sedan-page .sedan-page-nav a:hover::after,
.sedan-page .sedan-page-nav a.active::after {
    width: 100%;
}

.sedan-page .sedan-page-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #800020, #b11226);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
    transition: 0.25s ease;
    white-space: nowrap;
}

.sedan-page .sedan-page-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(177, 18, 38, 0.5);
}

/* TEXT FLOW */
.sedan-page .section-heading.centered {
    max-width: 860px;
    margin: 0 auto 3rem;
    text-align: center;
}

.sedan-page .section-heading.centered h2,
.sedan-page .section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

.sedan-page .section-heading h2 {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
}

.sedan-page .section-heading p {
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
}

.sedan-page .sedan-booking-copy {
    max-width: 760px;
}

.sedan-page .sedan-booking-copy h1 {
    max-width: 12ch;
}

.sedan-page .sedan-booking-lead {
    max-width: 60ch;
}

.sedan-page .sedan-booking-benefits-copy h2 {
    max-width: 18ch;
}

.sedan-page .sedan-booking-benefits-copy p {
    max-width: 58ch;
}

/* FOOTER */
.sedan-page .sedan-page-footer {
    margin-top: 0;
    padding: 5.5rem 0 1.5rem;
    background:
        linear-gradient(180deg, rgba(60, 0, 15, 0.35) 0%, rgba(8, 8, 12, 0.98) 24%, #050507 100%);
    border-top: 1px solid rgba(255, 0, 90, 0.08);
}

.sedan-page .sedan-page-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sedan-page .sedan-page-footer-logo {
    display: inline-block;
    margin-bottom: 1.1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.sedan-page .sedan-page-footer-logo span {
    color: #ff2d7a;
}

.sedan-page .sedan-page-footer-brand p {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0 0 1.8rem;
}

.sedan-page .sedan-page-footer h4 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
}

.sedan-page .sedan-page-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sedan-page .sedan-page-footer-links li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.sedan-page .sedan-page-footer-links a {
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.25s ease;
}

.sedan-page .sedan-page-footer-links a:hover {
    color: #ff4d8f;
}

.sedan-page .sedan-page-footer-social span {
    display: block;
    margin-bottom: 0.95rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.sedan-page .sedan-page-footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.sedan-page .sedan-page-social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 70, 120, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.sedan-page .sedan-page-social-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 70, 120, 0.45);
}

.sedan-page .sedan-page-footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sedan-page .sedan-page-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

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

    .sedan-page .sedan-page-nav {
        gap: 16px;
    }

    .sedan-page .sedan-page-nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 860px) {
    .sedan-page .sedan-page-nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .sedan-page .sedan-page-logo {
        width: 100%;
        text-align: center;
    }

    .sedan-page .sedan-page-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

@media (max-width: 768px) {
    .sedan-page .sedan-page-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sedan-page .sedan-page-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .sedan-page .sedan-booking-copy h1,
    .sedan-page .section-heading h2,
    .sedan-page .sedan-booking-benefits-copy h2,
    .sedan-page .sedan-booking-copy p,
    .sedan-page .section-heading p,
    .sedan-page .sedan-booking-benefits-copy p {
        max-width: 100%;
    }
}

/* =========================
   FINAL CTA BUTTON ALIGNMENT
========================= */

.sedan-page .sedan-booking-final-actions {
    display: flex;
    justify-content: center;
    /* centers horizontally */
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* =========================
   SUV / TRUCK BOOKING PAGE
========================= */

.suv-booking-page {
    background:
        radial-gradient(circle at top, rgba(120, 0, 30, 0.18), transparent 30%),
        linear-gradient(180deg, #050507 0%, #09090c 52%, #050507 100%);
}

.suv-booking-hero,
.suv-packages-section,
.suv-addons-section,
.suv-booking-benefits,
.suv-booking-faq,
.suv-booking-final-cta {
    padding: 6rem 0;
}

.suv-booking-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.suv-booking-hero-grid,
.suv-booking-benefits-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.suv-booking-copy h1,
.suv-booking-benefits-copy h2,
.suv-booking-final-box h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4.8vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.suv-booking-benefits-copy h2,
.suv-booking-final-box h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.02;
}

.suv-booking-lead,
.suv-booking-copy p,
.suv-package-summary,
.suv-package-block p,
.suv-addon-card p,
.suv-booking-benefits-copy p,
.suv-benefit-card p,
.suv-booking-side-card li,
.suv-faq-card p,
.suv-booking-final-box p,
.suv-booking-hero-note span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    font-size: 1rem;
}

.suv-booking-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.suv-booking-actions,
.suv-booking-final-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

.suv-booking-hero-card,
.suv-package-card,
.suv-addon-card,
.suv-benefit-card,
.suv-booking-side-card,
.suv-faq-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 50, 110, 0.16);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.suv-booking-hero-card {
    overflow: hidden;
}

.suv-booking-hero-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}

.suv-booking-hero-note {
    padding: 1.15rem 1.2rem 1.3rem;
}

.suv-booking-hero-note strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #ffffff;
    font-size: 1rem;
}

.suv-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.suv-package-card {
    padding: 1.5rem;
}

.suv-package-card.featured {
    background:
        radial-gradient(circle at top right, rgba(255, 0, 90, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border-color: rgba(255, 125, 165, 0.28);
    transform: translateY(-4px);
}

.suv-package-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ff5a94;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.suv-package-card h3,
.suv-addon-card h3,
.suv-benefit-card h3,
.suv-faq-card h3 {
    margin: 0 0 0.8rem;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.15;
}

.suv-package-price {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    font-weight: 600;
}

.suv-package-price span {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.suv-package-block {
    margin-top: 1.15rem;
}

.suv-package-block h4 {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.suv-package-block ul,
.suv-booking-side-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.suv-package-block li,
.suv-booking-side-card li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.suv-package-block li::before,
.suv-booking-side-card li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff3c81;
}

.suv-package-btn {
    margin-top: 1.35rem;
    width: 100%;
    justify-content: center;
}

.suv-pricing-note {
    margin: 1.4rem auto 0;
    text-align: center;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.94rem;
    line-height: 1.6;
}

.suv-addon-grid,
.suv-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.suv-addon-card,
.suv-faq-card {
    padding: 1.4rem;
}

.suv-benefit-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.suv-benefit-card,
.suv-booking-side-card {
    padding: 1.4rem;
}

.suv-booking-final-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 2.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 70, 110, 0.18);
    background:
        radial-gradient(circle at top, rgba(145, 0, 45, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1100px) {

    .suv-booking-hero-grid,
    .suv-booking-benefits-grid,
    .suv-package-grid,
    .suv-addon-grid,
    .suv-faq-grid {
        grid-template-columns: 1fr;
    }

    .suv-package-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {

    .suv-booking-hero,
    .suv-packages-section,
    .suv-addons-section,
    .suv-booking-benefits,
    .suv-booking-faq,
    .suv-booking-final-cta {
        padding: 4.5rem 0;
    }

    .suv-booking-copy h1,
    .suv-booking-benefits-copy h2,
    .suv-booking-final-box h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .suv-booking-hero-image {
        height: 360px;
    }

    .suv-package-card,
    .suv-addon-card,
    .suv-benefit-card,
    .suv-booking-side-card,
    .suv-faq-card,
    .suv-booking-final-box {
        padding: 1.25rem;
    }
}

/* ==========================================
   SUV PAGE - ISOLATED HEADER / FOOTER
========================================== */

.suv-page {
    background: #050507;
}

.suv-page .suv-page-shell {
    width: min(92%, 1120px);
    margin: 0 auto;
}

/* HEADER */
.suv-page .suv-page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(128, 0, 32, 0.18);
}

.suv-page .suv-page-nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.suv-page .suv-page-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
    white-space: nowrap;
}

.suv-page .suv-page-logo span {
    color: #ff4d6d;
}

.suv-page .suv-page-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.suv-page .suv-page-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.suv-page .suv-page-nav a:hover,
.suv-page .suv-page-nav a.active {
    color: #ffffff;
}

.suv-page .suv-page-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    transition: width 0.25s ease;
}

.suv-page .suv-page-nav a:hover::after,
.suv-page .suv-page-nav a.active::after {
    width: 100%;
}

.suv-page .suv-page-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #800020, #b11226);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
    transition: 0.25s ease;
    white-space: nowrap;
}

.suv-page .suv-page-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(177, 18, 38, 0.5);
}

/* TEXT FLOW */
.suv-page .section-heading.centered {
    max-width: 860px;
    margin: 0 auto 3rem;
    text-align: center;
}

.suv-page .section-heading.centered h2,
.suv-page .section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

.suv-page .section-heading h2 {
    max-width: 13ch;
    margin-left: auto;
    margin-right: auto;
}

.suv-page .section-heading p {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.suv-page .suv-booking-copy {
    max-width: 760px;
}

.suv-page .suv-booking-copy h1 {
    max-width: 11ch;
}

.suv-page .suv-booking-lead {
    max-width: 62ch;
}

.suv-page .suv-booking-benefits-copy h2 {
    max-width: 16ch;
}

.suv-page .suv-booking-benefits-copy p {
    max-width: 58ch;
}

/* FINAL CTA BUTTON CENTER */
.suv-page .suv-booking-final-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.suv-page .suv-booking-final-box {
    text-align: center;
}

/* FOOTER */
.suv-page .suv-page-footer {
    margin-top: 0;
    padding: 5.5rem 0 1.5rem;
    background:
        linear-gradient(180deg, rgba(60, 0, 15, 0.35) 0%, rgba(8, 8, 12, 0.98) 24%, #050507 100%);
    border-top: 1px solid rgba(255, 0, 90, 0.08);
}

.suv-page .suv-page-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.suv-page .suv-page-footer-logo {
    display: inline-block;
    margin-bottom: 1.1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.suv-page .suv-page-footer-logo span {
    color: #ff2d7a;
}

.suv-page .suv-page-footer-brand p {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0 0 1.8rem;
}

.suv-page .suv-page-footer h4 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
}

.suv-page .suv-page-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suv-page .suv-page-footer-links li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.suv-page .suv-page-footer-links a {
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.25s ease;
}

.suv-page .suv-page-footer-links a:hover {
    color: #ff4d8f;
}

.suv-page .suv-page-footer-social {
    margin-top: 1.5rem;
}

.suv-page .suv-page-footer-social span {
    display: block;
    margin-bottom: 0.95rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.suv-page .suv-page-footer-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.suv-page .suv-page-social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.suv-page .suv-page-social-pill:hover {
    border-color: rgba(255, 70, 120, 0.5);
    background: rgba(255, 70, 120, 0.08);
    transform: translateY(-2px);
}

.suv-page .suv-page-footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.suv-page .suv-page-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

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

    .suv-page .suv-page-nav {
        gap: 16px;
    }

    .suv-page .suv-page-nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 860px) {
    .suv-page .suv-page-nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .suv-page .suv-page-logo {
        width: 100%;
        text-align: center;
    }

    .suv-page .suv-page-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

@media (max-width: 768px) {
    .suv-page .suv-page-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .suv-page .suv-page-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .suv-page .suv-booking-copy h1,
    .suv-page .section-heading h2,
    .suv-page .suv-booking-benefits-copy h2,
    .suv-page .suv-booking-copy p,
    .suv-page .section-heading p,
    .suv-page .suv-booking-benefits-copy p {
        max-width: 100%;
    }
}

/* =========================
   MOTORCYCLE BOOKING PAGE
========================= */

.motorcycle-booking-page {
    background:
        radial-gradient(circle at top, rgba(120, 0, 30, 0.18), transparent 30%),
        linear-gradient(180deg, #050507 0%, #09090c 52%, #050507 100%);
}

.motorcycle-booking-hero,
.motorcycle-packages-section,
.motorcycle-addons-section,
.motorcycle-booking-benefits,
.motorcycle-booking-faq,
.motorcycle-booking-final-cta {
    padding: 6rem 0;
}

.motorcycle-booking-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.motorcycle-booking-hero-grid,
.motorcycle-booking-benefits-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.motorcycle-booking-copy h1,
.motorcycle-booking-benefits-copy h2,
.motorcycle-booking-final-box h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4.8vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.motorcycle-booking-benefits-copy h2,
.motorcycle-booking-final-box h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.02;
}

.motorcycle-booking-lead,
.motorcycle-booking-copy p,
.motorcycle-package-summary,
.motorcycle-package-block p,
.motorcycle-addon-card p,
.motorcycle-booking-benefits-copy p,
.motorcycle-benefit-card p,
.motorcycle-booking-side-card li,
.motorcycle-faq-card p,
.motorcycle-booking-final-box p,
.motorcycle-booking-hero-note span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    font-size: 1rem;
}

.motorcycle-booking-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.motorcycle-booking-actions,
.motorcycle-booking-final-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

.motorcycle-booking-hero-card,
.motorcycle-package-card,
.motorcycle-addon-card,
.motorcycle-benefit-card,
.motorcycle-booking-side-card,
.motorcycle-faq-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 50, 110, 0.16);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.motorcycle-booking-hero-card {
    overflow: hidden;
}

.motorcycle-booking-hero-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 20%;
}

.motorcycle-booking-hero-note {
    padding: 1.15rem 1.2rem 1.3rem;
}

.motorcycle-booking-hero-note strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #ffffff;
    font-size: 1rem;
}

.motorcycle-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.motorcycle-package-card {
    padding: 1.5rem;
}

.motorcycle-package-card.featured {
    background:
        radial-gradient(circle at top right, rgba(255, 0, 90, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border-color: rgba(255, 125, 165, 0.28);
    transform: translateY(-4px);
}

.motorcycle-package-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ff5a94;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.motorcycle-package-card h3,
.motorcycle-addon-card h3,
.motorcycle-benefit-card h3,
.motorcycle-faq-card h3 {
    margin: 0 0 0.8rem;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.15;
}

.motorcycle-package-price {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    font-weight: 600;
}

.motorcycle-package-price span {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.motorcycle-package-block {
    margin-top: 1.15rem;
}

.motorcycle-package-block h4 {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.motorcycle-package-block ul,
.motorcycle-booking-side-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.motorcycle-package-block li,
.motorcycle-booking-side-card li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.motorcycle-package-block li::before,
.motorcycle-booking-side-card li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff3c81;
}

.motorcycle-package-btn {
    margin-top: 1.35rem;
    width: 100%;
    justify-content: center;
}

.motorcycle-pricing-note {
    margin: 1.4rem auto 0;
    text-align: center;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.94rem;
    line-height: 1.6;
}

.motorcycle-addon-grid,
.motorcycle-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.motorcycle-addon-card,
.motorcycle-faq-card {
    padding: 1.4rem;
}

.motorcycle-benefit-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.motorcycle-benefit-card,
.motorcycle-booking-side-card {
    padding: 1.4rem;
}

.motorcycle-booking-final-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 2.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 70, 110, 0.18);
    background:
        radial-gradient(circle at top, rgba(145, 0, 45, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1100px) {

    .motorcycle-booking-hero-grid,
    .motorcycle-booking-benefits-grid,
    .motorcycle-package-grid,
    .motorcycle-addon-grid,
    .motorcycle-faq-grid {
        grid-template-columns: 1fr;
    }

    .motorcycle-package-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {

    .motorcycle-booking-hero,
    .motorcycle-packages-section,
    .motorcycle-addons-section,
    .motorcycle-booking-benefits,
    .motorcycle-booking-faq,
    .motorcycle-booking-final-cta {
        padding: 4.5rem 0;
    }

    .motorcycle-booking-copy h1,
    .motorcycle-booking-benefits-copy h2,
    .motorcycle-booking-final-box h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .motorcycle-booking-hero-image {
        height: 360px;
    }

    .motorcycle-package-card,
    .motorcycle-addon-card,
    .motorcycle-benefit-card,
    .motorcycle-booking-side-card,
    .motorcycle-faq-card,
    .motorcycle-booking-final-box {
        padding: 1.25rem;
    }
}

/* ==========================================
   MOTORCYCLE PAGE - ISOLATED HEADER / FOOTER
========================================== */

.motorcycle-page {
    background: #050507;
}

.motorcycle-page .motorcycle-page-shell {
    width: min(92%, 1120px);
    margin: 0 auto;
}

/* HEADER */
.motorcycle-page .motorcycle-page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(128, 0, 32, 0.18);
}

.motorcycle-page .motorcycle-page-nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.motorcycle-page .motorcycle-page-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
    white-space: nowrap;
}

.motorcycle-page .motorcycle-page-logo span {
    color: #ff4d6d;
}

.motorcycle-page .motorcycle-page-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.motorcycle-page .motorcycle-page-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.motorcycle-page .motorcycle-page-nav a:hover,
.motorcycle-page .motorcycle-page-nav a.active {
    color: #ffffff;
}

.motorcycle-page .motorcycle-page-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    transition: width 0.25s ease;
}

.motorcycle-page .motorcycle-page-nav a:hover::after,
.motorcycle-page .motorcycle-page-nav a.active::after {
    width: 100%;
}

.motorcycle-page .motorcycle-page-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #800020, #b11226);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
    transition: 0.25s ease;
    white-space: nowrap;
}

.motorcycle-page .motorcycle-page-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(177, 18, 38, 0.5);
}

/* TEXT FLOW */
.motorcycle-page .section-heading.centered {
    max-width: 860px;
    margin: 0 auto 3rem;
    text-align: center;
}

.motorcycle-page .section-heading.centered h2,
.motorcycle-page .section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

.motorcycle-page .section-heading h2 {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
}

.motorcycle-page .section-heading p {
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
}

.motorcycle-page .motorcycle-booking-copy {
    max-width: 760px;
}

.motorcycle-page .motorcycle-booking-copy h1 {
    max-width: 11ch;
}

.motorcycle-page .motorcycle-booking-lead {
    max-width: 60ch;
}

.motorcycle-page .motorcycle-booking-benefits-copy h2 {
    max-width: 16ch;
}

.motorcycle-page .motorcycle-booking-benefits-copy p {
    max-width: 58ch;
}

/* FINAL CTA BUTTON CENTER */
.motorcycle-page .motorcycle-booking-final-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.motorcycle-page .motorcycle-booking-final-box {
    text-align: center;
}

/* FOOTER */
.motorcycle-page .motorcycle-page-footer {
    margin-top: 0;
    padding: 5.5rem 0 1.5rem;
    background:
        linear-gradient(180deg, rgba(60, 0, 15, 0.35) 0%, rgba(8, 8, 12, 0.98) 24%, #050507 100%);
    border-top: 1px solid rgba(255, 0, 90, 0.08);
}

.motorcycle-page .motorcycle-page-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.motorcycle-page .motorcycle-page-footer-logo {
    display: inline-block;
    margin-bottom: 1.1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.motorcycle-page .motorcycle-page-footer-logo span {
    color: #ff2d7a;
}

.motorcycle-page .motorcycle-page-footer-brand p {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0 0 1.8rem;
}

.motorcycle-page .motorcycle-page-footer h4 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
}

.motorcycle-page .motorcycle-page-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motorcycle-page .motorcycle-page-footer-links li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.motorcycle-page .motorcycle-page-footer-links a {
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.25s ease;
}

.motorcycle-page .motorcycle-page-footer-links a:hover {
    color: #ff4d8f;
}

.motorcycle-page .motorcycle-page-footer-social {
    margin-top: 1.5rem;
}

.motorcycle-page .motorcycle-page-footer-social span {
    display: block;
    margin-bottom: 0.95rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.motorcycle-page .motorcycle-page-footer-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.motorcycle-page .motorcycle-page-social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.motorcycle-page .motorcycle-page-social-pill:hover {
    border-color: rgba(255, 70, 120, 0.5);
    background: rgba(255, 70, 120, 0.08);
    transform: translateY(-2px);
}

.motorcycle-page .motorcycle-page-footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.motorcycle-page .motorcycle-page-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

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

    .motorcycle-page .motorcycle-page-nav {
        gap: 16px;
    }

    .motorcycle-page .motorcycle-page-nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 860px) {
    .motorcycle-page .motorcycle-page-nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .motorcycle-page .motorcycle-page-logo {
        width: 100%;
        text-align: center;
    }

    .motorcycle-page .motorcycle-page-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

@media (max-width: 768px) {
    .motorcycle-page .motorcycle-page-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .motorcycle-page .motorcycle-page-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .motorcycle-page .motorcycle-booking-copy h1,
    .motorcycle-page .section-heading h2,
    .motorcycle-page .motorcycle-booking-benefits-copy h2,
    .motorcycle-page .motorcycle-booking-copy p,
    .motorcycle-page .section-heading p,
    .motorcycle-page .motorcycle-booking-benefits-copy p {
        max-width: 100%;
    }
}

/* =========================
   SPECIALTY BOOKING PAGE
========================= */

.specialty-booking-page {
    background:
        radial-gradient(circle at top, rgba(120, 0, 30, 0.18), transparent 30%),
        linear-gradient(180deg, #050507 0%, #09090c 52%, #050507 100%);
}

.specialty-booking-hero,
.specialty-packages-section,
.specialty-addons-section,
.specialty-booking-benefits,
.specialty-booking-faq,
.specialty-booking-final-cta {
    padding: 6rem 0;
}

.specialty-booking-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.specialty-booking-hero-grid,
.specialty-booking-benefits-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.specialty-booking-copy h1,
.specialty-booking-benefits-copy h2,
.specialty-booking-final-box h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4.8vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.specialty-booking-benefits-copy h2,
.specialty-booking-final-box h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.02;
}

.specialty-booking-lead,
.specialty-booking-copy p,
.specialty-package-summary,
.specialty-package-block p,
.specialty-addon-card p,
.specialty-booking-benefits-copy p,
.specialty-benefit-card p,
.specialty-booking-side-card li,
.specialty-faq-card p,
.specialty-booking-final-box p,
.specialty-booking-hero-note span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    font-size: 1rem;
}

.specialty-booking-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.specialty-booking-actions,
.specialty-booking-final-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

.specialty-booking-hero-card,
.specialty-package-card,
.specialty-addon-card,
.specialty-benefit-card,
.specialty-booking-side-card,
.specialty-faq-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 50, 110, 0.16);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.specialty-booking-hero-card {
    overflow: hidden;
}

.specialty-booking-hero-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}

.specialty-booking-hero-note {
    padding: 1.15rem 1.2rem 1.3rem;
}

.specialty-booking-hero-note strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #ffffff;
    font-size: 1rem;
}

.specialty-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.specialty-package-card {
    padding: 1.5rem;
}

.specialty-package-card.featured {
    background:
        radial-gradient(circle at top right, rgba(255, 0, 90, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border-color: rgba(255, 125, 165, 0.28);
    transform: translateY(-4px);
}

.specialty-package-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ff5a94;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.specialty-package-card h3,
.specialty-addon-card h3,
.specialty-benefit-card h3,
.specialty-faq-card h3 {
    margin: 0 0 0.8rem;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.15;
}

.specialty-package-price {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    font-weight: 600;
}

.specialty-package-price span {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.specialty-package-block {
    margin-top: 1.15rem;
}

.specialty-package-block h4 {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.specialty-package-block ul,
.specialty-booking-side-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.specialty-package-block li,
.specialty-booking-side-card li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.specialty-package-block li::before,
.specialty-booking-side-card li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff3c81;
}

.specialty-package-btn {
    margin-top: 1.35rem;
    width: 100%;
    justify-content: center;
}

.specialty-pricing-note {
    margin: 1.4rem auto 0;
    text-align: center;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.94rem;
    line-height: 1.6;
}

.specialty-addon-grid,
.specialty-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.specialty-addon-card,
.specialty-faq-card {
    padding: 1.4rem;
}

.specialty-benefit-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.specialty-benefit-card,
.specialty-booking-side-card {
    padding: 1.4rem;
}

.specialty-booking-final-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 2.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 70, 110, 0.18);
    background:
        radial-gradient(circle at top, rgba(145, 0, 45, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1100px) {

    .specialty-booking-hero-grid,
    .specialty-booking-benefits-grid,
    .specialty-package-grid,
    .specialty-addon-grid,
    .specialty-faq-grid {
        grid-template-columns: 1fr;
    }

    .specialty-package-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {

    .specialty-booking-hero,
    .specialty-packages-section,
    .specialty-addons-section,
    .specialty-booking-benefits,
    .specialty-booking-faq,
    .specialty-booking-final-cta {
        padding: 4.5rem 0;
    }

    .specialty-booking-copy h1,
    .specialty-booking-benefits-copy h2,
    .specialty-booking-final-box h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .specialty-booking-hero-image {
        height: 360px;
    }

    .specialty-package-card,
    .specialty-addon-card,
    .specialty-benefit-card,
    .specialty-booking-side-card,
    .specialty-faq-card,
    .specialty-booking-final-box {
        padding: 1.25rem;
    }
}

/* ==========================================
   SPECIALTY VEHICLES PAGE - ISOLATED HEADER / FOOTER
========================================== */

.specialty-page {
    background: #050507;
}

.specialty-page .specialty-page-shell {
    width: min(92%, 1120px);
    margin: 0 auto;
}

/* HEADER */
.specialty-page .specialty-page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(128, 0, 32, 0.18);
}

.specialty-page .specialty-page-nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.specialty-page .specialty-page-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
    white-space: nowrap;
}

.specialty-page .specialty-page-logo span {
    color: #ff4d6d;
}

.specialty-page .specialty-page-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.specialty-page .specialty-page-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.specialty-page .specialty-page-nav a:hover,
.specialty-page .specialty-page-nav a.active {
    color: #ffffff;
}

.specialty-page .specialty-page-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #800020, #ff4d6d);
    transition: width 0.25s ease;
}

.specialty-page .specialty-page-nav a:hover::after,
.specialty-page .specialty-page-nav a.active::after {
    width: 100%;
}

.specialty-page .specialty-page-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #800020, #b11226);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
    transition: 0.25s ease;
    white-space: nowrap;
}

.specialty-page .specialty-page-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(177, 18, 38, 0.5);
}

/* PAGE HERO / TEXT FLOW */
.specialty-page .page-hero h1 {
    max-width: 11ch;
}

.specialty-page .page-hero-text {
    max-width: 64ch;
}

.specialty-page .specialty-heading {
    max-width: 760px;
}

.specialty-page .specialty-heading h2 {
    max-width: 12ch;
}

.specialty-page .specialty-feature-content h2 {
    max-width: 12ch;
}

.specialty-page .specialty-cta h2 {
    max-width: 15ch;
}

/* FOOTER */
.specialty-page .specialty-page-footer {
    margin-top: 0;
    padding: 5.5rem 0 1.5rem;
    background:
        linear-gradient(180deg, rgba(60, 0, 15, 0.35) 0%, rgba(8, 8, 12, 0.98) 24%, #050507 100%);
    border-top: 1px solid rgba(255, 0, 90, 0.08);
}

.specialty-page .specialty-page-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.specialty-page .specialty-page-footer-logo {
    display: inline-block;
    margin-bottom: 1.1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.specialty-page .specialty-page-footer-logo span {
    color: #ff2d7a;
}

.specialty-page .specialty-page-footer-brand p {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0 0 1.8rem;
}

.specialty-page .specialty-page-footer h4 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
}

.specialty-page .specialty-page-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialty-page .specialty-page-footer-links li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.specialty-page .specialty-page-footer-links a {
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.25s ease;
}

.specialty-page .specialty-page-footer-links a:hover {
    color: #ff4d8f;
}

.specialty-page .specialty-page-footer-social {
    margin-top: 1.5rem;
}

.specialty-page .specialty-page-footer-social span {
    display: block;
    margin-bottom: 0.95rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.specialty-page .specialty-page-footer-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.specialty-page .specialty-page-social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.specialty-page .specialty-page-social-pill:hover {
    border-color: rgba(255, 70, 120, 0.5);
    background: rgba(255, 70, 120, 0.08);
    transform: translateY(-2px);
}

.specialty-page .specialty-page-footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.specialty-page .specialty-page-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

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

    .specialty-page .specialty-page-nav {
        gap: 16px;
    }

    .specialty-page .specialty-page-nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 860px) {
    .specialty-page .specialty-page-nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .specialty-page .specialty-page-logo {
        width: 100%;
        text-align: center;
    }

    .specialty-page .specialty-page-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

@media (max-width: 768px) {
    .specialty-page .specialty-page-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .specialty-page .specialty-page-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .specialty-page .page-hero h1,
    .specialty-page .page-hero-text,
    .specialty-page .specialty-heading h2,
    .specialty-page .specialty-feature-content h2,
    .specialty-page .specialty-cta h2 {
        max-width: 100%;
    }
}

/* ==========================================
   SPECIALTY BOOKING PAGE - MAIN CONTENT
========================================== */

.specialty-page .specialty-booking-page {
    background:
        radial-gradient(circle at top center, rgba(125, 0, 34, 0.16), transparent 26%),
        linear-gradient(180deg, #050507 0%, #08080c 50%, #050507 100%);
}

/* HERO */
.specialty-page .specialty-booking-hero {
    padding: 8rem 0 6rem;
}

.specialty-page .specialty-booking-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.specialty-page .specialty-booking-copy {
    max-width: 760px;
}

.specialty-page .specialty-booking-copy h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 1.25rem;
    max-width: 10ch;
}

.specialty-page .specialty-booking-lead {
    max-width: 62ch;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 1.75rem;
}

.specialty-page .section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 70, 120, 0.18);
    color: #ff4d8f;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.specialty-page .specialty-booking-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.9rem;
}

.specialty-page .proof-pill {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 70, 120, 0.14);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.specialty-page .specialty-booking-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.specialty-page .specialty-booking-hero-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 70, 120, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.specialty-page .specialty-booking-hero-image {
    width: 100%;
    aspect-ratio: 1.05 / 0.92;
    object-fit: cover;
}

.specialty-page .specialty-booking-hero-note {
    padding: 1.25rem 1.35rem 1.35rem;
    display: grid;
    gap: 0.45rem;
}

.specialty-page .specialty-booking-hero-note strong {
    font-size: 1rem;
    color: #ffffff;
}

.specialty-page .specialty-booking-hero-note span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* SHARED SECTION SPACING */
.specialty-page .specialty-packages-section,
.specialty-page .specialty-addons-section,
.specialty-page .specialty-booking-benefits,
.specialty-page .specialty-booking-faq,
.specialty-page .specialty-booking-final-cta {
    padding: 6rem 0;
}

.specialty-page .section-heading.centered {
    max-width: 860px;
    margin: 0 auto 3.2rem;
    text-align: center;
}

.specialty-page .section-heading.centered h2,
.specialty-page .section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

.specialty-page .section-heading h2 {
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.specialty-page .section-heading p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    max-width: 62ch;
}

/* PACKAGE GRID */
.specialty-page .specialty-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.specialty-page .specialty-package-card {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.35rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 70, 120, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.specialty-page .specialty-package-card.featured {
    background:
        radial-gradient(circle at top, rgba(255, 70, 120, 0.08), transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    border-color: rgba(255, 70, 120, 0.24);
}

.specialty-page .specialty-package-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 70, 120, 0.16);
    color: #ff4d8f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.specialty-page .featured-badge {
    background: rgba(255, 70, 120, 0.12);
}

.specialty-page .specialty-package-card h3 {
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 0.85rem;
}

.specialty-page .specialty-package-price {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 700;
}

.specialty-page .specialty-package-price span {
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.specialty-page .specialty-package-summary {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.specialty-page .specialty-package-block {
    margin-bottom: 1.15rem;
}

.specialty-page .specialty-package-block h4 {
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.specialty-page .specialty-package-block ul {
    display: grid;
    gap: 0.65rem;
    padding-left: 0;
}

.specialty-page .specialty-package-block li,
.specialty-page .specialty-package-block p {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    font-size: 0.95rem;
}

.specialty-page .specialty-package-block li {
    padding-left: 0.95rem;
}

.specialty-page .specialty-package-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff4d8f;
}

.specialty-page .specialty-package-btn {
    margin-top: auto;
    width: 100%;
}

.specialty-page .specialty-pricing-note {
    margin-top: 1.3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
}

/* ADDONS */
.specialty-page .specialty-addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.specialty-page .specialty-addon-card {
    padding: 1.35rem 1.25rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 70, 120, 0.14);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.specialty-page .specialty-addon-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.specialty-page .addon-price {
    color: #ff4d8f;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.specialty-page .specialty-addon-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* BENEFITS */
.specialty-page .specialty-booking-benefits-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.4rem;
    align-items: start;
}

.specialty-page .specialty-booking-benefits-copy h2 {
    font-size: clamp(2.2rem, 4.4vw, 3.7rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.specialty-page .specialty-booking-benefits-copy>p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    max-width: 60ch;
    margin-bottom: 1.5rem;
}

.specialty-page .specialty-benefit-list {
    display: grid;
    gap: 1rem;
}

.specialty-page .specialty-benefit-card,
.specialty-page .specialty-booking-side-card,
.specialty-page .specialty-faq-card,
.specialty-page .specialty-booking-final-box {
    border-radius: 24px;
    border: 1px solid rgba(255, 70, 120, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.specialty-page .specialty-benefit-card {
    padding: 1.2rem 1.2rem;
}

.specialty-page .specialty-benefit-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
}

.specialty-page .specialty-benefit-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.specialty-page .specialty-booking-side-card {
    padding: 1.35rem 1.3rem;
}

.specialty-page .side-card-tag {
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 70, 120, 0.16);
    color: #ff4d8f;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.specialty-page .specialty-booking-side-card ul {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.specialty-page .specialty-booking-side-card li {
    position: relative;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.specialty-page .specialty-booking-side-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ff4d8f;
}

/* FAQ */
.specialty-page .specialty-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.specialty-page .specialty-faq-card {
    padding: 1.35rem 1.2rem;
}

.specialty-page .specialty-faq-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.08rem;
    line-height: 1.35;
}

.specialty-page .specialty-faq-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

/* FINAL CTA */
.specialty-page .specialty-booking-final-box {
    padding: 2.2rem 1.5rem;
    text-align: center;
}

.specialty-page .specialty-booking-final-box h2 {
    font-size: clamp(2rem, 4.6vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    max-width: 13ch;
    margin: 0.4rem auto 0.9rem;
}

.specialty-page .specialty-booking-final-box p {
    max-width: 56ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.specialty-page .specialty-booking-final-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .specialty-page .specialty-booking-hero-grid,
    .specialty-page .specialty-booking-benefits-grid,
    .specialty-page .specialty-package-grid,
    .specialty-page .specialty-addon-grid,
    .specialty-page .specialty-faq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .specialty-page .specialty-booking-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .specialty-page .specialty-booking-hero {
        padding: 7rem 0 4.5rem;
    }

    .specialty-page .specialty-booking-hero-grid,
    .specialty-page .specialty-package-grid,
    .specialty-page .specialty-addon-grid,
    .specialty-page .specialty-faq-grid {
        grid-template-columns: 1fr;
    }

    .specialty-page .specialty-booking-copy h1,
    .specialty-page .section-heading h2,
    .specialty-page .specialty-booking-benefits-copy h2,
    .specialty-page .specialty-booking-final-box h2,
    .specialty-page .specialty-booking-copy p,
    .specialty-page .section-heading p,
    .specialty-page .specialty-booking-benefits-copy p,
    .specialty-page .specialty-booking-final-box p {
        max-width: 100%;
    }
}