/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a2d4a;
  background: #faf8f4;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Section Shared ─── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(200,164,92,0.12), rgba(200,164,92,0.04));
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(200,164,92,0.2);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a2d4a;
  margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: #5a6a7e; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #1a2d4a, #243b5e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,45,74,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,45,74,0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(26,45,74,0.08);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: #1a2d4a; }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c8a45c;
  transition: width 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav.scrolled .nav-link { color: #5a6a7e; }
.nav.scrolled .nav-link:hover { color: #1a2d4a; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: rgba(200,164,92,0.2);
  border: 1px solid rgba(200,164,92,0.4);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.3s;
}
.nav-cta:hover { background: rgba(200,164,92,0.35); }
.nav.scrolled .nav-cta { color: #1a2d4a; background: rgba(200,164,92,0.12); border-color: rgba(200,164,92,0.3); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: #1a2d4a; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1d32 0%, #1a2d4a 30%, #243b5e 55%, #1a4a6e 75%, #1a2d4a 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200,164,92,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(100,160,200,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200,164,92,0.06) 0%, transparent 70%);
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.05);
  animation: float 8s ease-in-out infinite;
}
.hero-bubbles span:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 10%; animation-delay: 0s; }
.hero-bubbles span:nth-child(2) { width: 50px; height: 50px; top: 30%; right: 15%; animation-delay: 1.5s; }
.hero-bubbles span:nth-child(3) { width: 120px; height: 120px; bottom: 20%; left: 5%; animation-delay: 3s; }
.hero-bubbles span:nth-child(4) { width: 40px; height: 40px; top: 60%; right: 10%; animation-delay: 2s; }
.hero-bubbles span:nth-child(5) { width: 60px; height: 60px; top: 10%; left: 40%; animation-delay: 4s; }
.hero-bubbles span:nth-child(6) { width: 90px; height: 90px; bottom: 10%; right: 30%; animation-delay: 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.05); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,164,92,0.15);
  border: 1px solid rgba(200,164,92,0.3);
  color: #d4a84b;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
}
.hero-accent {
  background: linear-gradient(135deg, #d4a84b, #e8c476);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Services ─── */
.services { background: #faf8f4; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  border: 1px solid rgba(26,45,74,0.06);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a2d4a, #c8a45c);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,45,74,0.1);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,45,74,0.06), rgba(200,164,92,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #1a2d4a, #243b5e);
}
.service-card:hover .service-icon svg { stroke: #fff; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a2d4a;
}
.service-card p {
  font-size: 0.95rem;
  color: #5a6a7e;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #3a4a5e;
}
.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a45c, #d4a84b);
  flex-shrink: 0;
}

/* ─── About ─── */
.about { background: linear-gradient(180deg, #e8f0f8 0%, #faf8f4 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  width: 75%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,45,74,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #e8f0f8;
  box-shadow: 0 16px 40px rgba(26,45,74,0.12);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 24px;
  right: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(26,45,74,0.12);
}
.about-badge svg { color: #c8a45c; flex-shrink: 0; }
.about-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2d4a;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.75rem;
  color: #5a6a7e;
  line-height: 1.4;
}
.about-content { max-width: 520px; }
.about-text {
  font-size: 1.02rem;
  color: #5a6a7e;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a2d4a;
}
.about-value-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200,164,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Process ─── */
.process { background: #fff; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #c8a45c, #1a2d4a, #c8a45c);
  opacity: 0.2;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a2d4a, #c8a45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c8a45c, #1a2d4a);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a2d4a;
}
.process-step p {
  font-size: 0.9rem;
  color: #5a6a7e;
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── Testimonials ─── */
.testimonials { background: linear-gradient(180deg, #faf8f4 0%, #e8f0f8 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(26,45,74,0.06);
  transition: all 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,45,74,0.08);
}
.testimonial-quote { margin-bottom: 20px; }
.testimonial-text {
  font-size: 1rem;
  color: #3a4a5e;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,45,74,0.08), rgba(200,164,92,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a2d4a;
}
.testimonial-type {
  display: block;
  font-size: 0.8rem;
  color: #8a9aae;
}

/* ─── CTA Banner ─── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1d32 0%, #1a3a5c 50%, #1a2d4a 100%);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200,164,92,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(100,160,200,0.1) 0%, transparent 60%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact { background: #faf8f4; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc {
  font-size: 1.02rem;
  color: #5a6a7e;
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,45,74,0.06), rgba(200,164,92,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a9aae;
  margin-bottom: 4px;
}
.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  color: #1a2d4a;
  font-weight: 500;
  line-height: 1.6;
}
.contact-detail-value a:hover { color: #c8a45c; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(26,45,74,0.08); }

/* ─── Contact Form ─── */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 16px 48px rgba(26,45,74,0.06);
  border: 1px solid rgba(26,45,74,0.06);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a2d4a;
}
.form-note {
  font-size: 0.9rem;
  color: #8a9aae;
  margin-bottom: 32px;
}
.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: 600;
  color: #1a2d4a;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(26,45,74,0.12);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1a2d4a;
  background: #faf8f4;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8a45c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,164,92,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1a2d4a;
  margin: 16px 0 8px;
}
.form-success p { color: #5a6a7e; font-size: 0.95rem; }

/* ─── Footer ─── */
.footer {
  background: #0f1d32;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: #c8a45c; }
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer-contact a:hover { color: #c8a45c; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: #c8a45c; }

/* ─── Animations ─── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 16px 40px rgba(26,45,74,0.1);
    border-radius: 0 0 20px 20px;
  }
  .nav-links.open .nav-link { color: #1a2d4a; font-size: 1rem; }
  .hero-title { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .about-img-main { height: 320px; }
  .about-img-float { height: 200px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
