/* ============================================================
   LONDON COMPUTER REPAIRS – DESIGN SYSTEM
   londoncomputer-repairs.co.uk
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #0d2b5e;
  /* dark navy blue */
  --primary-dark: #091d42;
  --primary-light: #1a3f7a;
  --accent: #1e6fd9;
  /* bright blue */
  --accent-hover: #1558b0;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-grey: #eef1f6;
  --mid-grey: #c8d0dc;
  --text-dark: #0f1923;
  --text-body: #3a4557;
  --text-muted: #6b7a94;
  --success: #16a34a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;

  --font: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(13, 43, 94, .08);
  --shadow: 0 4px 20px rgba(13, 43, 94, .12);
  --shadow-lg: 0 8px 40px rgba(13, 43, 94, .18);
  --transition: .22s ease;
  --max-width: 1200px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-alt {
  background: var(--off-white);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.mt-1 {
  margin-top: .5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-1 {
  margin-bottom: .5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

/* ── Section Heading ── */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  display: inline-block;
  background: rgba(30, 111, 217, .1);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: .9rem;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.logo-text {
  line-height: 1.1;
}

.logo-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-text span {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(30, 111, 217, .07);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: ' ▾';
  font-size: .7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: .88rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  font-weight: 700;
  color: var(--primary);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 80px 24px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--light-grey);
}

.mobile-nav a:hover {
  color: var(--accent);
  background: var(--off-white);
}

.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 360px;
}

.hero-card h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
}

.hero-card-item:last-child {
  border-bottom: none;
}

.hero-card-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── TRUST BADGES ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  padding: 24px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary);
  font-size: .9rem;
}

.trust-item .trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 111, 217, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(30, 111, 217, .1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-card .card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-card .card-link:hover {
  gap: 8px;
}

.services-category-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: 32px;
}

.services-category-label:first-child {
  margin-top: 0;
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  color: var(--white);
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ── BOROUGH COVERAGE ── */
.borough-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.borough-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  font-weight: 600;
  color: var(--primary);
  font-size: .9rem;
}

.borough-card:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.borough-card .borough-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  margin-bottom: 0;
}


.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-banner .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(180deg, #0d0b1e 0%, #0a0818 100%);
  color: rgba(255, 255, 255, .75);
  padding: 0;
  position: relative;
  margin-top: 0;
}

/* Dark separator strip above footer on all pages */
.site-footer::before {
  content: '';
  display: block;
  height: 32px;
  background: linear-gradient(180deg, rgba(13, 11, 30, 0) 0%, #0d0b1e 100%);
  margin-top: 0;
}

.footer-top-glow {
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #8b5cf6, #6366f1);
  background-size: 200% 100%;
  animation: footerGlow 4s linear infinite;
}

@keyframes footerGlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.footer-inner {
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo-text strong {
  color: #fff;
}

.footer-brand .logo-text span {
  color: rgba(255, 255, 255, .45);
}

.footer-brand p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 14px;
  line-height: 1.75;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .25s, border-color .25s, transform .25s;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(99, 102, 241, .25);
  border-color: rgba(99, 102, 241, .5);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  font-size: .87rem;
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: #6366f1;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: transform .2s;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-col ul li a:hover::before {
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .87rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(99, 102, 241, .15);
  border: 1px solid rgba(99, 102, 241, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  margin: 0;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .85);
}

.footer-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, .12);
  border: 1px solid rgba(99, 102, 241, .2);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: .75rem;
  color: #a5b4fc;
  font-weight: 600;
}

/* ── STICKY MOBILE CALL BUTTON ── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .12);
  gap: 10px;
}

.sticky-call a {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sticky-call .call-btn {
  background: var(--primary);
  color: var(--white);
}

.sticky-call .wa-btn {
  background: var(--whatsapp);
  color: var(--white);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: all var(--transition);
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  color: var(--white);
}

/* ── SERVICE PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 56px 0;
}

.page-hero .breadcrumb {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .7);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  max-width: 700px;
}

.page-hero .hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badge-item {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

/* ── CONTENT LAYOUT ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.content-main h2 {
  margin-bottom: 16px;
  margin-top: 32px;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main h3 {
  margin-bottom: 10px;
  margin-top: 24px;
}

.content-main ul {
  list-style: none;
  margin-bottom: 1rem;
}

.content-main ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-body);
  font-size: .95rem;
}

.content-main ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ── SIDEBAR ── */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-grey);
}

.sidebar-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.sidebar-card .btn:last-child {
  margin-bottom: 0;
}

.related-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-links a {
  font-size: .88rem;
  color: var(--text-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

.related-links a:hover {
  color: var(--accent);
}

.related-links a:last-child {
  border-bottom: none;
}

/* ── PRICING TABLE ── */
.pricing-table {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.pricing-table h3 {
  margin-bottom: 16px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: .95rem;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row .price {
  font-weight: 700;
  color: var(--primary);
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  background: rgba(30, 111, 217, .1);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-meta {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── ABOUT / TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── REVIEW STARS ── */
.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 24px;
}

.review-card .stars {
  margin-bottom: 10px;
}

.review-card p {
  font-size: .9rem;
  color: var(--text-body);
  margin-bottom: 14px;
  font-style: italic;
}

.reviewer {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-grey);
  padding: 10px 0;
  font-size: .82rem;
  color: var(--text-muted);
}

.breadcrumb-bar a {
  color: var(--text-muted);
}

.breadcrumb-bar a:hover {
  color: var(--accent);
}

.breadcrumb-bar span {
  margin: 0 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .main-nav,
  .header-cta .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sticky-call {
    display: flex;
  }

  .whatsapp-float {
    bottom: 90px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .trust-bar-inner {
    gap: 20px;
  }

  .hero-stats {
    gap: 16px;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .borough-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}