/* ============================================================
   SAFE ASSETS RELOCATION — style.css
   Design System: Precision & Trust
   Fonts: Bebas Neue (display) + Jost (body)
   Colors: Navy Blue / Safety Orange / White
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jost:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  --navy:        #0B1E36;
  --navy-dark:   #071220;
  --navy-mid:    #132A4A;
  --navy-light:  #1D3C66;
  --orange:      #FF6B1A;
  --orange-dark: #D95500;
  --orange-glow: rgba(255,107,26,0.15);
  --white:       #FFFFFF;
  --off-white:   #F5F8FC;
  --light-gray:  #E8EDF4;
  --mid-gray:    #9AAABF;
  --text:        #1A2B45;
  --text-light:  #5A6E8A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Jost', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(11,30,54,0.08);
  --shadow-md:  0 8px 32px rgba(11,30,54,0.12);
  --shadow-lg:  0 20px 60px rgba(11,30,54,0.18);
  --shadow-orange: 0 8px 32px rgba(255,107,26,0.35);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(3rem, 6vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.4rem; }

p { line-height: 1.75; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── Utility Classes ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,26,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: 0.87rem; }

/* Arrow icon inside button */
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo-text span:last-child {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li { position: relative; }

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 10px 0;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.87rem;
  border-radius: 0;
  color: rgba(255,255,255,0.8);
}
.dropdown-menu a:hover { background: var(--navy-mid); color: var(--orange); padding-left: 26px; }
.dropdown-icon { font-size: 1rem; }
.dropdown > a::after {
  content: '▾';
  font-size: 0.75rem;
  margin-left: 4px;
  opacity: 0.7;
}

.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--navy-dark);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-links a {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-links a:hover { background: rgba(255,255,255,0.08); color: var(--orange); }

.mobile-sub {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-sub a { font-size: 0.92rem; color: rgba(255,255,255,0.65); border: none; }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/4246120/pexels-photo-4246120.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--navy-dark) 40%, transparent 100%);
}

/* Geometric decoration */
.hero-geo {
  position: absolute;
  right: -60px; top: -80px;
  width: 700px; height: 700px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 50%, transparent 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
  opacity: 0.3;
}
.hero-geo-2 {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 540px; height: 540px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-geo-3 {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,26,0.15);
}
.hero-image-wrap {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,107,26,0.3);
  box-shadow: 0 0 80px rgba(255,107,26,0.2);
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Orange diagonal stripe */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.4);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--orange); }

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--orange);
  padding: 0;
  overflow: hidden;
}
.stats-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,0.3);
}
.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}

/* ── Section Headings ── */
.section-heading { margin-bottom: 56px; }
.section-heading h2 { color: var(--navy); margin-bottom: 16px; }
.section-heading p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}
.section-heading.center { text-align: center; }
.section-heading.center p { margin: 0 auto; }
.section-heading.light h2 { color: var(--white); }
.section-heading.light p { color: rgba(255,255,255,0.7); }

/* ── About Intro Strip ── */
.about-strip {
  background: var(--off-white);
  padding: 80px 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}
.about-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-strip-img .img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-orange);
}
.about-strip-img .img-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.check-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Services Grid ── */
.services-section { background: var(--white); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-img .card-icon {
  position: absolute;
  bottom: -20px; right: 24px;
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-orange);
  z-index: 2;
}

.service-card-body {
  padding: 30px 26px 26px;
}
.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ── Cities Section ── */
.cities-section { background: var(--navy); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.city-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.city-card:hover {
  background: rgba(255,107,26,0.15);
  border-color: rgba(255,107,26,0.4);
  transform: translateY(-4px);
}
.city-icon { font-size: 2rem; margin-bottom: 10px; }
.city-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.city-sub { font-size: 0.78rem; color: var(--mid-gray); margin-top: 4px; }

/* ── Why Choose Us ── */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.why-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* ── Testimonials ── */
.testimonials-section { background: var(--navy-dark); overflow: hidden; }
.testimonial-slider-wrap { position: relative; }
.testimonial-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}
.author-img img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.author-city { font-size: 0.8rem; color: var(--mid-gray); margin-top: 2px; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  background: none;
}
.slider-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-glow); }

