/* ============ RESET & BASE ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1a1a1a;
  --dark: #1e1e22;
  --dark-2: #27272a;
  --yellow: #d97706;
  --yellow-hover: #b45309;
  --yellow-light: #fbbf24;
  --yellow-glow: rgba(217, 119, 6, 0.15);
  --yellow-subtle: rgba(217, 119, 6, 0.08);
  --yellow-bg: #fffbeb;
  --white: #ffffff;
  --off-white: #fafaf9;
  --warm-gray-50: #f5f5f4;
  --warm-gray-100: #e7e5e4;
  --warm-gray-200: #d6d3d1;
  --warm-gray-300: #a8a29e;
  --warm-gray-400: #78716c;
  --warm-gray-500: #57534e;
  --warm-gray-600: #44403c;
  --warm-gray-700: #292524;
  --text: #1c1917;
  --text-secondary: #57534e;
  --text-muted: #78716c;
  --border: #e7e5e4;
  --border-hover: #d6d3d1;
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px -4px rgba(0, 0, 0, 0.1), 0 8px 16px -6px rgba(0, 0, 0, 0.06);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-left {
  text-align: left;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 12px;
  background: var(--yellow-bg);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header-left .section-desc {
  margin: 0;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.97);
}

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

.logo {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.08em;
}

.logo span {
  color: var(--yellow);
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-footer {
  font-size: 1.1rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.btn-nav {
  padding: 8px 20px !important;
  font-size: 0.85rem !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 10px;
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(217, 119, 6, 0.15);
}

.btn:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3), 0 2px 4px rgba(217, 119, 6, 0.15);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(217, 119, 6, 0.15);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--white);
}

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

.btn-dark:hover {
  background: var(--warm-gray-700);
  border-color: var(--warm-gray-700);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-submit {
  width: 100%;
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background:
    url('hero.jpg')
    center center / cover no-repeat;
  background-color: #2a2a2e;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 0;
}

.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow-light);
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Quote Form */
.hero-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-form-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.hero-form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-form-full {
  width: 100%;
}

.hero-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-form-group input,
.hero-form-group select,
.hero-form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}

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

.hero-form-group input::placeholder,
.hero-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.hero-form-group select {
  color: rgba(255, 255, 255, 0.3);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.hero-form-group select option {
  background: #1e1e22;
  color: white;
}

.hero-form-group input:focus,
.hero-form-group select:focus,
.hero-form-group textarea:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-form-btn {
  width: 100%;
  margin-top: 4px;
}

.trust-item svg {
  color: var(--yellow-light);
}

/* ============ SERVICES ============ */
.services {
  padding: 120px 0 0;
  background: var(--warm-gray-50);
  border-top: 1px solid var(--border);
}

.services .section-header {
  margin-bottom: 80px;
}

/* Feature-style service blocks */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}

.service-feature-reverse {
  direction: rtl;
}

.service-feature-reverse > * {
  direction: ltr;
}

.service-feature-img {
  position: relative;
  overflow: hidden;
}

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

.service-feature:hover .service-feature-img img {
  transform: scale(1.04);
}

.service-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  background: var(--white);
}

.service-feature:nth-child(odd) .service-feature-text {
  background: var(--white);
}

.service-feature:nth-child(even) .service-feature-text {
  background: var(--warm-gray-50);
}

.service-number {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(217, 119, 6, 0.15);
}

.service-feature-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}

.service-feature-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-feature-text .btn {
  align-self: flex-start;
  margin-top: 12px;
}

/* ============ SERVICE CARDS ============ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-bg);
  color: var(--yellow);
  border-radius: var(--radius);
  margin-bottom: 24px;
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yellow);
  transition: all var(--transition);
}

.service-card-link:hover {
  color: var(--yellow-hover);
  gap: 10px;
}

/* ============ PROCESS ============ */
.process {
  padding: 120px 0;
  background: var(--white);
}

.steps-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-h {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}

.step-h-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
  background: var(--yellow-bg);
  border: 2px solid rgba(217, 119, 6, 0.15);
  border-radius: 50%;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.1);
}

.step-h h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.step-h p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step-h-connector {
  display: flex;
  align-items: center;
  padding-top: 20px;
  color: var(--warm-gray-200);
  flex-shrink: 0;
}

