/* ND Auto General Repair — Static Site Styles */
@font-face{font-family:'Outfit';font-style:normal;font-weight:400 800;font-display:optional;src:url('assets/fonts/outfit-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122,U+2212,U+FEFF,U+FFFD;}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Logo-sampled blue spectrum (light shift) */
  --blue-100: #e8f2ff;
  --blue-200: #cde3fa;
  --blue-400: #5cb8ff;
  --blue-500: #5092d8;
  --blue-600: #4876bb;
  --blue-800: #4060a0;
  --blue-900: #333478;
  --navy: #0f1d3a;
  --navy-light: #1a2d52;
  --red-500: #ff2222;
  --red-600: #e01e1e;
  --whatsapp: #25D366;
  --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;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(12,26,50,0.08), 0 1px 2px rgba(12,26,50,0.04);
  --shadow-md: 0 4px 6px rgba(12,26,50,0.06), 0 2px 4px rgba(12,26,50,0.04);
  --shadow-lg: 0 10px 15px rgba(12,26,50,0.08), 0 4px 6px rgba(12,26,50,0.04);
  --max-w: 1200px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--gray-800); line-height: 1.6; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* =================== HEADER =================== */
.header { position: sticky; top: 0; z-index: 100; background: #141418; border-bottom: 1px solid rgba(255,255,255,0.08); transition: box-shadow 300ms var(--ease-out); }
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; transition: height 300ms var(--ease-out); }
.header.scrolled .header-inner { height: 56px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; color: var(--white); }
.logo-img { height: 64px; width: auto; transition: height 300ms var(--ease-out); }
.header.scrolled .logo-img { height: 40px; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.7); transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out); }
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav a.active { background: rgba(255,255,255,0.12); color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: transform 160ms var(--ease-out); }
.header-btn:active { transform: scale(0.95); }
.btn-phone { background: var(--blue-500); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 12px; }
.hamburger svg { width: 24px; height: 24px; color: var(--white); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 16px 24px; z-index: 99; box-shadow: var(--shadow-lg); transition: top 300ms var(--ease-out); }
.header.scrolled .mobile-nav { top: 56px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 16px; font-size: 1rem; font-weight: 500; color: var(--gray-700); border-radius: var(--radius-sm); }
.mobile-nav a.active { background: var(--gray-100); color: var(--navy); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-trigger svg { transition: transform 200ms var(--ease-out); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px 0; z-index: 101; }
.nav-dropdown-menu a { display: block; padding: 8px 16px; font-size: 0.85rem; font-weight: 500; color: var(--gray-700); white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--gray-100); color: var(--navy); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

/* Mobile nav sub-links */
.mobile-nav-group { }
.mobile-nav-parent { display: block; padding: 12px 16px; font-size: 1rem; font-weight: 500; color: var(--gray-700); border-radius: var(--radius-sm); }
.mobile-nav-parent.active { background: var(--gray-100); color: var(--navy); }
.mobile-nav-sub { padding-left: 16px; }
.mobile-nav-sub a { display: block; padding: 8px 16px; font-size: 0.9rem; font-weight: 400; color: var(--gray-500); border-radius: var(--radius-sm); }
.mobile-nav-sub a:hover { background: var(--gray-100); color: var(--navy); }

/* =================== HERO (subpages) =================== */
.hero { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,29,53,0.92) 0%, rgba(15,29,53,0.75) 100%); }
.hero-overlay-asym { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,29,53,0.95) 0%, rgba(15,29,53,0.88) 35%, rgba(15,29,53,0.5) 65%, rgba(15,29,53,0.2) 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.badge { display: inline-block; background: var(--blue-500); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.hero h1 { font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 16px; max-width: 700px; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* =================== HERO SPLIT (homepage) =================== */
.hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 520px; }
.hero-split-content { background: var(--navy); display: flex; align-items: center; }
.hero-split-inner { max-width: calc(var(--max-w) * 0.55); margin-left: auto; margin-right: 0; padding: 60px 48px 60px 24px; }
.hero-split-inner .badge { margin-bottom: 16px; }
.hero-split-inner h1 { font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 16px; }
.hero-split-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-split-image { position: relative; overflow: hidden; }
.hero-split-image img { width: 100%; height: 100%; object-fit: cover; }

/* =================== BUTTONS =================== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer; transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out); text-decoration: none; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--blue-500); color: var(--white); }
.btn-whatsapp-cta { background: var(--whatsapp); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline { background: transparent; color: var(--blue-500); border: 2px solid var(--blue-500); }
.btn-blue { background: var(--blue-500); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* =================== TRUST BAR =================== */
.trust-bar { background: var(--navy-light); padding: 0; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; padding: 28px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; }
.trust-item strong { display: block; color: var(--white); font-weight: 800; font-size: 1.5rem; line-height: 1.2; }
.trust-divider { display: none; }
.trust-address { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.trust-address a { color: rgba(255,255,255,0.8); text-decoration: underline; text-underline-offset: 2px; }
.trust-address a:hover { color: var(--white); }
.trust-address svg { flex-shrink: 0; opacity: 0.6; }
@media (max-width: 768px) { .trust-bar-inner { grid-template-columns: 1fr 1fr; } .trust-item { padding: 20px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); } .trust-item:nth-child(2) { border-right: none; } }
@media (max-width: 480px) { .trust-item { padding: 16px 8px; font-size: 0.8rem; } .trust-item strong { font-size: 1.25rem; } }

/* =================== SECTIONS =================== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.section-alt { background: var(--gray-50); }
.section-label { font-size: 0.75rem; font-weight: 700; color: var(--blue-500); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--blue-500); flex-shrink: 0; }
.section-center .section-label { justify-content: center; }
.section-title { font-size: 3rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.1; letter-spacing: -0.025em; }
.section-subtitle { font-size: 1rem; color: var(--gray-500); max-width: 600px; margin-bottom: 48px; line-height: 1.7; letter-spacing: 0.01em; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* =================== SERVICES GRID (HOME) =================== */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 24px; transition: transform 200ms var(--ease-out), border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out); display: block; }
.service-card:active { transform: translateY(0) scale(0.98); }
.service-card-featured { grid-column: span 2; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; background: var(--blue-100); border-left: 3px solid var(--blue-500); padding: 32px 28px; }
.service-card-featured .service-icon { background: rgba(59,130,246,0.15); }
.service-icon { width: 48px; height: 48px; background: var(--blue-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--blue-500); }
.service-icon svg { width: 24px; height: 24px; }
.service-card-featured .service-icon { margin-bottom: 0; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; }

