/* Glasgow SEO Experts — design inspired by high-ranking Glasgow SEO layout */
:root {
  --primary-color: #0D9488;
  --secondary-color: #1E3A5F;
  --accent-color: #F59E0B;
  --background-color: #F8FAFC;
  --text-color: #1F2937;
  --text-light: #6B7280;
  --white: #ffffff;
  --border-color: #E5E7EB;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --shadow: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
  --header-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--white);
  padding-top: var(--header-height);
}
main { position: relative; z-index: 1; }
a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-color); }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--text-color); }
p { margin-bottom: 1rem; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 16px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: var(--border-radius);
  z-index: 10001;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== HEADER (fixed, glasgowseo.ai style) ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: var(--shadow);
  height: var(--header-height);
  overflow: visible;
}
.header-container,
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.logo,
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.25rem;
}
.logo:hover,
.brand:hover { color: var(--primary-color); }
.logo-icon { width: 40px; height: 40px; }
.main-nav,
.site-nav { display: flex; align-items: center; }
.nav-list,
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li,
.site-nav > a { position: relative; }
.nav-list > li > a,
.site-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active,
.site-nav a:hover { color: var(--primary-color); }
.site-nav { gap: 0.25rem; flex-wrap: wrap; }
.site-nav a { padding: 0.5rem 0.75rem; }
.nav-cta {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  border-radius: var(--border-radius);
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--secondary-color) !important; opacity: 1; }

/* Dropdown */
.has-dropdown { position: relative; display: flex; align-items: center; }
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}
.dropdown-toggle:hover { color: var(--primary-color); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  z-index: 10000;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-color);
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover { background: var(--background-color); color: var(--primary-color); }

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-color);
}
.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(13, 148, 136, 0.05);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-xl { padding: 1.125rem 2.25rem; font-size: 1.125rem; }