/* ============ WHY US (dark editorial) ============ */
.why-dark {
  padding: 120px 0;
  background: linear-gradient(180deg, #1c1917 0%, #292524 100%);
  color: var(--white);
  position: relative;
}

.why-dark-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-dark-header .section-label {
  background: rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.25);
  color: var(--yellow-light);
}

.why-dark-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 16px;
  color: var(--white);
}

.why-dark-owner {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.owner-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.2);
}

.owner-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.owner-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.6;
}

.why-dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-dark-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.why-dark-item:last-child {
  border-right: none;
}

.why-dark-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--yellow-light);
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.08);
}

.why-dark-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.why-dark-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--warm-gray-300);
}

.why-dark-clients {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.why-dark-clients p {
  font-size: 0.9rem;
  color: var(--warm-gray-400);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ SERVICE AREAS ============ */
.areas {
  padding: 120px 0;
  background: var(--warm-gray-50);
  border-top: 1px solid var(--border);
}

.areas-simple {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.areas-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 16px 0 24px;
  color: var(--text);
}

.areas-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.areas-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.areas-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yellow);
  padding: 10px 22px;
  border: 1.5px solid rgba(217, 119, 6, 0.25);
  border-radius: 100px;
  background: var(--white);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.areas-links a:hover {
  background: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.25);
}

.areas-plus {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============ ADDITIONAL SERVICES ============ */
.additional-services {
  padding: 80px 0;
  background: var(--warm-gray-50);
  border-top: 1px solid var(--border);
}

.additional-services-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  color: var(--text-muted);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.additional-service-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.additional-service-accent {
  width: 32px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 20px;
}

.additional-service-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.additional-service-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.additional-service-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============ FAQ ============ */
.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--warm-gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.faq-item[open] {
  border-color: rgba(217, 119, 6, 0.3);
  background: var(--yellow-bg);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  padding-right: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--yellow);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #1c1917 100%);
  color: var(--white);
  position: relative;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--white);
}

.cta-inner p {
  color: var(--warm-gray-300);
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-banner .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--warm-gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-detail:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-bg);
  color: var(--yellow);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text);
}

.contact-detail span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quote-form {
  background: var(--warm-gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.925rem;
  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(--yellow);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2378716c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -8px;
}

/* ============ FORM SUCCESS ============ */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-bg);
  color: var(--yellow);
  border-radius: 50%;
  margin: 0 auto 24px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.form-success p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
  padding: 64px 0 40px;
  background: linear-gradient(180deg, #292524 0%, #1c1917 100%);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-tagline {
  color: var(--warm-gray-300);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--warm-gray-200);
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--warm-gray-300);
  margin-bottom: 10px;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--warm-gray-400);
}

.footer-areas {
  font-size: 0.75rem !important;
}

/* ============ SEASONAL BANNER ============ */
.seasonal-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

.seasonal-banner svg {
  color: var(--yellow-light);
  flex-shrink: 0;
}

.seasonal-banner a {
  color: var(--yellow-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seasonal-banner a:hover {
  color: var(--yellow);
}

.seasonal-banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}

.seasonal-banner-close:hover {
  color: var(--white);
}

body.has-banner .nav {
  top: 40px;
}

body.has-banner .hero {
  padding-top: 160px;
}

body.has-banner .breadcrumb {
  padding-top: 120px;
}

/* ============ STATS STRIP ============ */
.stats-strip {
  padding: 56px 0;
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--yellow-light);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--warm-gray-300);
  letter-spacing: 0.02em;
}

/* ============ CLIENTS / WHO WE WORK WITH ============ */
.clients {
  padding: 120px 0;
  background: var(--warm-gray-50);
  border-top: 1px solid var(--border);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.client-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.client-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--yellow-bg);
  color: var(--yellow);
  border-radius: var(--radius);
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.client-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.client-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ VERTICAL TIMELINE ============ */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-line {
  display: none;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 48px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--warm-gray-50);
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step.active .timeline-number {
  color: var(--yellow);
  background: var(--yellow-bg);
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.15);
}

.timeline-content {
  padding-top: 6px;
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.7;
}