/* =================== WHY CHOOSE US =================== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px 28px; transition: border-color 200ms var(--ease-out); cursor: pointer; }
.feature-icon { width: 52px; height: 52px; background: var(--blue-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--blue-500); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* =================== REVIEWS =================== */
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-stars { color: #facc15; font-size: 1.3rem; margin-bottom: 4px; }
.reviews-label { font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.reviews-layout { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.reviews-layout > :first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; background: var(--navy); border: 1px solid var(--navy-light); border-radius: var(--radius); padding: 40px 32px; }
.reviews-layout > :first-child .review-stars { color: #facc15; }
.reviews-layout > :first-child .review-text { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.reviews-layout > :first-child .review-author { color: var(--white); }
.reviews-layout > :first-child .review-date { color: rgba(255,255,255,0.5); }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; }
.review-stars { color: #facc15; margin-bottom: 12px; font-size: 1rem; }
.review-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.review-date { font-size: 0.8rem; color: var(--gray-500); }

/* =================== GALLERY =================== */
.gallery-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 16px; }
.gallery-grid img { border-radius: var(--radius); width: 100%; height: 220px; object-fit: cover; }

/* =================== BENTO GALLERY =================== */
.bento-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: 240px; gap: 12px; }
.bento-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); transition: transform 300ms var(--ease-out); }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }

/* =================== MAP =================== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; border: none; }

/* =================== CTA BANNER =================== */
.cta-banner { background: var(--navy); padding: 64px 0; text-align: center; }
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =================== STATS BAR =================== */
.stats-bar { background: linear-gradient(135deg, var(--blue-800) 0%, var(--navy) 100%); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-size: 2.5rem; font-weight: 800; color: var(--white); }
.stat-item p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* =================== BRAND LOGO STRIP (Homepage) =================== */
.brands-strip { padding: 48px 0 56px; background: var(--white); }
.brands-strip-label { text-align: center; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 28px; }
.brands-logo-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 16px; }
.brand-logo-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 8px; border-radius: var(--radius-sm); transition: transform 200ms var(--ease-out), background-color 200ms var(--ease-out); }
.brand-logo-tile img { width: 48px; height: 48px; object-fit: contain; transition: transform 200ms var(--ease-out); }
.brand-logo-tile span { font-size: 0.75rem; font-weight: 500; color: var(--gray-400); text-align: center; line-height: 1.2; transition: color 200ms var(--ease-out); }
.brand-logo-tile:active { transform: scale(0.95); }

