/* ============================================
   VARA'S AUTO BODY SOLUTIONS - MAIN STYLES
   ============================================ */

:root {
    --color-black: #0a0a0a;
    --color-black-light: #1a1a1a;
    --color-red: #c41e3a;
    --color-red-dark: #a01830;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-red: 0 4px 6px -1px rgba(196, 30, 58, 0.3);
    --shadow-red-lg: 0 10px 20px -2px rgba(196, 30, 58, 0.4);
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --container-max: 1200px;
    --header-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); font-size: 1rem; line-height: 1.6; color: var(--color-gray-800); background: var(--color-white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-red); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-red-dark); }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--color-black); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }

.emergency-banner { background: var(--color-red); color: var(--color-white); padding: 0.75rem 0; text-align: center; font-weight: 600; position: relative; z-index: 101; }
.emergency-banner .container { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.emergency-phone { color: var(--color-white); font-size: 1.125rem; font-weight: 700; }
.emergency-phone:hover { color: var(--color-gray-200); }

.header { background: var(--color-black); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-lg); height: var(--header-height); }
.nav { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { display: flex; align-items: center; gap: 0.75rem; color: var(--color-white); }
.logo-img { width: 45px; height: 45px; border-radius: var(--radius); }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 1.25rem; font-weight: 800; line-height: 1.2; color: var(--color-white); }
.logo-sub { font-size: 0.6875rem; font-weight: 500; color: var(--color-gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a { color: var(--color-gray-300); font-weight: 500; font-size: 0.9375rem; transition: color 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--color-white); }
.nav-cta { margin-left: 0.5rem; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { width: 25px; height: 2px; background: var(--color-white); transition: 0.3s; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.2s ease; border: none; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--color-red); color: var(--color-white); box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--color-red-dark); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-red-lg); }
.btn-secondary { background: var(--color-white); color: var(--color-black); border: 2px solid var(--color-white); }
.btn-secondary:hover { background: var(--color-gray-100); color: var(--color-black); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--color-white); border: 2px solid var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-black); }
.btn-outline-dark { background: transparent; color: var(--color-black); border: 2px solid var(--color-black); }
.btn-outline-dark:hover { background: var(--color-black); color: var(--color-white); }
.btn-large { padding: 1.125rem 2.25rem; font-size: 1.125rem; }
.btn-block { width: 100%; }
.btn-icon { font-size: 1.25em; }

.hero { position: relative; min-height: 650px; display: flex; align-items: center; background: var(--color-black); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('../images/storefront.png'); background-size: cover; background-position: center; opacity: 0.75; z-index: 0; }
.hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(10,10,10,0.6) 0%, rgba(26,26,26,0.5) 50%, rgba(10,10,10,0.6) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 3; max-width: 800px; padding: 5rem 0; }
.hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; color: var(--color-white); line-height: 1.1; margin-bottom: 1.25rem; }
.hero-subtitle { font-size: clamp(1.0625rem, 2vw, 1.25rem); color: var(--color-gray-300); margin-bottom: 2rem; line-height: 1.7; max-width: 700px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 0.5rem; color: var(--color-gray-300); font-size: 0.9375rem; font-weight: 500; }
.badge-icon { width: 22px; height: 22px; background: var(--color-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-white); font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }

.trust-strip { background: var(--color-red-dark); color: var(--color-white); padding: 1rem 0; text-align: center; }
.trust-strip-content { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; font-size: 0.9375rem; font-weight: 500; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--color-black); margin-bottom: 1rem; }
.section-header p { color: var(--color-gray-500); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }
.section-dark { background: var(--color-black); color: var(--color-white); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-gray { background: var(--color-gray-100); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--color-white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: all 0.3s ease; border: 1px solid var(--color-gray-200); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--color-gray-300); }
.service-card.featured { border-top: 4px solid var(--color-red); }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--color-black); margin-bottom: 0.75rem; }
.service-card p { color: var(--color-gray-600); font-size: 0.9375rem; margin-bottom: 1.25rem; line-height: 1.6; }
.service-cta { color: var(--color-red); font-weight: 600; font-size: 0.9375rem; }
.service-cta:hover { color: var(--color-red-dark); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-content h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1.25rem; line-height: 1.2; }
.feature-content .lead { font-size: 1.125rem; color: var(--color-gray-300); margin-bottom: 2rem; line-height: 1.7; }
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-icon-box { width: 32px; height: 32px; background: var(--color-red); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--color-white); font-weight: 700; flex-shrink: 0; font-size: 0.875rem; }
.feature-text h4 { font-weight: 700; margin-bottom: 0.25rem; color: var(--color-white); }
.feature-text p { color: var(--color-gray-400); font-size: 0.9375rem; margin: 0; }

.cta-box { background: var(--color-black-light); padding: 2.5rem; border-radius: var(--radius-xl); border: 1px solid #333; }
.cta-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-white); }
.cta-box p { color: var(--color-gray-400); margin-bottom: 1.5rem; }
.cta-box-secondary { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #333; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.benefit-card { text-align: center; padding: 2rem; }
.benefit-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.25rem; }
.benefit-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-white); }
.benefit-card p { color: var(--color-gray-400); font-size: 0.9375rem; margin: 0; }

