/* ============================================================
   Morris-Jenkins – Bold Navy & Gold Enterprise Theme
   Fonts: Bricolage Grotesque (display) + Plus Jakarta Sans (body)
   Colors: Navy #0B2458 | Gold #F5C600 | Dark #091C42 | Light #F6F8FB
   ============================================================ */

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

:root {
  --navy:    #0B2458;
  --navy-dk: #091C42;
  --navy-md: #163070;
  --gold:    #F5C600;
  --gold-dk: #D9AE00;
  --gold-lt: #FDE878;
  --white:   #FFFFFF;
  --light:   #F6F8FB;
  --mid:     #E8EDF5;
  --text:    #1A1F35;
  --muted:   #5A6380;
  --border:  #D4DAE8;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(11,36,88,0.10);
  --shadow-lg: 0 8px 48px rgba(11,36,88,0.18);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

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

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-dk);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-pad { padding: 5rem 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--navy-dk);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dk);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

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

.btn-ghost {
  background: transparent;
  color: var(--navy-dk);
  border-color: var(--navy-dk);
}
.btn-ghost:hover { background: var(--navy-dk); color: var(--gold); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; border-radius: 12px; }

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(245,198,0,0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.section-label-dark {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-dk);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header-light .section-title,
.section-header-light .section-sub {
  color: var(--white);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dk);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-family: var(--font-display);
  padding: 0.45rem 0;
  letter-spacing: 0.01em;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.top-bar-divider { color: rgba(255,255,255,0.3); }
.top-bar-right { margin-left: auto; color: var(--gold); font-weight: 700; }
.top-bar-phone { color: var(--gold); font-weight: 700; transition: opacity var(--transition); }
.top-bar-phone:hover { opacity: 0.8; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(11,36,88,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.logo { flex-shrink: 0; }
.logo-text-fallback {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 0.25rem; }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { background: var(--light); color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 700; }

.header-cta { flex-shrink: 0; font-size: 0.875rem; padding: 0.6rem 1.25rem; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  background: var(--navy-dk);
  padding: 1rem 0 1.5rem;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; padding: 0 1.5rem; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background var(--transition);
  display: block;
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.1); }
.mobile-nav-cta { margin-top: 0.75rem; text-align: center; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,28,66,0.94) 0%,
    rgba(11,36,88,0.82) 50%,
    rgba(11,36,88,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,198,0,0.18);
  border: 1px solid rgba(245,198,0,0.5);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-guarantee {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.guarantee-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 2.25rem 0;
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.stat-number, .stat-number-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-section { background: var(--light); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.service-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img-wrap img { transform: scale(1.04); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,28,66,0.6) 0%, transparent 60%);
}

.service-card-body {
  padding: 1.75rem;
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,198,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-dk);
  margin-bottom: 0.75rem;
}
.service-card-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.service-card-list li {
  font-size: 0.87rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover { color: var(--gold-dk); gap: 0.7rem; }

/* ============================================================
   SPECIALS
   ============================================================ */
.specials-section {
  background: var(--navy);
  padding: 5rem 0;
}
.specials-section .section-title { color: var(--white); }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.special-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.special-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}
.special-price, .special-price-text {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.special-price-text span { font-size: 1.5rem; }
.special-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.special-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline-dark:hover { background: var(--gold); color: var(--navy-dk); border-color: var(--gold); }

/* ============================================================
   PRIORITY ADVANTAGE
   ============================================================ */
.priority-section { background: var(--light); }
.priority-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.priority-content .section-title { text-align: left; }
.priority-content .section-label { display: block; }
.priority-price-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.priority-intro {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.priority-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.priority-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.priority-benefits li svg {
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}
.priority-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 450px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-attribution {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}
.testimonial-source {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   AWARDS BAR
   ============================================================ */
.awards-bar {
  background: var(--navy-dk);
  padding: 3rem 0;
}
.awards-bar-title {
  text-align: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.award-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,198,0,0.12);
  border: 1px solid rgba(245,198,0,0.3);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  transition: background var(--transition);
}
.award-chip:hover { background: rgba(245,198,0,0.2); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--gold); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy-dk);
  margin-bottom: 0.25rem;
}
.cta-text p { color: var(--navy-md); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }
.cta-banner .btn-primary { background: var(--navy-dk); color: var(--gold); border-color: var(--navy-dk); }
.cta-banner .btn-primary:hover { background: var(--navy); border-color: var(--navy); }
.cta-banner .btn-ghost { border-color: var(--navy-dk); color: var(--navy-dk); }
.cta-banner .btn-ghost:hover { background: var(--navy-dk); color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.85rem;
  margin-bottom: 0.25rem;
}
.footer-established { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy-dk); }
.footer-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--gold); }

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.footer-address svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-address a { transition: color var(--transition); }
.footer-address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-right { font-size: 0.78rem; }

