/* =============================================
   TECHCRAZIES — MAIN STYLESHEET
   Mobile-First, Responsive
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;900&family=Source+Code+Pro:wght@400;600&family=Nunito:wght@400;600;700&display=swap');

:root {
  --orange: #F7941D;
  --blue: #1D9BF7;
  --green: #2DBF5E;
  --dark: #0A0E14;
  --darker: #060A0F;
  --card: #111823;
  --border: rgba(255,255,255,0.07);
  --text: #E8EDF5;
  --muted: #7A8BA0;
  --font-head: 'Exo 2', sans-serif;
  --font-mono: 'Source Code Pro', monospace;
  --font-body: 'Nunito', sans-serif;
  --nav-height: 70px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── GRID BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,155,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,155,247,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,10,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}
.nav-logo .logo-text .t-blue { color: var(--blue); }
.nav-logo .logo-text .t-orange { color: var(--orange); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.current { color: var(--text); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: #d97b10 !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(6,10,15,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mob-cta {
  background: var(--orange);
  color: #fff !important;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  margin-top: 12px;
  border-bottom: none;
  font-size: 1rem;
}

/* ── PAGE WRAPPER ── */
.page-wrap {
  padding-top: var(--nav-height);
  position: relative;
  z-index: 1;
}

/* ── SECTIONS ── */
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 5%;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: min(700px, 100vw);
  height: min(700px, 100vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,155,247,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.4s;
}

.hero h1 .t-orange { color: var(--orange); }
.hero h1 .t-blue { color: var(--blue); }
.hero h1 .t-green { color: var(--green); }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.8s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #d97b10);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(247,148,29,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(247,148,29,0.4); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--blue); background: rgba(29,155,247,0.07); }

.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  margin-top: 56px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1s;
  flex-wrap: wrap;
  justify-content: center;
}

.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  display: block;
  line-height: 1;
}
.stat-num.o { color: var(--orange); }
.stat-num.b { color: var(--blue); }
.stat-num.g { color: var(--green); }
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 5%;
  position: relative;
  z-index: 1;
}

/* ── ALTERNATING BG ── */
.bg-darker { background: var(--darker); }
.bg-dark { background: var(--dark); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
  margin-top: 48px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
}
.service-card.c-o::before { background: var(--orange); }
.service-card.c-b::before { background: var(--blue); }
.service-card.c-g::before { background: var(--green); }
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.service-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.service-icon.o { background: rgba(247,148,29,0.12); }
.service-icon.b { background: rgba(29,155,247,0.12); }
.service-icon.g { background: rgba(45,191,94,0.12); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-dot {
  width: 36px; height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.why-dot.o { background: rgba(247,148,29,0.15); }
.why-dot.b { background: rgba(29,155,247,0.15); }
.why-dot.g { background: rgba(45,191,94,0.15); }
.why-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.why-item p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* ── COVERAGE ── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(170px, 100%), 1fr));
  gap: 10px;
  margin-top: 40px;
}

.town-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.town-chip:hover { border-color: var(--blue); color: var(--text); }
.town-chip::before { content: '📍'; font-size: 0.75rem; }

.coverage-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}
.coverage-note strong { color: var(--orange); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
  margin-top: 48px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
}
.review-stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.88rem; }
.review-loc { font-size: 0.78rem; color: var(--muted); }