/* =================== BRAND TILE GRID (About page) =================== */
.brands-tile-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.brand-tile { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 16px 12px; text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out); }
.brand-tile:active { transform: scale(0.97); }

/* =================== SERVICE DETAIL (Services page) =================== */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--gray-200); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius); overflow: hidden; }
.service-detail-img img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); }
.service-detail-content { position: relative; }
.service-detail-icon { width: 44px; height: 44px; background: var(--blue-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--blue-500); position: relative; z-index: 1; }
.service-detail-icon svg { width: 22px; height: 22px; }
.service-number { font-size: 6rem; font-weight: 900; color: var(--blue-100); line-height: 1; position: absolute; top: -0.25em; left: -0.08em; pointer-events: none; user-select: none; z-index: 0; opacity: 0.7; }
.service-detail { }
.service-detail-content h2 { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; position: relative; z-index: 1; }
.service-detail-content ul { margin-bottom: 24px; }
.service-detail-content li { padding: 6px 0; font-size: 0.95rem; color: var(--gray-600); display: flex; align-items: flex-start; gap: 10px; }
.service-detail-content li::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--blue-500); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

/* =================== CONTACT =================== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-card .form-sub { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(72,119,189,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400, #9ca3af); }
.form-links { text-align: center; margin-top: 16px; font-size: 0.9rem; color: var(--gray-500); }
.form-links a { color: var(--whatsapp); font-weight: 600; }

.contact-details { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 40px; }
.contact-details h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--gray-600); }

/* =================== FOOTER =================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { }
.footer-brand .footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.footer-brand-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.footer-brand-links a { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 160ms var(--ease-out); }
.footer-brand-links a:hover { color: var(--white); }
.footer-brand-links svg { flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: background-color 160ms var(--ease-out); }
.footer h4 { color: var(--white); font-size: 0.75rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 0.85rem; display: inline-block; padding: 6px 0; min-height: 44px; line-height: 1.6; transition: color 160ms var(--ease-out); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { display: inline-block; padding: 8px 0; min-height: 44px; }

/* =================== FLOATING WHATSAPP =================== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 1000; width: 56px; height: 56px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(37,211,102,0.4); transition: transform 200ms var(--ease-out); }
.whatsapp-float:active { transform: scale(0.95); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* =================== SCROLL PROGRESS =================== */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: var(--blue-500); z-index: 200; transform-origin: left; transform: scaleX(0); }