/* ============ COMPARISON TABLE ============ */
.comparison {
  padding: 120px 0;
  background: var(--warm-gray-50);
  border-top: 1px solid var(--border);
}

.comparison-table {
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--text);
  color: var(--white);
}

.comparison-header span {
  padding: 20px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.comparison-header span:first-child {
  text-align: left;
  color: var(--warm-gray-300);
}

.comparison-header span:nth-child(2) {
  color: var(--yellow-light);
  background: rgba(217, 119, 6, 0.1);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: var(--yellow-bg);
}

.comparison-row span {
  padding: 16px 24px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-row span:first-child {
  font-weight: 600;
  color: var(--text);
  justify-content: flex-start;
}

.comparison-check {
  color: var(--yellow);
}

.comparison-x {
  color: var(--warm-gray-300);
}

/* ============ ANIMATIONS ============ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-form {
    max-width: 500px;
    margin: 0 auto;
  }

  .service-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-feature-reverse {
    direction: ltr;
  }

  .service-feature-img {
    height: 300px;
  }

  .service-feature-text {
    padding: 48px 40px;
  }

  .additional-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-dark-owner {
    gap: 24px;
    padding: 24px;
  }

  .owner-photo {
    width: 100px;
    height: 100px;
  }

  .why-dark-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-dark-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
  }

  .why-dark-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .why-dark-item:nth-child(n+3) {
    border-bottom: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text);
  }

  .menu-toggle {
    display: flex;
  }

  .service-feature-text {
    padding: 36px 24px;
  }

  .service-feature-img {
    height: 240px;
  }

  .timeline-number {
    width: 44px;
    height: 44px;
    font-size: 0.7rem;
  }

  .timeline-step {
    gap: 18px;
    padding-bottom: 36px;
  }

  .additional-services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-dark-owner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .owner-photo {
    width: 96px;
    height: 96px;
  }

  .why-dark-grid {
    grid-template-columns: 1fr;
  }

  .why-dark-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .why-dark-item:last-child {
    border-bottom: none;
  }

  .why-dark-icon {
    margin: 0;
    flex-shrink: 0;
  }

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

  .quote-form {
    padding: 28px 24px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-form {
    padding: 24px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .step {
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .areas-grid {
    gap: 8px;
  }

  .area-tag {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question span {
    font-size: 0.925rem;
  }

  .faq-answer {
    padding: 0 20px 16px;
  }
}

/* ============ CITY LANDING PAGES ============ */
.breadcrumb {
  padding: 80px 0 0;
  background: var(--warm-gray-50);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list a {
  color: var(--yellow);
  font-weight: 500;
  transition: color var(--transition);
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list .breadcrumb-sep {
  color: var(--warm-gray-300);
}

.city-hero {
  padding: 64px 0 80px;
  background: var(--text);
  color: var(--white);
  text-align: center;
}

.city-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.city-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--warm-gray-300);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.city-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.city-hero .btn-hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.city-hero .btn-hero-outline:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.city-services {
  padding: 100px 0;
  background: var(--warm-gray-50);
  border-bottom: 1px solid var(--border);
}

.city-services .card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.city-content {
  padding: 100px 0;
  background: var(--white);
}

.city-content-inner {
  max-width: 760px;
  margin: 0 auto;
}

.city-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text);
}

.city-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.city-content p:last-child {
  margin-bottom: 0;
}

.city-serve {
  padding: 100px 0;
  background: var(--warm-gray-50);
  border-top: 1px solid var(--border);
}

.city-serve .serve-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .city-hero {
    padding: 48px 0 64px;
  }

  .city-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .city-services .card-grid {
    grid-template-columns: 1fr;
  }

  .city-serve .serve-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    padding: 76px 0 0;
  }
}

@media (max-width: 480px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .comparison-header span,
  .comparison-row span {
    padding: 12px 12px;
    font-size: 0.75rem;
  }

  .seasonal-banner {
    font-size: 0.78rem;
    padding: 8px 40px 8px 16px;
  }
}

@media (max-width: 768px) {
  .comparison-header span,
  .comparison-row span {
    padding: 14px 16px;
    font-size: 0.8rem;
  }

  .comparison-row span:first-child {
    font-size: 0.8rem;
  }
}
