/* ============================================================
   DU GLOBAL LOGISTICS — Premium Corporate Stylesheet v2.0
   ============================================================
   Brand Colors:
     Deep Navy Blue:   #0d1b3e
     Royal Navy Accent: #10295c
     Luxury Gold:       #c8971a
     Soft Gold:         #d4a62f
     White:             #ffffff
     Light Grey BG:     #f7f7f7
   ============================================================ */

/* ----------------------------------------------------------
   0. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --navy:       #0d1b3e;
  --navy-light: #10295c;
  --navy-mid:   #162d5a;
  --gold:       #c8971a;
  --gold-light: #d4a62f;
  --gold-pale:  #f0d060;
  --white:      #ffffff;
  --grey-light: #f7f7f7;
  --grey:       #777;
  --grey-dark:  #555;
  --text:       #333;
  --shadow-sm:  0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-md:  0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 0 30px rgba(200, 151, 26, 0.35);
  --radius:    12px;
  --transition: cubic-bezier(0.25, 0.8, 0.25, 1);
  --gold-gradient: linear-gradient(135deg, #c8971a 0%, #d4a62f 50%, #c8971a 100%);
  --navy-gradient: linear-gradient(135deg, #0d1b3e 0%, #10295c 50%, #0d1b3e 100%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Selection styling */
::selection {
  background-color: var(--navy);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--navy);
  color: var(--white);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #f7f7f7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ----------------------------------------------------------
   2. TYPOGRAPHY STYLES
   ---------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.25;
  color: #0d1b3e;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 0.01em;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: 0.01em;
}

h4 {
  font-size: 1.35rem;
  letter-spacing: 0.005em;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.8;
}

a {
  color: #c8971a;
}

a:hover {
  color: #d4a62f;
}

/* Text utility classes */
.text-gold {
  color: #c8971a !important;
}

.text-navy {
  color: #0d1b3e !important;
}

.text-white {
  color: #ffffff !important;
}

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

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

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

/* ----------------------------------------------------------
   15. UTILITY CLASSES
   ---------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.gold-gradient {
  background: linear-gradient(135deg, #c8971a 0%, #d4a62f 50%, #c8971a 100%);
}

.navy-gradient {
  background: linear-gradient(135deg, #0d1b3e 0%, #10295c 50%, #0d1b3e 100%);
}

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

/* ----------------------------------------------------------
   3. NAVIGATION / NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
}

.navbar.scrolled {
  background-color: rgba(13, 27, 62, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 151, 26, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  transition: all 0.4s ease var(--transition);
  flex-shrink: 0;
}

.nav-logo img {
  height: 56px;
  max-height: 56px;
  width: auto;
  min-width: 120px;
  transition: all 0.5s ease var(--transition);
  filter: brightness(1.45) contrast(1.15) drop-shadow(0 0 6px rgba(200, 151, 26, 0.6)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
  object-fit: contain;
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 12px rgba(200, 151, 26, 0.5));
  transform: scale(1.03);
}

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

.nav-links a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c8971a;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover {
  color: #c8971a;
  text-shadow: 0 0 20px rgba(200, 151, 26, 0.3);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #c8971a;
}

.nav-links a.active::after {
  width: 100%;
}

/* CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c8971a;
  color: #0d1b3e !important;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: #d4a62f;
  box-shadow: 0 0 25px rgba(200, 151, 26, 0.5);
  transform: translateY(-2px);
  color: #0d1b3e !important;
}

/* Hamburger Menu Toggle — hidden, replaced by horizontal mobile nav */
.hamburger {
  display: none;
}

/* Mobile Menu Overlay — removed, replaced by horizontal nav */

/* Mobile Horizontal Navigation Bar — hidden on desktop */
.mobile-horizontal-nav {
  display: none;
}

/* ----------------------------------------------------------
   4. HERO SECTION
   ---------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    /* Subtle dot grid pattern */
    radial-gradient(circle at 1px 1px, rgba(200,151,26,0.06) 1px, transparent 0) 0 0 / 60px 60px,
    /* Subtle diagonal lines */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(200,151,26,0.03) 80px,
      rgba(200,151,26,0.03) 81px
    ),
    /* Dark navy base */
    linear-gradient(
      135deg,
      #0d1b3e 0%,
      #10295c 40%,
      #0d1b3e 70%,
      #162d5a 100%
    );
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 62, 0.7) 0%,
    rgba(16, 41, 92, 0.6) 50%,
    rgba(13, 27, 62, 0.7) 100%
  );
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
}

