/* =====================================================
   ASHOK GAS SERVICE — Main Stylesheet
   Brand: Deep navy + flame orange + clean white
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --navy:      #0D1F3C;
  --navy-mid:  #152D52;
  --orange:    #F05A1A;
  --orange-lt: #FF7A40;
  --gold:      #E8A020;
  --white:     #FFFFFF;
  --off-white: #F7F9FC;
  --gray-lt:   #EEF1F6;
  --gray:      #8A95A3;
  --text:      #2C3542;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(13,31,60,.12);
  --shadow-lg: 0 12px 40px rgba(13,31,60,.18);
  --trans:     all .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .5rem;
}
.section-title { margin-bottom: .75rem; }
.section-sub { color: var(--gray); max-width: 560px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,90,26,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: rgba(255,255,255,.75); transition: var(--trans); }
.topbar a:hover { color: var(--orange); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item i { color: var(--orange); font-size: .85rem; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(13,31,60,.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .logo-mark {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-mark i { color: var(--white); font-size: 1.3rem; }
.nav-logo .logo-text { font-family: 'Montserrat', sans-serif; }
.nav-logo .logo-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.nav-logo .logo-text span  { font-size: .7rem; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--navy);
  transition: var(--trans);
  letter-spacing: .02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: rgba(240,90,26,.08);
}
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Flame decorative element */
.hero-flame {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 340px;
  opacity: .07;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,90,26,.18);
  border: 1px solid rgba(240,90,26,.35);
  color: var(--orange-lt);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow i { color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--orange); }
.hero-desc { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-val span { color: var(--orange); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* Hero right panel */
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 36px;
}
.hero-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 24px; }
.quick-links { display: flex; flex-direction: column; gap: 12px; }
.quick-link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: var(--trans);
  cursor: pointer;
  color: var(--white);
  text-decoration: none;
}
.quick-link-item:hover {
  background: rgba(240,90,26,.2);
  border-color: rgba(240,90,26,.4);
  transform: translateX(4px);
}
.quick-link-icon {
  width: 38px; height: 38px;
  background: rgba(240,90,26,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange-lt);
  font-size: 1rem;
}
.quick-link-text strong { display: block; font-size: .875rem; font-weight: 600; }
.quick-link-text span   { font-size: .75rem; color: rgba(255,255,255,.55); }

/* =====================================================
   MARQUEE / TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.trust-item i { font-size: 1rem; opacity: .85; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge span   { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .9; }

.about-values { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-value-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(240,90,26,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-value strong { display: block; font-size: .9rem; font-family: 'Montserrat', sans-serif; margin-bottom: 2px; }
.about-value p { font-size: .85rem; color: var(--gray); margin: 0; }

/* =====================================================
   SERVICES
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1.5px solid var(--gray-lt);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(240,90,26,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1rem; margin-bottom: 12px; }
.service-card p  { font-size: .85rem; color: var(--gray); line-height: 1.7; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong { display: block; font-family: 'Montserrat', sans-serif; font-size: .9rem; margin-bottom: 3px; }
.why-item p { font-size: .84rem; color: var(--gray); margin: 0; }

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.why-stat-card:nth-child(2) { background: var(--orange); margin-top: 24px; }
.why-stat-card:nth-child(4) { background: var(--navy-mid); margin-top: -24px; }
.why-stat-card .val {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.why-stat-card .lbl { font-size: .75rem; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }
.why-stat-card i { font-size: 1.6rem; margin-bottom: 12px; opacity: .7; display: block; }

/* =====================================================
   BOOKING CTA BAND
   ===================================================== */
.booking-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
}
.booking-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.booking-text h2 { color: var(--white); font-size: 1.8rem; }
.booking-text p  { color: rgba(255,255,255,.7); margin-top: 8px; }
.booking-methods { display: flex; gap: 16px; flex-wrap: wrap; }
.booking-method {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: var(--white);
  transition: var(--trans);
}
.booking-method:hover { background: rgba(240,90,26,.25); border-color: var(--orange); }
.booking-method i  { font-size: 1.4rem; color: var(--orange); }
.booking-method strong { display: block; font-size: .8rem; }
.booking-method span   { font-size: .72rem; opacity: .65; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 3px solid var(--orange);
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--orange);
  line-height: .8;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: .4;
}
.testimonial-card p { font-size: .88rem; color: var(--gray); font-style: italic; line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .875rem; font-family: 'Montserrat', sans-serif; }
.testimonial-author span   { font-size: .75rem; color: var(--gray); }
.testimonial-stars { color: var(--gold); font-size: .8rem; margin-bottom: 8px; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(240,90,26,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card strong { display: block; font-family: 'Montserrat', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: 4px; }
.contact-card p { font-size: .9rem; margin: 0; line-height: 1.6; }
.contact-card a { color: var(--orange); }
.contact-card a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  transition: var(--trans);
  background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(240,90,26,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* =====================================================
   MAP
   ===================================================== */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%; height: 420px;
  display: block;
  border: 0;
  filter: grayscale(15%) contrast(1.05);
}

/* =====================================================
   PAGE HERO BANNER
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
}
.page-hero h1 { color: var(--white); font-size: 2.2rem; }
.page-hero p  { color: rgba(255,255,255,.65); margin-top: 10px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a   { color: var(--orange); }
.breadcrumb i   { font-size: .6rem; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .brand-name i { color: var(--orange); font-size: 1.4rem; }
.footer-brand p { font-size: .85rem; line-height: 1.75; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--trans);
}
.social-link:hover { background: var(--orange); color: var(--white); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(240,90,26,.4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a i { font-size: .6rem; color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: .84rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-item i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-bottom a { color: var(--orange); }

/* =====================================================
   FAQ PAGE
   ===================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  gap: 16px;
}
.faq-q i { color: var(--orange); font-size: .85rem; transition: var(--trans); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: .9rem; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* =====================================================
   TEAM
   ===================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-photo {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,.3);
}
.team-card-body { padding: 20px; }
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card-role { font-size: .78rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow);
    gap: 4px;
    z-index: 100;
  }
  .services-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .booking-inner    { flex-direction: column; text-align: center; }
  .footer-grid      { grid-template-columns: 1fr; }
  .topbar-right     { display: none; }
  .hero-stats       { grid-template-columns: repeat(2, 1fr); }
  .why-visual       { grid-template-columns: repeat(2, 1fr); }
  .about-badge      { position: static; margin-top: 20px; display: inline-block; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 50px; }
  .hero-actions { flex-direction: column; }
  .team-grid    { grid-template-columns: 1fr 1fr; }
}
