/* =========================================================
   One Stop Tech Shop — main stylesheet
   Plain CSS, no build step. Safe to upload as-is to Hostinger.
   ========================================================= */

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

:root {
  --bg: #f5f7fa;
  --fg: #14181f;
  --card: #ffffff;
  --muted: #667085;
  --muted-bg: #eef1f5;
  --border: #e4e8ee;
  --accent-bg: #eaf1ff;
  --accent-fg: #1d4ed8;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #10b981;
  --destructive: #dc2626;
  --radius: 14px;
  --radius-sm: 10px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(20, 24, 31, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 24, 31, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 24, 31, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.muted { color: var(--muted); }
.grad-text {
  background: linear-gradient(90deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-bg { background: linear-gradient(90deg, #2563eb, #10b981); }
.grad-bg-soft { background: linear-gradient(140deg, #eaf1ff 0%, #ffffff 45%, #e9fbf3 100%); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(90deg, #2563eb, #10b981);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, .25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(37, 99, 235, .35); }
.btn-outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.16); }
.btn-outline-solid {
  background: #fff;
  border-color: var(--border);
  color: var(--fg);
}
.btn-outline-solid:hover { background: var(--muted-bg); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* Icon bubble */
.icon-badge {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge.grad { background: linear-gradient(135deg, #2563eb, #10b981); color: #fff; }
.icon-badge.soft { background: var(--accent-bg); color: var(--primary); }

/* =========================== Navbar =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .35s ease;
  padding: 16px 0;
  background: rgba(10, 14, 22, .32);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.navbar.solid, .navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; border: 0; background: none; padding: 0; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.brand span {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: #fff;
  transition: color .3s ease;
}
.navbar.solid .brand span, .navbar.scrolled .brand span { color: var(--fg); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links button {
  background: none; border: 0; padding: 10px 14px; border-radius: 10px;
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9);
  transition: all .2s ease;
}
.navbar.solid .nav-links button, .navbar.scrolled .nav-links button { color: rgba(20,24,31,.72); }
.nav-links button:hover { background: rgba(255,255,255,.12); color: #fff; }
.navbar.solid .nav-links button:hover, .navbar.scrolled .nav-links button:hover { background: var(--muted-bg); color: var(--fg); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: 0; padding: 10px 14px; border-radius: 10px;
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px; transition: all .2s ease;
}
.navbar.solid .nav-dropdown-toggle, .navbar.scrolled .nav-dropdown-toggle { color: rgba(20,24,31,.72); }
.nav-dropdown-toggle:hover { background: rgba(255,255,255,.12); color: #fff; }
.navbar.solid .nav-dropdown-toggle:hover, .navbar.scrolled .nav-dropdown-toggle:hover { background: var(--muted-bg); color: var(--fg); }
.nav-dropdown-toggle svg { transition: transform .2s ease; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 200;
  display: none; flex-direction: column; gap: 2px;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a { padding: 9px 12px; border-radius: 9px; font-size: .87rem; font-weight: 500; color: var(--fg); }
.nav-dropdown-menu a:hover { background: var(--muted-bg); }
.nav-dropdown-menu a.nav-dropdown-viewall {
  margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--border); color: var(--primary); font-weight: 600;
}
.mobile-dropdown-toggle { display: flex !important; align-items: center; justify-content: space-between; }
.mobile-dropdown-menu {
  display: none; flex-direction: column; gap: 2px; padding-left: 10px; margin-bottom: 4px;
}
.mobile-dropdown.open .mobile-dropdown-menu { display: flex; }
.mobile-dropdown.open .mobile-dropdown-toggle svg { transform: rotate(180deg); }
.mobile-dropdown-menu a { padding: 9px 14px; border-radius: 8px; font-size: .87rem; color: var(--muted); }
.mobile-dropdown-menu a:hover { background: var(--muted-bg); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; border-radius: 10px; color: #fff;
}
.navbar.solid .nav-toggle, .navbar.scrolled .nav-toggle { color: var(--fg); }
.nav-toggle svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none;
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; padding: 16px 20px; gap: 4px; }
.mobile-menu .container > a { display: block; width: 100%; }
.mobile-menu button.nav-link {
  display: block; width: 100%;
  text-align: left; background: none; border: 0; padding: 12px 14px; border-radius: 10px;
  font-size: .95rem; font-weight: 500; color: var(--fg);
}
.mobile-menu button.nav-link:hover { background: var(--muted-bg); }
.mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }

@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-outline, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* =========================== Hero =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 15% 20%, rgba(37,99,235,.55), transparent 60%),
              radial-gradient(1000px 500px at 85% 80%, rgba(16,185,129,.4), transparent 60%),
              linear-gradient(160deg, #0b1220 0%, #0f1b2d 55%, #0c2a24 100%);
  color: #fff;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.hero-blob.b1 { width: 320px; height: 320px; top: 8%; right: 6%; background: rgba(37,99,235,.35); }
.hero-blob.b2 { width: 420px; height: 420px; bottom: 5%; left: 4%; background: rgba(16,185,129,.28); }
.hero-inner { position: relative; z-index: 2; padding: 160px 0 120px; }
.hero-content { max-width: 680px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  font-size: .85rem; margin-bottom: 22px;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); color: #fff; margin-bottom: 20px; }
.hero h1 .accent { background: linear-gradient(90deg,#60a5fa,#34d399); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; }
.hero-badge .dot-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
}
.hero-badge svg { width: 18px; height: 18px; color: #34d399; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.55); background: none; border: 0; animation: bob 2s ease-in-out infinite;
}
.hero-scroll svg { width: 30px; height: 30px; }
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* =========================== Service Cards =========================== */
.services-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.3); }
.service-card-top {
  height: 120px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  display: flex; align-items: flex-end; padding: 16px;
  position: relative;
}
.service-card-top .icon-badge { background: rgba(255,255,255,.22); color: #fff; }
.service-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.service-card-body p.desc { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.service-features { margin-bottom: 20px; flex: 1; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: .85rem; padding: 4px 0; color: rgba(20,24,31,.8); }
.service-features li svg { width: 15px; height: 15px; color: #059669; flex-shrink: 0; }

/* Full services page article */
.service-article {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 34px; display: flex; gap: 24px; margin-bottom: 24px; scroll-margin-top: 100px;
}
.service-article .icon-badge { width: 58px; height: 58px; border-radius: 18px; }
.service-article .icon-badge svg { width: 28px; height: 28px; }
.service-article h2 { font-size: 1.5rem; margin-bottom: 10px; }
.service-article ul.feature-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 18px;
}
@media (max-width: 640px) { .service-article { flex-direction: column; } .service-article ul.feature-grid { grid-template-columns: repeat(2,1fr); } }
.service-article ul.feature-grid li { display: flex; gap: 8px; align-items: center; font-size: .88rem; }
.service-article ul.feature-grid li svg { width: 16px; height: 16px; color: #059669; flex-shrink: 0; }

/* =========================== Booking =========================== */
.booking-card {
  background: var(--card); border-radius: 26px; border: 1px solid var(--border);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.steps-indicator { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 44px; }
.step-dot {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; background: var(--muted-bg); color: var(--muted);
}
.step-dot.active, .step-dot.done { background: linear-gradient(135deg,#2563eb,#10b981); color: #fff; }
.step-line { width: 48px; height: 2px; background: var(--muted-bg); }
.step-line.done { background: linear-gradient(90deg,#2563eb,#10b981); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--border);
  background: #fff; color: var(--fg); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.field textarea { resize: vertical; min-height: 100px; }

.slots-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 20px 0 28px; }
@media (max-width: 700px) { .slots-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 460px) { .slots-grid { grid-template-columns: repeat(2,1fr); } }
.slot-btn {
  padding: 12px 8px; border-radius: 12px; border: 1px solid var(--border); background: var(--muted-bg);
  font-size: .87rem; font-weight: 600; transition: all .15s ease;
}
.slot-btn:hover:not(:disabled) { background: var(--accent-bg); }
.slot-btn.selected { background: linear-gradient(135deg,#2563eb,#10b981); color: #fff; border-color: transparent; }
.slot-btn:disabled { color: rgba(102,112,133,.4); text-decoration: line-through; cursor: not-allowed; }

.step-actions { display: flex; justify-content: space-between; margin-top: 8px; }
.step-actions.end { justify-content: flex-end; }

.summary-box { background: var(--accent-bg); border-radius: 16px; padding: 18px 20px; margin: 22px 0; }
.summary-box h4 { font-size: .85rem; margin-bottom: 10px; }
.summary-grid { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: .9rem; }
.summary-grid .k { color: var(--muted); }
.summary-grid .v { font-weight: 600; }

.booking-success { text-align: center; padding: 30px 10px; }
.booking-success .check-circle {
  width: 78px; height: 78px; border-radius: 50%; background: #d1fae5; color: #059669;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.booking-success .check-circle svg { width: 38px; height: 38px; }

.form-msg { padding: 12px 16px; border-radius: 12px; font-size: .9rem; margin-bottom: 16px; display: none; }
.form-msg.show { display: block; }
.form-msg.error { background: #fee2e2; color: #991b1b; }
.form-msg.ok { background: #d1fae5; color: #065f46; }

/* =========================== About / highlights =========================== */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .about-wrap { grid-template-columns: 1fr; } }
.about-visual {
  position: relative; border-radius: 26px; overflow: hidden;
  background: linear-gradient(150deg,#0b1220,#12213a 55%,#0c2a24);
  min-height: 320px; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  padding: 1px;
}
.about-visual .cell {
  background: rgba(255,255,255,.03); display: flex; align-items: center; justify-content: center; padding: 22px;
}
.about-visual svg { width: 34px; height: 34px; color: rgba(255,255,255,.75); }
.about-stat {
  position: absolute; bottom: -20px; right: -14px; background: var(--card); border-radius: 18px;
  padding: 16px 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  white-space: nowrap;
}
.about-stat .num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }
.about-stat .lbl { font-size: .8rem; color: var(--muted); }
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .highlights-grid { grid-template-columns: 1fr; } }
.highlight-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 20px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.highlight-item:hover { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.25); }
.highlight-item h4 { font-size: 1rem; margin: 12px 0 4px; }
.highlight-item p { font-size: .87rem; color: var(--muted); margin: 0; }

/* =========================== Reviews / rating =========================== */
.rating-summary {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 32px;
  margin-bottom: 30px;
}
.rating-score { text-align: center; }
.rating-score .num { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; }
.rating-score .stars { color: #fbbf24; margin: 6px 0; }
.rating-score .stars svg { width: 18px; height: 18px; display: inline-block; }
.rating-score .cnt { font-size: .82rem; color: var(--muted); }
.review-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.reason-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 760px) { .reason-list { grid-template-columns: 1fr; } }
.reason-item { display: flex; gap: 12px; align-items: flex-start; padding: 16px; }
.reason-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.reason-item h5 { margin: 0 0 4px; font-size: .95rem; }
.reason-item p { margin: 0; font-size: .85rem; color: var(--muted); }

/* =========================== FAQ =========================== */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-weight: 600; font-size: .98rem;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .2s ease; color: var(--muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 20px 18px; color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* =========================== Contact =========================== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.map-frame { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); height: 260px; margin-bottom: 22px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.contact-info-item { display: flex; gap: 14px; padding: 12px 0; }
.contact-info-item .icon-badge { width: 42px; height: 42px; border-radius: 12px; }
.contact-info-item .lbl { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.contact-info-item .val { font-weight: 600; }
.whatsapp-box {
  display: flex; align-items: center; gap: 12px; background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: 16px; padding: 16px; margin-top: 18px; transition: background .15s ease;
}
.whatsapp-box:hover { background: #d1fae5; }
.whatsapp-box svg { width: 26px; height: 26px; color: #059669; }
.whatsapp-box .t1 { font-weight: 700; font-size: .9rem; color: #065f46; }
.whatsapp-box .t2 { font-size: .78rem; color: #059669; }
.contact-form-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 34px; box-shadow: var(--shadow-md); }

/* =========================== Footer =========================== */
footer.site-footer { background: #0f1521; color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-grid h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer-grid ul li { margin-bottom: 9px; }
.footer-grid ul li a, .footer-grid ul li button {
  background: none; border: 0; color: rgba(255,255,255,.6); font-size: .87rem; padding: 0;
}
.footer-grid ul li a:hover, .footer-grid ul li button:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: .87rem; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.social-row { display: flex; flex-wrap: wrap; gap: 8px; }
.social-row a { padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); font-size: .83rem; color: rgba(255,255,255,.6); }
.social-row a:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; margin-top: 4px;
  font-size: .74rem; line-height: 1.6; color: rgba(255,255,255,.35);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-bottom .legal-links { display: flex; gap: 18px; }
.footer-bottom button { background: none; border: 0; color: rgba(255,255,255,.4); font-size: .78rem; }
.footer-bottom button:hover { color: rgba(255,255,255,.7); }

/* =========================== Cookie banner =========================== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; padding: 16px;
  transform: translateY(140%); transition: transform .35s ease; opacity: 0;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-box {
  max-width: 640px; margin: 0 auto; background: var(--card); border-radius: 20px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 22px; display: flex; gap: 16px;
}
.cookie-box .icon-badge { width: 42px; height: 42px; border-radius: 12px; }
.cookie-box h3 { font-size: 1rem; margin-bottom: 4px; }
.cookie-box p { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.cookie-prefs { display: none; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.cookie-prefs.show { display: flex; }
.cookie-pref-row {
  display: flex; justify-content: space-between; align-items: center; background: var(--muted-bg);
  border-radius: 12px; padding: 10px 14px;
}
.cookie-pref-row .t1 { font-size: .85rem; font-weight: 600; }
.cookie-pref-row .t2 { font-size: .74rem; color: var(--muted); }
.toggle-switch { position: relative; width: 40px; height: 22px; }
.toggle-switch input { opacity: 0; width: 100%; height: 100%; margin: 0; position: absolute; cursor: pointer; }
.toggle-switch .track {
  position: absolute; inset: 0; background: #cbd5e1; border-radius: 999px; transition: background .2s ease;
}
.toggle-switch .track::before {
  content: ""; position: absolute; width: 18px; height: 18px; left: 2px; top: 2px; background: #fff; border-radius: 50%;
  transition: transform .2s ease;
}
.toggle-switch input:checked + .track { background: var(--primary); }
.toggle-switch input:checked + .track::before { transform: translateX(18px); }
.toggle-switch input:disabled + .track { opacity: .6; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-close { background: none; border: 0; color: var(--muted); align-self: flex-start; }
.cookie-close svg { width: 18px; height: 18px; }

/* =========================== Modal =========================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,14,22,.55); z-index: 300;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #fff; border-radius: 22px; max-width: 620px; width: 100%; max-height: 82vh;
  display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--shadow-lg);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid var(--border); }
.modal-head h3 { margin: 0; font-size: 1.1rem; }
.modal-head button { background: none; border: 0; }
.modal-head svg { width: 20px; height: 20px; }
.modal-body { padding: 22px 26px; overflow-y: auto; font-size: .88rem; color: rgba(20,24,31,.8); white-space: pre-line; line-height: 1.7; }

/* =========================== Misc page bits =========================== */
.page-hero { padding: 150px 0 60px; text-align: center; }
.page-hero .container { max-width: 780px; }
.page-hero p { font-size: 1.1rem; color: var(--muted); }
.cta-panel {
  background: linear-gradient(135deg,#eaf1ff,#e9fbf3); border: 1px solid var(--border); border-radius: 26px;
  padding: 46px; text-align: center;
}
.cta-panel .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.pill-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 22px; }
@media (max-width: 700px) { .pill-grid { grid-template-columns: repeat(2,1fr); } }
.pill { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px; text-align: center; font-size: .88rem; font-weight: 500; }
.info-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; margin-top: 8px; font-size: .92rem; color: var(--muted); }
.info-strip a:hover { color: var(--primary); }
.loader-spin {
  width: 40px; height: 40px; border: 4px solid var(--accent-bg); border-top-color: var(--primary);
  border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.page-loader { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: var(--bg); z-index: 500; }

/* =========================== Admin panel =========================== */
body.admin-body { background: #f2f4f8; }
.admin-shell { max-width: 1180px; margin: 0 auto; padding: 34px 20px 60px; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; flex-wrap: wrap; gap: 14px; }
.admin-title { display: flex; align-items: center; gap: 14px; }
.admin-title h1 { font-size: 1.6rem; margin: 0; }
.admin-title p { margin: 2px 0 0; color: var(--muted); font-size: .85rem; }
.admin-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.admin-filters input, .admin-filters select { padding: 10px 14px; border-radius: 10px; border: 1px solid var(--border); background: #fff; }
.admin-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: auto; box-shadow: var(--shadow-sm); }
table.admin-table { width: 100%; border-collapse: collapse; font-size: .87rem; min-width: 820px; }
table.admin-table th { text-align: left; background: var(--muted-bg); padding: 12px 16px; font-weight: 600; }
table.admin-table td { padding: 12px 16px; border-top: 1px solid var(--border); vertical-align: top; }
table.admin-table tr:hover td { background: #fafbfd; }
.status-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700; border: 1px solid transparent; text-transform: capitalize; }
.status-pending { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.status-confirmed { background: #dbeafe; color: #1e40af; border-color: #bfdbfe; }
.status-in_progress { background: #ede9fe; color: #5b21b6; border-color: #ddd6fe; }
.status-completed { background: #d1fae5; color: #065f46; border-color: #a7f3d0; }
.status-cancelled { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.admin-actions-cell { display: flex; gap: 8px; align-items: center; }
.admin-actions-cell select { padding: 6px 8px; border-radius: 8px; border: 1px solid var(--border); font-size: .78rem; }
.admin-actions-cell .del-btn { background: none; border: 0; color: var(--destructive); padding: 6px; border-radius: 8px; }
.admin-actions-cell .del-btn:hover { background: #fee2e2; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.admin-login-card { background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); padding: 40px; max-width: 380px; width: 100%; text-align: center; }
.admin-login-card .icon-badge { margin: 0 auto 16px; }
.admin-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
