/* ==========================================================================
   FAST SERVICE CENTRE — PREMIUM BUSINESS STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --navy-900: #16232F;
  --navy-800: #1B2C3A;
  --navy-700: #22384A;
  --steel-white: #EEF1EE;
  --paper: #F7F8F5;
  --ink: #182228;
  --ink-soft: #4B5A63;
  --orange: #FF6B33;
  --orange-dark: #D9501C;
  --wa-green: #25D366;
  --wa-green-dark: #1DAE54;
  --line-light: #D9DED6;

  /* Typography */
  --font-heading: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Spacing & Sizing */
  --container-max: 1200px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --radius-card: 16px;
  --shadow-sm: 0 2px 4px rgba(22, 35, 47, 0.06);
  --shadow-md: 0 6px 16px rgba(22, 35, 47, 0.1);
  --shadow-lg: 0 16px 32px rgba(22, 35, 47, 0.2);
  --shadow-card: 0 8px 20px rgba(22, 35, 47, 0.12);
  --shadow-card-hover: 0 14px 28px rgba(22, 35, 47, 0.16);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--navy-900);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--navy-900);
  overflow-x: hidden;
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. GLOBAL UTILITIES & TYPOGRAPHY
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.mono-font {
  font-family: var(--font-mono);
}

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

.w-full {
  width: 100%;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background-color: var(--orange);
  color: #FFFFFF;
  padding: 12px 24px;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 20px;
}

/* Section Headers & Eyebrows */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-white);
  margin-bottom: 12px;
}

.eyebrow.dark {
  color: var(--ink-soft);
}

.eyebrow.light {
  color: var(--steel-white);
}

.eyebrow-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--steel-white);
}

.eyebrow-bullet.orange {
  background-color: var(--orange);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading.dark {
  color: var(--navy-900);
}

.section-heading.light {
  color: #FFFFFF;
}

.section-copy {
  font-size: 1.125rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-copy.dark {
  color: var(--ink-soft);
}

.section-copy.light {
  color: var(--steel-white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  min-height: 48px;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--wa-green);
  color: #FFFFFF;
  border: 1px solid var(--wa-green);
}

.btn-primary:hover {
  background-color: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--steel-white);
  border: 1px solid var(--navy-700);
}

.btn-secondary:hover {
  background-color: var(--navy-800);
  border-color: var(--orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-wa-header {
  background-color: var(--wa-green);
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  min-height: 44px;
}

.btn-wa-header:hover {
  background-color: var(--wa-green-dark);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid var(--navy-700);
}

.btn-outline-white:hover {
  background-color: var(--navy-800);
  border-color: var(--orange);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--steel-white);
  border: 1px solid var(--navy-700);
}

.btn-outline-light:hover {
  background-color: var(--navy-800);
  color: #FFFFFF;
}

.btn-wa {
  background-color: var(--wa-green);
  color: #FFFFFF;
}

.btn-wa:hover {
  background-color: var(--wa-green-dark);
}

.btn-wa-cta {
  background-color: var(--wa-green);
  color: #FFFFFF;
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-wa-cta:hover {
  background-color: var(--wa-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 35, 47, 0.25);
}

.btn-navy-cta {
  background-color: var(--navy-900);
  color: #FFFFFF;
  padding: 16px 32px;
  font-size: 1rem;
  border: 1px solid var(--navy-900);
}

.btn-navy-cta:hover {
  background-color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 35, 47, 0.25);
}

/* --------------------------------------------------------------------------
   4. STICKY HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--navy-900);
  border-bottom: 1px solid var(--navy-700);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-700);
  box-shadow: var(--shadow-sm);
  height: 44px;
}

.brand-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--steel-white);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 10px 6px;
  background: transparent;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--steel-white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-nav-wrapper {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--navy-900);
  border-top: 1px solid var(--navy-700);
  padding: 32px 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav-wrapper.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--steel-white);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-800);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--orange);
  border-color: var(--orange);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background-color: #0b2239;
  min-height: 620px;
  padding: 56px 0;
  position: relative;
  border-bottom: 1px solid var(--navy-700);
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 64px;
  row-gap: 24px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.2vw, 4.25rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.highlight-orange {
  color: var(--orange);
}

.hero-copy {
  font-size: 1.05rem;
  color: var(--steel-white);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

.trust-bar {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid var(--navy-700);
}

.trust-bar li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--steel-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: rgba(255, 107, 51, 0.18);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Stats (Exact 3) */
.hero-stats-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--navy-700);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.stat-value.text-condensed {
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--steel-white);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   6. HERO SERVICE TICKET (SIGNATURE VISUAL)
   -------------------------------------------------------------------------- */
.hero-ticket-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-slider {
  width: 100%;
  height: clamp(500px, 42vw, 550px);
  aspect-ratio: auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background-color: var(--navy-700);
}

.hero-slider-track,
.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slider-track {
  position: relative;
}

.hero-slide {
  display: block;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slider-control {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 35, 47, 0.85);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.hero-slider-control:hover {
  background: var(--orange);
}

.hero-slider-control:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-slider-prev {
  left: 16px;
}

.hero-slider-next {
  right: 16px;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 17px solid transparent;
  box-sizing: content-box;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  background-clip: content-box;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.hero-slider-dot.is-active {
  background: var(--orange);
  transform: scale(1.2);
}

.hero-ticket-wrapper .service-ticket {
  display: none;
}

.service-ticket {
  width: 100%;
  max-width: 400px;
  background-color: var(--steel-white);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(22, 35, 47, 0.1);
  transform: rotate(1.5deg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-ticket:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.ticket-header {
  padding: 24px 24px 16px;
  position: relative;
  text-align: center;
  background-color: #FFFFFF;
}

.ticket-punch-hole {
  width: 20px;
  height: 20px;
  background-color: var(--navy-900);
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.ticket-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.ticket-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.ticket-status-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background-color: var(--navy-900);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.ticket-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.04em;
}

/* Dashed ticket tear line with notches */
.ticket-divider {
  position: relative;
  height: 20px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
}

.notch {
  width: 16px;
  height: 16px;
  background-color: var(--navy-900);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.notch-left {
  left: -8px;
}

.notch-right {
  right: -8px;
}

.dashed-line {
  width: 100%;
  margin: 0 16px;
  border-bottom: 2px dashed var(--line-light);
}

.ticket-body {
  padding: 16px 24px 20px;
  background-color: var(--steel-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ticket-field-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.ticket-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticket-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticket-val {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}

.ticket-appliance-list-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line-light);
}

.ticket-appliance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ticket-appliance-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-900);
}

.check-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--orange);
  border-radius: 1px;
}

.ticket-footer {
  padding: 16px 24px;
  background-color: var(--navy-900);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--wa-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.ticket-status-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--steel-white);
}

.ticket-book-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  transition: color var(--transition-fast);
}