.hero-watermark img {
  width: 600px;
  max-width: 80%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 4rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--gold);
  display: inline-block;
  text-shadow: 0 0 40px rgba(200, 151, 26, 0.25);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
  position: relative;
  padding-bottom: 16px;
}

/* Thin gold accent line below hero subtitle */
.hero-content p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.4;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #0d1b3e;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 40px;
  border-radius: 6px;
  border: 2px solid #c8971a;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 151, 26, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background-color: #10295c;
  box-shadow: 0 0 30px rgba(200, 151, 26, 0.4);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 40px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-secondary:hover {
  background-color: #c8971a;
  border-color: #c8971a;
  color: #0d1b3e;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(200, 151, 26, 0.35);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 151, 26, 0.2);
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

/* Gold separators between stat items */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 151, 26, 0.25) 50%, transparent 100%);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(200, 151, 26, 0.2);
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ----------------------------------------------------------
   5. SERVICES PREVIEW (Home Page Cards)
   ---------------------------------------------------------- */
.services-preview {
  padding: 100px 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #0d1b3e;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto 20px;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c8971a, #d4a62f);
  margin: 0 auto;
  border-radius: 2px;
}

.gold-divider-left {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c8971a, #d4a62f);
  margin: 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  padding: 40px 30px 36px;
  text-align: center;
  transition: all 0.45s ease var(--transition);
  position: relative;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}

/* Subtle gold gradient overlay on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(200, 151, 26, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s ease var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px rgba(200, 151, 26, 0.4));
}

.service-card-icon svg,
.service-card-icon img {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c8971a;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.service-card .learn-more::after {
  content: "\2192";
  transition: transform 0.3s ease;
}

.service-card:hover .learn-more::after {
  transform: translateX(4px);
}

.service-card .learn-more:hover {
  color: #d4a62f;
}

/* ----------------------------------------------------------
   6. ABOUT SECTION
   ---------------------------------------------------------- */
.about {
  padding: 100px 0;
  background-color: #f7f7f7;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid #c8971a;
  border-right: 4px solid #c8971a;
  border-radius: 0 12px 0 0;
}

.about-content {
  padding: 10px 0;
}

.about-content h2 {
  font-size: 2.3rem;
  color: #0d1b3e;
  margin-bottom: 16px;
}

.about-content .gold-divider-left {
  margin-bottom: 28px;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  margin-top: 24px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.about-features li .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: #c8971a;
}

.about-features li .check-icon svg {
  width: 22px;
  height: 22px;
}

/* ----------------------------------------------------------
   7. SERVICES DETAIL SECTION
   ---------------------------------------------------------- */
.services {
  padding: 100px 0;
  background-color: #0d1b3e;
}

.services .section-header h2 {
  color: #ffffff;
}

.services .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.services .gold-divider {
  margin-bottom: 16px;
}

.service-category-title {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c8971a;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 40px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-detail-card {
  background-color: #10295c;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(200, 151, 26, 0.12);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--gold), var(--gold-light)) 1;
  border-image-slice: 1;
  border-top: 3px;
  transition: all 0.4s ease var(--transition);
  position: relative;
  overflow: hidden;
}

/* Gold radial glow at top on hover */
.service-detail-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(200, 151, 26, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-detail-card:hover::before {
  opacity: 1;
}

.service-detail-card:hover {
  border-color: rgba(200, 151, 26, 0.45);
  box-shadow: 0 4px 35px rgba(200, 151, 26, 0.15);
  transform: translateY(-6px);
}

.service-detail-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
}

/* Subtle gold circle bg behind icon */
.service-detail-card .icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(200, 151, 26, 0.12);
  transition: all 0.4s ease;
}

.service-detail-card:hover .icon::before {
  border-color: rgba(200, 151, 26, 0.3);
  background: rgba(200, 151, 26, 0.06);
}

.service-detail-card .icon svg,
.service-detail-card .icon img {
  width: 40px;
  height: 40px;
}

.service-detail-card h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-detail-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   8. WHY CHOOSE US SECTION
   ---------------------------------------------------------- */
.why-choose {
  padding: 100px 0;
  background-color: #0d1b3e;
  position: relative;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(200, 151, 26, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.why-choose .section-header h2 {
  color: #ffffff;
}

.why-choose .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 151, 26, 0.12);
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-card:hover {
  border-color: rgba(200, 151, 26, 0.4);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.why-card .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #c8971a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #c8971a;
  transition: all 0.35s ease;
}

.why-card:hover .icon-circle {
  background-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 20px rgba(200, 151, 26, 0.35);
}

.why-card .icon-circle svg,
.why-card .icon-circle img {
  width: 32px;
  height: 32px;
}

.why-card h4 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1.15rem;
  position: relative;
  display: inline-block;
}