/* ── CTA BOX ── */
.cta-box {
  background: linear-gradient(135deg, rgba(247,148,29,0.08) 0%, rgba(29,155,247,0.08) 100%);
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cta-box p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.cta-contacts {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.contact-item:hover { color: var(--text); }
.ci-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.ci-icon.o { background: rgba(247,148,29,0.12); }
.ci-icon.b { background: rgba(29,155,247,0.12); }
.ci-icon.g { background: rgba(45,191,94,0.12); }

/* ── CONTACT FORM ── */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 20px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}
.contact-info-item .ci-icon { flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.contact-info-item p, .contact-info-item a {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--orange); }

.tc-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A8BA0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  background: linear-gradient(135deg, var(--orange), #d97b10);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(247,148,29,0.25);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,148,29,0.35); }

/* ── ABOUT PAGE ── */
.about-hero {
  text-align: center;
  padding: 80px 5% 60px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 20px;
}
.about-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.value-item p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── SERVICES PAGE ── */
.services-page-intro {
  max-width: 640px;
}
.service-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color 0.25s;
}
.service-detail-card:hover { border-color: rgba(255,255,255,0.14); }
.sd-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.sd-icon.o { background: rgba(247,148,29,0.12); }
.sd-icon.b { background: rgba(29,155,247,0.12); }
.sd-icon.g { background: rgba(45,191,94,0.12); }
.sd-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.sd-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.sd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sd-tag {
  background: rgba(29,155,247,0.08);
  border: 1px solid rgba(29,155,247,0.15);
  color: var(--blue);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 20px;
  margin-top: 48px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.14); }

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--darker);
}
.blog-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(29,155,247,0.1), rgba(247,148,29,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}
.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
}
.blog-card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  transition: opacity 0.2s;
  margin-top: 12px;
  display: inline-block;
}
.blog-card-link:hover { opacity: 0.8; }

/* Single post */
.post-header { padding: 60px 5% 40px; }
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 5% 80px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.post-content h2, .post-content h3 {
  font-family: var(--font-head);
  color: var(--text);
  margin: 32px 0 12px;
}
.post-content h2 { font-size: 1.5rem; }
.post-content h3 { font-size: 1.2rem; }
.post-content p { margin-bottom: 18px; }
.post-content a { color: var(--orange); }
.post-content ul, .post-content ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.post-content li { margin-bottom: 6px; }
.post-content img { border-radius: 10px; margin: 24px 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 5% 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}
.footer-brand .footer-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand .footer-contact a {
  color: var(--muted);
  font-size: 0.83rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-brand .footer-contact a:hover { color: var(--orange); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 5%;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--text); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 5% 0;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--text); }

/* ────────────────────────────
   RESPONSIVE BREAKPOINTS
   Mobile-first approach
──────────────────────────── */

/* Tablet and below */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --nav-height: 64px; }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .nav-logo .logo-text { font-size: 1.1rem; }
  .nav-logo img { height: 34px; }

  .section-inner { padding: 60px 5%; }

  .hero { padding: 40px 5% 40px; }
  .hero h1 { font-size: 2rem; }

  .hero-stats { gap: 20px; margin-top: 40px; }
  .stat-num { font-size: 1.6rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-box { padding: 36px 20px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* Large screens */
@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── REVIEW STRIP ── */
.review-strip {
  background: linear-gradient(135deg, rgba(247,148,29,0.08), rgba(29,155,247,0.08));
  border-top: 1px solid rgba(247,148,29,0.15);
  border-bottom: 1px solid rgba(247,148,29,0.15);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.review-strip-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 3px;
  flex-shrink: 0;
}

.review-strip-text {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
}

.review-strip-btn {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.review-strip-btn:hover {
  background: #d97b10;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .review-strip { flex-direction: column; gap: 12px; }
  .review-strip-btn { width: 100%; text-align: center; }
}

/* ── WORDPRESS ADMIN BAR OFFSET ── */
/* Pushes fixed header down when admin bar is visible */
.admin-bar .site-header {
  top: 32px;
}
.admin-bar .mobile-menu {
  top: calc(var(--nav-height) + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .admin-bar .mobile-menu {
    top: calc(var(--nav-height) + 46px);
  }
}

/* ── LOGO ONLY (no text) ── */
.nav-logo img {
  height: 48px;
  width: auto;
  max-height: 48px;
  display: block;
}
@media (max-width: 640px) {
  .nav-logo img {
    height: 38px;
    max-height: 38px;
  }
}
