/* ==========================================================================
   Osborne Electric - Editorial Light Design System
   Inspired by Unikorns / Editorial Light aesthetic
   Complete rebuild for premium $5,000+ editorial light design
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --black: #1a1a1a;
  --black-pure: #000000;
  --gold: #F4B223;
  --gold-hover: #E5A31D;
  --gold-light: rgba(244, 178, 35, 0.08);
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f6fa;
  --border-gray: #e8e9ed;
  --medium-gray: #636e72;
  --dark-gray: #2d3436;
  --success: #27ae60;
  --danger: #e74c3c;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-gullstack: 'Syne', sans-serif;

  --container: 1200px;
  --section-pad: 6rem;
  --section-pad-mobile: 4rem;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 1rem;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-pad-mobile) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--section-pad) 0;
  }
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
  color: var(--white);
}

/* ==========================================================================
   HEADER — Minimal editorial nav
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--black);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.04em;
}

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--medium-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  border-radius: 2px;
}

.main-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.main-nav.active {
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.main-nav > ul > li {
  border-bottom: 1px solid var(--border-gray);
}

.main-nav > ul > li > a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--gold);
}

.nav-dropdown-content {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}

.nav-dropdown.active .nav-dropdown-content {
  display: block;
}

.nav-dropdown-content a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--medium-gray);
}

.nav-dropdown-content a:hover {
  color: var(--gold);
}

.header-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--gold-hover);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header-phone-number {
  display: none;
}

@media (min-width: 768px) {
  .header-phone-number {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
    overflow: visible;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .main-nav > ul > li {
    border-bottom: none;
    position: relative;
  }

  .main-nav > ul > li > a {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
  }

  .main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.875rem;
    right: 0.875rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
  }

  .main-nav > ul > li > a:hover::after,
  .main-nav > ul > li > a.active::after {
    transform: scaleX(1);
  }

  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a.active {
    color: var(--black);
  }

  .nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-content {
    display: block;
  }

  .nav-dropdown-content a {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--dark-gray);
  }

  .nav-dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--black);
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
  }

  .header-cta:hover {
    background: var(--gold-hover);
    color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 178, 35, 0.3);
  }

  .header-cta svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: inherit;
  line-height: 1.4;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 178, 35, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-group--center {
  justify-content: center;
}

/* ==========================================================================
   HERO — Full-bleed with background image
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.7) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-label svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero .btn-group {
  margin-bottom: 0;
}

/* Service page hero */
.service-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.service-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.service-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.service-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.service-hero .breadcrumb a:hover {
  color: var(--white);
}

.service-hero .breadcrumb span {
  color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--light-gray);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-gray);
  white-space: nowrap;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--medium-gray);
  font-size: 1.0625rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--medium-gray);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--black);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

.service-card:hover .service-card-link {
  color: var(--gold);
}

/* Service card as link */
a.service-card {
  text-decoration: none;
  color: inherit;
}

a.service-card:hover {
  color: inherit;
}

/* ==========================================================================
   WORK GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--wide {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .gallery-item--wide {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.comparison-section {
  background: var(--light-gray);
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gray);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 640px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
}

.comparison-table thead th {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.comparison-table thead th.highlight-col {
  background: var(--gold);
  color: var(--black);
}

.comparison-table tbody td.highlight-col {
  background: var(--gold-light);
  font-weight: 600;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: var(--light-gray);
}

.comparison-table tbody tr:hover td.highlight-col {
  background: rgba(244, 178, 35, 0.15);
}

.check-yes {
  color: var(--success);
  font-weight: 700;
}

.check-no {
  color: var(--danger);
  font-weight: 700;
}

.check-maybe {
  color: var(--medium-gray);
  font-weight: 600;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
}

.team-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-gray);
  margin-bottom: 1rem;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image img {
  transform: scale(1.03);
}

.team-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image--placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--medium-gray);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.4;
}

.team-info h3 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.team-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.team-info p:not(.team-role) {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--black);
  margin-bottom: 0;
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  text-align: center;
  counter-increment: step;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--medium-gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: var(--border-gray);
  }
}

/* ==========================================================================
   FAQ ACCORDION (native details/summary)
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-details {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-details summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-details[open] summary::after {
  transform: rotate(-135deg);
}

.faq-details summary:hover {
  background: var(--light-gray);
}

.faq-details-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

.faq-details-body p:last-child {
  margin-bottom: 0;
}

/* Legacy FAQ (JS-based) */
.faq-section { padding: var(--section-pad-mobile) 0; }
@media (min-width: 768px) { .faq-section { padding: var(--section-pad) 0; } }
.faq-item {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  font-family: inherit;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--medium-gray);
  line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* ==========================================================================
   CONTACT FORM SECTION — Full-bleed background
   ========================================================================== */
