/* ===========================
   Nordic Bilpleje — styles.css
   =========================== */

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

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #00293F;
  --bg-rgb: 0, 41, 63;
  --fg: #d4dce4;
  --primary: #23A2D8;
  --primary-fg: #00293F;
  --secondary: #0a3a54;
  --muted: #0d3348;
  --muted-fg: #7a95a8;
  --border: #133a52;
  --card: #062d42;
  --card-rgb: 6, 45, 66;
  --radius: 0.75rem;
  --shadow-glow: 0 0 30px rgba(35, 162, 216, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 20, 35, 0.4);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Utilities ---------- */
.text-gradient {
  background: linear-gradient(135deg, #23A2D8, #5cc4eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(var(--card-rgb), 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(19, 58, 82, 0.5);
  box-shadow: var(--shadow-card);
}

.glow { box-shadow: var(--shadow-glow); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary.glow { box-shadow: var(--shadow-glow); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--secondary); }

.section-label {
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-8px) translateX(-50%); }
}

.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
.animate-fade-in { animation: fadeIn 1s ease-out forwards; }
.animate-fade-up-delay1 { animation: fadeUp 0.8s ease-out 0.2s forwards; opacity: 0; }
.animate-fade-up-delay2 { animation: fadeUp 0.8s ease-out 0.4s forwards; opacity: 0; }

/* ---------- SVG Icons ---------- */
.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.icon-sm { font-size: 1rem; }
.icon-md { font-size: 1.25rem; }
.icon-lg { font-size: 1.5rem; }
.icon-xl { font-size: 1.75rem; }

/* ================================
   NAVBAR
   ================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(var(--bg-rgb), 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(19, 58, 82, 0.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.navbar-brand span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.navbar .nav-cta {
  color: #ffffff;
}
.nav-cta:hover { opacity: 0.9; }
.nav-cta .icon { font-size: 1rem; }

.mobile-toggle {
  display: none;
  color: var(--fg);
  font-size: 1.5rem;
}

.mobile-menu {
  display: none;
  background: rgba(var(--bg-rgb), 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(19, 58, 82, 0.3);
  padding: 0 1.5rem 1.5rem;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay1 {
  position: absolute;
  inset: 0;
  background: rgba(var(--bg-rgb), 0.7);
}
.hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), rgba(var(--bg-rgb), 0.3), transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-label {
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  color: var(--muted-fg);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero .btn-primary {
  color: #ffffff;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-fg);
  animation: bounce 2s infinite;
  font-size: 1.5rem;
}

/* ================================
   SERVICES
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s;
}
.service-card:hover { border-color: rgba(35, 162, 216, 0.4); }
.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(35, 162, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(35, 162, 216, 0.2); }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
}

#services {
  position: relative;
  padding-bottom: 3rem;
}

/* ================================
   OUR WORK
   ================================ */
.our-work-section {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  background: transparent;
}

.our-work-section::before {
  display: none;
}

.our-work-section::after {
  display: none;
}

.our-work-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(19, 58, 82, 0.5);
}

.our-work-heading {
  max-width: 28rem;
}

.section-label-left,
.section-title-left {
  text-align: left;
}

.section-title-left {
  margin-bottom: 0;
}

.our-work-intro {
  max-width: 32rem;
  color: var(--muted-fg);
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(35, 162, 216, 0.25);
}

.our-work-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 2rem;
  align-items: start;
}

.our-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.our-work-card {
  overflow: hidden;
  border-radius: 1rem;
  text-align: left;
  padding: 0;
  background: rgba(var(--card-rgb), 0.5);
  border: 1px solid rgba(19, 58, 82, 0.5);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
  position: relative;
}

.our-work-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.our-work-pane {
  position: relative;
  min-height: 0;
}

.our-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.our-work-card:hover img {
  transform: scale(1.04);
}

.our-work-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.our-work-badge.before {
  background: rgba(0, 18, 28, 0.78);
  color: #d7e2ea;
}

.our-work-badge.after {
  background: rgba(35, 162, 216, 0.92);
  color: var(--primary-fg);
}

.our-work-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.our-work-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem;
  background: linear-gradient(to top, rgba(0, 24, 37, 0.92), rgba(0, 24, 37, 0.15));
}

.our-work-copy span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.our-work-copy h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.our-work-side {
  border-radius: 1rem;
  padding: 1.5rem;
  align-self: start;
  height: fit-content;
}