/* ============================================================
   MOBILE CTA FLOAT
   ============================================================ */
.mobile-cta-float {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
}
.mobile-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy-dk);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,198,0,0.45);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.mobile-cta-btn:hover { background: var(--gold-dk); transform: scale(1.04); box-shadow: 0 6px 28px rgba(245,198,0,0.55); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.about-intro {
  background: var(--white);
  padding: 5rem 0;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-intro-text .section-label { display: block; }
.about-intro-text .section-title { text-align: left; margin-bottom: 1.25rem; }
.about-intro-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-intro-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.history-section { background: var(--light); padding: 5rem 0; }
.history-content {
  max-width: 820px;
  margin: 0 auto;
}
.history-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.history-img-wrap {
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.history-img-wrap img { width: 100%; height: 320px; object-fit: cover; }

.awards-section { background: var(--white); padding: 5rem 0; }
.awards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.award-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.award-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.award-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.award-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dk);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro { background: var(--white); padding: 4rem 0 2rem; text-align: center; }
.services-intro p { color: var(--muted); font-size: 1.05rem; max-width: 700px; margin: 0 auto; }

.service-category {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-category:last-of-type { border-bottom: none; }
.service-category:nth-child(even) { background: var(--light); }

.service-cat-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.service-cat-header.reverse { direction: rtl; }
.service-cat-header.reverse > * { direction: ltr; }
.service-cat-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.service-cat-content .section-label { display: block; }
.service-cat-content .section-title { text-align: left; margin-bottom: 1rem; }
.service-cat-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; }

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.service-list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}
.service-list-item:hover { border-color: var(--gold); background: rgba(245,198,0,0.05); }
.service-list-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  padding: 5rem 0;
  align-items: start;
}
.contact-info-block { }
.contact-info-block .section-title { text-align: left; margin-bottom: 0.5rem; }
.contact-info-block .section-label { display: block; }
.contact-info-intro { color: var(--muted); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--light);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-content h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-detail-content p, .contact-detail-content a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dk);
}
.contact-detail-content a:hover { color: var(--gold-dk); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-wrap h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--navy-dk);
}
.contact-form-wrap p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dk);
  margin-bottom: 0.4rem;
}
.form-group label .required { color: #C0392B; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,36,88,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

.service-areas-section { background: var(--navy-dk); padding: 4rem 0; }
.service-areas-section .section-title { color: var(--white); text-align: center; }
.service-areas-section .section-label { display: block; text-align: center; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}
.area-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.area-tag:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dk); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .priority-inner { grid-template-columns: 1fr; }
  .priority-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .awards-list { grid-template-columns: repeat(2, 1fr); }
  .service-cat-header { grid-template-columns: 1fr; }
  .service-cat-header.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-cta-float { display: block; }

  .service-cards { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { min-width: 120px; }

  .hero { min-height: 520px; }
  .hero-content { padding: 3.5rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .top-bar-right { display: none; }
  .top-bar-divider { display: none; }

  .about-intro-grid { grid-template-columns: 1fr; }
  .awards-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .section-pad { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .guarantee-chip { font-size: 0.72rem; }
  .stat-number, .stat-number-text { font-size: 1.8rem; }
}
