/* ============================================================
   MORTGAGES LUCAS — style.css
   Luxury/Refined aesthetic: deep navy, warm gold, serif display
   ============================================================ */

/* ── CSS Variables (edit here to retheme the whole site) ── */
:root {
  /* Colors */
  --color-navy: #0d1f3c;
  --color-navy-mid: #162d52;
  --color-navy-light: #1e3a66;
  --color-gold: #c9a84c;
  --color-gold-light: #e0c47a;
  --color-gold-pale: #f5ecd4;
  --color-white: #ffffff;
  --color-off-white: #f7f5f1;
  --color-text: #1a1a2e;
  --color-text-mid: #3d4e6b;
  --color-text-light: #7a8aaa;
  --color-border: #e2ddd4;
  --color-alt-bg: #f2efe9;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --section-pad: 100px;
  --section-pad-sm: 60px;
  --radius-card: 16px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(13, 31, 60, 0.08), 0 1px 4px rgba(13, 31, 60, 0.04);
  --shadow-hover: 0 12px 40px rgba(13, 31, 60, 0.14), 0 2px 8px rgba(13, 31, 60, 0.06);
  --shadow-heavy: 0 20px 60px rgba(13, 31, 60, 0.2);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* ── Shared Utility: Card ── */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px;
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
}

/* ── Shared Utility: Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ── Section Tags & Typography ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

.section-body {
  font-size: 1rem;
  color: var(--color-text-mid);
  margin-bottom: 16px;
  max-width: 540px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-mid);
  max-width: 560px;
  margin: 0 auto;
}

.centered-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* ── Fade-in (hero) ── */
.fade-in {
  animation: fadeUp 0.9s ease forwards;
}

.fade-delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 31, 60, 0.97);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-image {
  width: 25%
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.logo-accent {
  color: var(--color-gold);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 2px;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--color-gold);
  color: var(--color-navy) !important;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 4px;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--color-gold-light) !important;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

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

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


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(13, 31, 60, 0.92) 0%, rgba(22, 45, 82, 0.85) 60%, rgba(201, 168, 76, 0.15) 100%),
    url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric accent */
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 31, 60, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

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

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 40px;
  gap: 0;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
}


/* ============================================================
   CONTENT SECTIONS (About, Why Broker, Process)
   ============================================================ */
.content-section {
  padding: var(--section-pad) 40px;
  background: var(--color-white);
}

.section-alt {
  background: var(--color-alt-bg);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.layout-right-text .text-card {
  order: 2;
}

.layout-right-text .image-block {
  order: 1;
}

/* Text Card */
.text-card {
  padding: 48px;
}

.text-card .section-title {
  margin-bottom: 20px;
}

.text-card .btn {
  margin-top: 12px;
}

/* Image Block */
.image-block {
  position: relative;
}

.image-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--color-navy-mid), var(--color-navy-light));
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.image-placeholder.portrait {
  aspect-ratio: 3/4;
  max-height: 520px;
}

.image-placeholder.landscape {
  aspect-ratio: 4/3;
}

/* Decorative accent box behind image */
.image-accent-box {
  position: absolute;
  width: 60%;
  height: 60%;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-card);
  bottom: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.4;
}

.image-accent-box.accent-right {
  left: auto;
  right: -20px;
}

/* Feature List (Why Broker) */
.feature-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-mid);
}

.check {
  color: var(--color-gold);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Process Steps */
.process-steps {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  min-width: 48px;
  opacity: 0.8;
}

.process-step strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--color-text-mid);
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--section-pad) 40px;
  background: var(--color-navy);
}

.services-section .section-tag {
  color: var(--color-gold);
}

.services-section .section-title {
  color: var(--color-white);
}

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

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

.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  color: var(--color-white);
  box-shadow: none;
}

.service-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad) 40px;
  background: var(--color-off-white);
}

.testimonials-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-navy);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--color-text-light);
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  padding: 80px 40px;
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-title em {
  font-style: italic;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(13, 31, 60, 0.75);
  margin-bottom: 36px;
}

.cta-banner .btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.cta-banner .btn-primary:hover {
  background: var(--color-navy-light);
  border-color: var(--color-navy-light);
  box-shadow: 0 8px 24px rgba(13, 31, 60, 0.3);
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 40px;
  background: var(--color-white);
}

.contact-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Form */
.contact-form {
  padding: 48px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: var(--color-white);
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 16px;
}

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

.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-mid);
}

.contact-icon {
  font-size: 1rem;
}

.contact-details a {
  color: var(--color-navy);
  transition: color var(--transition);
}

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

.info-card p {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  margin-bottom: 8px;
}

.license-num {
  font-size: 0.8rem !important;
  color: var(--color-text-light) !important;
  font-weight: 500;
  letter-spacing: 0.06em;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 40px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-sm);
  }

  .header-inner {
    padding: 0 20px;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy);
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 99;
  }

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

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-cta {
    padding: 12px 32px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
    position: relative;
  }

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

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

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

  .hero {
    padding: 120px 20px 100px;
    align-items: center;
    text-align: center;
  }

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

  .hero-subtitle {
    margin: 0 auto 36px;
  }

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

  .hero-stats {
    padding: 16px 20px;
    gap: 0;
  }

  .stat {
    padding: 0 20px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .section-inner,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .layout-right-text .text-card {
    order: 1;
  }

  .layout-right-text .image-block {
    order: 2;
  }

  .content-section,
  .section-alt {
    padding: var(--section-pad-sm) 20px;
  }

  .text-card {
    padding: 32px 24px;
  }

  .card {
    padding: 28px 20px;
  }

  .services-section {
    padding: var(--section-pad-sm) 20px;
  }

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

  .testimonials-section {
    padding: var(--section-pad-sm) 20px;
  }

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

  .cta-banner {
    padding: 60px 20px;
  }

  .contact-section {
    padding: var(--section-pad-sm) 20px;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

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

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

  .site-footer {
    padding: 48px 20px 0;
  }
}