/* ========== HERO LOCAL (glasgowseo.ai style) ========== */
.hero-local {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
  border: 1px solid rgba(13, 148, 136, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.hero-local h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-local h1 .highlight {
  color: var(--primary-color);
  position: relative;
}
.hero-local h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.3em;
  background: rgba(13, 148, 136, 0.15);
  z-index: -1;
  border-radius: 4px;
}
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-ctas .btn { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}
.trust-item svg { color: var(--primary-color); flex-shrink: 0; }

/* Hero visual / Glasgow map */
.hero-visual { position: relative; }
.glasgow-map-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.glasgow-map-svg { width: 100%; height: auto; }
.glasgow-outline { animation: mapGlow 4s ease-in-out infinite; }
@keyframes mapGlow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 20px rgba(13, 148, 136, 0.2)); }
}
.map-pin { animation: pinBounce 0.6s ease-out forwards; opacity: 0; }
.pin-main { animation-delay: 0.3s; }
.pin-2 { animation-delay: 0.5s; }
.pin-3 { animation-delay: 0.7s; }
@keyframes pinBounce {
  0% { transform: translateY(-20px); opacity: 0; }
  60% { transform: translateY(5px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.local-pack-card {
  position: absolute;
  top: 8%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 190px;
  animation: floatCard 3s ease-in-out infinite;
  z-index: 10;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.local-pack-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F3F4F6;
}
.local-pack-results { display: flex; flex-direction: column; gap: 0.5rem; }
.local-result { display: flex; align-items: center; gap: 0.5rem; }
.result-rank {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.result-rank.dim { background: #E5E7EB; color: #9CA3AF; }
.result-name { font-size: 0.75rem; font-weight: 500; color: var(--text-color); display: block; }
.result-info.dim .result-name { color: #9CA3AF; }
.top-result { background: rgba(13, 148, 136, 0.05); margin: -0.25rem; padding: 0.25rem; border-radius: 6px; }
.top3-badge {
  position: absolute;
  bottom: 20%;
  left: 0;
  background: linear-gradient(135deg, var(--primary-color), #0F766E);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 10;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-5px) rotate(0deg); }
}
.stats-pill {
  position: absolute;
  top: 55%;
  left: 5%;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: floatStats 3.5s ease-in-out infinite;
  z-index: 10;
}
@keyframes floatStats {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
.stats-number { font-size: 1rem; font-weight: 700; color: var(--primary-color); }
.stats-label { font-size: 0.7rem; color: var(--text-light); }

/* ========== SERVICES STRATEGIC (Our Approach) ========== */
.services-strategic { padding: 6rem 0; background: #FFFFFF; }
.services-intro { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
.services-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(13, 148, 136, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.services-intro h2 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.services-intro h2 .text-teal { color: var(--primary-color); }
.services-lead { font-size: 1.2rem; color: var(--text-light); line-height: 1.6; }
.services-flow { max-width: 900px; margin: 0 auto; }
.flow-connector { display: flex; justify-content: center; margin: 1rem 0; }
.service-category {
  background: #FAFAFA;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.category-header { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.category-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.5;
  line-height: 1;
}
.category-title h3 { margin-bottom: 0.5rem; font-size: 1.35rem; }
.category-outcome { font-size: 0.95rem; color: var(--text-light); margin: 0; }
.category-services { display: flex; flex-direction: column; gap: 0.75rem; }
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}
.service-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}
.service-item h4 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.service-item p { margin: 0; font-size: 0.9rem; color: var(--text-light); }
.service-arrow { color: var(--primary-color); flex-shrink: 0; }
.services-cta { text-align: center; margin-top: 3rem; }
.services-cta .btn { margin-bottom: 1rem; }
.services-link { display: inline-block; margin-top: 0.5rem; font-weight: 500; }

/* What We Do keyword pills */
.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.keyword-pills span {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.keyword-pills span:hover { border-color: var(--primary-color); color: var(--primary-color); }
.guide-section h1 { font-size: 2rem; margin-bottom: 1rem; }
.guide-section h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.guide-section h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.guide-section p { margin-bottom: 1rem; color: var(--text-light); }

/* ========== FEATURES / CARDS (Why choose us, FAQ) ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.feature {
  background: var(--background-color);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}
.feature strong { display: block; margin-bottom: 8px; color: var(--text-color); font-size: 1.05rem; }
.feature p { margin: 0; color: var(--text-light); font-size: 0.95rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.card {
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.card h3, .card h4 { margin: 0 0 10px; font-size: 1.1rem; color: var(--text-color); }
.card p { margin: 0; color: var(--text-light); font-size: 0.95rem; }
.quick-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.quick-links a { font-weight: 500; }

/* ========== FOOTER (glasgowseo.ai style) ========== */
.site-footer {
  background: var(--secondary-color);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.site-footer .container,
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-column h4,
.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-column p, .footer-column ul,
.footer-col p, .footer-col ul { margin: 0; font-size: 0.95rem; }
.footer-column ul, .footer-col ul { list-style: none; padding: 0; }
.footer-column li, .footer-col li { margin-bottom: 0.5rem; }
.footer-column a, .footer-col a { color: #94a3b8; text-decoration: none; }
.footer-column a:hover, .footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #94a3b8;
  text-align: center;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: var(--white); }

/* ========== PAGE CONTENT (inner pages) ========== */
.main-content { padding-top: 24px; }
.main-content h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin: 0 0 16px; }
.main-content h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.main-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.main-content p { margin: 0 0 16px; color: var(--text-light); }
.main-content p.lead { font-size: 1.1rem; color: var(--text-color); }
.main-content ul, .main-content ol { margin: 0 0 20px; padding-left: 1.5rem; color: var(--text-light); }
.main-content a { color: var(--primary-color); }

/* ========== INNER PAGE HERO & SECTIONS (match homepage polish) ========== */
.page-hero {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(180deg, rgba(13,148,136,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
}
.page-hero .container { max-width: 800px; }
.page-hero .page-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--primary-color); margin-bottom: 1rem;
}
.page-hero h1 { font-size: clamp(1.85rem, 4vw, 2.35rem); margin: 0 0 0.75rem; color: var(--text-color); }
.page-hero h1 .highlight { color: var(--primary-color); position: relative; }
.page-hero .lead { font-size: 1.1rem; color: var(--text-light); margin-bottom: 1.5rem; max-width: 640px; }
.page-hero .hero-cta { margin-top: 0.5rem; }

.content-section {
  padding: 4rem 0;
}
.content-section:nth-of-type(even) { background: rgba(226,232,240,0.5); }
.content-section h2 { font-size: 1.6rem; margin: 0 0 1rem; color: var(--text-color); }
.content-section h3 { font-size: 1.2rem; margin: 1.25rem 0 0.5rem; color: var(--text-color); }
.content-section p { margin: 0 0 0.75rem; color: var(--text-light); }
.content-section ul, .content-section ol { margin: 0 0 1rem; padding-left: 1.5rem; color: var(--text-light); }
.content-section li { margin-bottom: 0.35rem; }

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.process-cards .card {
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.process-cards .card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; color: var(--primary-color); }
.process-cards .card p { margin: 0; font-size: 0.95rem; color: var(--text-light); }

.faq-block { margin-top: 1rem; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: #fff;
}
.faq-item strong { display: block; margin-bottom: 0.35rem; color: var(--text-color); font-size: 1rem; }
.faq-item p { margin: 0; font-size: 0.95rem; color: var(--text-light); }

.related-block {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.75rem; margin-top: 1rem;
}
.related-label { font-size: 0.95rem; color: var(--text-light); margin: 0; }
.related-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center;
}
.related-links a {
  font-weight: 500; color: var(--primary-color);
  padding: 0.35rem 0.75rem; border-radius: var(--border-radius);
  border: 1px solid var(--primary-color);
  text-decoration: none; font-size: 0.95rem;
}
.related-links a:hover { background: rgba(13,148,136,0.08); }

.cta-section {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0F766E 100%);
  color: #fff;
  border-radius: var(--border-radius-lg);
  margin-top: 2rem;
  margin-bottom: 0;
}
.cta-section h2 { color: #fff; margin: 0 0 0.5rem; font-size: 1.5rem; }
.cta-section p { color: rgba(255,255,255,0.9); margin: 0 0 1.25rem; font-size: 1rem; }
.cta-section .btn-primary {
  background: #fff; color: var(--primary-color); border-color: #fff;
}
.cta-section .btn-primary:hover { background: rgba(255,255,255,0.95); color: #0F766E; }

.service-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.service-card-link {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card-link:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.service-card-link h3 { margin: 0 0 0.5rem; font-size: 1.15rem; color: var(--primary-color); }
.service-card-link p { margin: 0; font-size: 0.95rem; color: var(--text-light); }
.service-card-link .card-arrow { float: right; color: var(--primary-color); margin-top: 0.25rem; }

/* Forms */
label { display: block; margin-bottom: 4px; font-weight: 500; color: var(--text-color); }
input[type="text"], input[type="email"], textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 16px;
}
textarea { min-height: 120px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay[aria-hidden="false"] { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
  padding: 28px;
  position: relative;
}
.modal-box h3 { margin: 0 0 16px; font-size: 1.35rem; }
.modal-box .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 4px;
}
#quote-result { display: none; padding: 12px; border-radius: var(--border-radius); margin-top: 12px; background: rgba(13,148,136,0.1); color: #0F766E; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-local h1 { font-size: 2.5rem; }
  .hero-visual { order: -1; }
  .glasgow-map-container { max-width: 400px; }
  .local-pack-card { right: 0; width: 170px; }
  .nav-list { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 1rem; gap: 0; }
  .nav-list.nav-open { display: flex; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { padding: 0.75rem 1rem; }
  .has-dropdown .dropdown-menu { position: static; box-shadow: none; display: none; padding-left: 1rem; }
  .has-dropdown.dropdown-open .dropdown-menu { display: block; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 575px) {
  .hero-local { padding: 3rem 0 4rem; }
  .hero-local h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
  .local-pack-card { display: none; }
  .top3-badge { left: auto; right: 5%; bottom: 15%; }
  .stats-pill { top: auto; bottom: 5%; left: 5%; }
  .services-intro h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .page-hero h1 { font-size: 1.65rem; }
  .process-cards { grid-template-columns: 1fr; }
  .service-cards-row { grid-template-columns: 1fr; }
}
