/* ============================================
   PRISTINE Auto Detail - Styles
   Professional Car Detailing Landing Page
   ============================================ */

/* === CSS Variables === */
:root {
    --navy: #0A1628;
    --navy-light: #12233D;
    --navy-dark: #060F1D;
    --gold: #C9A84C;
    --gold-light: #E0C068;
    --gold-dark: #A88A3A;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --green-whatsapp: #25D366;
    --green-dark: #128C7E;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-brand {
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-logo {
    width: 180px;
    height: auto;
    border-radius: 50%;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

/* === Promo Bar === */
#promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 10px 0;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

#promo-bar.visible {
    transform: translateY(0);
}

#promo-bar.hidden-bar {
    transform: translateY(-100%);
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-content i {
    font-size: 1rem;
}

.promo-cta {
    background: var(--navy);
    color: var(--gold);
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-cta:hover {
    background: var(--navy-light);
    transform: scale(1.05);
}

.promo-close {
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 6px;
    opacity: 0.6;
    line-height: 1;
}

.promo-close:hover {
    opacity: 1;
}

/* === Navigation === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

#navbar.with-promo {
    top: 42px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
    border-radius: 50%;
}

#navbar.scrolled .logo-img {
    height: 48px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--gold);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.75) 40%, rgba(10, 22, 40, 0.85) 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--off-white), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: rgba(255,255,255,0.95);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--gold);
}

.trust-item strong {
    color: var(--white);
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    color: rgba(255,255,255,0.4);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    font-family: var(--font-primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.btn-whatsapp {
    background: var(--green-whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-service {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    margin-top: auto;
}

.btn-service:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* === Sections === */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--off-white);
}

.section-dark {
    background: var(--navy);
}

.section-accent {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-dark .section-header h2,
.section-accent .section-header h2 {
    color: var(--white);
}

.highlight {
    color: var(--gold-dark);
}

.highlight-light {
    color: var(--gold);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-desc.light {
    color: rgba(255,255,255,0.6);
}

/* === Features Grid === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === Services Grid === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.service-card {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border-color: var(--gold);
    transform: scale(1.03);
}

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

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.service-badge.popular {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.service-badge.best {
    background: rgba(201, 168, 76, 0.25);
    color: var(--gold);
}

.service-badge.pro {
    background: rgba(168, 85, 247, 0.2);
    color: #C084FC;
}

.service-badge.vip {
    background: rgba(236, 72, 153, 0.2);
    color: #F472B6;
}

.service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    margin-top: 8px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.service-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-features li {
    padding: 5px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-features li i {
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-meta {
    margin-bottom: 12px;
}

.service-time {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.service-time i {
    margin-right: 4px;
}

.service-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-from {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.service-card.featured .btn-service {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
}

.services-note {
    margin-top: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.services-note i {
    color: var(--gold);
}

/* === Process Timeline === */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.2));
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 120px;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    text-align: right;
    line-height: 1;
    padding-top: 4px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    right: -37px;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--off-white);
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 4px;
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* === Guarantee Section === */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guarantee-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.guarantee-content > p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.guarantee-features {
    display: grid;
    gap: 20px;
}

.g-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.g-feature > i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.g-feature div strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.g-feature div span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.guarantee-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guarantee-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.guarantee-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.5s ease;
}

.guarantee-image-wrapper:hover .guarantee-image {
    transform: scale(1.03);
}

.guarantee-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-small {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.4);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* === Booking Form Section === */
.booking-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.discount-banner {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}

.discount-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--gold);
}

.discount-banner h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.discount-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.discount-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.timer-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
}

.timer-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.timer-sep {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-direct {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.contact-direct h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.btn-whatsapp-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--green-whatsapp);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.btn-whatsapp-sidebar:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.btn-call-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.btn-call-sidebar:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

/* === Form Styles === */
.booking-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}

.form-step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: var(--transition);
}

.form-step-indicator.active {
    opacity: 1;
}