.why-card h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #c8971a;
  transition: width 0.35s ease;
}

.why-card:hover h4::after {
  width: 40px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 12px;
}

/* ----------------------------------------------------------
   9. HOW IT WORKS TIMELINE
   ---------------------------------------------------------- */
.how-it-works {
  padding: 100px 0;
  background-color: #ffffff;
}

.how-it-works .section-header h2 {
  color: #0d1b3e;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #c8971a 0%,
    rgba(200, 151, 26, 0.3) 100%
  );
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  width: 100%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Alternate left/right */
.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

.timeline-step {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(200, 151, 26, 0.4);
  transition: all 0.4s ease;
}

/* Gold pulse ring on step circles */
.timeline-step::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(200, 151, 26, 0.3);
  animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.15); opacity: 0.6; }
}

.timeline-step:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 28px rgba(200, 151, 26, 0.5);
}

.timeline-content {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 30px;
  border-left: 4px solid var(--gold);
  transition: all 0.4s ease var(--transition);
  width: 100%;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 4px solid var(--gold);
}

.timeline-content:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.timeline-content h4 {
  font-size: 1.2rem;
  color: #0d1b3e;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #777;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   10. CONTACT SECTION
   ---------------------------------------------------------- */
.contact {
  padding: 100px 0;
  background-color: #f7f7f7;
}

.contact .section-header h2 {
  color: #0d1b3e;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* Contact Form */
.contact-form {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 40px;
  border-top: 4px solid var(--gold);
  position: relative;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  position: relative;
}

/* Gold accent line above form title */
.contact-form h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  color: #0d1b3e;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--text);
  background-color: #fafafa;
  transition: all 0.35s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 151, 26, 0.1);
 background-color: var(--white);
}

/* Form error message styling (created by JS) */
.form-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 6px;
  display: block;
  line-height: 1.4;
}

/* Input with error state */
.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
 background: var(--gold-gradient);
  background-size: 200% 100%;
 background-position: 0% 50%;
  color: var(--white);
 font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease var(--transition);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover {
  background-position: 100% 50%;
 box-shadow: 0 0 35px rgba(200, 151, 26, 0.45);
  transform: translateY(-3px);
  letter-spacing: 3px;
}

.btn-submit:hover::before {
  left: 100%;
}

.form-success {
  color: #28a745;
  font-weight: 500;
 text-align: center;
 padding: 16px;
  border-radius: 8px;
 border: 1px solid rgba(40, 167, 69, 0.2);
 background-color: rgba(40, 167, 69, 0.06);
 display: none;
 animation: fadeInUp 0.5s ease forwards;
}

.form-success.visible {
  display: block;
}

/* Button loading state */
.btn-submit.loading {
 pointer-events: none;
  opacity: 0.8;
}

.btn-submit.loading::after {
 content: "";
  display: inline-block;
 width: 18px;
 height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
 margin-left: 10px;
 animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background-color: #0d1b3e;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 151, 26, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.contact-info-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8971a;
}

.contact-info-card .icon svg,
.contact-info-card .icon img {
  width: 28px;
  height: 28px;
}

.contact-info-card .info h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.contact-info-card .info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-info-card .info a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.contact-info-card .info a:hover {
  color: #c8971a;
}

/* Map Placeholder */
.map-placeholder {
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 30% 40%, rgba(200,151,26,0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(200,151,26,0.05) 0%, transparent 50%);
  border-radius: 12px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 24px;
  text-transform: uppercase;
  border: 1px solid rgba(200, 151, 26, 0.15);
}

/* ----------------------------------------------------------
   11. FOOTER
   ---------------------------------------------------------- */
.footer {
  background-color: var(--navy);
  padding: 0 0 0;
  color: var(--white);
  position: relative;
}

/* Premium gold gradient line at top of footer */
.footer-top {
  padding: 70px 20px 50px;
  position: relative;
}

.footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand img {
  max-height: 55px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #c8971a;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: #c8971a;
  transform: translateX(4px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #c8971a;
}

/* Social Icons */
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 151, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.35s ease;
}

.social-icon:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(200, 151, 26, 0.4);
}

