/* ============================================================
   ISLAND PRESSURE 904 — MAIN STYLESHEET
   ============================================================ */

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

:root {
  --navy: #0a2342;
  --navy-light: #0f3060;
  --teal: #1a9eb5;
  --teal-dark: #157f93;
  --teal-light: #e8f7fa;
  --gold: #f5a623;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-light: #eef1f6;
  --gray: #8292a4;
  --gray-dark: #4a5568;
  --text: #1a2332;
  --text-light: #5a6a7e;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(10,35,66,0.10);
  --shadow-lg: 0 8px 48px rgba(10,35,66,0.15);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-divider { opacity: 0.4; }
.topbar-phone {
  color: var(--teal);
  font-weight: 700;
  transition: color var(--transition);
}
.topbar-phone:hover { color: var(--gold); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow);
  border-color: var(--gray-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo em {
  font-style: normal;
  color: var(--teal);
}
.logo-icon { flex-shrink: 0; }
.logo-img { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--teal); background: var(--teal-light); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  margin-left: 8px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { font-size: 17px; padding: 15px 30px; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,158,181,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline.dark { color: var(--teal); border-color: var(--teal); }
.btn-outline.dark:hover { background: var(--teal-light); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-light); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0e3366 40%, #0f4a6e 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a9eb5' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  background: rgba(26,158,181,0.2);
  border: 1px solid rgba(26,158,181,0.4);
  color: #6ee4f6;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-highlight { color: var(--teal); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}
.trust-icon { font-size: 16px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
  color: var(--teal);
  line-height: 1;
}
.service-icon i {
  font-size: 38px;
  color: var(--teal);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.65;
}
.services-cta {
  text-align: center;
}
.services-cta p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 16px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}
.why-text .section-tag { margin-bottom: 14px; }
.why-text h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.why-text > p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.why-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.why-list li strong {
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}
.why-list li span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.why-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-badge .stars { font-size: 20px; margin-bottom: 4px; }
.badge-text { font-size: 15px; font-weight: 700; color: var(--navy); }
.badge-reviews { font-size: 12px; color: var(--gray); font-weight: 500; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--navy); }
.gallery-section .section-header h2,
.gallery-section .section-tag { color: var(--white); }
.gallery-section .section-tag {
  background: rgba(26,158,181,0.2);
  color: #6ee4f6;
  border: 1px solid rgba(26,158,181,0.3);
}
.gallery-section .section-header p { color: rgba(255,255,255,0.7); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.gallery-card:hover { transform: scale(1.02); }
.gallery-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,35,66,0.95) 0%, transparent 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 32px 18px 18px;
  letter-spacing: 0.2px;
}
.gallery-cta { text-align: center; }
.gallery-cta p { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 16px; }
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: transform var(--transition), opacity var(--transition);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.85; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook { background: #1877f2; }
.social-btn.tiktok { background: #010101; }
.social-btn.youtube { background: #ff0000; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--off-white); }
.overall-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 16px 28px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.rating-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
}
.stars-row { font-size: 22px; margin-bottom: 3px; }
.rating-sub { color: var(--text-light); font-size: 13px; font-weight: 500; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reviewer-info strong { font-size: 14px; color: var(--navy); font-weight: 700; }
.reviewer-info span { font-size: 12px; color: var(--gray); }
.review-stars { font-size: 14px; margin-left: auto; }
.review-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
}
.reviews-cta { text-align: center; }
.reviews-cta .btn-outline { color: var(--navy); border-color: var(--navy); }
.reviews-cta .btn-outline:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  margin: 24px 0;
  border: 1px solid var(--gray-light);
}
.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  align-items: center;
}
.detail-label { font-weight: 700; color: var(--navy); }
.detail-item a { color: var(--teal); font-weight: 600; }
.detail-item a:hover { text-decoration: underline; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section { background: var(--teal-light); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.area-pill {
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(26,158,181,0.2);
  box-shadow: 0 2px 8px rgba(10,35,66,0.07);
  transition: all var(--transition);
}
.area-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}
.areas-note {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
}

/* ============================================================
   CONTACT / MAP
   ============================================================ */
.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-icon { font-size: 28px; margin-bottom: 10px; }
.contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-card p { font-size: 14px; color: var(--text-light); margin-top: 8px; }
.big-link {
  font-size: 24px;
  font-weight: 900;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.big-link:hover { color: var(--teal-dark); }
.hours-list { display: flex; flex-direction: column; gap: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-light);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.closed span { color: var(--gray); }
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-social a {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-social a:hover { color: var(--teal-dark); text-decoration: underline; }
.map-col { min-height: 480px; }
.map-wrap {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 480px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 72px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}
.cta-banner-text p { color: rgba(255,255,255,0.85); font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.footer-logo em { font-style: normal; color: var(--teal); }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--teal); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   GOOGLE REVIEWS BUTTON
   ============================================================ */
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-google-reviews:hover {
  background: var(--navy);
  color: var(--white);
}
.google-g { flex-shrink: 0; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  margin-top: 56px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-form-header {
  text-align: center;
  margin-bottom: 36px;
}
.contact-form-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.contact-form-header p {
  color: var(--text-light);
  font-size: 16px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,158,181,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238292a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { display: flex; justify-content: center; padding-top: 4px; }
.form-submit .btn { min-width: 220px; justify-content: center; }

/* ============================================================
   CONTACT SOCIAL ICON LINKS
   ============================================================ */
.contact-social a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-social a:hover { color: var(--teal); }
.contact-social svg { flex-shrink: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-image-wrap { max-width: 480px; margin: 0 auto; }
  .why-img { height: 400px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 480px; }
  .about-img { height: 420px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .topbar-divider { display: none; }
  .topbar-inner { gap: 8px; font-size: 12px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-cta { margin-left: 0 !important; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .header { position: relative; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .hero-content { padding: 60px 24px; }
  .hero { min-height: 70vh; }

  .section { padding: 64px 0; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-inner .btn { width: 100%; justify-content: center; max-width: 320px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 56px 0 0; }

  .map-col { min-height: 320px; }
  .map-wrap { min-height: 320px; }
  .map-wrap iframe { min-height: 320px; }

  .gallery-card img { height: 280px; }
  .about-cta-btn { display: block; text-align: center; width: 100%; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-google-reviews { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stat-num { font-size: 28px; }
  .section-header h2 { font-size: 24px; }
}
