/* ============================================
   MAZI TT MOTORS — WordPress Theme Styles
   ============================================ */
:root {
  --orange: #E85D04;
  --orange-dark: #C74D03;
  --orange-light: #F4A261;
  --black: #1A1A1A;
  --dark: #111111;
  --cream: #FDF6EC;
  --white: #FFFFFF;
  --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;
  --gray-900: #111827;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--black); margin-bottom: 12px; line-height: 1.2; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-subtitle { margin: 0 auto; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition); white-space: nowrap; border: 2px solid transparent; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,93,4,0.3); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1DA851; border-color: #1DA851; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.btn svg { width: 20px; height: 20px; }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: transparent; transition: var(--transition); }
.site-header.scrolled { background: rgba(26,26,26,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: var(--shadow-lg); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 24px; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; }
.logo img, .logo .custom-logo { height: 42px; width: auto; }
.logo-text { color: #fff; font-weight: 800; font-size: 1.2rem; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition); text-decoration: none; }
.main-nav > ul > li > a:hover, .main-nav > ul > li.current-menu-item > a, .main-nav > ul > li.current_page_item > a { color: var(--white); background: rgba(255,255,255,0.08); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-whatsapp { display: inline-flex; align-items: center; gap: 6px; background: #25D366; color: var(--white); padding: 10px 18px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.85rem; }
.header-whatsapp:hover { background: #1DA851; transform: translateY(-1px); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.65) 100%); z-index: 2; }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; padding: 120px 24px 80px; }
.hero-content { max-width: 600px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,93,4,0.15); border: 1px solid rgba(232,93,4,0.3); color: var(--orange-light); padding: 8px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; margin-bottom: 24px; letter-spacing: 0.5px; text-transform: uppercase; }
.hero-title { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-title .highlight { color: var(--orange); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; max-width: 550px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* HERO FORM CARD */
.hero-form-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4); border-radius: var(--radius-xl); padding: 32px; box-shadow: 0 8px 32px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.18); }
.hero-form-header { margin-bottom: 24px; }
.hero-form-header h3 { font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.hero-form-header p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.hero-request-form { display: flex; flex-direction: column; gap: 14px; }
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hf-group { display: flex; flex-direction: column; gap: 4px; }
.hf-group label { font-weight: 600; font-size: 0.78rem; color: rgba(255,255,255,0.85); letter-spacing: 0.3px; }
.hf-group input, .hf-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--white); background: rgba(255,255,255,0.08); transition: var(--transition); }
.hf-group input::placeholder, .hf-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.hf-group input:focus, .hf-group textarea:focus { border-color: var(--orange); background: rgba(255,255,255,0.12); box-shadow: 0 0 0 3px rgba(232,93,4,0.2); outline: none; }
.hf-group textarea { resize: vertical; min-height: 70px; }
.hf-submit { width: 100%; justify-content: center; padding: 14px; font-size: 0.95rem; border: none; cursor: pointer; }
.hf-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.hf-submit .spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: hf-spin 0.6s linear infinite; }
.hf-submit.loading .spinner { display: inline-block; }
.hf-submit.loading svg { display: none; }
@keyframes hf-spin { to { transform: rotate(360deg); } }
.hf-status { text-align: center; font-size: 0.85rem; font-weight: 500; min-height: 20px; }
.hf-status.success { color: #4ade80; }
.hf-status.error { color: #f87171; }

/* PAGE HEADER */
.page-header { background: var(--dark); padding: 140px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,93,4,0.08) 0%, transparent 60%); }
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; position: relative; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; }

/* TRUST STRIP */
.trust-strip { background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.12); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange)); opacity: 0.3; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.15rem; margin: 0 auto 18px; box-shadow: 0 4px 15px rgba(232,93,4,0.3); }
.step-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