.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 5%;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 { color: var(--white); font-size: clamp(2rem, 3.5vw, 3.2rem); }
.cta-text p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-top: 10px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--orange); }
.faq-question.open { color: var(--orange); }
.faq-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--mid-gray);
}
.faq-question.open .faq-arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Form ── */
.contact-section { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 18px; }
.contact-info p { color: var(--text-light); margin-bottom: 36px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.detail-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.detail-text strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.detail-text span { font-size: 0.9rem; color: var(--text-light); }

.enquiry-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #e53e3e; }
.error-msg { display: none; font-size: 0.8rem; color: #e53e3e; margin-top: 5px; }
.form-group.error .error-msg { display: block; }
.form-success {
  display: none;
  background: #e6ffed;
  border: 1px solid #48bb78;
  color: #276749;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ── Gallery ── */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,30,54,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay-icon { font-size: 2rem; color: var(--white); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(to left, rgba(255,107,26,0.08), transparent);
}
.page-hero-geo {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); font-weight: 600; }
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin-top: 14px;
}

/* ── Service Detail Page ── */
.service-detail { padding: 80px 0; }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-bottom: 36px;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-benefits { margin: 28px 0; }
.service-benefits h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--navy);
}
.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
}
.benefit-item::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sidebar form */
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-form {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.sidebar-form h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.sidebar-form p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 24px; }
.sidebar-form .form-group label { color: rgba(255,255,255,0.7); }
.sidebar-form input,
.sidebar-form select {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.sidebar-form input::placeholder { color: rgba(255,255,255,0.35); }
.sidebar-form input:focus,
.sidebar-form select:focus { border-color: var(--orange); }
.sidebar-form select option { background: var(--navy-dark); color: var(--white); }

/* ── Branches ── */
.branches-section { background: var(--white); }
.branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.branch-card-img { height: 180px; overflow: hidden; }
.branch-card-img img { width: 100%; height: 100%; object-fit: cover; }
.branch-card-body { padding: 24px; }
.branch-hq {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.branch-card-body h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.branch-detail {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.branch-detail strong { color: var(--navy); }

/* ── Mission ── */
.mission-section { background: var(--off-white); }
.mission-content { max-width: 900px; margin: 0 auto; }
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card .v-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.9rem; color: var(--text-light); }

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img { height: 44px; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--orange); font-weight: 700; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}
.footer-contact-item span:first-child { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.footer-cities {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0;
}
.cities-seo-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 2;
  text-align: center;
}
.cities-seo-text a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.cities-seo-text a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--orange); }

/* ── Animations / Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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; }

/* ── Floating CTA on Mobile ── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  gap: 12px;
  flex-direction: column;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.float-btn:hover { transform: translateY(-2px) scale(1.03); }
.float-call { background: var(--orange); color: var(--white); }
.float-wa { background: #25D366; color: var(--white); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-image-wrap, .hero-geo, .hero-geo-2, .hero-geo-3 { display: none; }
  .hero-content { max-width: 100%; }
  .hero { min-height: auto; }

  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .why-grid, .value-cards { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .cta-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .testimonial-card { flex: 0 0 calc(50% - 14px); }
  .float-cta { display: flex; }
}

@media (max-width: 600px) {
  :root { --nav-h: 68px; }
  .section-pad { padding: 64px 0; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; }
  .stat-item::after { display: none; }
  .grid-2, .grid-3, .grid-4, .why-grid, .value-cards, .cities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .testimonial-card { flex: 0 0 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .enquiry-form { padding: 28px 20px; }
}

/* ── Top Bar ── */
#top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 42px;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1001;
  transition: transform 0.35s ease;
}
#top-bar.tb-hidden { transform: translateY(-100%); }

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tb-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.tb-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tb-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 5px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  transition: var(--transition);
}
.tb-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tb-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  white-space: nowrap;
}
.tb-phone:hover { color: var(--orange); }
.tb-phone-icon { font-size: 0.8rem; }
.tb-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
}

/* Shift navbar down when top bar visible */
#navbar { top: 42px; }
#navbar.tb-gone { top: 0; }

/* Adjust hero & page-hero padding for top bar */
.hero-content { padding-top: 140px; }
.page-hero { padding-top: 155px; }

/* Responsive top bar */
@media (max-width: 900px) {
  .top-bar-inner { padding: 0 20px; }
  .tb-label { display: none; }
}
@media (max-width: 600px) {
  #top-bar { height: 38px; }
  #navbar { top: 38px; }
  .top-bar-inner { padding: 0 16px; gap: 8px; }
  .tb-phone span:last-child { font-size: 0.75rem; }
  .tb-phone2 { display: none; }
  .tb-divider { display: none; }
  .tb-social a { width: 24px; height: 24px; }
  .hero-content { padding-top: 120px; }
  .page-hero { padding-top: 130px; }
}
