/* ============================================================
   MOBEX – TECH REPAIR SPECIALISTS  |  Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --cyan:       #00BCD4;
  --cyan-dark:  #0097A7;
  --cyan-light: #E0F7FA;
  --black:      #0D0D0D;
  --dark:       #111827;
  --white:      #FFFFFF;
  --bg:         #F0F7FA;
  --grey:       #6B7280;
  --grey-light: #E5E7EB;
  --red:        #EF4444;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Shop photo gallery ──────────────────────────────────── */
.shop-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2rem;
}
.shop-gallery-main {
  grid-row: span 2;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey-light);
}
.shop-gallery-side {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey-light);
}
.shop-gallery-full {
  grid-column: span 2;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--grey-light);
}
.shop-gallery-main img,
.shop-gallery-side img,
.shop-gallery-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.shop-gallery-main:hover img,
.shop-gallery-side:hover img,
.shop-gallery-full:hover img { transform: scale(1.03); }
@media (max-width: 640px) {
  .shop-gallery { grid-template-columns: 1fr; }
  .shop-gallery-main { grid-row: span 1; aspect-ratio: 4/3; }
  .shop-gallery-full { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ── WhatsApp floating button ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  padding: .75rem 1.25rem .75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.whatsapp-float svg { flex-shrink: 0; }
@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: .85rem; border-radius: 50%; }
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1F2937;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--grey); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .6rem;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-dark { background: var(--dark); }
.bg-black { background: var(--black); }
.bg-light { background: var(--bg); }
.bg-cyan { background: var(--cyan); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,188,212,.35);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  box-shadow: 0 6px 20px rgba(0,188,212,.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ── Logo ────────────────────────────────────────────────── */
.logo-wrap { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-wordmark {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.logo-x-wrap { position: relative; display: inline-block; }
.logo-arrow {
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: .65rem;
  color: var(--cyan);
  font-weight: 900;
  line-height: 1;
}
.logo-sub {
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 3px;
}

/* Light-background variant */
.logo-wrap.inverted .logo-wordmark { color: var(--white); }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 3px solid var(--cyan);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 28px rgba(0,188,212,.18); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wrap img {
  display: block;
  height: 44px;
  width: auto;
  transition: opacity .2s;
}
.logo-wrap:hover img { opacity: .8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .85rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: #374151;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cyan);
  background: var(--cyan-light);
}
.nav-cta {
  background: var(--cyan) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: .5rem 1.25rem !important;
  margin-left: .5rem;
}
.nav-cta:hover {
  background: var(--cyan-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: .75rem 0 1rem;
  border-top: 1px solid var(--grey-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .7rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  color: #374151;
  border-radius: 8px;
  margin: 0 .25rem;
  transition: all var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--cyan); background: var(--cyan-light); }
.mobile-menu .nav-cta {
  margin: .5rem .25rem 0;
  text-align: center;
  background: var(--cyan) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E0F7FA 0%, #F0FEFF 40%, #FFFFFF 100%);
  padding: 5.5rem 0 4rem;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .07;
  pointer-events: none;
}
.hero-blob-1 { width: 500px; height: 500px; top: -180px; right: -120px; }
.hero-blob-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.hero-blob-3 { width: 180px; height: 180px; top: 60%; right: 15%; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label { color: var(--cyan); font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .75rem; }
.hero h1 { margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; color: #4B5563; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  border-radius: 20px 20px 20px 20px;
  overflow: hidden;
  min-height: 460px;
  align-self: stretch;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(224,247,250,.55) 0%, transparent 35%),
              linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 40%);
  pointer-events: none;
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar { background: var(--black); padding: 2.2rem 0; }
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  padding: 1rem;
}
.trust-icon {
  width: 48px; height: 48px;
  background: rgba(0,188,212,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.trust-title { color: var(--white); font-weight: 700; font-size: .95rem; }
.trust-desc { color: #9CA3AF; font-size: .8rem; }

/* ── Services Grid ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1.5px solid #E5E7EB;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--cyan-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  color: var(--cyan);
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--cyan); color: var(--white); }
.service-card h3 { font-size: 1.05rem; margin-bottom: .4rem; color: var(--black); }
.service-card p { font-size: .88rem; color: var(--grey); margin-bottom: 1.25rem; }
.service-link {
  font-size: .88rem;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; }

/* ── How It Works ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.666% + 1rem);
  right: calc(16.666% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent 50%, var(--cyan));
  opacity: .2;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.step-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0,188,212,.35);
  flex-shrink: 0;
}
.step-item h3 { color: var(--black); }
.step-item p { font-size: .88rem; }

/* ── Brands ──────────────────────────────────────────────── */
.brands-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.brand-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: #374151;
  transition: all var(--transition);
}
.brand-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
  border-color: rgba(0,188,212,.3);
}
.stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; margin-bottom: .75rem; }
.review-text { color: #D1D5DB; font-size: .92rem; line-height: 1.7; margin-bottom: 1.1rem; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--white);
}
.reviewer-name { color: var(--white); font-weight: 700; font-size: .9rem; }
.reviewer-date { color: #6B7280; font-size: .78rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--cyan); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .98rem;
  font-weight: 700;
  color: var(--black);
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--cyan); }
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--grey);
}
.faq-item.open .faq-chevron {
  background: var(--cyan);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.faq-answer-inner { padding-bottom: 1.2rem; font-size: .93rem; color: var(--grey); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--black); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-tagline { color: #9CA3AF; font-size: .9rem; margin: 1rem 0 1.5rem; max-width: 260px; line-height: 1.65; }
.footer-socials { display: flex; gap: .6rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: #9CA3AF;
  transition: all var(--transition);
}
.footer-social:hover { background: var(--cyan); color: var(--white); transform: translateY(-2px); }
.footer-heading { color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: #9CA3AF; font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .75rem;
}
.footer-contact-icon { color: var(--cyan); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { color: #9CA3AF; font-size: .88rem; }
.footer-hours-row { display: flex; justify-content: space-between; margin-bottom: .4rem; }
.footer-hours-day { color: #9CA3AF; font-size: .85rem; }
.footer-hours-time { color: var(--white); font-size: .85rem; font-weight: 600; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { color: #6B7280; font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: #6B7280; font-size: .82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner .blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-banner .blob-1 { width: 400px; height: 400px; top: -200px; right: -100px; }
.cta-banner .blob-2 { width: 250px; height: 250px; bottom: -120px; left: -60px; }
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .06;
  pointer-events: none;
}
.page-hero-blob-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.page-hero-blob-2 { width: 300px; height: 300px; bottom: -150px; left: -100px; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero .section-label { color: var(--cyan); }
.page-hero p { color: #9CA3AF; font-size: 1.05rem; margin-top: .75rem; max-width: 580px; }

/* ── Scroll Animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2rem; }
}
