/* ============================================
   Colton's Undercarriage Car Wash — Styles
   Palette: Deep Navy (#0d1b2a) + Warm Gold (#c8a84b)
   Fonts: Playfair Display + Inter
============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a2e;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #0d1b2a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: #0d1b2a;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  padding: 8px 0;
  letter-spacing: 0.02em;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-phone {
  color: #c8a84b;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.top-bar-phone:hover {
  color: #dbb960;
}

/* ---------- Header ---------- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.1);
}

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

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo--footer .logo-icon {
  opacity: 0.9;
}

.logo-icon {
  flex-shrink: 0;
}

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

.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0d1b2a;
}

.logo-tagline {
  font-size: 0.6875rem;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.logo--footer .logo-name {
  color: #ffffff;
}

.logo--footer .logo-tagline {
  color: rgba(200, 168, 75, 0.8);
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover {
  color: #0d1b2a;
  background: rgba(13, 27, 42, 0.05);
}

.nav-cta {
  background: #0d1b2a !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  margin-left: 8px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: #1a2f47 !important;
  transform: translateY(-1px);
}

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

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: #0d1b2a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 75, 0.12);
  border: 1px solid rgba(200, 168, 75, 0.25);
  color: #c8a84b;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #c8a84b;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-gold {
  color: #c8a84b;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: #c8a84b;
  color: #0d1b2a;
  border-color: #c8a84b;
}

.btn-primary:hover {
  background: #dbb960;
  border-color: #dbb960;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 75, 0.35);
}

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

.btn-outline:hover {
  border-color: #c8a84b;
  color: #c8a84b;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #0d1b2a;
  border-color: #0d1b2a;
}

.btn-outline-light:hover {
  background: #0d1b2a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.0625rem;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---------- Hero Visual ---------- */
.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-card-main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, transparent 100%);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-label {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.card-label-secondary {
  background: rgba(200, 168, 75, 0.3);
  color: #c8a84b;
}

/* Stat cards */
.hero-stat-card {
  position: absolute;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.stat-card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.stat-card-2 {
  bottom: 28%;
  left: -30px;
  animation-delay: 1.3s;
}

.stat-card-3 {
  bottom: 5%;
  right: 10px;
  animation-delay: 2.6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: #f0f4f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-gold {
  background: #c8a84b;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #0d1b2a;
  line-height: 1.2;
}

.stat-desc {
  font-size: 0.75rem;
  color: #666;
}

/* ---------- Section Shared ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a84b;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title--light {
  color: #ffffff;
}

.section-header--centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.75;
}

.section-header--centered .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Services ---------- */
.services {
  padding: 100px 0;
  background: #f8f7f4;
}

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

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(13, 27, 42, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 168, 75, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
}

/* ---------- About ---------- */
.about {
  padding: 100px 0;
  background: #0d1b2a;
  position: relative;
  overflow: hidden;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid #0d1b2a;
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #c8a84b;
  color: #0d1b2a;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(200, 168, 75, 0.4);
}

.accent-box-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.accent-box-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.about-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 32px 0;
}

.about-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
}

.about-feature svg {
  flex-shrink: 0;
}

/* ---------- Why ---------- */
.why {
  padding: 100px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: #f8f7f4;
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(13, 27, 42, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.08);
}

.why-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(200, 168, 75, 0.15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
}

.why-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 12px;
  margin-top: 24px;
}

.why-card-desc {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.75;
}

/* ---------- Process ---------- */
.process {
  padding: 100px 0;
  background: #f8f7f4;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.process-step-circle {
  width: 72px;
  height: 72px;
  background: #0d1b2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #c8a84b;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover .process-step-circle {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(200, 168, 75, 0.15);
}

.process-step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
}

.process-step-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}

.process-step-connector::before {
  content: '';
  width: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #c8a84b 0, #c8a84b 6px, transparent 6px, transparent 12px);
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 100px 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
}

.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  min-height: 360px;
}

.gallery-item:not(.gallery-item--large) {
  min-height: 170px;
}

.gallery-item--wide {
  grid-column: 1 / 13;
  grid-row: 2 / 3;
  min-height: 200px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 80px 0;
  background: #0d1b2a;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-content {
  flex: 1;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 520px;
}

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

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
  background: #f8f7f4;
}

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

.contact-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
}

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

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

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 168, 75, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-detail-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0d1b2a;
  transition: color 0.2s;
}

.contact-detail-value:hover {
  color: #c8a84b;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact-form-wrapper {
  max-width: 100%;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.06);
  border: 1px solid rgba(13, 27, 42, 0.05);
}

.contact-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 6px;
}

.contact-form-subtitle {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 28px;
}

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

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

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0ddd6;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1a1a2e;
  background: #faf9f7;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: #c8a84b;
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.15);
  background: #fff;
}

.form-input::placeholder {
  color: #aaa;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%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;
}

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

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  margin-top: 16px;
}

.form-success strong {
  display: block;
  color: #16a34a;
  margin-bottom: 2px;
}

.form-success span {
  font-size: 0.875rem;
  color: #4ade80;
  color: #15803d;
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1520;
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8a84b;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links ul a:hover {
  color: #c8a84b;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-contact-list a:hover {
  color: #c8a84b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(200, 168, 75, 0.6);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #c8a84b;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #0d1b2a;
  color: #c8a84b;
  border: 2px solid #c8a84b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #c8a84b;
  color: #0d1b2a;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 520px;
    min-height: 400px;
  }

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

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

  .about-images {
    max-width: 480px;
  }

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

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

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

  .cta-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar {
    font-size: 0.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 88px 24px 32px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-overlay.visible {
    display: block;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-stat-card {
    display: none;
  }

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

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-step {
    padding: 0;
  }

  .process-step-connector {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .process-step-connector::before {
    width: 2px;
    height: 24px;
    background: repeating-linear-gradient(180deg, #c8a84b 0, #c8a84b 6px, transparent 6px, transparent 12px);
  }

  .gallery-item--large {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .gallery-item:not(.gallery-item--large) {
    min-height: 160px;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
  }

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

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

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

  .contact-form-card {
    padding: 28px 24px;
  }

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

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-img-accent {
    right: 0;
  }

  .about-accent-box {
    left: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

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