.ticket-book-link:hover {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   7. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  background-color: #FFFFFF;
  padding: 68px 0 80px;
  border-bottom: 0;
}

.services-section .section-header {
  margin-bottom: 36px;
}

.services-section .section-header .eyebrow,
.services-section .section-copy {
  display: none;
}

.services-section .section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.services-section .section-heading::before,
.services-section .section-heading::after {
  content: "";
  width: clamp(44px, 8vw, 96px);
  height: 2px;
  background-color: var(--orange);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Service Card Design */
.service-card {
  background-color: #FFFFFF;
  border: 0;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.card-tag-head {
  display: none;
}

.card-punch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--paper);
  border: 1px solid var(--line-light);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}

.category-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange-dark);
  background-color: rgba(255, 107, 51, 0.12);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.card-body {
  padding: 0;
  flex-grow: 1;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 14px;
  transition: transform 0.45s ease;
}

.service-card:hover .service-image {
  transform: scale(1.04);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 18px 8px;
  letter-spacing: 0.01em;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 18px 16px;
}

.card-footer {
  padding: 0 18px 20px;
  background-color: #FFFFFF;
  border-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-service-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  min-height: 44px;
  padding: 0 14px;
  background-color: var(--orange);
  color: var(--steel-white);
  border: 1px solid var(--orange);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(255, 107, 51, 0.2);
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-service-book:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.25);
}

.btn-service-book:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(230, 81, 0, 0.2);
}

.btn-service-book:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.service-btn-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-service-book:hover .service-btn-icon {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-us-section {
  background-color: var(--navy-900);
  padding: 88px 0;
  border-bottom: 1px solid var(--navy-700);
}

.why-us-section .section-header {
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-card {
  background-color: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-card);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-card-hover);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
  background-color: rgba(255, 107, 51, 0.14);
  color: var(--orange);
  font-size: 1.3rem;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.25;
}

.why-card-text {
  font-size: 0.88rem;
  color: var(--steel-white);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. LOCATION SECTION
   -------------------------------------------------------------------------- */
.location-section {
  background-color: var(--navy-900);
  padding: 88px 0;
  border-bottom: 1px solid var(--navy-700);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.contact-details-card {
  background-color: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-top: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--steel-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 500;
}

.contact-link {
  font-size: 1.05rem;
  color: #FFFFFF;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--orange);
}

.hours-note-box {
  padding-top: 16px;
  border-top: 1px dashed var(--navy-700);
}

.hours-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--steel-white);
}

.location-map-wrapper {
  width: 100%;
}

.map-frame-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--navy-700);
  box-shadow: var(--shadow-lg);
  background-color: var(--navy-800);
}

.google-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   10. FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta-section {
  background-color: var(--orange);
  padding: 72px 0;
  color: #FFFFFF;
}

.final-cta-container {
  display: flex;
  justify-content: center;
}

.cta-content {
  max-width: 720px;
  padding: 12px 0;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-copy {
  font-size: 1.15rem;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-900);
  border-top: 1px solid var(--navy-700);
  color: var(--steel-white);
  padding-top: 72px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-700);
  box-shadow: var(--shadow-sm);
  height: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}

.footer-positioning {
  font-size: 0.95rem;
  color: var(--steel-white);
  line-height: 1.6;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-heading::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 10px;
  background-color: var(--orange);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  font-size: 0.95rem;
  color: var(--steel-white);
}