.our-work-side-label {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.our-work-side h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.our-work-side p {
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
}

.our-work-open-all {
  width: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 18, 0.86);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 70rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.lightbox-main img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-main {
  grid-column: 2;
}

.lightbox-caption {
  grid-column: 2;
  text-align: center;
  color: var(--fg);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: -0.25rem;
}

.lightbox-nav {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.lightbox-thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
  max-height: 12rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.lightbox-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 2px solid transparent;
}

.lightbox-thumb.active {
  border-color: var(--primary);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ================================
   PRICING
   ================================ */
.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.tabs-wrapper {
  display: inline-flex;
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 0.25rem;
  gap: 0.25rem;
}
.tab-btn {
  padding: 0.625rem 1.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--fg); }
.tab-btn.active {
  background: var(--primary);
  color: var(--primary-fg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
.price-card {
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { border-color: rgba(35, 162, 216, 0.3); }
.price-card.popular {
  border-color: rgba(35, 162, 216, 0.5);
  transform: scale(1.05);
}
.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}
.price-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.price-amount {
  margin-bottom: 1.5rem;
}
.price-amount span:first-child {
  font-size: 2.5rem;
  font-weight: 700;
}
.price-amount .currency {
  color: var(--muted-fg);
  margin-left: 0.25rem;
}
.price-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.price-feature .icon { color: var(--primary); margin-top: 2px; }
.price-feature span { color: var(--muted-fg); }

.price-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.price-cta.filled {
  background: var(--primary);
  color: var(--primary-fg);
}
.price-cta.outlined {
  border: 1px solid var(--border);
  color: var(--fg);
}
.price-cta.outlined:hover { background: var(--secondary); }

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 64rem; margin: 0 auto; }

/* ================================
   PROCESS
   ================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
.process-step { text-align: center; }
.process-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(35, 162, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  color: var(--primary);
  font-size: 1.75rem;
}
.process-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--muted-fg);
  font-size: 0.875rem;
}

/* ================================
   REVIEWS
   ================================ */
.reviews-section {
  position: relative;
}

.reviews-section::before {
  display: none;
}

.reviews-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(19, 58, 82, 0.5);
}

.reviews-heading {
  max-width: 28rem;
}

.reviews-intro {
  max-width: 34rem;
  color: var(--muted-fg);
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(35, 162, 216, 0.25);
}

.reviews-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.reviews-viewport {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.5rem 0;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(100%, 42rem);
  scroll-snap-align: center;
  border-radius: 1rem;
  padding: 2rem;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(19, 58, 82, 0.5);
  box-shadow:
    0 0 0 1px rgba(35, 162, 216, 0.08),
    0 0 30px rgba(35, 162, 216, 0.14),
    0 18px 40px rgba(0, 20, 35, 0.32);
}

.review-stars {
  color: #f6c453;
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.review-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg);
  margin-bottom: 2rem;
}

.review-author strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.review-author span {
  color: var(--muted-fg);
  font-size: 0.875rem;
}