.form-step-indicator.completed {
    opacity: 0.7;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.form-step-indicator.active .step-num {
    background: var(--gold);
    color: var(--navy);
}

.form-step-indicator.completed .step-num {
    background: var(--success);
    color: var(--white);
}

.step-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-step-connector {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 12px;
}

.form-panel {
    display: none;
}

.form-panel.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-panel-title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-panel-title i {
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-input option {
    background: var(--navy);
    color: var(--white);
}

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

.form-hint {
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 6px;
    min-height: 20px;
}

/* Vehicle Type Grid */
.vehicle-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.vehicle-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vehicle-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255,255,255,0.6);
}

.vehicle-option-content i {
    font-size: 1.4rem;
}

.vehicle-option-content span {
    font-size: 0.8rem;
    font-weight: 600;
}

.vehicle-option input:checked + .vehicle-option-content {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.vehicle-option-content:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.05);
}

/* Condition Grid */
.condition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.condition-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.condition-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.condition-emoji {
    font-size: 1.5rem;
}

.condition-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.condition-desc {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

.condition-option input:checked + .condition-content {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.condition-content:hover {
    border-color: rgba(201, 168, 76, 0.4);
}

/* Checkbox */
.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.6) !important;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
}

.checkbox-label .link {
    color: var(--gold);
    text-decoration: underline;
}

/* Service Select in Form */
.service-select-grid {
    display: grid;
    gap: 10px;
}

.service-select-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-select-content {
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.service-select-option.recommended .service-select-content {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.05);
}

.service-select-option input:checked + .service-select-content {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.12);
}

.service-select-content:hover {
    border-color: rgba(201, 168, 76, 0.5);
}

.ssc-badge {
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: 4px;
    font-weight: 600;
}

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

.ssc-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.ssc-price {
    font-weight: 800;
    color: var(--gold);
    font-size: 1rem;
}

.ssc-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
    display: block;
}

/* Form Navigation */
.form-nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.form-nav-buttons .btn {
    flex: 1;
}

.btn-back {
    border-color: rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.7) !important;
}

.btn-back:hover {
    border-color: rgba(255,255,255,0.4) !important;
    color: var(--white) !important;
    background: rgba(255,255,255,0.05) !important;
}

/* Form Summary */
.form-summary {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    display: none;
}

.form-summary.visible {
    display: block;
}

.form-summary h4 {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: rgba(255,255,255,0.5);
}

.summary-value {
    color: var(--white);
    font-weight: 600;
}

.summary-discount {
    color: var(--success) !important;
}

.summary-total {
    border-top: 2px solid rgba(201, 168, 76, 0.3) !important;
    margin-top: 8px;
    padding-top: 12px !important;
}

.summary-total .summary-value {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Success State */
.success-content {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.success-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-content p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.btn-whatsapp-success {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-whatsapp);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-whatsapp-success:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* === Coverage === */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.coverage-item i {
    color: var(--gold-dark);
    font-size: 0.8rem;
}

.coverage-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.coverage-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.coverage-note a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* === FAQ === */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question i {
    color: var(--gold-dark);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* === CTA Section === */
.section-cta {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(10, 22, 40, 0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
    background: var(--navy);
    color: var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-buttons .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* === Footer === */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
    border-radius: 50%;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact a i {
    width: 16px;
    color: var(--gold);
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background: var(--white);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        flex-direction: row;
    }
    
    .discount-banner,
    .contact-direct {
        flex: 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        z-index: 999;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
        font-size: 1rem;
    }
    
    .logo-img {
        height: 46px;
    }
    
    #navbar.scrolled .logo-img {
        height: 40px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 24px 80px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        font-size: 1.5rem;
    }
    
    .step-number::after {
        right: -13px;
        width: 8px;
        height: 8px;
    }
    
    .step-icon {
        display: none;
    }
    
    .booking-sidebar {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .vehicle-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-content {
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .form-steps {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .form-step-connector {
        width: 20px;
        margin: 0 6px;
    }
    
    .step-text {
        display: none;
    }
    
    .booking-form {
        padding: 24px 20px;
    }
    
    .form-nav-buttons {
        flex-direction: column-reverse;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .condition-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-visual {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* === Print Styles === */
@media print {
    #navbar, #promo-bar, .whatsapp-float, .hero-scroll {
        display: none;
    }
    
    .section-dark, .section-accent {
        background: white !important;
        color: black !important;
    }
}