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

/* ── Utilities ── */
.text-gold { color: #D4A017; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #D4A017;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 20px;
}
.section-title .text-gold {
  font-style: italic;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gold {
  background: #D4A017;
  color: #0F172A;
  border-color: #D4A017;
}
.btn-gold:hover {
  background: #B8860B;
  border-color: #B8860B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: #D4A017;
  color: #D4A017;
}
.btn-white {
  background: #fff;
  color: #0F172A;
  border-color: #fff;
}
.btn-white:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:not(.btn):hover { color: #D4A017; }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A017;
  transition: width 0.3s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.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 ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0F172A;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo-circle {
  position: absolute;
  border-radius: 50%;
}
.geo-circle--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}
.geo-circle--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
}
.geo-tri {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 120px 120px;
  border-color: transparent transparent rgba(212,160,23,0.08) transparent;
  bottom: 15%;
  right: 5%;
  transform: rotate(-15deg);
}
.geo-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 8%;
  background-image: radial-gradient(circle, rgba(212,160,23,0.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left { padding-right: 20px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #D4A017;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #D4A017;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title .text-gold {
  color: #D4A017;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-subtitle em { color: #D4A017; font-style: normal; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #D4A017;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero image stack */
.hero-right { position: relative; }
.hero-img-stack {
  position: relative;
  height: 600px;
}
.hero-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hero-img--main {
  width: 380px;
  height: 480px;
  top: 0;
  right: 0;
}
.hero-img--main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--accent {
  width: 260px;
  height: 180px;
  bottom: 120px;
  left: -20px;
  border: 4px solid #0F172A;
}
.hero-img--accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--float {
  width: 200px;
  height: 140px;
  bottom: 20px;
  right: 40px;
  border: 4px solid #D4A017;
}
.hero-img--float img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: 200px;
  left: -40px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #0F172A;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  z-index: 3;
}

/* Scroll indicator */
.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.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212,160,23,0.6), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  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 {
  position: relative;
  padding: 120px 0;
  background: #fff;
}
.services .container { position: relative; z-index: 2; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #D4A017;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(15,23,42,0.12);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,160,23,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A017;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #D4A017;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 8px; }
.services-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: linear-gradient(135deg, rgba(212,160,23,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── About ── */
.about {
  position: relative;
  padding: 120px 0;
  background: #F8FAFC;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid #F8FAFC;
  box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #0F172A;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15,23,42,0.25);
}
.about-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #D4A017;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-content { padding-left: 20px; }
.about-text {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #334155;
}
.feature-check {
  width: 28px;
  height: 28px;
  background: rgba(212,160,23,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-geo {
  position: absolute;
  top: 80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(212,160,23,0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Why ── */
.why {
  position: relative;
  padding: 120px 0;
  background: #0F172A;
  overflow: hidden;
}
.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-title { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-4px);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212,160,23,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.why-geo {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(212,160,23,0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Testimonials ── */
.testimonials {
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}
.testimonials .container { position: relative; z-index: 2; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(15,23,42,0.1);
  transform: translateY(-4px);
}
.testimonial-stars {
  font-size: 1.1rem;
  color: #D4A017;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: #0F172A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #D4A017;
}
.author-name { font-weight: 600; color: #0F172A; font-size: 0.95rem; }
.author-detail { font-size: 0.8rem; color: #94a3b8; }
.testimonials-geo {
  position: absolute;
  top: 40px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(212,160,23,0.05);
  border-radius: 50%;
  pointer-events: none;
}

/* ── CTA ── */
.cta {
  position: relative;
  padding: 120px 0;
  background: #D4A017;
  overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-geo { position: absolute; }
.cta-geo--circle {
  width: 400px;
  height: 400px;
  border: 2px solid rgba(15,23,42,0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}
.cta-geo--rect {
  width: 200px;
  height: 200px;
  background: rgba(15,23,42,0.06);
  bottom: -40px;
  left: 5%;
  transform: rotate(25deg);
}
.cta-geo--dot {
  width: 60px;
  height: 60px;
  background: rgba(15,23,42,0.08);
  border-radius: 50%;
  bottom: 20%;
  right: 15%;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.6);
  margin-bottom: 16px;
}
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #0F172A;
  margin-bottom: 20px;
}
.cta-title .text-gold {
  color: #0F172A;
  font-style: italic;
  opacity: 0.7;
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(15,23,42,0.7);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.cta-actions .btn-gold {
  background: #0F172A;
  border-color: #0F172A;
  color: #D4A017;
}
.cta-actions .btn-gold:hover {
  background: #1e293b;
  border-color: #1e293b;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: #F8FAFC;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,160,23,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 4px;
}
.contact-item > div > div:last-child,
.contact-item a {
  font-size: 0.95rem;
  color: #334155;
}
.contact-item a:hover { color: #D4A017; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.08);
  border: 1px solid #e2e8f0;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1e293b;
  background: #F8FAFC;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #D4A017;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}
.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.5rem;
  color: #0F172A;
  margin: 12px 0 8px;
}
.form-success p { color: #64748b; font-size: 0.95rem; }

/* ── Map ── */
.map-section { height: 320px; }
.map-section iframe { filter: saturate(0.7) contrast(1.1); }

/* ── Footer ── */
.footer {
  background: #0A0F1E;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4A017;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a,
.footer-col li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-col a:hover { color: #D4A017; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-left { padding-right: 0; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0F172A;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .about-img-secondary { right: -10px; bottom: -20px; }
}
