/* ============================================================
   MobiTouch – Main Stylesheet
   Phone Repair Tarneit VIC | mobitouch.com.au
   ============================================================ */

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

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E42;
  --cyan:       #00C2CB;
  --cyan-dark:  #009DA5;
  --cyan-pale:  #E6FAFB;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --text:       #1A1A2E;
  --muted:      #5C6478;
  --border:     #DDE2EC;
  --green:      #22C55E;
  --amber:      #F59E0B;
  --font-head:  'Space Grotesk', sans-serif;
  --font-body:  'Inter', sans-serif;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --r-sm:       8px;
  --r-md:       12px;
  --r-lg:       16px;
  --r-xl:       24px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.3px; }
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(24px, 3vw, 38px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
h4 { font-size: 17px; }
p { line-height: 1.7; }

/* ── Layout Helpers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.section { padding: 80px 0; }
.section--dark { background: var(--navy); }
.section--grey { background: var(--off-white); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 10px; }
.section-title { color: var(--text); margin-bottom: 14px; }
.section-title--white { color: var(--white); }
.section-sub { font-size: 17px; color: var(--muted); max-width: 540px; }
.section-sub--white { color: rgba(255,255,255,0.6); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 15px; font-family: var(--font-body);
  cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: var(--cyan); background: rgba(0,194,203,0.1); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1EBF5B; transform: translateY(-1px); }

/* ── Top Bar ── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--cyan); font-weight: 500; }
.topbar a:hover { text-decoration: underline; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-social a { color: rgba(255,255,255,0.6); font-size: 15px; transition: color 0.2s; }
.topbar-social a:hover { color: var(--cyan); }

/* ── Navigation ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-head); font-size: 24px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.5px;
}
.logo span { color: var(--cyan); }
.logo-sub { font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: 0.5px; display: block; margin-top: -2px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: var(--text); border-radius: var(--r-sm); transition: all 0.2s;
}
.nav-menu a:hover { color: var(--cyan-dark); background: var(--cyan-pale); }
.nav-menu a.active { color: var(--cyan-dark); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 8px;
  min-width: 200px; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: all 0.2s;
}
.nav-menu > li:hover .dropdown-menu,
.nav-menu > li:focus-within .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown-menu a {
  padding: 9px 14px; border-radius: var(--r-sm);
  font-size: 14px; display: block;
}
.nav-cta { background: var(--cyan); color: var(--navy) !important; border-radius: var(--r-sm); font-weight: 700 !important; margin-left: 8px; }
.nav-cta:hover { background: var(--cyan-dark) !important; color: var(--navy) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ── Hero ── */
.hero {
  background: var(--navy);
  min-height: 90vh; display: flex; align-items: center;
  padding: 80px 0; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,203,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,194,203,0.12); border: 1px solid rgba(0,194,203,0.3);
  color: var(--cyan); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--cyan); }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--white); }
.hero-stat .num em { color: var(--cyan); font-style: normal; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* Hero Visual Panel */
.hero-visual {
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: 36px; display: flex; flex-direction: column; gap: 14px;
}
.service-pill {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 14px 18px;
  transition: all 0.2s; cursor: default;
}
.service-pill:hover { border-color: rgba(0,194,203,0.4); background: rgba(0,194,203,0.06); }
.service-pill .sp-icon { font-size: 28px; width: 40px; text-align: center; flex-shrink: 0; }
.service-pill .sp-title { font-size: 14px; font-weight: 600; color: var(--white); }
.service-pill .sp-time { font-size: 12px; color: rgba(255,255,255,0.5); }
.service-pill .sp-price { font-size: 13px; font-weight: 700; color: var(--cyan); margin-left: auto; }

/* ── Trust Bar ── */
.trust-bar { background: var(--cyan-pale); border-top: 1px solid rgba(0,194,203,0.2); border-bottom: 1px solid rgba(0,194,203,0.2); padding: 22px 0; }
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--navy); }
.trust-item span { font-size: 20px; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 24px; transition: all 0.25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--cyan); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.service-card .from { font-size: 13px; font-weight: 700; color: var(--cyan-dark); }