.social-icon svg,
.social-icon img {
  width: 18px;
  height: 18px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(200, 151, 26, 0.2);
  padding: 24px 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #c8971a;
}

/* ----------------------------------------------------------
   12. ANIMATIONS
   ---------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays for grid items */
.fade-up.visible {
  transition-delay: var(--delay, 0s);
}

/* Count-up animation target */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 151, 26, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(200, 151, 26, 0.15);
  }
}

/* Subtle gold shimmer for headings */
.shimmer-text {
  background: linear-gradient(
    90deg,
    #c8971a 0%,
    #d4a62f 25%,
    #f0d060 50%,
    #d4a62f 75%,
    #c8971a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ----------------------------------------------------------
   13a. PRELOADER
   ---------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d1b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-content img {
  max-width: 180px;
  height: auto;
  margin-bottom: 30px;
  animation: pulse-gold 2s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(200, 151, 26, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.preloader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #c8971a, #d4a62f);
  border-radius: 3px;
  animation: preloaderSlide 1.5s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ----------------------------------------------------------
   13b. BACK TO TOP BUTTON
   ---------------------------------------------------------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0d1b3e;
  border: 2px solid #c8971a;
  color: #c8971a;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  background-color: #c8971a;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 151, 26, 0.4);
}

/* ----------------------------------------------------------
   13c. CUSTOM SCROLLBAR
   ---------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d1b3e;
}

::-webkit-scrollbar-thumb {
  background: #c8971a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4a62f;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #c8971a #0d1b3e;
}

/* ----------------------------------------------------------
   13.5 MOBILE HORIZONTAL NAVIGATION BAR
   ---------------------------------------------------------- */
/* Hidden elements on desktop */
.mobile-horizontal-nav {
  display: none;
}
.mobile-search-btn {
  display: none;
}
.mobile-search-bar {
  display: none;
}

@media (max-width: 768px) {
  /* ===== MOBILE NAV LOGO (LEFT side — same as desktop logo) ===== */
  .nav-logo {
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
    padding: 2px 0;
  }

  .nav-logo img {
    height: 44px;
    max-height: 44px;
    min-width: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.45) contrast(1.15) drop-shadow(0 0 6px rgba(200, 151, 26, 0.6)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
  }

  /* ===== MOBILE SEARCH BUTTON (RIGHT side) ===== */
  .mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 151, 26, 0.15);
    border: 1px solid rgba(200, 151, 26, 0.3);
    color: #c8971a;
    flex-shrink: 0;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-search-btn:active {
    background: rgba(200, 151, 26, 0.3);
    transform: scale(0.95);
  }

  /* ===== MOBILE SEARCH BAR (shown on tap) ===== */
  .mobile-search-bar {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: rgba(13, 27, 62, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 151, 26, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 16px;
    animation: slideDown 0.25s ease forwards;
  }

  .mobile-search-bar.active {
    display: block;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(200, 151, 26, 0.25);
    border-radius: 8px;
    padding: 8px 12px;
    transition: border-color 0.3s ease;
  }

  .mobile-search-inner:focus-within {
    border-color: rgba(200, 151, 26, 0.5);
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-search-inner svg {
    color: #c8971a;
    flex-shrink: 0;
  }

  .mobile-search-inner input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    padding: 0;
  }

  .mobile-search-inner input::placeholder {
    color: rgba(255, 255, 255, 0.45);
  }

  .mobile-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 2px;
    flex-shrink: 0;
    transition: color 0.2s ease;
  }

  .mobile-search-close:active {
    color: #ffffff;
  }

  .mobile-search-results {
    margin-top: 8px;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 151, 26, 0.3) transparent;
  }

  .mobile-search-results::-webkit-scrollbar {
    width: 4px;
  }

  .mobile-search-results::-webkit-scrollbar-track {
    background: transparent;
  }

  .mobile-search-results::-webkit-scrollbar-thumb {
    background: rgba(200, 151, 26, 0.3);
    border-radius: 2px;
  }

  .mobile-search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-search-result-item:active {
    background: rgba(200, 151, 26, 0.1);
  }

  .mobile-search-result-item .result-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(200, 151, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobile-search-result-item .result-icon svg {
    width: 16px;
    height: 16px;
    }

  .mobile-search-result-item .result-text {
    flex: 1;
  }

  .mobile-search-result-item .result-text small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 2px;
  }

  .mobile-search-no-results {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    padding: 20px 0;
  }

  /* ===== HORIZONTAL MOBILE NAV BAR (below navbar/search) ===== */
  .mobile-horizontal-nav {
    display: block;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(13, 27, 62, 0.97);
    border-bottom: 1px solid rgba(200, 151, 26, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  /* When search bar is open, push nav bar down */
  .mobile-search-bar.active ~ .mobile-horizontal-nav {
    top: 110px;
  }

  .mobile-nav-scroll {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 8px;
    gap: 0;
  }

  .mobile-nav-scroll::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px 10px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    margin-right: 2px;
    }

  .mobile-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #c8971a;
    transition: width 0.3s ease;
  }

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

  .mobile-nav-link.active {
    color: #c8971a;
    font-weight: 700;
  }

  .mobile-nav-link.active::after {
    width: 70%;
  }

  /* Get Quote CTA in mobile nav */
  .mobile-nav-cta {
    background-color: #c8971a;
    color: #0d1b3e !important;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 4px;
    margin: 6px 4px 6px 2px;
    font-size: 0.68rem;
  }

  .mobile-nav-cta::after {
    display: none;
  }

  .mobile-nav-cta.active {
    background-color: #d4a62f;
    color: #0d1b3e !important;
  }

  /* Hide desktop nav-links, no hamburger needed */
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: none !important;
  }

  /* Hide old mobile menu overlay */
  .mobile-menu {
    display: none !important;
  }

  /* Navbar on mobile: logo on LEFT, search on RIGHT */
  .navbar {
    background-color: rgba(13, 27, 62, 0.97) !important;
    padding: 8px 16px;
    border-bottom: none;
  }

  .nav-container {
    display: flex;
    align-items: center;
    padding: 0;
  }

  /* Adjust hero padding for navbar + horizontal nav height */
  .hero {
    padding-top: 100px;
  }
}