.service-area { text-align: center; }
.service-area h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--color-black); margin-bottom: 0.75rem; }
.service-area-intro { color: var(--color-gray-500); margin-bottom: 2.5rem; font-size: 1.125rem; }
.service-area-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; max-width: 900px; margin: 0 auto; }
.area-item { background: var(--color-white); padding: 0.625rem 1.25rem; border-radius: 9999px; font-weight: 600; color: var(--color-gray-700); box-shadow: var(--shadow-sm); border: 1px solid var(--color-gray-200); }
.area-item.highlight { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-gray-200); }
.faq-question { width: 100%; padding: 1.5rem 0; background: none; border: none; text-align: left; font-size: 1.0625rem; font-weight: 600; color: var(--color-black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.faq-question:hover { color: var(--color-red); }
.faq-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--color-red); font-size: 1.25rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer-content { padding-bottom: 1.5rem; color: var(--color-gray-600); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--color-black); margin-bottom: 1.5rem; }
.contact-info .lead { font-size: 1.125rem; color: var(--color-gray-600); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon { width: 48px; height: 48px; background: var(--color-white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.contact-detail-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-detail-content p { color: var(--color-gray-600); margin: 0; }
.contact-form-wrapper { background: var(--color-white); padding: 2.5rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.contact-form-wrapper h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-form-wrapper > p { color: var(--color-gray-500); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { display: block; font-weight: 600; color: var(--color-black); margin-bottom: 0.5rem; font-size: 0.9375rem; }
.form-group label .required { color: var(--color-red); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.875rem 1rem; border: 2px solid var(--color-gray-200); border-radius: var(--radius); font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s; font-family: inherit; background: var(--color-white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--color-red); box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; margin-top: 1.25rem; font-size: 0.9375rem; color: var(--color-gray-500); }

.coming-soon { text-align: center; padding: 4rem 2rem; background: var(--color-gray-100); border-radius: var(--radius-xl); border: 2px dashed var(--color-gray-300); }
.coming-soon-icon { font-size: 3rem; margin-bottom: 1rem; }
.coming-soon h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.coming-soon p { color: var(--color-gray-500); max-width: 500px; margin: 0 auto; }

.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-red); padding: 0.875rem 1rem; display: flex; justify-content: center; align-items: center; gap: 0.75rem; z-index: 99; box-shadow: 0 -4px 20px rgba(196, 30, 58, 0.4); transform: translateY(100%); transition: transform 0.3s ease; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { color: var(--color-white); font-size: 0.9375rem; font-weight: 600; }
.sticky-cta-phone { color: var(--color-white); font-size: 1.125rem; font-weight: 700; }
.sticky-cta-phone:hover { color: var(--color-gray-200); }

.footer { background: var(--color-black); color: var(--color-gray-300); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 300px; }
.footer-brand img { margin-bottom: 1rem; }
.footer-brand h3 { color: var(--color-white); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; color: var(--color-gray-400); }
.footer h4 { color: var(--color-white); font-size: 0.9375rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-menu { list-style: none; }
.footer-menu li { margin-bottom: 0.625rem; }
.footer-menu a { color: var(--color-gray-400); font-size: 0.9375rem; }
.footer-menu a:hover { color: var(--color-white); }
.footer-contact p { margin-bottom: 0.5rem; font-size: 0.9375rem; color: var(--color-gray-400); }
.footer-bottom { border-top: 1px solid #333; padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: var(--color-gray-500); margin-bottom: 0.5rem; }
.footer-service-area { margin-top: 1rem; font-size: 0.8125rem; color: var(--color-gray-500); line-height: 1.6; }

.page-header { background: var(--color-black); padding: 4rem 0; text-align: center; }
.page-header h1 { color: var(--color-white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.page-header p { color: var(--color-gray-300); font-size: 1.125rem; max-width: 700px; margin: 0 auto; }

.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-size: 1.875rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--color-black); }
.content-block h3 { font-size: 1.375rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--color-black); }
.content-block p { color: var(--color-gray-600); line-height: 1.8; margin-bottom: 1.25rem; }
.content-block ul, .content-block ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--color-gray-600); }
.content-block li { margin-bottom: 0.5rem; line-height: 1.7; }

.highlight-box { background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%); color: var(--color-white); padding: 2rem; border-radius: var(--radius-lg); margin: 2rem 0; }
.highlight-box h3 { color: var(--color-white); margin-top: 0; }
.highlight-box p { color: rgba(255,255,255,0.9); margin-bottom: 0; }

.final-cta { background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%); color: var(--color-white); padding: 4rem 0; text-align: center; }
.final-cta h2 { color: var(--color-white); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.final-cta p { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta .btn-secondary { background: var(--color-white); color: var(--color-red); border-color: var(--color-white); }
.final-cta .btn-secondary:hover { background: var(--color-gray-100); }

.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--color-black); flex-direction: column; padding: 2rem; gap: 1.25rem; transform: translateY(-150%); transition: transform 0.3s ease; box-shadow: var(--shadow-xl); }
    .nav-menu.active { transform: translateY(0); }
    .nav-cta { margin-left: 0; width: 100%; }
    .nav-cta .btn { width: 100%; }
    .mobile-menu-btn { display: flex; }
    .hero { min-height: auto; }
    .hero-content { padding: 3rem 0; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-badges { flex-direction: column; gap: 0.75rem; }
    .trust-strip-content { flex-direction: column; gap: 0.75rem; }
    .trust-divider { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 3rem 0; }
    .cta-box { padding: 1.5rem; }
    .contact-form-wrapper { padding: 1.5rem; }
    .page-header { padding: 2.5rem 0; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.875rem; }
    .section-header h2 { font-size: 1.5rem; }
    .btn-large { padding: 1rem 1.5rem; font-size: 1rem; }
    .service-card { padding: 1.5rem; }
    .faq-question { font-size: 1rem; padding-right: 2rem; }
}
