/* ============================================
   HOONHOUT LAW — Pixel-Perfect from Figma
   ============================================ */

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

:root {
  --blue: #67C8DD;
  --dark-blue: #055A8D;
  --navy: #03324E;
  --black: #000D15;
  --gray-text: #596267;
  --gray-bg: #F5F5F6;
  --white: #FFFFFF;
  --error: #DB2323;
  --hero-gradient-start: #2385C0;
  --hero-gradient-end: #A9E6F5;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid var(--dark-blue);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
}
.btn-primary:hover { background: #044a77; }

.btn-outline {
  background: transparent;
  color: var(--dark-blue);
  border-color: var(--dark-blue);
}
.btn-outline:hover { background: var(--dark-blue); color: var(--white); }

.btn-sm {
  font-size: 16px;
  line-height: 24px;
  padding: 12px 24px;
  border-radius: 8px;
}

.btn-full { width: 100%; }

.btn-white {
  background: var(--white);
  color: var(--dark-blue);
  border-color: var(--white);
}
.btn-white:hover { background: #e8e8e8; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  height: 96px;
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 64px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--dark-blue); }

.header-buttons {
  display: flex;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 900px;
  padding-top: 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Lighter blue left → darker saturated blue right (behind Eric) */
  background: linear-gradient(to right, #a9e6f5 0%, #7ccbe0 35%, #4aadda 65%, #2385c0 100%);
  z-index: 0;
}

/* Diagonal stripe decorations — thin white lines */
.hero-stripes {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-stripes::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
}

/* Left stripes: light blue lines, bottom-left area, extend below hero */
.hero-stripes-left {
  left: 0;
  bottom: -200px;
  width: 300px;
  height: 900px;
}
.hero-stripes-left::before {
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(103, 200, 221, 0.25) 20px,
    rgba(103, 200, 221, 0.25) 22px
  );
}

/* Right stripes: white lines, upper-right behind Eric */
.hero-stripes-right {
  right: 0;
  top: 60px;
  width: 600px;
  height: 700px;
}
.hero-stripes-right::before {
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 24px,
    rgba(255, 255, 255, 0.18) 24px,
    rgba(255, 255, 255, 0.18) 26px
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: calc(100vh - 96px);
  padding-top: 100px;
  padding-bottom: 0;
}

.hero-content {
  max-width: 700px;
  padding-bottom: 200px;
  flex-shrink: 0;
}

.hero-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 96px;
  line-height: 1.05;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 24px;
}

.hero-desc {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
}

.hero-photo {
  position: relative;
  flex-shrink: 0;
  width: 520px;
  align-self: flex-end;
  margin-bottom: 0;
  z-index: 2;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* Diagonal cut at bottom — straight angled line */
.hero-diagonal-cut {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  z-index: 3;
  background: linear-gradient(to top right, white 49.5%, transparent 50.5%);
  pointer-events: none;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-us {
  padding: 0;
  position: relative;
  margin-top: -1px;
}

.why-grid {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.why-left {
  flex: 0 0 572px;
  background: var(--dark-blue);
  border-radius: 16px;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-left h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 16px;
}
.why-left p {
  font-size: 16px;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.6;
}

.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0;
}

.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(5, 90, 141, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--gray-bg);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}

.services-stripes {
  position: absolute;
  left: 0;
  top: 0;
  width: 225px;
  height: 100%;
  overflow: hidden;
}
.services-stripes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(5,90,141,0.06) 28px,
    rgba(5,90,141,0.06) 30px
  );
}

.services-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 16px;
}

.services-header p {
  font-size: 16px;
  color: var(--black);
  max-width: 640px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }

.service-img {
  width: 100%;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 336px;
  object-fit: cover;
}

.service-card-small .service-img img {
  height: 220px;
}

.service-info {
  padding: 24px 32px 32px;
}

.service-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.service-info p {
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
}

/* Row 1: 2 large cards (span 3 each). Row 2: 3 small cards (span 2 each) */
.service-card-large {
  grid-column: span 3;
}
.service-card-small {
  grid-column: span 2;
}

.services-cta {
  text-align: center;
}

/* ============================================
   TEAM
   ============================================ */
.team {
  padding: 104px 0;
}

.team-header {
  text-align: center;
  margin-bottom: 56px;
}

.team-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 12px;
}

.team-header p {
  font-size: 16px;
  color: var(--black);
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.team-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.team-card:nth-child(even) {
  flex-direction: row-reverse;
}

.team-photo {
  flex: 0 0 388px;
  border-radius: 16px;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 534px;
  object-fit: cover;
  object-position: top center;
}

.team-info {
  flex: 1;
  padding: 24px 0;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: var(--gray-text);
  display: block;
  margin-bottom: 16px;
}

.team-info > p {
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-contact .label {
  font-size: 14px;
  color: var(--dark-blue);
  font-weight: 400;
}

.team-contact span:not(.label) {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--gray-bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  position: relative;
}

.testimonials-stripes {
  position: absolute;
  left: -352px;
  top: 0;
  width: 225px;
  height: 100%;
}
.testimonials-stripes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(5,90,141,0.06) 28px,
    rgba(5,90,141,0.06) 30px
  );
}

