/* ============================================
   Bradley Heating Cooling Electric — Styles
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  min-height: 100vh;
  color: #1a1020;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Navigation ---- */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,44,94,0.08);
  transition: box-shadow 0.3s ease;
}
.nav-fixed.scrolled {
  box-shadow: 0 4px 24px rgba(74,44,94,0.1);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: #4A2C5E;
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-size: 1.1rem; }
.nav-logo-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4A017;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A2C5E;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A017;
  transition: width 0.3s;
}
.nav-menu a:hover::after,
.nav-menu a:focus::after { width: 100%; }
.nav-menu a:hover { color: #D4A017; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #4A2C5E;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #5e3a6e; transform: translateY(-1px); color: #fff !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: #4A2C5E;
  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);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 10px;
  padding: 0.8125rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: #D4A017;
  color: #1a1020;
  border-color: #D4A017;
}
.btn--primary:hover {
  background: #b8860b;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: #4A2C5E;
  border-color: #4A2C5E;
}
.btn--outline:hover {
  background: #4A2C5E;
  color: #fff;
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Section Shared ---- */
.section {
  padding: 6rem 0;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.875rem;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 50px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #4A2C5E;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.0625rem;
  color: #5e4a5e;
  max-width: 560px;
  line-height: 1.7;
}
.section-header--center .section-desc { margin: 0 auto; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #1a1020;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(74,44,94,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(212,160,23,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #1a1020 0%, #2a1835 50%, #1a1020 100%);
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #D4A017;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4A017;
  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.3); }
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s, background 0.3s;
}
.stat-card:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.1);
}
.stat-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4A017;
  line-height: 1;
}
.stat-card-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ---- Services ---- */
.services { background: #faf8fb; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(74,44,94,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(74,44,94,0.12);
}
.service-card-visual {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-visual img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,16,32,0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
}
.service-card-body { padding: 1.5rem; }
.service-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #4A2C5E;
  margin-bottom: 0.5rem;
}
.service-card-desc {
  font-size: 0.9375rem;
  color: #5e4a5e;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-card-list {
  margin-bottom: 1.25rem;
  padding-left: 0;
}
.service-card-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: #4A2C5E;
  line-height: 1.75;
}
.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: #D4A017;
  border-radius: 50%;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #D4A017;
  transition: gap 0.2s, color 0.2s;
}
.service-card-link:hover { gap: 0.6rem; color: #b8860b; }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(74,44,94,0.15);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(74,44,94,0.12);
}
.about-img-accent img { width: 100%; height: 160px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background: #D4A017;
  color: #1a1020;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,160,23,0.3);
}
.about-badge-year {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-content { max-width: 480px; }
.about-body {
  font-size: 1rem;
  color: #5e4a5e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A017;
}
.value-item strong {
  display: block;
  font-size: 0.9375rem;
  color: #4A2C5E;
  margin-bottom: 0.125rem;
}
.value-item span {
  font-size: 0.8125rem;
  color: #7a6078;
}

/* ---- Why Us ---- */
.why-us { background: #faf8fb; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border: 1px solid rgba(74,44,94,0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(74,44,94,0.1);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4A2C5E, #D4A017);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(74,44,94,0.07);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #4A2C5E;
  margin-bottom: 0.625rem;
}
.why-card-desc {
  font-size: 0.9375rem;
  color: #5e4a5e;
  line-height: 1.7;
}

/* ---- Testimonials ---- */
.testimonials { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #faf8fb;
  border: 1px solid rgba(74,44,94,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(74,44,94,0.08);
}
.testimonial-card-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #D4A017;
  opacity: 0.4;
  margin-bottom: -0.5rem;
}
.testimonial-card-text {
  font-size: 0.9375rem;
  color: #4A2C5E;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4A2C5E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A017;
  flex-shrink: 0;
}
.testimonial-card-name {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #4A2C5E;
}
.testimonial-card-location {
  display: block;
  font-size: 0.8125rem;
  color: #7a6078;
}

/* ---- CTA ---- */
.cta { background: #1a1020; padding: 5rem 0; }
.cta-card {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 3rem;
  overflow: hidden;
}
.cta-content { color: #fff; }
.cta-content .section-tag { background: rgba(212,160,23,0.15); border-color: rgba(212,160,23,0.3); }
.cta-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #fff;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-visual {
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
}
.cta-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Contact ---- */
.contact { background: #faf8fb; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: #5e4a5e;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A017;
}
.contact-detail strong {
  display: block;
  font-size: 0.9375rem;
  color: #4A2C5E;
  margin-bottom: 0.125rem;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.9375rem;
  color: #5e4a5e;
  line-height: 1.6;
}
.contact-detail a:hover { color: #D4A017; }
.contact-detail address { font-style: normal; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(74,44,94,0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(74,44,94,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4A2C5E;
  margin-bottom: 0.375rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(74,44,94,0.15);
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #1a1020;
  background: #faf8fb;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4A017;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a89aaa; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: #7a6078;
  margin-top: 1rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 2px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #D4A017;
}
.form-success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A2C5E;
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.9375rem;
  color: #5e4a5e;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.form-success-btn { margin: 0 auto; }

/* ---- Footer ---- */
.footer {
  background: #1a1020;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D4A017;
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: #D4A017; }
.footer-address {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #D4A017; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ---- Scroll reveal (progressive enhancement) ---- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; margin-top: 2rem; }
  .stat-card { flex: 1; min-width: 140px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-visual { height: 260px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(74,44,94,0.08);
    box-shadow: 0 12px 32px rgba(74,44,94,0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu a { font-size: 1rem; padding: 0.5rem 0; }
  .nav-cta { justify-content: center; }
  .section { padding: 4rem 0; }
  .hero { padding: 5rem 0 3rem; min-height: auto; }
  .hero-card { padding: 1.75rem; }
  .hero-headline { font-size: 1.625rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-accent { right: 0; bottom: -1.5rem; }
  .about-img-main img { height: 300px; }
  .cta-card { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.125rem; }
  .nav-container { padding: 0 1.125rem; }
  .hero-card { padding: 1.5rem; }
  .stat-card { padding: 1.125rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