.reviews-nav {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: rgba(var(--card-rgb), 0.8);
  border: 1px solid rgba(35, 162, 216, 0.25);
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.reviews-nav:hover {
  background: rgba(35, 162, 216, 0.14);
  border-color: rgba(35, 162, 216, 0.45);
  transform: translateY(-1px);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.reviews-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(122, 149, 168, 0.35);
  transition: transform 0.2s, background 0.2s;
}

.reviews-dot.active {
  background: var(--primary);
  transform: scale(1.15);
}

/* ================================
   ABOUT
   ================================ */
.about-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  color: var(--muted-fg);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-content p:last-child { margin-bottom: 0; }

/* ================================
   FAQ
   ================================ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  font-weight: 500;
}
.faq-question .icon {
  color: var(--muted-fg);
  transition: transform 0.3s;
  font-size: 1.25rem;
}
.faq-item.active .faq-question .icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
}
.faq-item.active .faq-answer { display: block; }

.faq-link {
  color: var(--primary);
  font-weight: 700;
}

.faq-link:hover {
  text-decoration: underline;
}

/* ================================
   CTA
   ================================ */
.cta-box {
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: rgba(35, 162, 216, 0.05);
}
.cta-inner { position: relative; z-index: 1; }
.cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-box p {
  color: var(--muted-fg);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  border-top: 1px solid rgba(19, 58, 82, 0.3);
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.footer h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer h3 span { color: var(--primary); }
.footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer p, .footer a {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.8;
}
.footer a:hover { color: var(--primary); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact .icon { color: var(--primary); font-size: 1rem; }

.footer-hours .icon { color: var(--primary); font-size: 1rem; }
.footer-hours > div { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-hours p { font-size: 0.875rem; color: var(--muted-fg); }

.footer-bottom {
  border-top: 1px solid rgba(19, 58, 82, 0.3);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

/* ================================
   SECTIONS
   ================================ */
section { padding: 6rem 0; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  section { padding: 4.5rem 0; }
  .container { padding: 0 1rem; }
  .navbar-brand { font-size: 1.2rem; }
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { width: 100%; }
  .btn-primary, .btn-outline { width: 100%; }
  .mobile-menu { padding: 0 1rem 1rem; }
  .mobile-menu .nav-cta { width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .our-work-header { flex-direction: column; align-items: flex-start; }
  .our-work-header { padding: 1.5rem; }
  .our-work-heading, .reviews-heading { max-width: 100%; }
  .our-work-intro { padding-left: 0; border-left: none; }
  .our-work-layout { grid-template-columns: 1fr; }
  .our-work-grid { grid-template-columns: 1fr 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-header { padding: 1.5rem; }
  .reviews-intro { padding-left: 0; border-left: none; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .reviews-nav { display: none; }
  .reviews-viewport { gap: 1rem; padding: 0.25rem 0 0.5rem; }
  .review-card { flex: 0 0 calc(100% - 1.5rem); min-height: auto; padding: 1.5rem; }
  .review-quote { font-size: 1rem; line-height: 1.7; }
  .review-stars { font-size: 0.95rem; letter-spacing: 0.14em; }
  .reviews-dots { gap: 0.5rem; }
  .reviews-dot { width: 0.65rem; height: 0.65rem; }
  .our-work-copy { padding: 0.9rem; }
  .our-work-copy h3 { font-size: 0.95rem; }
  .our-work-side { padding: 1.25rem; }
  .pricing-tabs { overflow-x: auto; padding-bottom: 0.25rem; }
  .tabs-wrapper { width: 100%; min-width: max-content; }
  .tab-btn { padding: 0.625rem 1rem; }
  .price-card { padding: 1.5rem; }
  .price-card h3 { font-size: 1.3rem; }
  .price-amount span:first-child { font-size: 2rem; }
  .lightbox { padding: 1rem; }
  .lightbox-dialog { grid-template-columns: 1fr; }
  .lightbox-main { grid-column: auto; }
  .lightbox-caption { grid-column: auto; }
  .lightbox-main img { max-height: 56vh; }
  .lightbox-nav { display: none; }
  .lightbox-thumbs { grid-column: auto; }
  .lightbox-thumbs { grid-template-columns: repeat(auto-fill, minmax(3.75rem, 1fr)); max-height: 9rem; gap: 0.5rem; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .about-content p { font-size: 1rem; }
  .cta-box p { font-size: 1rem; }
  .cta-box { padding: 2rem; }
  .cta-box h2 { font-size: 1.5rem; }
}

@media (max-width: 560px) {
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2.15rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 1.8rem; }
  .section-label { font-size: 0.78rem; letter-spacing: 0.14em; }
  .our-work-grid { grid-template-columns: 1fr; }
  .our-work-card { aspect-ratio: 1 / 1.08; }
  .reviews-intro { font-size: 0.95rem; }
  .review-card { flex: 0 0 100%; padding: 1.25rem; }
  .review-quote { font-size: 0.96rem; margin-bottom: 1.5rem; }
  .review-author strong { font-size: 1rem; }
  .reviews-dots { margin-top: 1rem; }
  .tab-btn { font-size: 0.82rem; padding: 0.6rem 0.85rem; }
  .price-feature { font-size: 0.82rem; }
  .price-cta { padding: 0.85rem; }
  .our-work-badge { top: 0.7rem; left: 0.7rem; font-size: 0.65rem; }
  .process-grid { grid-template-columns: 1fr; }
  .faq-question { padding: 1.2rem; }
  .faq-answer { padding: 0 1.2rem 1.2rem; }
  .cta-box { padding: 1.5rem; }
  .footer { padding: 3rem 0; }
  .footer-contact a, .footer-contact div { align-items: flex-start; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .our-work-layout { grid-template-columns: 1fr; }
  .review-card { flex-basis: min(100%, 36rem); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 5rem; }
  .section-title { font-size: 3rem; }
  .cta-box { padding: 4rem; }
  .cta-box h2 { font-size: 3rem; }
}
