/* ============================================================
   Webb Productions — Main Stylesheet
   Colors: #0a0a0a (black), #ffffff (white), #0066FF (blue)
   Font: Inter (Google Fonts)
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: #b0b0b0; line-height: 1.75; }

.text-white p { color: #ffffff; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #0066FF;
  color: #ffffff;
}
.btn-primary:hover {
  background: #0052cc;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.05);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-accent {
  width: 10px;
  height: 10px;
  background: #0066FF;
  border-radius: 2px;
  flex-shrink: 0;
}

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

.logo-webb {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.logo-prod {
  font-size: 0.6rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: #b0b0b0;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  color: #b0b0b0;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-phone:hover { color: #ffffff; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

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

.nav-mobile a {
  color: #b0b0b0;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: #ffffff; }

.nav-mobile .nav-phone-mobile {
  color: #0066FF;
  font-weight: 600;
  margin-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* Page offset for fixed nav */
.page-top { padding-top: 72px; }

/* --- Hero --- */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.3);
  color: #0066FF;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #0066FF;
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 24px;
  color: #ffffff;
}

.hero h1 span { color: #0066FF; }

.hero-sub {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Stats Bar --- */
.stats-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

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

.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0066FF;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-sm { padding: 60px 0; }

.section-header {
  margin-bottom: 60px;
}

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

.section-tag {
  display: inline-block;
  color: #0066FF;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
}

.section-header.text-center p {
  margin: 0 auto;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #0066FF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  background: rgba(0,102,255,0.05);
  border-color: rgba(0,102,255,0.2);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0066FF;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 20px;
  transition: gap 0.2s;
}

.service-card:hover .learn-more { gap: 10px; }

/* --- Why Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,102,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-item h4 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.why-item p { font-size: 0.9rem; }

/* --- Portfolio Grid --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  border-color: rgba(0,102,255,0.3);
  transform: translateY(-4px);
}

.portfolio-thumb {
  height: 220px;
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb-inner {
  text-align: center;
}

.portfolio-thumb-icon {
  font-size: 3rem;
  margin-bottom: 8px;
  display: block;
}

.portfolio-thumb span {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.portfolio-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0066FF;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.portfolio-label.coming-soon { background: rgba(255,255,255,0.1); color: #666; }

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.portfolio-info p { font-size: 0.85rem; }

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #888;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #001a40 0%, #003380 50%, #0052cc 100%);
  border-radius: 16px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 80px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 60%);
}

.cta-banner h2 {
  margin-bottom: 16px;
  color: #ffffff;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Services Page --- */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-badge {
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.2);
  color: #0066FF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}

.service-detail h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.service-detail p {
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.feature-item::before {
  content: '✓';
  color: #0066FF;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-visual {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* --- About Page --- */
.about-hero {
  padding: 80px 0 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0066FF, transparent);
}

.about-text h1 {
  color: #ffffff;
  margin-bottom: 8px;
}

.about-text .about-role {
  color: #0066FF;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(0,102,255,0.2);
}

.value-icon { font-size: 2rem; margin-bottom: 12px; }

.value-card h4 { color: #ffffff; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; }

/* --- Portfolio Page --- */
.portfolio-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.portfolio-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: #0066FF;
  border-color: #0066FF;
  color: #ffffff;
}

/* --- Contact Page --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-info h2 { color: #ffffff; margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,102,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text .label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail-text .value {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-detail-text a { color: #ffffff; }
.contact-detail-text a:hover { color: #0066FF; }

.map-placeholder {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  color: #555;
  font-size: 0.85rem;
  text-align: center;
}

/* --- Contact Form --- */
.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 48px 40px;
}

.contact-form-wrap h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  margin-bottom: 32px;
  font-size: 0.9rem;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0066FF;
  background: rgba(0,102,255,0.04);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option { background: #111; }

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

/* Honeypot */
.hp-field { display: none !important; visibility: hidden !important; }

.form-submit-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-note {
  font-size: 0.8rem;
  color: #555;
}

/* Alert messages */
.alert {
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.alert-success {
  background: rgba(0,200,100,0.1);
  border: 1px solid rgba(0,200,100,0.2);
  color: #00c864;
}

.alert-error {
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.2);
  color: #ff4444;
}

/* --- City Landing Pages --- */
.city-hero {
  padding: 80px 0 60px;
}

.city-hero h1 { color: #ffffff; margin-bottom: 20px; }

.city-hero p.lead {
  font-size: 1.15rem;
  color: #888;
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.city-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.city-services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.city-service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px 20px;
  transition: all 0.3s;
}

.city-service-item:hover {
  border-color: rgba(0,102,255,0.2);
  background: rgba(0,102,255,0.03);
}

.city-service-item .icon { font-size: 1.3rem; }

.city-service-item .text h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.city-service-item .text p {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* --- FAQ --- */
.faq-section { padding: 80px 0; }
.faq-section h2 { color: #ffffff; margin-bottom: 40px; }

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

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover { background: rgba(255,255,255,0.02); }

.faq-toggle {
  color: #0066FF;
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 24px 20px;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-item.open .faq-a { max-height: 300px; }

/* --- City CTA Form --- */
.city-cta-section {
  background: rgba(0,102,255,0.04);
  border: 1px solid rgba(0,102,255,0.1);
  border-radius: 16px;
  padding: 60px 48px;
  margin: 60px 0;
}

.city-cta-section h2 { color: #ffffff; margin-bottom: 12px; }
.city-cta-section > p { margin-bottom: 36px; font-size: 1rem; }

.city-cta-form { max-width: 680px; }

/* --- Trust Badges --- */
.trust-section { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { text-align: center; }
.trust-icon { font-size: 2rem; margin-bottom: 8px; }
.trust-item h4 { color: #ffffff; font-size: 0.9rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.8rem; color: #555; }

/* --- Footer --- */
.footer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #ffffff; }

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

.footer-bottom p {
  font-size: 0.8rem;
  color: #444;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: #444;
  transition: color 0.2s;
}

.footer-legal a:hover { color: #888; }

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 20px;
}

.breadcrumb a { color: #555; transition: color 0.2s; }
.breadcrumb a:hover { color: #0066FF; }
.breadcrumb span { color: #333; }

/* --- Divider --- */
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0; }

/* --- Utility --- */
.bg-dark { background: #0a0a0a; }
.bg-darker { background: rgba(0,0,0,0.4); }
.text-blue { color: #0066FF; }
.text-muted { color: #666; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-inner.reverse { direction: ltr; }
  .service-visual { height: 200px; font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { padding: 20px; border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; }
  .city-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone { display: none; }

  .nav-hamburger { display: flex; }

  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }

  .section { padding: 60px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 28px; }
  .city-cta-section { padding: 40px 24px; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}