/* =================== PROCESS STRIP =================== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.process-step { text-align: center; position: relative; }
.process-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--blue-500); color: var(--white); font-size: 1.1rem; font-weight: 800; border-radius: 50%; margin: 0 auto 16px; }
.process-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.5; }
.process-connector { display: none; }

/* =================== REVIEW STARS SVG =================== */
.review-stars svg { width: 18px; height: 18px; fill: #facc15; display: inline-block; vertical-align: middle; }
.reviews-stars svg { width: 22px; height: 22px; fill: #facc15; display: inline-block; vertical-align: middle; }

/* =================== HOVER (desktop only) =================== */
@media (hover: hover) {
  .nav a:hover { background: var(--gray-100); color: var(--navy); }
  .mobile-nav a:hover { background: var(--gray-100); color: var(--navy); }
  .header-btn:hover { transform: scale(1.1); }
  .btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
  .btn-whatsapp-cta:hover { background: #20BD5A; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
  .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
  .btn-outline:hover { background: var(--blue-500); color: var(--white); }
  .btn-blue:hover { background: var(--blue-600); }
  .btn-dark:hover { background: var(--navy-light); }
  .service-card:hover { border-color: var(--blue-400); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(59,130,246,0.12); }
  .feature-card:hover { border-color: var(--blue-200); box-shadow: 0 6px 20px rgba(59,130,246,0.08); }
  .brand-tile:hover { border-color: var(--blue-400); transform: translateY(-1px); }
  .brand-logo-tile:hover { background: var(--gray-100); }
  .brand-logo-tile:hover img { transform: scale(1.12); }
  .brand-logo-tile:hover span { color: var(--gray-700); }
  .form-links a:hover { text-decoration: underline; }
  .contact-item a:hover { color: var(--blue-500); }
  .footer-social a:hover { background: rgba(255,255,255,0.2); }
  .footer ul a:hover { color: var(--white); }
  .footer-bottom-links a:hover { color: var(--white); }
  .whatsapp-float:hover { transform: scale(1.1); }
  .bento-grid img:hover { transform: scale(1.03); filter: brightness(1.05); }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .logo-text { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: span 2; }
  .reviews-layout { grid-template-columns: 1.3fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .bento-tall { grid-row: span 2; }
  .bento-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .brands-tile-grid { grid-template-columns: repeat(4, 1fr); }
  .brands-logo-grid { grid-template-columns: repeat(6, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { height: 64px; }
  .header.scrolled .header-inner { height: 52px; }
  .logo-img { height: 48px; }
  .header.scrolled .logo-img { height: 34px; }
  .mobile-nav { top: 64px; }
  .header.scrolled .mobile-nav { top: 52px; }
  .nav { display: none; }
  .hamburger { display: block; padding: 12px; }
  .hero h1 { font-size: 2.4rem; }
  .hero { min-height: 420px; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-content { order: 1; }
  .hero-split-inner { max-width: 100%; margin: 0; padding: 48px 24px; }
  .hero-split-inner h1 { font-size: 2.4rem; }
  .hero-split-image { order: 2; max-height: 300px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .section-lg { padding: 80px 0; }
  .section-title { font-size: 2rem; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-number { font-size: 4rem; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card-featured { grid-column: span 2; grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-layout > :first-child { grid-row: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid img { height: 180px; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; gap: 8px; }
  .bento-tall { grid-row: span 2; }
  .bento-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item h3 { font-size: 2rem; }
  .brands-tile-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-logo-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .brand-logo-tile img { width: 40px; height: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; overflow: hidden; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-content { overflow: hidden; }
  .service-detail-img img { height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner h2 { font-size: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { order: -1; }
}

@media (max-width: 480px) {
  .hero h1, .hero-split-inner h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.95rem; }
  .section-title { font-size: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .brands-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-logo-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .brand-logo-tile { padding: 12px 4px; gap: 4px; }
  .brand-logo-tile img { width: 32px; height: 32px; }
  .brand-logo-tile span { font-size: 0.75rem; }
  .brands-strip { padding: 32px 0 40px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .whatsapp-float { bottom: 80px; }
  .form-card { padding: 24px; }
  .contact-details { padding: 24px; }
}

/* === On-site quick wins (2026-06-03) === */
.page-reviews { background: var(--gray-50); }
.page-reviews .pr-head { text-align: center; margin-bottom: 24px; }
.pr-trust { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.pr-trust span { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.pr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 860px; margin: 0 auto; }
.pr-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px; }
.pr-card .s { color: #facc15; font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
.pr-card p { font-size: 0.92rem; color: var(--gray-700); line-height: 1.6; font-style: italic; margin-bottom: 10px; }
.pr-card .a { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.related-services { max-width: 860px; margin: 28px auto 0; }
.related-services h3 { font-size: 1rem; color: var(--navy); margin-bottom: 12px; text-align: center; }
.rs-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.rs-links a { background: var(--white); border: 1px solid var(--gray-200); border-radius: 50px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600; color: var(--navy); transition: border-color 160ms, color 160ms; }
.rs-links a:hover { border-color: var(--blue-500); color: var(--blue-500); }
.sticky-cta { display: none; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 28px auto 0; }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px 24px; text-align: center; }
.team-card .tn { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.team-card .tr { font-size: 0.82rem; color: var(--blue-500); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.team-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; box-shadow: 0 -2px 12px rgba(0,0,0,0.15); }
  .sticky-cta a { flex: 1; text-align: center; padding: 14px; font-weight: 700; font-size: 0.95rem; color: #fff; display: flex; align-items: center; justify-content: center; gap: 7px; }
  .sticky-cta .swa { background: var(--whatsapp); }
  .sticky-cta .sca { background: var(--blue-500); }
  .whatsapp-float { display: none; }
  body { padding-bottom: 52px; }
  .pr-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