/* ── Repair Pages Grid ── */
.repair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.repair-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.repair-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 18px;
}
.repair-item-left { display: flex; align-items: center; gap: 12px; }
.repair-item .r-icon { font-size: 22px; width: 36px; text-align: center; }
.repair-item .r-name { font-size: 15px; font-weight: 600; }
.repair-item .r-time { font-size: 12px; color: var(--muted); margin-top: 2px; }
.repair-item .r-price { font-size: 15px; font-weight: 700; color: var(--cyan-dark); }

/* Image placeholder (since we can't embed royalty-free images directly) */
.img-placeholder {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.img-placeholder .big-icon { font-size: 80px; opacity: 0.4; }
.img-placeholder p { color: rgba(255,255,255,0.4); font-size: 13px; }

/* ── Process Steps ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 48px; }
.process-step { text-align: center; padding: 28px 20px; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--cyan);
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--muted); }

/* ── Why Choose Us ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 44px; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 28px 22px; transition: border-color 0.2s;
}
.why-card:hover { border-color: rgba(0,194,203,0.4); }
.why-card .w-icon { font-size: 30px; margin-bottom: 16px; }
.why-card h4 { color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.55); }

/* ── Areas Served ── */
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.area-chip {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px;
  padding: 9px 20px; font-size: 14px; font-weight: 500; color: var(--text);
  transition: all 0.2s;
}
.area-chip:hover { border-color: var(--cyan); color: var(--cyan-dark); background: var(--cyan-pale); }

/* ── Brands ── */
.brands-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.brand-chip {
  background: var(--white); border: 1px solid var(--border); border-radius: 30px;
  padding: 10px 22px; font-size: 14px; font-weight: 600; color: var(--text);
  transition: all 0.2s; cursor: default;
}
.brand-chip:hover { border-color: var(--cyan); background: var(--cyan-pale); color: var(--cyan-dark); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 22px; }
.stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
  color: var(--cyan); font-family: var(--font-head); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; }
.author-device { font-size: 12px; color: var(--muted); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.af-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--cyan-pale); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.af-text h5 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.af-text p { font-size: 14px; color: var(--muted); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--r-md); flex-shrink: 0;
  background: var(--cyan-pale); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-row h5 { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: 15px; color: var(--text); }
.contact-row a:hover { color: var(--cyan-dark); text-decoration: underline; }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 24px; }
.map-wrap iframe { display: block; width: 100%; height: 280px; border: none; }

.hours-table { width: 100%; font-size: 14px; border-collapse: collapse; margin-top: 8px; }
.hours-table tr td { padding: 6px 0; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }

/* ── Forms ── */
.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px 32px;
}
.form-card h3 { font-size: 22px; margin-bottom: 26px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 14px; font-family: var(--font-body); color: var(--text); background: var(--white);
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,194,203,0.12); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #E24B4A; }
.error-msg { font-size: 12px; color: #E24B4A; margin-top: 4px; display: none; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--navy); color: var(--white);
  border: none; border-radius: var(--r-sm); font-size: 15px; font-weight: 700;
  font-family: var(--font-head); cursor: pointer; transition: background 0.2s; margin-top: 6px;
}
.form-submit:hover { background: var(--navy-mid); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
  display: none; background: #ECFDF5; border: 1px solid #22C55E; border-radius: var(--r-md);
  padding: 20px 24px; text-align: center; margin-top: 20px;
}
.form-success .check { font-size: 40px; margin-bottom: 10px; }
.form-success h4 { color: #166534; font-size: 18px; margin-bottom: 6px; }
.form-success p { color: #166534; font-size: 14px; }
.honeypot { position: absolute; opacity: 0; height: 0; overflow: hidden; pointer-events: none; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 22px; cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--text); user-select: none; transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-arrow { font-size: 18px; flex-shrink: 0; transition: transform 0.25s; color: var(--muted); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-answer p { padding: 0 22px 20px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Footer ── */
footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--white); display: inline-block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 260px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--cyan); transform: translateY(-2px); }
footer h5 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; }
footer ul { display: flex; flex-direction: column; gap: 10px; }
footer ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
footer ul li a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom a { color: var(--cyan); }

