/* ==========================================================================
   Mobilise - The Tech Repair Specialists
   Global stylesheet
   ========================================================================== */

:root {
  --primary: #E91E8C;
  --primary-dark: #D21B7E;
  --primary-glow: rgba(233, 30, 140, 0.08);

  --bg: #FFFAFC;
  --surface: #FFFFFF;
  --surface2: #FFF3F8;
  --border: #F1E1EA;

  --text: #201A22;
  --text-light: #6B5A66;
  --dark: #1E1B4B;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(32, 26, 34, 0.06);
  --shadow-lg: 0 12px 40px rgba(32, 26, 34, 0.10);

  --whatsapp: #25D366;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-header { text-align: center; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 10px 28px rgba(233,30,140,0.25); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: #fff0f7; }

.btn-ghost {
  background: var(--surface2);
  color: var(--text);
}
.btn-ghost:hover { background: var(--border); }

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-size: 21px; font-weight: 800; color: var(--primary); letter-spacing: -0.01em; }
.nav-logo-sub { font-size: 11px; color: var(--text-light); font-weight: 600; letter-spacing: 0.03em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 65px;
  background: var(--surface);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 18px; font-weight: 700; }
.mobile-menu .nav-cta { flex-direction: column; align-items: stretch; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 72px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF7E6;
  color: #92650C;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F2A900;
  animation: pulse 1.6s infinite;
}

.hero-title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-highlight { color: var(--primary); }

.hero-desc {
  font-size: 18px;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-location svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat-num { font-size: 26px; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: 13px; color: var(--text-light); font-weight: 600; }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 20px; }

.hero-hours { display: flex; flex-direction: column; gap: 4px; }
.hero-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.hero-hour-row:last-child { border-bottom: none; }
.hero-hour-day { font-weight: 700; }
.hero-hour-time { color: var(--text-light); }

.open-badge {
  background: #E7F9EF;
  color: #0F8A46;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

/* ---------- Brands ---------- */
.brands {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.brands-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.brands-label { font-size: 13px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.brand-pill {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ---------- Walk-in banner ---------- */
.walkin-banner {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 40px 0;
}
.walkin-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.walkin-text h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.walkin-text p { color: rgba(255,255,255,0.9); font-size: 15px; }
.walkin-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.service-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-desc { font-size: 14.5px; color: var(--text-light); margin-bottom: 14px; }
.service-price { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ---------- How it works ---------- */
.how-bg { background: var(--surface2); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14.5px; color: var(--text-light); max-width: 260px; margin: 0 auto; }

/* ---------- Two column generic ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--text-light); }

/* ---------- Buy & Sell ---------- */
.bsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bsell-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.bsell-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.bsell-card p { font-size: 14.5px; color: var(--text-light); }
.bsell-highlight {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.03);
}
.bsell-highlight p { color: rgba(255,255,255,0.9); }

/* ---------- Contact / Location ---------- */
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item-label { font-size: 12.5px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-item-value { font-size: 16px; font-weight: 700; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 12px 4px; font-size: 15px; }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--text-light); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

.location-address { margin-top: 16px; font-size: 15px; color: var(--text-light); }
.location-address strong { color: var(--text); }

/* ---------- FAQ ---------- */
.faq-bg { background: var(--surface2); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}
.faq-q svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 76px 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; margin-bottom: 14px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,0.85); padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo-name { font-size: 20px; font-weight: 800; color: #fff; }
.footer-logo-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.footer-address { font-size: 14.5px; text-align: right; color: rgba(255,255,255,0.75); }
.footer-bottom { padding-top: 20px; font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease;
}
.whatsapp-btn:hover { transform: translateY(-2px) scale(1.03); }
.whatsapp-btn svg { width: 22px; height: 22px; }

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #1E1B4B;
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.85); max-width: 640px; }
.cookie-banner-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- Animations ---------- */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(242, 169, 0, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(242, 169, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 169, 0, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .steps::before { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .bsell-grid { grid-template-columns: 1fr; }
  .bsell-highlight { transform: none; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-address { text-align: left; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-btns, .cta-btns, .walkin-btns { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-cta .btn span { display: none; }
  .walkin-inner { text-align: center; justify-content: center; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}