/* ----------------------------------------------------------
   14. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */

/* ---------- Tablet / Small Desktop (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 3.2rem;
    letter-spacing: 3px;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    gap: 40px;
  }

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

  .section-padding {
    padding: 80px 0;
  }

  .timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
  }

  .timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
  }

  .contact-container {
    gap: 36px;
  }
}

/* ---------- Tablet Portrait (max-width: 768px) ---------- */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  /* ===== NAVBAR — Mobile adjustments ===== */
  .nav-links {
    display: none !important;
  }

  /* Logo visible on LEFT side on mobile */
  .nav-logo {
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
    padding: 2px 0;
  }

  .nav-logo img {
    height: 44px;
    max-height: 44px;
    min-width: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.45) contrast(1.15) drop-shadow(0 0 6px rgba(200, 151, 26, 0.6)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
  }

  .navbar {
    background-color: rgba(13, 27, 62, 0.97) !important;
    padding: 8px 16px;
    border-bottom: none;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 100px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    letter-spacing: 2px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-content p::after {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.85rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 28px;
    max-width: 100%;
  }

  .stat-item {
    padding: 0 12px;
  }

  /* Remove separators on 2-col stats */
  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }

  /* Services Preview */
  .services-preview {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 30px 22px;
  }

  /* Services Detail */
  .services {
    padding: 60px 0;
  }

  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-detail-card {
    padding: 28px 18px;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

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

  .about-image {
    max-height: 360px;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }

  /* Why Choose Us */
  .why-choose {
    padding: 60px 0;
  }

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

  .why-card {
    padding: 30px 22px;
  }

  /* Timeline */
  .how-it-works {
    padding: 60px 0;
  }

  .timeline::before {
    left: 24px;
    transform: none;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 64px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-step {
    left: 24px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .timeline-step:hover {
    transform: translateX(-50%) scale(1.05);
  }

  .timeline-content {
    border-left: 4px solid #c8971a;
    border-right: none;
    padding: 24px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    border-left: 4px solid #c8971a;
    border-right: none;
  }

  /* Contact */
  .contact {
    padding: 60px 0;
  }

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

  .contact-form {
    padding: 28px;
  }

  .contact-form h3 {
    font-size: 1.3rem;
  }

  /* Footer */
  .footer-top {
    padding: 40px 20px 30px;
  }

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

  .footer-links h4::after,
  .footer-services h4::after,
  .footer-contact h4::after {
    left: 0;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  /* Back to top */
  #backToTop {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }

  /* contact-info-card: stack icon above text on very small tablets */
  @media (max-width: 600px) {
    .contact-info-card {
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
    }

    .contact-info-card .icon {
      margin: 0 auto;
    }
  }
}

/* ---------- Mobile (max-width: 480px) ---------- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  /* Navbar */
  .nav-logo {
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-logo img {
    height: 40px;
    max-height: 40px;
    min-width: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.45) contrast(1.15) drop-shadow(0 0 6px rgba(200, 151, 26, 0.6)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
  }

  .nav-container {
    padding: 0 14px;
  }

  /* Hero */
  .hero {
    padding-top: 70px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
    letter-spacing: 1.5px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .hero-buttons {
    margin-bottom: 32px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 24px;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
  }

  .hero-stats {
    gap: 16px;
    padding-top: 24px;
  }

  .stat-number {
    font-size: 1.65rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 1.2px;
  }

  /* Services Preview */
  .services-preview {
    padding: 50px 0;
  }

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

  .service-card {
    padding: 28px 20px;
  }

  .service-card-icon {
    width: 60px;
    height: 60px;
  }

  .service-card-icon svg,
  .service-card-icon img {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  /* Services Detail */
  .services {
    padding: 50px 0;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-detail-card {
    padding: 24px 18px;
  }

  .service-detail-card .icon {
    width: 48px;
    height: 48px;
  }

  /* About */
  .about {
    padding: 50px 0;
  }

  .about-container {
    padding: 0 14px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.92rem;
  }

  /* Why */
  .why-choose {
    padding: 50px 0;
  }

  .why-card {
    padding: 26px 18px;
  }

  .why-card .icon-circle {
    width: 60px;
    height: 60px;
  }

  .why-card h4 {
    font-size: 1.05rem;
  }

  /* Timeline */
  .how-it-works {
    padding: 50px 0;
  }

  .timeline {
    padding: 10px 0;
  }

  .timeline-item {
    margin-bottom: 36px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h4 {
    font-size: 1rem;
  }

  .timeline-content p {
    font-size: 0.88rem;
  }

  .timeline-step {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    left: 20px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 56px;
  }

  /* Contact */
  .contact {
    padding: 50px 0;
  }

  .contact-container {
    padding: 0 14px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .contact-form h3 {
    font-size: 1.15rem;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .btn-submit {
    padding: 15px 24px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .contact-info-card {
    padding: 20px 16px;
    gap: 14px;
  }

  .contact-info-card .icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-card .icon svg,
  .contact-info-card .icon img {
    width: 22px;
    height: 22px;
  }

  .contact-info-card .info h4 {
    font-size: 0.9rem;
  }

  .contact-info-card .info p {
    font-size: 0.82rem;
  }

  /* Footer */
  .footer-top {
    padding: 36px 14px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .footer-brand img {
    max-height: 45px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-bottom p {
    font-size: 0.72rem;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 30px;
    padding: 0 14px;
  }

  .section-header h2 {
    font-size: 1.55rem;
  }

  .section-header p {
    font-size: 0.88rem;
  }

  .container {
    padding: 0 14px;
  }

  .service-category-title {
    font-size: 0.78rem;
    letter-spacing: 2px;
  }

  /* Back to top */
  #backToTop {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 16px;
  }

  /* contact-info-card: stack on very small screens */
  .contact-info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info-card .icon {
    margin: 0 auto 8px;
  }

  /* Preloader */
  .preloader-content img {
    width: 130px !important;
  }
}

/* ---------- Very small devices (max-width: 360px) ---------- */
@media (max-width: 360px) {
  /* Footer grid: single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

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

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .nav-container {
    padding: 0 10px;
  }

  .nav-logo {
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-logo img {
    height: 36px;
    max-height: 36px;
    min-width: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.45) contrast(1.15) drop-shadow(0 0 6px rgba(200, 151, 26, 0.6)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
  }

  .service-card {
    padding: 22px 16px;
  }

  .contact-form {
    padding: 18px 14px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.75rem;
  }
}

/* ----------------------------------------------------------
   PRINT STYLES (Bonus)
   ---------------------------------------------------------- */
@media print {
  .navbar,
  .hamburger,
  .mobile-menu,
  .mobile-horizontal-nav,
  .mobile-bottom-nav,
  .hero-bg::after {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    background: #fff;
  }

  .hero-content h1 {
    color: #0d1b3e;
    font-size: 24pt;
  }

  .hero-content p {
    color: #333;
  }

  .footer {
    background: #f5f5f5;
    color: #333;
  }

  a {
    color: #0d1b3e;
    text-decoration: underline;
  }

  .services,
  .why-choose {
    background: #fff;
    color: #333;
  }

  .services .section-header h2,
  .why-choose .section-header h2 {
    color: #0d1b3e;
  }
}