.footer-nav-link:hover {
  color: var(--orange);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--steel-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-contact-link {
  color: #FFFFFF;
  font-size: 0.95rem;
}

.footer-contact-link:hover {
  color: var(--orange);
}

.footer-address-text {
  color: #FFFFFF;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid var(--navy-800);
  padding: 24px 0;
  background-color: var(--navy-900);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.copyright-text {
  font-size: 0.875rem;
  color: var(--steel-white);
  text-align: center;
  line-height: 1.6;
}

.haizi-footer-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration var(--transition-fast);
}

.haizi-footer-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.sr-attribution {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   12. FLOATING ACTION BUTTONS (WHATSAPP & SCROLL TO TOP)
   -------------------------------------------------------------------------- */
/* WhatsApp Floating (Bottom-Left) */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 54px;
  height: 54px;
  background-color: var(--wa-green);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  animation: whatsappPulse 3.5s ease-in-out infinite;
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-whatsapp:hover {
  animation: none;
  background-color: var(--wa-green-dark);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.floating-wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background-color: var(--orange);
  color: #FFFFFF;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  animation: badgePulse 3.5s ease-in-out infinite;
  transition: transform var(--transition-fast);
}

.floating-whatsapp:hover .floating-wa-badge {
  animation: none;
  transform: scale(1.08);
}

.floating-wa-tooltip {
  position: absolute;
  left: 68px;
  background-color: var(--navy-900);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  border: 1px solid var(--navy-700);
  box-shadow: var(--shadow-sm);
}

.floating-whatsapp:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0%, 70%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  80% {
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  }
  90% {
    transform: scale(1.02);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.3);
  }
}

@keyframes badgePulse {
  0%, 70%, 100% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.18);
  }
  90% {
    transform: scale(1.06);
  }
}

/* Scroll To Top Floating (Bottom-Right) */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  cursor: pointer;
  background-color: var(--navy-800);
  color: var(--steel-white);
  border: 1px solid var(--navy-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 51, 0.35);
}

.scroll-to-top:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.scroll-top-icon {
  display: block;
  width: 22px;
  height: 22px;
  transition: transform var(--transition-fast);
}

.scroll-to-top:hover .scroll-top-icon {
  transform: translateY(-2px);
}

.service-link-icon {
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-fast);
}

.service-link:hover .service-link-icon {
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS (Mobile-First / Scaled)
   -------------------------------------------------------------------------- */

/* Tablet & Smaller Desktop (< 1024px) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand-col {
    grid-column: span 2;
  }

  .service-image {
    height: 200px;
  }
}

/* Tablet & Mobile (< 900px) */
@media (max-width: 900px) {
  .hero-section {
    min-height: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-bar {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: -20px;
    order: 1;
  }

  .hero-ticket-wrapper {
    order: 2;
  }

  .hero-ticket-wrapper {
    justify-content: flex-start;
  }

  .hero-slider {
    height: 430px;
  }

  .service-ticket {
    transform: rotate(0deg);
    max-width: 100%;
  }

  .location-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Mobile & Small Tablet (< 860px) */
@media (max-width: 860px) {
  .desktop-nav,
  .btn-wa-header {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-logo {
    height: 40px;
  }
}

/* Mobile (< 560px) */
@media (max-width: 560px) {
  :root {
    --header-height: 70px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-section {
    padding: 40px 0 60px;
  }

  .hero-container {
    gap: 36px;
  }

  .hero-heading {
    font-size: clamp(2.3rem, 11vw, 3rem);
    line-height: 1.08;
  }

  .hero-heading br {
    display: none;
  }

  .hero-slider {
    height: 300px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .trust-bar {
    gap: 10px 14px;
    margin-top: -12px;
    padding-top: 16px;
  }

  .trust-bar li {
    font-size: 0.78rem;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-section {
    padding: 60px 0;
  }

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

  .why-us-section {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .location-section {
    padding: 60px 0;
  }

  .map-frame-container {
    height: 280px;
  }

  .final-cta-section {
    padding: 56px 0;
  }

  .cta-button-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-button-group .btn {
    width: 100%;
  }

  .location-action-group {
    flex-direction: column;
  }

  .location-action-group .btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .floating-whatsapp {
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
  }

  .floating-wa-badge {
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
    top: -2px;
    right: -2px;
  }

  .floating-wa-icon {
    width: 26px;
    height: 26px;
  }

  .scroll-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .scroll-top-icon {
    width: 20px;
    height: 20px;
  }

  .btn-service-book {
    min-height: 44px;
    height: 44px;
    padding: 0 20px;
  }

  .service-image {
    height: 210px;
  }

  .hero-slider-control {
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }
}

/* --------------------------------------------------------------------------
   14. ACCESSIBILITY & FOCUS STATES
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   15. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .service-ticket {
    transform: none !important;
  }

  .service-ticket:hover,
  .service-card:hover,
  .why-card:hover,
  .btn:hover,
  .btn-service-book:hover,
  .floating-whatsapp:hover,
  .scroll-to-top:hover {
    transform: none !important;
  }

  .ticket-status-dot,
  .floating-whatsapp,
  .floating-wa-badge {
    animation: none !important;
  }
}