.testimonials-image {
  flex: 0 0 572px;
  border-radius: 16px;
  overflow: hidden;
}
.testimonials-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.testimonials-content {
  flex: 1;
}

.testimonials-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 32px;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
}

.stars {
  color: #F5A623;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 16px;
}

.client-name {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 104px 0;
}

.faq h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 56px;
  text-align: center;
}

.faq-list {
  max-width: 904px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #E0E0E0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question span {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 104px 0;
  background: var(--dark-blue);
}

.map-grid {
  display: flex;
  gap: 48px;
  align-items: center;
}

.map-embed {
  flex: 0 0 calc(50% - 24px);
  border-radius: 16px;
  overflow: hidden;
}
.map-embed img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.map-info {
  flex: 1;
  color: var(--white);
}

.map-info h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 32px;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.map-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--blue);
}

.map-detail strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.map-detail p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  padding: 104px 0;
  position: relative;
}

.contact-form-wrapper {
  max-width: 596px;
  margin: 0 auto;
  position: relative;
}

.contact-form-stripes {
  position: absolute;
  width: 131px;
  height: 534px;
  top: 60px;
}
.contact-form-stripes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(5,90,141,0.06) 28px,
    rgba(5,90,141,0.06) 30px
  );
}
.contact-form-stripes-left { left: -200px; }
.contact-form-stripes-right { right: -200px; }

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 40px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  width: 100%;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 20px 24px;
  border: 1px solid #D0D5DD;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--dark-blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #98A2B3;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  padding-right: 48px;
}

.select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 104px 24px 0;
}

.footer-stripes {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 127px;
  height: 520px;
}
.footer-stripes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,0.06) 28px,
    rgba(255,255,255,0.06) 30px
  );
}

.footer-top {
  display: flex;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
  flex: 0 0 300px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: flex;
  flex: 1;
  gap: 48px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .header-inner { padding: 0 32px; }
  .hero-inner { padding: 0 32px; padding-top: 80px; }
  .hero-name { font-size: 64px; }
  .hero-subtitle { font-size: 30px; }
  .hero-content { padding-bottom: 140px; }
  .hero-photo { width: 380px; }
  
  .why-left { flex: 0 0 360px; padding: 40px 32px; }
  .why-left h2 { font-size: 32px; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .service-card-large { grid-column: span 1 !important; }
  .service-card-small { grid-column: span 1 !important; }
  
  .team-card { gap: 32px; }
  .team-photo { flex: 0 0 300px; }
  .team-photo img { height: 420px; }
  
  .testimonials-image { flex: 0 0 360px; }
  .testimonials-image img { height: 500px; }
  
  .map-grid { flex-direction: column; }
  .map-embed { flex: none; width: 100%; }
  
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand { flex: none; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  
  .main-nav,
  .header-buttons {
    display: none;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .main-nav.open,
  .header-buttons.open { display: flex; }
  .header-buttons.open { top: calc(96px + 160px); }
  
  .mobile-menu-toggle { display: flex; }
  
  .hero {
    min-height: auto;
  }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    padding-top: 60px;
    min-height: auto;
  }
  .hero-content {
    max-width: 100%;
    padding-bottom: 40px;
    text-align: center;
  }
  .hero-name { font-size: 48px; }
  .hero-subtitle { font-size: 26px; }
  .hero-desc { font-size: 16px; }
  .hero-buttons { flex-direction: column; gap: 12px; justify-content: center; }
  .hero-buttons .btn { width: 100%; }
  .hero-photo {
    width: 100%;
    max-width: 360px;
    align-self: center;
  }
  
  .why-grid { flex-direction: column; }
  .why-left { flex: none; }
  .why-left h2 { font-size: 32px; }
  
  .services { padding: 64px 0; }
  .services-header h2 { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card-large,
  .service-card-small { grid-column: span 1 !important; }
  
  .team { padding: 64px 0; }
  .team-header h2 { font-size: 32px; }
  .team-card,
  .team-card:nth-child(even) {
    flex-direction: column;
  }
  .team-photo { flex: none; width: 100%; }
  .team-photo img { height: 400px; }
  
  .testimonials { padding: 64px 0; }
  .testimonials-inner { flex-direction: column; }
  .testimonials-image { flex: none; width: 100%; }
  .testimonials-image img { height: 400px; }
  .testimonials-content h2 { font-size: 32px; }
  
  .faq { padding: 64px 0; }
  .faq h2 { font-size: 28px; }
  
  .map-section { padding: 64px 0; }
  .map-info h2 { font-size: 32px; }
  
  .contact-form-section { padding: 64px 0; }
  .contact-form-wrapper h2 { font-size: 32px; }
  .form-row { flex-direction: column; }
  
  .cta-banner h2 { font-size: 32px; }
  
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 36px; }
  .hero-subtitle { font-size: 22px; }
  .why-left h2 { font-size: 28px; }
  .services-header h2,
  .team-header h2,
  .testimonials-content h2,
  .faq h2,
  .map-info h2,
  .contact-form-wrapper h2,
  .cta-banner h2 { font-size: 26px; }
}
