/* ===== CSS VARIABLES ===== */
:root {
  --navy: #2a3e1c;
  --navy-light: #3a5228;
  --gold: #c49a2a;
  --gold-light: #d4af3a;
  --white: #ffffff;
  --light-gray: #f4f1eb;
  --mid-gray: #ddd6c8;
  --text-dark: #1a2410;
  --text-mid: #6b7a5a;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.18);
  --radius: 10px;
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 50px;
}
.gold-line {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 12px auto 20px;
  border-radius: 2px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Poppins', sans-serif;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold); }
.topbar a:hover { text-decoration: underline; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--light-gray);
  color: var(--navy);
}
.nav-links .btn-primary { color: var(--navy); padding: 9px 20px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== CLOSE MENU (mobile only) ===== */
.close-menu { display: none; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #4a6a32 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.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");
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-right-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px 28px;
  min-width: 260px;
  max-width: 300px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.hero-right-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.92;
}
.hero-trust-check {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--navy);
  font-weight: 800;
}
.hero-right-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 20px 0;
}
.hero-right-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.hero-right-phone-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 16px;
  display: block;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; }

/* ===== SERVICES PREVIEW ===== */
.services-preview { background: var(--light-gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--gold);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.7; margin-bottom: 16px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-card-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* ===== MOBILE STICKY CALL BAR ===== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  z-index: 900;
  padding: 0;
  border-top: 2px solid var(--gold);
}
.mobile-call-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.mobile-call-bar a:first-child {
  background: var(--gold);
  color: var(--navy);
  border-right: 1px solid rgba(0,0,0,0.15);
}
.mobile-call-bar a:last-child { color: var(--white); }

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.why-text p { color: var(--text-mid); margin-bottom: 28px; line-height: 1.8; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.check-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon::after { content: '✓'; color: var(--navy); font-weight: 800; font-size: 0.85rem; }
.why-item-text strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 3px; }
.why-item-text span { color: var(--text-mid); font-size: 0.92rem; }
.why-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 50px 40px;
  color: var(--white);
  text-align: center;
}
.why-visual .big-num { font-size: 5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.why-visual p { font-size: 1.1rem; opacity: 0.9; margin-top: 10px; }
.why-visual-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.mini-stat { background: rgba(255,255,255,0.08); padding: 20px; border-radius: 8px; }
.mini-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.mini-stat .lbl { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 14px; }
.cta-banner p { opacity: 0.9; font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.reviewer-info strong { display: block; font-size: 0.95rem; color: var(--navy); }
.reviewer-info span { font-size: 0.82rem; color: var(--text-mid); }

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 12px; }
.page-hero p { opacity: 0.85; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; opacity: 0.7; margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }

.about-intro { background: var(--white); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro-text h2 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.about-intro-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-visual {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
}
.about-visual .big-icon { font-size: 5rem; margin-bottom: 20px; }
.about-visual h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.about-visual p { color: var(--text-mid); font-size: 0.95rem; }

.values { background: var(--light-gray); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { color: var(--text-mid); font-size: 0.88rem; }

.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.team-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo .initials {
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.team-info .role { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin: 4px 0 10px; }
.team-info p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; }

/* ===== SERVICES PAGE ===== */
.services-full { background: var(--white); }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--mid-gray);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-text h2 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.service-detail-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.feature-item { display: flex; align-items: center; gap: 10px; }
.feature-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.feature-item span { color: var(--text-mid); font-size: 0.93rem; }
.service-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}
.service-visual .icon { font-size: 4rem; margin-bottom: 16px; }
.service-visual h3 { font-size: 1.3rem; font-weight: 700; }
.service-visual p { opacity: 0.8; margin-top: 8px; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.gallery-placeholder {
  height: 250px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}
.gallery-placeholder .g-icon { font-size: 3rem; margin-bottom: 12px; }
.gallery-placeholder h4 { font-size: 1rem; font-weight: 600; }
.gallery-placeholder p { font-size: 0.82rem; opacity: 0.8; margin-top: 6px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,33,55,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--gold); font-weight: 600; font-size: 1rem; }
.upload-note {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--radius);
  color: var(--text-mid);
}
.upload-note strong { color: var(--navy); }

/* ===== BOOKING FORM ===== */
.booking-section { background: var(--light-gray); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}
.booking-info h2 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.booking-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; color: var(--navy); font-weight: 600; font-size: 0.9rem; }
.contact-item-text span, .contact-item-text a {
  color: var(--text-mid);
  font-size: 0.93rem;
}
.contact-item-text a:hover { color: var(--gold); }
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.booking-form-wrap h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--mid-gray);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,33,55,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { 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 fill='%230D2137' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-submit { width: 100%; padding: 16px; font-size: 1.05rem; margin-top: 8px; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  background: #e8f5e9;
  border-radius: 8px;
  margin-top: 20px;
  color: #2E7D32;
}
.form-success h4 { font-size: 1.2rem; margin-bottom: 8px; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.cc-icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cc-text h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cc-text p, .cc-text a { color: var(--text-mid); font-size: 0.93rem; line-height: 1.6; }
.cc-text a:hover { color: var(--gold); }
.map-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  padding: 20px;
}
.map-placeholder p { opacity: 0.9; }
.contact-form-wrap {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer .logo-img { filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--gold); }
.footer h4 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item .fi { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-bottom span { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .why-grid, .about-intro-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; justify-content: center; align-items: center; gap: 16px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; }
  .close-menu { display: none; position: absolute; top: 20px; right: 24px; font-size: 1.8rem; cursor: pointer; color: var(--navy); }
  .nav-links.open .close-menu { display: block; }
  .hero { padding: 70px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right-card { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 58px; }
  .stat-num { font-size: 1.6rem; }
  .page-hero h1 { font-size: 2rem; }
  .why-visual-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .booking-form-wrap { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
}

/* ===== SERVICES TAB INTERFACE ===== */
.services-tab-section { background: var(--light-gray); }

.svc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 0;
}

.svc-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.3;
  transition: var(--transition);
  min-width: 110px;
}
.svc-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.svc-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.svc-tab .tab-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.svc-tab .tab-label {
  display: block;
}

.svc-panels {
  margin-top: 0;
}

.svc-panel {
  display: none;
  animation: fadeInPanel 0.35s ease;
}
.svc-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Inside tab panels, remove top margin from first service-detail */
.svc-panel .service-detail:first-child {
  padding-top: 0;
}

@media (max-width: 768px) {
  .svc-tabs { gap: 8px; }
  .svc-tab { min-width: 90px; padding: 12px 10px; font-size: 0.72rem; }
  .svc-tab .tab-icon { font-size: 1.5rem; }
}