/* WHY US */
.why-us { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.why-us::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%); border-radius: 50%; }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); transition: var(--transition); }
.why-card:hover { background: rgba(232,93,4,0.08); border-color: rgba(232,93,4,0.2); transform: translateY(-4px); }
.why-icon { width: 60px; height: 60px; border-radius: var(--radius-md); background: rgba(232,93,4,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.why-icon svg { width: 28px; height: 28px; color: var(--orange); }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 32px; border-radius: var(--radius-lg); background: var(--gray-50); border: 1px solid var(--gray-200); transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-card .why-icon { background: rgba(232,93,4,0.1); }
.service-card h3 { color: var(--black); font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; }

/* INVENTORY */
.inventory { background: var(--gray-50); }
.inventory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.inventory-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); }
.inventory-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--orange); }
.card-image { position: relative; height: 220px; overflow: hidden; background: var(--gray-100); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.inventory-card:hover .card-image img { transform: scale(1.05); }
.card-badge { position: absolute; top: 12px; left: 12px; background: var(--orange); color: var(--white); padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.card-body { padding: 20px; }
.card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.card-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.card-spec { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gray-500); }
.card-spec svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.card-price { font-size: 1.35rem; font-weight: 800; color: var(--orange); margin-bottom: 16px; }
.card-price .price-note { font-size: 0.78rem; font-weight: 400; color: var(--gray-400); display: block; }
.card-actions { display: flex; gap: 10px; }
.card-actions .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 0.85rem; }

/* TESTIMONIALS */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; color: #F59E0B; fill: #F59E0B; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-detail { font-size: 0.8rem; color: var(--gray-400); }

/* EXPORT */
.export-section { background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%); color: var(--white); position: relative; overflow: hidden; }
.export-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.export-text .section-title { color: var(--white); }
.export-text .section-subtitle { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.export-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.export-feature { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.export-feature svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.export-visual { display: flex; align-items: center; justify-content: center; }
.export-image { width: 100%; max-width: 450px; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.export-image img { width: 100%; height: auto; display: block; object-fit: cover; }

/* FAQ / ACCORDION */
.faq { background: var(--white); }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-trigger { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--black); transition: var(--transition); gap: 16px; width: 100%; text-align: left; }
.accordion-trigger:hover { color: var(--orange); }
.accordion-trigger span { flex: 1; }
.accordion-icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.35s ease; color: var(--gray-400); }
.accordion-item.active .accordion-icon { transform: rotate(180deg); color: var(--orange); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.accordion-item.active .accordion-content { max-height: 300px; padding-bottom: 22px; }
.accordion-content p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.8; }

/* FINAL CTA */
.final-cta { background: var(--orange); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -50%; left: -20%; width: 140%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 60%); pointer-events: none; }
.final-cta .section-title { color: var(--white); }
.final-cta .section-subtitle { color: rgba(255,255,255,0.85); margin: 0 auto 36px; }

/* QUOTE FORM */
.quote-section { background: var(--cream); }
.quote-form-wrapper { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form .form-group.full-width { grid-column: 1 / -1; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); font-size: 0.92rem; color: var(--black); background: var(--white); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,93,4,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.quote-form .btn { grid-column: 1 / -1; justify-content: center; padding: 16px; font-size: 1rem; }

/* ABOUT */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.about-image { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; background: var(--gray-100); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.value-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); background: var(--gray-50); border: 1px solid var(--gray-200); }
.value-card .why-icon { margin-bottom: 16px; }
.value-card h3 { font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* FOOTER */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer-col h4 { font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-col a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.85rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); }
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-social a svg { width: 16px; height: 16px; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.whatsapp-float a { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); animation: wa-pulse 2s infinite; }
.whatsapp-float a:hover { transform: scale(1.1); }
.whatsapp-float a svg { width: 30px; height: 30px; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-form-card { max-width: 500px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .export-content { grid-template-columns: 1fr; gap: 40px; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(26,26,26,0.98); padding: 16px; gap: 4px; backdrop-filter: blur(12px); }
  .main-nav.open > ul { flex-direction: column; width: 100%; }
  .main-nav.open > ul > li > a { padding: 12px 16px; font-size: 0.95rem; }
  .header-whatsapp span { display: none; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .services-grid, .about-values { grid-template-columns: 1fr 1fr; }
  .inventory-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-padding { padding: 60px 0; }
  .trust-strip-inner { gap: 16px; }
  .trust-divider { display: none; }
}
@media (max-width: 480px) {
  .steps-grid, .why-grid, .services-grid, .about-values { grid-template-columns: 1fr; }
  .hero-inner { padding: 100px 16px 60px; }
  .hero-form-card { padding: 20px; }
  .hf-row { grid-template-columns: 1fr; }
  .quote-form-wrapper { padding: 24px; }
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
