/* --- CSF GARAGE PREMIUM CSS DESIGN SYSTEM --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-base: #0a0c10;
    --bg-surface: #11131c;
    --bg-card: #161926;
    --bg-card-hover: #1f2336;
    
    --primary: #ff5500;
    --primary-hover: #e04a00;
    --primary-glow: rgba(255, 85, 0, 0.15);
    
    --accent-blue: #00d2ff;
    --accent-blue-glow: rgba(0, 210, 255, 0.15);
    --accent-green: #00e676;
    --accent-yellow: #ffd600;
    --accent-red: #ff1744;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-glow: rgba(255, 85, 0, 0.3);
    
    --glass-bg: rgba(22, 25, 38, 0.7);
    --glass-blur: blur(12px);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-surface);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-surface);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.text-gradient-orange {
    background: linear-gradient(135deg, #ff8800, #ff4400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #00f0ff, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-commercial {
    background: var(--primary-glow);
    color: var(--primary);
    border: 1px solid rgba(255, 85, 0, 0.3);
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* Header & Navigation */
header {
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-normal);
}

header.scrolled {
    background: var(--bg-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

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

.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.35);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--accent-blue);
    color: #0a0c10;
    box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.btn-blue:hover {
    background: #00b4d8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.35);
}

.hero-visual {
    position: relative;
}

.image-stack {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.image-stack img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.05);
}

/* Stats Trust Bar */
.trust-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

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

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

.trust-num {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.trust-lbl {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 12px;
    margin-bottom: 18px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- HORMOSI GRAND PLAN OFFER CARD --- */
.offer-section {
    background: radial-gradient(circle at 80% 20%, #151828 0%, var(--bg-base) 60%);
    padding: 100px 0;
}

.hormozi-offer-container {
    max-width: 900px;
    margin: 0 auto;
}

.offer-card {
    background: linear-gradient(135deg, rgba(255,85,0,0.06) 0%, rgba(0,210,255,0.03) 100%);
    border: 2px solid rgba(255, 85, 0, 0.35);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.08);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue));
}

.offer-badge {
    background: var(--primary);
    color: white;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-bottom: 24px;
}

.offer-card h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.offer-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 720px;
}

/* Offer value apilado */
.value-stack-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.value-stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
    padding-bottom: 12px;
}

.value-item-desc {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-item-desc span.check {
    color: var(--accent-green);
    font-weight: 900;
    font-size: 1.1rem;
}

.value-item-desc span.text {
    font-size: 1.05rem;
}

.value-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-pricing-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.price-box-labels {
    display: flex;
    flex-direction: column;
}

.price-box-total-lbl {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-box-total-val {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-box-final-lbl {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.price-box-final-val {
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
}

.price-box-savings {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 6px;
    display: inline-block;
}

/* Guarantee Card Box */
.guarantee-box {
    background: rgba(0, 210, 255, 0.03);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.guarantee-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.guarantee-text h4 {
    font-size: 1.1rem;
    color: var(--accent-blue);
    margin-bottom: 6px;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Urgent slots indicators */
.urgency-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--accent-yellow);
    font-weight: 600;
}

.urgency-indicator span.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-yellow);
    animation: pulseFlash 1.5s infinite;
}

@keyframes pulseFlash {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* --- B2B vs B2C SEGMENTATION CARDS --- */
.segmentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.segment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.segment-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.segment-header {
    margin-bottom: 24px;
}

.segment-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
    border: 1px solid var(--border);
}

.segment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.segment-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.segment-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.segment-features li {
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    color: var(--text-muted);
}

.segment-features li span.bullet {
    color: var(--primary);
    font-weight: bold;
}

/* --- MASTER MECHANIC (TRUST & AUTHORITY) --- */
.mechanic-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mechanic-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.mechanic-profile-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.mechanic-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    border: 4px solid var(--primary);
    padding: 4px;
    background: var(--bg-base);
}

.mechanic-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.mechanic-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.mechanic-title {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.mechanic-stat-gauge {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.mechanic-stat-item h5 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: white;
}

.mechanic-stat-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mechanic-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mechanic-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.mechanic-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.mechanic-badge-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- ACCORDION FAQ SECTION (NEIL PATEL SEO) --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

details.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    transition: var(--transition-fast);
    cursor: pointer;
}

details.faq-item[open] {
    border-color: rgba(255, 85, 0, 0.4);
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.04);
}

summary.faq-question {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

summary.faq-question::-webkit-details-marker {
    display: none;
}

summary.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.2s ease;
}

details.faq-item[open] summary.faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
    cursor: default;
}

/* --- DUAL BOOKING SECTION & FORM --- */
.booking-portal-split {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.booking-split-col {
    display: flex;
    flex-direction: column;
}

.calendly-embed-container {
    flex-grow: 1;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    background: var(--bg-card);
}

.portal-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* Radio button style selector */
.client-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-surface);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 8px;
}

.client-type-option {
    position: relative;
    text-align: center;
}

.client-type-input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.client-type-box {
    display: block;
    padding: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.client-type-input:checked + .client-type-box {
    background: var(--primary);
    color: white;
}

/* Success scheduling modal styling */
.schedule-success-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: var(--glass-blur);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.schedule-success-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.success-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--accent-green);
    box-shadow: 0 10px 40px rgba(0, 230, 118, 0.15);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.success-icon-big {
    width: 80px;
    height: 80px;
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-green);
    margin: 0 auto 24px auto;
}

.success-modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-modal-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.booking-summary-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.summary-detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-bottom: 8px;
}

.summary-detail-lbl {
    color: var(--text-muted);
}

.summary-detail-val {
    font-weight: 600;
}

/* Footer style */
footer {
    background: #06070a;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px 0;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* --- RESPONSIBILITY / MOBILE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .segmentation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .mechanic-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-portal-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: auto;
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links {
        gap: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .image-stack img {
        height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .calendly-embed-container {
        height: 600px;
    }
    
    .offer-card {
        padding: 24px;
    }
    
    .offer-card h3 {
        font-size: 1.6rem;
    }
    
    .price-box-final-val {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .offer-pricing-bar {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .guarantee-box {
        flex-direction: column;
        gap: 12px;
    }
}