/* ── Live Chat Widget ── */
#chat-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white; border: none;
  font-size: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: all 0.2s;
  animation: chatPulse 2.5s infinite;
}
#chat-btn:hover { background: #1EBF5B; transform: scale(1.08); }
@keyframes chatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.75); }
}
#chat-popup {
  position: fixed; bottom: 96px; right: 24px; z-index: 999;
  width: 300px; background: var(--white); border-radius: var(--r-xl);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  display: none; overflow: hidden;
}
#chat-popup.open { display: block; animation: popIn 0.2s ease; }
@keyframes popIn { from { opacity:0; transform: scale(0.9) translateY(10px); } to { opacity:1; transform: scale(1) translateY(0); } }
.chat-header { background: #25D366; padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.chat-header .ch-icon { font-size: 28px; }
.chat-header .ch-title { font-weight: 700; color: white; font-size: 15px; }
.chat-header .ch-sub { font-size: 12px; color: rgba(255,255,255,0.8); }
.chat-body { padding: 20px; }
.chat-body p { font-size: 14px; color: var(--text); margin-bottom: 16px; line-height: 1.6; }
.chat-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: white; padding: 12px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 14px; text-decoration: none; transition: background 0.2s;
}
.chat-wa-btn:hover { background: #1EBF5B; }
.chat-close-btn {
  position: absolute; top: 12px; right: 14px; background: none; border: none;
  color: rgba(255,255,255,0.8); font-size: 20px; cursor: pointer; line-height: 1;
}

/* ── Sticky CTA Bar (mobile) ── */
.sticky-cta-mobile {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: var(--navy); padding: 10px 16px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
  gap: 10px;
}
.sticky-cta-mobile a { flex: 1; text-align: center; font-size: 14px; font-weight: 700; padding: 11px; border-radius: var(--r-sm); }
.scta-call { background: var(--cyan); color: var(--navy); }
.scta-book { background: var(--navy-mid); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

/* ── Book CTA Banner ── */
.book-cta-banner {
  background: var(--cyan); padding: 48px 0; text-align: center;
}
.book-cta-banner h2 { color: var(--navy); margin-bottom: 12px; }
.book-cta-banner p { color: rgba(13,27,42,0.7); font-size: 17px; margin-bottom: 28px; }

/* ── Page Header (inner pages) ── */
.page-header {
  background: var(--navy); padding: 60px 0; text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 520px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.breadcrumb a { color: var(--cyan); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SEO Areas Section ── */
.areas-section .section-sub { margin-bottom: 8px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .repair-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 12px 16px 20px; gap: 2px; z-index: 300; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 11px 14px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; opacity: 1; pointer-events: auto; transform: none; padding-left: 32px; }
  .hamburger { display: flex; }
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  .topbar-right { width: 100%; justify-content: space-between; }
  header { position: sticky; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-cta-mobile { display: flex; }
  body { padding-bottom: 62px; }
  .hero-stats { gap: 20px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .form-card { padding: 24px 18px; }
  .trust-items { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CRITICAL FIXES – Social Icons, Form, Mobile, Shop Online
   ============================================================ */

/* ── Real SVG Social Icons ── */
.social-icons { display: flex; align-items: center; gap: 8px; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  transition: transform 0.2s, opacity 0.2s; flex-shrink: 0;
}
.social-icon:hover { transform: translateY(-2px); opacity: 0.85; }
.social-icon svg { display: block; }

/* Topbar social icons (smaller) */
.topbar-social .social-icon { width: 24px; height: 24px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.topbar-social .social-icon:hover { background: rgba(0,194,203,0.2); }

/* Footer social icons */
.footer-social .social-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
}
.footer-social .social-icon:hover { background: var(--cyan); }

/* Nav mobile social row */
.nav-social-row {
  display: none;
  padding: 12px 14px 8px;
  border-top: 1px solid var(--border);
  gap: 10px;
  align-items: center;
}
.nav-social-row .social-icon { background: var(--off-white); border-radius: 6px; }
.nav-social-row .social-icon:hover { background: var(--cyan-pale); }

/* ── Shop Online Button ── */
.btn-shop {
  background: var(--cyan);
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: var(--r-sm);
  padding: 8px 16px;
  font-size: 14px !important;
  border: none;
  margin-left: 4px;
}
.btn-shop:hover { background: var(--cyan-dark) !important; color: var(--navy) !important; }

/* ── Formspree / Form improvements ── */
.form-status-banner {
  display: none; padding: 14px 18px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; margin-top: 14px;
}
.form-status-banner.success { background: #ECFDF5; border: 1px solid #86EFAC; color: #166534; }
.form-status-banner.error   { background: #FEF2F2; border: 1px solid #FCA5A5; color: #991B1B; }
.form-submit-wrap { position: relative; }
.spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white; border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Mobile Nav full-width social ── */
@media (max-width: 768px) {
  .nav-social-row { display: flex; }
  /* Ensure nav items have proper touch targets */
  .nav-menu a { min-height: 44px; display: flex; align-items: center; }
  /* Fix dropdown in mobile */
  .dropdown-menu a { min-height: 40px; }
  /* Shop Online in mobile nav */
  .nav-menu .btn-shop { margin: 8px 14px; display: flex; justify-content: center; }
  /* Better spacing on small screens */
  .hero-actions { gap: 10px; }
  .hero-actions .btn { min-height: 48px; font-size: 14px; padding: 12px 20px; }
  /* Sticky CTA larger touch target */
  .sticky-cta-mobile a { min-height: 48px; display: flex; align-items: center; justify-content: center; }
  /* Remove topbar on very small screens to save space */
  .topbar-social { display: none; }
  /* Better form on mobile */
  .form-card { padding: 22px 16px; }
  /* Repair item wrap on mobile */
  .repair-item { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 28px; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 22px; }
  .trust-items { gap: 10px; }
  .trust-item { font-size: 12px; }
}

/* ============================================================
   CRITICAL FIXES – v2
   ============================================================ */

/* ── SVG Social Icons ── */
.social-icons { display: flex; align-items: center; gap: 8px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.social-icons a:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.social-icons a svg { width: 16px; height: 16px; display: block; fill: white; }

/* Topbar social — smaller */
.topbar-social.social-icons a {
  width: 26px; height: 26px; border-radius: 5px;
  background: rgba(255,255,255,0.08);
}
.topbar-social.social-icons a svg { width: 13px; height: 13px; }

/* Footer social — standard */
.footer-social.social-icons a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
}
.footer-social.social-icons a svg { width: 17px; height: 17px; }
.footer-social.social-icons a:hover { background: var(--cyan); }

/* ── Shop Online nav button ── */
.nav-shop {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  padding: 8px 14px !important;
  margin-left: 4px;
}
.nav-shop:hover { background: var(--cyan-dark) !important; color: var(--navy) !important; }

/* ── Form — Formspree / proper submit ── */
.form-submitting { opacity: 0.65; pointer-events: none; }
.form-error-banner {
  background: #FEF2F2; border: 1px solid #FCA5A5; border-radius: var(--r-md);
  padding: 14px 18px; font-size: 14px; color: #991B1B; margin-top: 12px; display: none;
}

/* ── Mobile nav social row ── */
.mobile-social-row {
  display: none;
  padding: 14px 14px 4px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.mobile-social-row span { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 10px; display: block; }
.mobile-social-row .social-icons a { background: var(--off-white); }
.mobile-social-row .social-icons a svg { fill: var(--navy); }
.mobile-social-row .social-icons a:hover { background: var(--navy); }
.mobile-social-row .social-icons a:hover svg { fill: white; }

@media (max-width: 768px) {
  .mobile-social-row { display: block; }
  .nav-menu.open .mobile-social-row { display: block; }
}

/* ── Improved mobile touch targets ── */
@media (max-width: 768px) {
  .btn { min-height: 48px; }
  .nav-menu a { min-height: 46px; font-size: 15px; }
  .faq-question { min-height: 54px; font-size: 15px; }
  .repair-item { padding: 16px; }
  .service-card { padding: 24px 20px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; min-height: 46px; } /* prevents iOS zoom */
  .form-group textarea { min-height: 100px; }
  .sticky-cta-mobile a { min-height: 48px; display: flex; align-items: center; justify-content: center; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { font-size: 15px; padding: 13px 20px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
}

@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0; }
  .section { padding: 48px 0; }
}