.contact-section-bg {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.contact-section-bg .contact-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.contact-section-bg .container {
  position: relative;
  z-index: 2;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: var(--dark-gray);
  max-width: 560px;
}

.contact-form-card h2,
.contact-form-card h3 {
  color: var(--black);
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-text h2 {
  color: var(--white);
}

.contact-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
}

.contact-phone-big {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin: 1.5rem 0;
  letter-spacing: -0.02em;
}

.contact-phone-big:hover {
  color: var(--gold-hover);
}

.contact-phone-big svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-detail a {
  color: rgba(255,255,255,0.7);
}

.contact-detail a:hover {
  color: var(--white);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 178, 35, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--medium-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .form-row .form-group {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: var(--section-pad-mobile) 0;
}

@media (min-width: 768px) {
  .cta-section {
    padding: var(--section-pad) 0;
  }
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  font-size: 1.0625rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-phone:hover {
  color: var(--gold);
}

.cta-phone svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-section .btn-group {
  justify-content: center;
}

/* ==========================================================================
   PAGE HEADERS (inner pages)
   ========================================================================== */
.page-header {
  background: var(--light-gray);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-gray);
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--medium-gray);
  font-size: 1.0625rem;
  margin-bottom: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--medium-gray);
}

.breadcrumb a:hover {
  color: var(--black);
}

.breadcrumb span {
  color: var(--medium-gray);
  opacity: 0.5;
}

@media (min-width: 768px) {
  .page-header {
    padding: 4rem 0;
  }
}

/* ==========================================================================
   CONTENT SECTIONS (service pages, about, areas)
   ========================================================================== */
.content-section {
  padding: var(--section-pad-mobile) 0;
}

@media (min-width: 768px) {
  .content-section {
    padding: var(--section-pad) 0;
  }
}

.content-section.alt-bg {
  background: var(--light-gray);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .content-grid.reverse {
    direction: rtl;
  }

  .content-grid.reverse > * {
    direction: ltr;
  }
}

/* Value/Feature lists */
.value-list {
  list-style: none;
  margin: 1.25rem 0;
}

.value-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.9375rem;
}

.value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.features-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.9375rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ==========================================================================
   AREAS
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.area-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  color: var(--black);
  transform: translateY(-4px);
}

.area-card h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.area-card p {
  color: var(--medium-gray);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.area-hero {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: var(--section-pad-mobile) 0;
}

@media (min-width: 768px) {
  .area-hero { padding: var(--section-pad) 0; }
}

.area-hero h1 {
  color: var(--white);
}

.area-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}

.city-tag {
  background: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--black);
  text-align: center;
  transition: all var(--transition);
}

.city-tag:hover {
  background: var(--gold-light);
  border-color: var(--gold);
}

a.city-tag {
  text-decoration: none;
}

a.city-tag:hover {
  color: var(--black);
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .cities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info {
  padding: 0;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h4 {
  margin-bottom: 0.125rem;
  font-size: 0.9375rem;
}

.contact-item p {
  margin-bottom: 0;
  color: var(--medium-gray);
  font-size: 0.9375rem;
}

.contact-item a {
  color: var(--black);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact-form {
    padding: 2.5rem;
  }
}

/* Map placeholder */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gray);
}

.map-placeholder {
  text-align: center;
  color: var(--medium-gray);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .map-container {
    height: 400px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-links a:hover {
  background: var(--gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.social-links a:hover svg {
  fill: var(--black);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* GullStack Credit */
.gullstack-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  transition: all 0.2s ease;
}

.gullstack-credit:hover {
  color: #8b5cf6;
}

.gullstack-logo {
  height: 16px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.gullstack-credit:hover .gullstack-logo {
  opacity: 1;
}

.gullstack-text {
  font-family: var(--font-gullstack);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ==========================================================================
   AI SUMMARY / BRAND FACTS
   ========================================================================== */
.ai-summary {
  background: var(--light-gray);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

.ai-summary strong {
  color: var(--black);
}

.brand-facts-section {
  margin-bottom: 2.5rem;
}

.brand-facts-section h2 {
  border-bottom: 2px solid var(--border-gray);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
}

.facts-table th,
.facts-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
  vertical-align: top;
}

.facts-table th {
  width: 180px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .facts-table th {
    width: 120px;
  }
}

/* Process List */
.process-list {
  list-style: none;
  counter-reset: process-step;
  margin: 1.5rem 0;
}

.process-list li {
  counter-increment: process-step;
  padding: 0.875rem 0 0.875rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--border-gray);
}

.process-list li:last-child {
  border-bottom: none;
}

.process-list li::before {
  content: counter(process-step);
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-preview {
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ==========================================================================
   INTERNAL LINK CARDS
   ========================================================================== */
.internal-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.internal-link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
}

.internal-link-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--black);
}

.internal-link-card h4 {
  margin-bottom: 0.25rem;
}

.internal-link-card p {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .internal-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .internal-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ==========================================================================
   RESPONSIVE GRID OVERRIDES
   ========================================================================== */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid.five-cols {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .header, .footer, .cta-section, .trust-strip {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    text-decoration: underline;
  }

  section {
    padding: 1rem 0;
  }
}
