/* ===================================================
   Mohanty Consultancy – Main Stylesheet
   =================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary:   #0a2e6e;
  --secondary: #1a56b0;
  --accent:    #f0c040;
  --light:     #f5f8ff;
  --dark:      #0a1929;
  --text:      #2d3748;
  --muted:     #718096;
  --white:     #ffffff;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(10,46,110,0.10);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover { background: #e0b030; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,192,64,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

.btn-blue {
  background: var(--secondary);
  color: var(--white);
}
.btn-blue:hover { background: var(--primary); transform: translateY(-2px); }

.btn-sm { padding: 9px 22px; font-size: 14px; }

/* ---------- Section Headings ---------- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .tag {
  display: inline-block;
  background: rgba(26,86,176,0.1);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}
.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 15.5px;
}
.divider {
  width: 60px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===================================================
   NAVBAR
   =================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,46,110,0.10);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(10,46,110,0.18); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-logo img { height: 56px; width: auto; }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-left: 10px;
}
.nav-brand-text .brand-main {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.nav-brand-text .brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { background: var(--primary); color: var(--white); }

.nav-cta { margin-left: 12px; background: #1a7c3e !important; color: #fff !important; white-space: nowrap; }
.nav-cta:hover { background: #155f30 !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,124,62,0.35); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================
   HERO – index.html
   =================================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, #2475c8 100%);
  display: flex;
  align-items: center;
  padding-top: 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.hero::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  border: 1px solid rgba(240,192,64,0.4);
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-item .label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 36px;
  color: var(--white);
}
.hero-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--accent);
}
.hero-card ul { display: flex; flex-direction: column; gap: 14px; }
.hero-card ul li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.9);
}
.hero-card ul li .icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* ===================================================
   SERVICES STRIP (homepage)
   =================================================== */
.services-strip {
  background: var(--white);
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #e2eaf5;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  color: var(--white);
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); }

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-us {
  background: var(--light);
  padding: 80px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image { position: relative; }
.why-image img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow);
}
.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(10,46,110,0.3);
}
.why-badge .big { font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.why-badge .small { font-size: 12px; opacity: 0.85; margin-top: 4px; }

.why-content h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.why-content p { color: var(--muted); margin-bottom: 28px; }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(10,46,110,0.06);
}
.why-item .wi-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--primary); }
.why-item p { font-size: 13.5px; color: var(--muted); margin: 3px 0 0; }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials { padding: 80px 0; background: var(--white); }
.testi-carousel-wrap {
  overflow: hidden;
  position: relative;
}
/* Fade edges left and right */
.testi-carousel-wrap::before,
.testi-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.testi-carousel-wrap::before { left: 0;  background: linear-gradient(to right,  #fff, transparent); }
.testi-carousel-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.testi-track-outer {
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testiScroll 30s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }

@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Hide old grid */
.testi-grid { display: none; }

.testi-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
  min-width: 320px;
  max-width: 340px;
  flex-shrink: 0;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

/* Remove old arrow styles */
.testi-arrow { display: none; }
.stars { color: var(--accent); font-size: 18px; margin-bottom: 14px; }
.testi-card p { font-size: 15px; color: var(--text); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: var(--white);
  flex-shrink: 0;
}
.testi-author .name { font-weight: 700; font-size: 14.5px; color: var(--primary); }
.testi-author .role { font-size: 12.5px; color: var(--muted); }

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner h2 { font-size: 2.2rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand img { height: 52px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: var(--white);
}
.social-link:hover { background: var(--accent); color: var(--primary); }

.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.fc-item { display: flex; gap: 12px; align-items: flex-start; }
.fc-item .ic { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.fc-item span { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--accent); }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 140px 0 70px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.page-hero h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 14px; }
.page-hero p { font-size: 16.5px; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-intro { padding: 80px 0; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro-text h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 18px; }
.about-intro-text p { color: var(--muted); margin-bottom: 16px; font-size: 15.5px; }
.about-values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.value-badge {
  background: var(--light);
  border: 1.5px solid #d1e0f5;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
}
.about-intro-image img {
  border-radius: 16px;
  height: 420px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.office-gallery { padding: 60px 0; background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid img {
  border-radius: var(--radius);
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.gallery-grid .wide { grid-column: span 2; }

.team-section { padding: 80px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,46,110,0.08);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card img {
  width: 100%; height: 260px;
  object-fit: cover;
  object-position: top;
}
.team-info { padding: 20px; }
.team-info h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary); }
.team-info span { font-size: 13px; color: var(--muted); }

.mission-vision { padding: 80px 0; background: var(--light); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border-top: 5px solid var(--primary);
}
.mv-card.accent { border-top-color: var(--accent); }
.mv-card .mv-icon { font-size: 2.4rem; margin-bottom: 16px; }
.mv-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.mv-card p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ===================================================
   SERVICES PAGE
   =================================================== */
.services-page { padding: 80px 0; }
.service-full-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1.5px solid #e2eaf5;
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-full-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px 0 0 2px;
}
.service-full-card:hover { box-shadow: var(--shadow); transform: translateX(4px); border-color: transparent; }
.sfc-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--white);
  flex-shrink: 0;
}
.sfc-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.sfc-body p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }
.sfc-body ul {
  margin-top: 10px;
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: disc;
  padding-left: 18px;
}
.sfc-body ul li { font-size: 13.5px; color: var(--muted); }
.sfc-action { flex-shrink: 0; }

.pricing-note {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}
.pricing-note h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.pricing-note p { opacity: 0.85; margin-bottom: 22px; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 30px; font-size: 15px; }
.ci-cards { display: flex; flex-direction: column; gap: 18px; }
.ci-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--light);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.ci-card .ci-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white); flex-shrink: 0;
}
.ci-card h4 { font-size: 14px; font-weight: 700; color: var(--primary); }
.ci-card span { font-size: 14px; color: var(--muted); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 42px 38px;
  box-shadow: 0 4px 32px rgba(10,46,110,0.10);
  border: 1.5px solid #e2eaf5;
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 13.5px; font-weight: 700;
  color: var(--primary);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #d1e0f5;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--text);
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(26,86,176,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { width: 100%; padding: 15px; font-size: 16px; border-radius: 10px; }

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: #e6f4ea;
  border-radius: 10px;
  color: #1e7e34;
  font-weight: 700;
  margin-top: 16px;
}

.map-section { padding: 0 0 80px; }
.map-section iframe {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 2.4rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-image { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: auto 1fr; }
  .sfc-action { grid-column: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta {
    display: inline-block !important;
    margin-left: auto;
    margin-right: 10px;
    padding: 8px 14px;
    font-size: 13px;
  }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(10,46,110,0.12);
  }
  .nav-links.open + .nav-cta { display: inline-block !important; }

  .section-header h2 { font-size: 1.7rem; }
  .page-hero h1 { font-size: 2rem; }
  .hero-text h1 { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; text-align: center; }
  .service-full-card::before { top: 0; left: 0; right: 0; bottom: auto; width: 100%; height: 5px; }
  .sfc-icon { margin: 0 auto; }
  .sfc-action { margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero { padding-top: 80px; }
  .hero-text h1 { font-size: 1.7rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-banner h2 { font-size: 1.6rem; }
  .contact-form-wrap { padding: 28px 20px; }
  .nav-brand-text .brand-sub { display: none; }
  .nav-brand-text .brand-main { font-size: 15px; }
}
