/* ==========================================================================
   ARL Logistics Premium Design System & Stylesheet
   ========================================================================== */

/* 1. CSS VARIABLES (Design Tokens) */
:root {
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --base-size: 16px;

  /* Color Palette */
  --color-primary: #0f172a;
  /* Deep Navy Slate */
  --color-primary-light: #1e293b;
  /* Dark Navy Accent */
  --color-secondary: #18369f;
  /* Rich Cobalt/Royal Blue */
  --color-secondary-light: #e8edff;
  /* Light royal blue background */
  --color-accent: #f97316;
  /* Dynamic Premium Orange */
  --color-accent-hover: #ea580c;
  /* Orange Hover */

  --color-bg-light: #f8fafc;
  /* Crisp off-white */
  --color-bg-alt: #f1f5f9;
  /* Soft gray for alternate sections */
  --color-white: #ffffff;

  /* Text Colors */
  --color-text-main: #334155;
  /* Dark charcoal */
  --color-text-muted: #64748b;
  /* Slate grey */
  --color-text-light: #94a3b8;

  /* Shadow Systems */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);

  /* Layout & Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 125px;
}

/* 2. BASE RESET & INITIALIZATION */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1rem;
  color: #000000;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bg-alt {
  background-color: var(--color-bg-alt);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* 3. PREMIUM HEADER (Collapsible Dual-Row Brand Header) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-top-row {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding: 12px 0;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease, border-bottom-width 0.3s ease;
  max-height: 100px;
  overflow: hidden;
  display: block;
  width: 100%;
}

.header-nav-row {
  background-color: var(--color-primary);
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
  transition: var(--transition-smooth);
  width: 100%;
}

header.scrolled .header-top-row {
  max-height: 0 !important;
  opacity: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom-width: 0 !important;
  pointer-events: none;
}

header.scrolled .header-nav-row {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  transition: var(--transition-smooth);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-link span {
  color: var(--color-secondary);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white) !important;
  background-color: var(--color-secondary) !important;
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hamburger menu button for mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-white);
  cursor: pointer;
  padding: 5px;
}

/* 4. BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

/* Wedge 1: Left Sliding Panel */
.btn::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -75%;
  width: 70%;
  height: 120%;
  background: var(--btn-hover-bg, var(--color-secondary));
  z-index: -1;
  transform: skewX(-20deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wedge 2: Right Sliding Panel */
.btn::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -75%;
  width: 70%;
  height: 120%;
  background: var(--btn-hover-bg, var(--color-secondary));
  z-index: -1;
  transform: skewX(-20deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
  left: -15%;
}

.btn:hover::after {
  right: -15%;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
  --btn-hover-bg: var(--color-secondary);
}

.btn-primary:hover {
  color: var(--color-white);
  box-shadow: 0 6px 14px rgba(24, 54, 159, 0.4);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
  --btn-hover-bg: var(--color-accent);
}

.btn-secondary:hover {
  color: var(--color-white);
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  --btn-hover-bg: var(--color-primary);
}

.btn-outline:hover {
  color: var(--color-white);
}

.btn-whatsapp-header {
  background-color: #25d366;
  color: var(--color-white);
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
}

.btn-whatsapp-header:hover {
  background-color: #128c7e;
  color: var(--color-white);
}

/* 5. HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 27, 75, 0.85) 100%), url('../../img/img2.jpg') center/cover no-repeat;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  color: var(--color-white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--color-accent);
}

.hero-content p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(2, 132, 199, 0.3);
  color: #38bdf8;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.94); /* Bright, slightly transparent white background */
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-visual .form-control {
  background-color: #f8fafc !important; /* Soft grey input fields */
  color: #0f172a !important; /* Dark black text color */
  border: 1.5px solid #cbd5e1 !important; /* Clear, defined input borders */
  border-radius: var(--radius-md) !important;
  height: 48px !important;
  padding: 10px 16px !important;
  font-weight: 500 !important;
  transition: var(--transition-smooth) !important;
}

.hero-visual .form-control::placeholder {
  color: #64748b !important; /* Highly readable placeholders */
  opacity: 1 !important;
}

.hero-visual .form-control:focus {
  background-color: #ffffff !important;
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2) !important;
  color: #0f172a !important;
}

.hero-form-title {
  font-size: 1.3rem;
  color: #0f172a; /* Dark black title */
  margin-bottom: 20px;
  border-left: 4px solid var(--color-accent);
  padding-left: 10px;
}

/* 6. TRUST BADGES / STATS */
.trust-badges {
  background-color: var(--color-white);
  padding: 30px 0;
  box-shadow: var(--shadow-md);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-right: 1px solid var(--color-bg-alt);
}

.badge-item:last-child {
  border-right: none;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.badge-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.badge-text p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* 7. SECTION TITLE SYSTEM */
.section-title-wrapper {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.subtitle {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2rem;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.section-title-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* 8. CARDS AND GRID LAYOUTS */
.services-section-heading {
  font-size: 1.6rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-bg-alt);
}

.services-section-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color-secondary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .card-grid-3 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr !important;
  }
}

.service-card {
  background: linear-gradient(135deg, var(--color-white) 0%, #fcfdfe 100%);
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  border-radius: 16px;
  padding: 35px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(24, 54, 159, 0.02) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(24, 54, 159, 0.15) !important;
}

.service-card:hover::after {
  opacity: 1;
}

/* Make top border transition beautiful */
.service-card[style*="border-top"] {
  border-top-width: 4px !important;
  transition: border-top-width 0.3s ease, border-color 0.3s ease;
}

.service-card:hover[style*="border-top"] {
  border-top-width: 6px !important;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(24, 54, 159, 0.05);
  color: var(--color-secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(24, 54, 159, 0.05);
}

.service-card:hover .service-card-icon {
  transform: scale(1.12) rotate(6deg);
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
  box-shadow: 0 8px 20px rgba(24, 54, 159, 0.2);
  border-color: var(--color-secondary) !important;
}

/* Adjust secondary color style on cargo icons inside Commercial section */
.service-card:hover .service-card-icon[style*="color"] {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
  border-color: var(--color-accent) !important;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card:hover h3 a {
  color: var(--color-secondary);
}

/* Adjust secondary color style on cargo headings inside Commercial section */
.service-card:has(.service-card-icon[style*="color"]):hover h3 a {
  color: var(--color-accent);
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex-grow: 1;
  margin-bottom: 25px;
}

.service-card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(15, 23, 42, 0.08);
}

.service-card-btn {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  font-size: 0.825rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-block;
  line-height: 1.4;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid transparent;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

/* Wedge 1: Left Sliding Panel */
.service-card-btn::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -75%;
  width: 70%;
  height: 120%;
  background: var(--btn-hover-bg, var(--color-primary));
  z-index: -1;
  transform: skewX(-20deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wedge 2: Right Sliding Panel */
.service-card-btn::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -75%;
  width: 70%;
  height: 120%;
  background: var(--btn-hover-bg, var(--color-primary));
  z-index: -1;
  transform: skewX(-20deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-btn:hover::before {
  left: -15%;
}

.service-card-btn:hover::after {
  right: -15%;
}

.service-card-btn.read-more {
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  border: 1px solid var(--color-bg-alt);
  --btn-hover-bg: var(--color-primary);
}

.service-card-btn.read-more:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
}

.service-card-btn.get-quote {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: 1px solid var(--color-secondary);
  box-shadow: 0 4px 10px rgba(24, 54, 159, 0.1);
  --btn-hover-bg: var(--color-primary);
}

.service-card-btn.get-quote:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.2);
}

/* Adjust secondary button colors inside Commercial section */
.service-card:has(.service-card-icon[style*="color"]) .service-card-btn.get-quote {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.15);
  --btn-hover-bg: var(--color-primary);
}

.service-card:has(.service-card-icon[style*="color"]) .service-card-btn.get-quote:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.2);
}

/* 9. WHY CHOOSE US & WORK PROCESS */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.benefit-card {
  display: flex;
  gap: 15px;
  background: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.benefit-card-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-card-content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.benefit-card-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Process Flow */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 40px;
}

/* Dynamic connected dotted connector line behind cards */
.process-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: var(--color-bg-alt);
  z-index: 1;
  transform: translateY(-50%);
}

.process-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Colored accent top bar */
.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(2, 132, 199, 0.15);
}

.process-card:hover::before {
  opacity: 1;
  height: 6px;
}

.process-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(2, 132, 199, 0.06);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition-smooth);
  border: 2px dashed rgba(2, 132, 199, 0.2);
}

.process-card:hover .process-icon-wrap {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: rotate(360deg);
  border-style: solid;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 6px rgba(2, 132, 199, 0.12);
}

.process-step-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-primary-light);
  background-color: var(--color-bg-light);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.process-card:hover .process-step-tag {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.process-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.process-card:hover h4 {
  color: var(--color-secondary);
}

.process-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-grid::before {
    display: none;
    /* Hide background bar on wrap grids */
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* 10. REVIEWS & TESTIMONIALS (Grid & Single page) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9faff 100%);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px -5px rgba(24, 54, 159, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(24, 54, 159, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 5px solid var(--color-secondary) !important;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(24, 54, 159, 0.12), 0 0 0 1px rgba(249, 115, 22, 0.15);
  border-left-color: var(--color-accent) !important;
}

.review-card::before {
  content: '“';
  position: absolute;
  bottom: -35px;
  right: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11rem;
  color: rgba(24, 54, 159, 0.03);
  line-height: 1;
  pointer-events: none;
  font-weight: 800;
}

.review-rating {
  color: #facc15;
  margin-bottom: 15px;
  font-size: 1.15rem;
  display: flex;
  gap: 3px;
  text-shadow: 0 2px 8px rgba(250, 204, 21, 0.3);
}

.review-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-primary);
  line-height: 1.35;
  letter-spacing: -0.3px;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 25px;
  flex-grow: 1;
  font-weight: 500;
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.review-avatar-text {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1e40af 100%);
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(24, 54, 159, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.review-author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.review-verified-badge {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* Mobile Review Form Toggle Styling */
.mobile-review-toggle-wrapper {
  display: none;
  margin-bottom: 25px;
  text-align: center;
}

.mobile-review-toggle {
  width: 100%;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .mobile-review-toggle-wrapper {
    display: block;
  }

  .feedback-form-container {
    display: none;
    /* Collapsed by default on mobile */
    margin-top: 25px;
    margin-bottom: 30px;
    animation: slideDownFade 0.4s ease forwards;
  }

  .feedback-form-container.open {
    display: block;
  }
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 11. PRICING & RATE TABLE */
.pricing-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background-color: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.pricing-card.popular {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
}

.price-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.price-desc {
  font-size: 0.85rem;
  margin-bottom: 25px;
  min-height: 48px;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.price-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.price-features {
  list-style: none;
  margin: 25px 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.price-features li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li i {
  color: #10b981;
}

/* Shifting Rates Table */
.rates-table-container {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.frontend-rates-table {
  width: 100%;
  border-collapse: collapse;
}

.frontend-rates-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 18px 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.frontend-rates-table td {
  padding: 15px;
  border-bottom: 1px solid var(--color-bg-alt);
  font-size: 0.9rem;
}

.frontend-rates-table tr:last-child td {
  border-bottom: none;
}

.frontend-rates-table tr:nth-child(even) {
  background-color: var(--color-bg-light);
}

.shifting-type-col {
  font-weight: 700;
  color: var(--color-primary);
}

/* 12. LIGHTBOX GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-tag {
  color: var(--color-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.gallery-title {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Fancybox Lightbox Premium Adjustments to prevent header overlapping and cut-offs */
.fancybox__container {
  z-index: 100000 !important;
}
.fancybox__slide {
  padding: 60px 20px !important;
}

/* 13. FAQ ACCORDION SYSTEM */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 768px) {
  .faq-grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* 14. MODERN PREMIUM FORMS */
.form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-grid.triple {
  grid-template-columns: repeat(3, 1fr);
}

.form-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-bottom: 8px;
}

.form-control {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  padding: 12px 16px;
  border: 1.5px solid var(--color-bg-alt);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  background-color: var(--color-bg-light);
  transition: var(--transition-smooth);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* 15. DYNAMIC SINGLE SERVICE PAGE ELEMENTS */
.service-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.service-main-content h2 {
  font-size: 1.75rem;
  margin: 30px 0 15px 0;
}

.service-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.service-feature-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-feature-list li i {
  color: var(--color-secondary);
}

.service-sidebar-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
  margin-bottom: 30px;
}

.sidebar-service-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-service-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-sm);
  color: var(--color-primary-light);
  font-weight: 500;
  font-size: 0.85rem;
}

.sidebar-service-menu li a:hover,
.sidebar-service-menu li.active a {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/* Contact Sidebar Card */
.sidebar-contact-box {
  background: linear-gradient(135deg, #18369f 0%, #112575 100%);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px 25px;
  text-align: center;
}

.sidebar-contact-box h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sidebar-contact-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.sidebar-contact-box .phone-num {
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
}

.sidebar-contact-box .phone-num a {
  color: var(--color-white);
}

.sidebar-contact-box .sidebar-vault-btn:hover {
  background-color: var(--color-secondary) !important;
  color: #ffffff !important;
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

/* 16. PAGE BANNER SYSTEM */
.page-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 40px;
  color: var(--color-white);
  text-align: center;
  position: relative;
}

.page-banner h1 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 10px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs span {
  color: #ffffff;
  font-weight: 500;
}

/* 17. FINAL CALL-TO-ACTION (CTA) SECTION */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: var(--color-white);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* 18. PREMIUM FOOTER */
footer {
  background-color: #0b0f19;
  color: #ffffff;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 4px solid var(--color-secondary);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--color-secondary);
}

.footer-desc {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #ffffff !important;
}

.social-links {
  display: flex;
  gap: 12px;
  list-style: none;
}

.social-links a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-item span {
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-trust-text {
  font-size: 0.75rem;
  max-width: 400px;
  line-height: 1.5;
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
}

/* 19. MOBILE HELPLINE & CHAT ACTIONS (Floating Buttons) */
.floating-actions-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  transition: var(--transition-smooth);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: var(--color-white);
}

.floating-btn.call {
  background-color: var(--color-secondary);
}

.floating-btn.whatsapp {
  background-color: #25d366;
}

.floating-btn.quote {
  background-color: var(--color-accent);
}

.float-btn-text {
  display: none;
}

/* Tooltips */
.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.floating-btn:hover::after {
  opacity: 1;
}

/* 20. RESPONSIVE DESIGN (Media Queries) */
@media (max-width: 1200px) {

  .badges-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .badge-item {
    border-right: none;
    border-bottom: 1px solid var(--color-bg-alt);
    padding-bottom: 15px;
  }

  .badge-item:nth-child(3),
  .badge-item:last-child {
    border-bottom: none;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {

  /* Navigation */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    transition: left 0.4s ease-in-out;
    z-index: 998;
    overflow-y: auto;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .btn-whatsapp-header {
    display: none;
    /* Hide header whatsapp button on mobile/tab */
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  /* Split sections */
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Grid structures */
  .card-grid-3,
  .reviews-grid,
  .pricing-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
    /* Hide connector lines on mobile */
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .badges-grid,
  .stats-grid,
  .card-grid,
  .card-grid-3,
  .reviews-grid,
  .pricing-page-grid,
  .process-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .badge-item {
    border-bottom: 1px solid var(--color-bg-alt);
    padding-bottom: 15px;
  }

  .badge-item:last-child {
    border-bottom: none;
  }

  .form-group-grid,
  .form-group-grid.triple {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-trust-text {
    text-align: center;
  }

  /* Mobile table responsiveness */
  .rates-table-container {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .frontend-rates-table {
    display: block;
    width: 100%;
  }

  .frontend-rates-table thead {
    display: none;
  }

  .frontend-rates-table tbody,
  .frontend-rates-table tr,
  .frontend-rates-table td {
    display: block;
    width: 100%;
  }

  .frontend-rates-table tr {
    background-color: var(--color-white) !important;
    margin-bottom: 15px;
    border: 1px solid var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 12px 15px !important;
    box-shadow: var(--shadow-sm) !important;
  }

  .frontend-rates-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-bottom: 1px solid var(--color-bg-alt);
  }

  .frontend-rates-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    text-align: left;
    font-size: 0.8rem;
    color: var(--color-primary-light);
  }

  .frontend-rates-table td:last-child {
    border-bottom: none;
  }

  body {
    padding-bottom: 85px;
    /* Adds bottom safe area margin so content isn't blocked by the horizontal sticky dock */
  }

  .py-16 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-20 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .floating-actions-container {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    /* Sleek translucent dark theme */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.25);
    padding: 12px 16px 20px;
    /* Includes empty/safe space at the bottom */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex-direction: row;
    border-radius: 16px 16px 0 0;
    /* Premium rounded header border */
  }

  .floating-btn {
    width: 100% !important;
    height: 44px !important;
    border-radius: var(--radius-sm) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .floating-btn:hover {
    transform: none !important;
  }

  .floating-btn i {
    font-size: 1.15rem !important;
  }

  .float-btn-text {
    display: inline-block !important;
    /* Show labels on mobile */
  }

  .floating-btn::after {
    display: none !important;
    /* Hide hover tooltips */
  }

  .floating-btn.call {
    background-color: #e0f2fe !important;
    color: #0369a1 !important;
  }

  .floating-btn.whatsapp {
    background-color: #dcfce7 !important;
    color: #15803d !important;
  }

  .floating-btn.quote {
    background-color: #ffedd5 !important;
    color: #c2410c !important;
  }
}

/* Extra responsive overrides for extremely small screen devices (<= 380px) */
@media (max-width: 380px) {
  .floating-actions-container {
    padding: 10px 6px 16px !important;
    gap: 5px !important;
  }

  .floating-btn {
    font-size: 0.68rem !important;
    gap: 3px !important;
    letter-spacing: 0.2px !important;
    padding: 2px 4px !important;
  }

  .floating-btn i {
    font-size: 0.95rem !important;
  }
}

/* ==========================================================================
   21. PREMIUM QUICK QUOTE MODAL POPUP STYLES
   ========================================================================== */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  /* Sleek translucent overlay */
  backdrop-filter: blur(8px);
  /* iOS-style glassmorphism blur */
  z-index: 10000;
  /* Stays above everything */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.quote-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  width: 92%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 35px 40px;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-modal-overlay.open .quote-modal-card {
  transform: translateY(0);
}

.quote-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  line-height: 1;
}

.quote-modal-close-btn:hover {
  color: var(--color-secondary);
  transform: rotate(90deg);
}

.quote-modal-header {
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--color-bg-alt);
  padding-bottom: 15px;
}

.quote-modal-header h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.quote-modal-header p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.quote-modal-body form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-modal-body label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-bottom: 5px;
  display: block;
}

.quote-modal-body input,
.quote-modal-body select,
.quote-modal-body textarea {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  padding: 10px 14px;
  border: 1.5px solid var(--color-bg-alt);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  background-color: var(--color-bg-light);
  transition: var(--transition-smooth);
  width: 100%;
}

.quote-modal-body input:focus,
.quote-modal-body select:focus,
.quote-modal-body textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.quote-modal-body textarea {
  min-height: 80px;
  resize: vertical;
}

@media (max-width: 576px) {
  .quote-modal-card {
    padding: 15px 12px !important;
    width: 95% !important;
    max-height: 85vh !important;
    border-radius: var(--radius-md) !important;
  }

  .quote-modal-header {
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
  }

  .quote-modal-header h3 {
    font-size: 1.15rem !important;
  }

  .quote-modal-header p {
    font-size: 0.75rem !important;
  }

  .quote-modal-body form {
    gap: 8px !important;
  }

  .quote-modal-body .form-group-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
  }

  .quote-modal-body .form-group {
    margin-bottom: 0 !important;
  }

  .quote-modal-body label {
    font-size: 0.7rem !important;
    margin-bottom: 3px !important;
  }

  .quote-modal-body input,
  .quote-modal-body select,
  .quote-modal-body textarea {
    font-size: 0.8rem !important;
    padding: 8px 10px !important;
  }

  .quote-modal-body textarea {
    min-height: 50px !important;
    height: 50px !important;
  }

  .quote-modal-body button[type="submit"] {
    padding: 10px !important;
    font-size: 0.85rem !important;
    margin-top: 5px !important;
  }
}

/* ==========================================================================
   22. HERO BACKGROUND FLOATING ICONS
   ========================================================================== */
.hero-bg-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Renders under the content grid */
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  /* Soft premium watermark look */
  font-size: 3.5rem;
  transition: transform 0.5s ease;
  animation: floatRandomIcon 22s infinite alternate ease-in-out;
}

/* Random positioning coordinates for a natural, rich spread */
.floating-icon.icon-1 {
  top: 12%;
  left: 6%;
  font-size: 5.5rem;
  animation-delay: 0s;
}

.floating-icon.icon-2 {
  top: 78%;
  left: 3%;
  font-size: 4rem;
  animation-delay: 2s;
}

.floating-icon.icon-3 {
  top: 8%;
  right: 7%;
  font-size: 6.5rem;
  animation-delay: 4s;
}

.floating-icon.icon-4 {
  top: 38%;
  left: 40%;
  font-size: 5rem;
  animation-delay: 1s;
}

.floating-icon.icon-5 {
  top: 84%;
  right: 38%;
  font-size: 3.8rem;
  animation-delay: 6s;
}

.floating-icon.icon-6 {
  top: 48%;
  left: 4%;
  font-size: 4.5rem;
  animation-delay: 3s;
}

.floating-icon.icon-7 {
  top: 22%;
  right: 44%;
  font-size: 4rem;
  animation-delay: 5s;
}

.floating-icon.icon-8 {
  top: 74%;
  right: 5%;
  font-size: 5.2rem;
  animation-delay: 7s;
}

.floating-icon.icon-9 {
  top: 6%;
  left: 28%;
  font-size: 4.8rem;
  animation-delay: 8s;
}

.floating-icon.icon-10 {
  top: 86%;
  left: 22%;
  font-size: 4.2rem;
  animation-delay: 9s;
}

/* Elegant Floating + Slow Tilting Micro-Animation */
@keyframes floatRandomIcon {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-20px) rotate(8deg) scale(1.08);
  }

  100% {
    transform: translateY(12px) rotate(-8deg) scale(0.92);
  }
}

/* 23. EXTRA HEADER AND CTA RESPONSIVE OVERRIDES */
.mobile-quote-menu-item {
  display: none !important;
}

@media (max-width: 992px) {

  /* Hide the upper Get Quote button next to toggle hamburger */
  .header-actions .btn-quote-header {
    display: none !important;
  }

  /* Show the Get Quote button directly inside the slide-down navigation menu */
  .mobile-quote-menu-item {
    display: block !important;
    width: 100% !important;
  }
}

@media (max-width: 576px) {

  /* Final Call-to-Action (CTA) section button adjustments */
  .cta-btns {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .cta-btns .btn {
    margin: 0 !important;
  }

  /* Make top Get Free Shifting Quote button full width */
  .cta-btns a:nth-child(1) {
    width: 100% !important;
    flex: 0 0 100% !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Make middle and bottom buttons display side-by-side in a single line */
  .cta-btns a:nth-child(2),
  .cta-btns a:nth-child(3) {
    width: calc(50% - 6px) !important;
    flex: 0 0 calc(50% - 6px) !important;
    padding: 12px 10px !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: var(--radius-md) !important;
    white-space: nowrap !important;
  }
}

/* ==========================================================================
   24. ADVANTAGE STATS CARDS STYLING
   ========================================================================== */
.advantage-stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.advantage-stats-wrapper.stats-four-cols {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .advantage-stats-wrapper.stats-four-cols {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.advantage-stat-card {
  background: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-icon-wrapper.secondary {
  background: rgba(2, 132, 199, 0.08);
  color: var(--color-secondary);
}

.stat-icon-wrapper.accent {
  background: rgba(249, 115, 22, 0.08);
  color: var(--color-accent);
}

.stat-icon-wrapper.success {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.stat-icon-wrapper.purple {
  background: rgba(168, 85, 247, 0.08);
  color: #a855f7;
}

.stat-info .stat-number {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.stat-info .stat-desc {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .advantage-stats-wrapper {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
}

@media (max-width: 576px) {
  .advantage-stats-wrapper {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .advantage-stat-card {
    padding: 10px 8px !important;
    gap: 8px !important;
  }

  .advantage-stat-card .stat-icon-wrapper {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
  }

  .advantage-stat-card .stat-info .stat-number {
    font-size: 1.15rem !important;
  }

  .advantage-stat-card .stat-info .stat-desc {
    font-size: 0.68rem !important;
  }
}

/* ==========================================================================
   25. ABOUT PAGE TIMELINE STYLING
   ========================================================================== */
.timeline-item {
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(6px);
}

.timeline-item p {
  margin-bottom: 0;
}

/* ==========================================================================
   26. OUR NETWORK & SERVICES SECTION
   ========================================================================== */
.network-services-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .network-services-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   27. COLLAPSIBLE DUAL-ROW HEADER RESPONSIVE OVERRIDES
   ========================================================================== */
.brand-logo-nav {
  display: flex;
  background-color: var(--color-white);
  padding: 4px 12px;
  border-radius: 0 0 12px 12px;
  align-self: flex-start;
  justify-content: center;
  height: 110px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  margin-left: -15px;
  transition: var(--transition-smooth);
}

.brand-logo-nav img {
  height: 102px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

/* Allow logo to show on desktop scroll as well */
header.scrolled .logo-link.brand-logo-nav {
  display: flex !important;
}

header.scrolled .brand-logo-nav {
  height: 70px;
  align-self: center;
  margin-left: -15px;
  border-radius: 0;
  box-shadow: none;
  padding: 0px 12px;
}

header.scrolled .brand-logo-nav img {
  height: 60px;
}

@media (max-width: 992px) {
  :root {
    --header-height: 70px !important;
  }

  .header-top-row {
    display: none !important;
  }

  .header-container {
    height: 70px;
  }

  .nav-menu {
    top: 70px !important;
    height: calc(100vh - 70px) !important;
    background-color: var(--color-white) !important;
    transition: var(--transition-smooth);
  }

  .logo-link.brand-logo-nav {
    display: flex !important;
  }

  .nav-link {
    color: var(--color-primary-light) !important;
    width: 100%;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--color-secondary) !important;
    background-color: var(--color-secondary-light) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px !important;
  }

  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ==========================================================================
   28. PREMIUM DYNAMIC TOAST NOTIFICATION STYLES
   ========================================================================== */
#custom-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: calc(100vw - 40px);
  pointer-events: none;
}

.custom-toast {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  color: var(--color-primary);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  pointer-events: auto;
  overflow: hidden;
  position: relative;
}

.custom-toast.toast-show {
  transform: translateX(0);
  opacity: 1;
}

.custom-toast.toast-hide {
  transform: translateX(120%);
  opacity: 0;
}

.custom-toast-icon {
  font-size: 1.6rem;
  color: var(--color-secondary);
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-toast-icon.error-icon {
  color: #ff4d4d;
}

.custom-toast-content {
  flex-grow: 1;
}

.custom-toast-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.custom-toast-message {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.4;
}

.custom-toast-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.3rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.custom-toast-close:hover {
  color: var(--color-primary);
  transform: scale(1.15);
}

.custom-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-secondary);
  width: 100%;
}

.custom-toast-progress.error-progress {
  background: #ff4d4d;
}

/* ==========================================================================
   22. INTERACTIVE FLEET SHOWCASE CARD & EXPANDING HOVER BUTTONS
   ========================================================================== */
.truck-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6) !important;
  border-color: rgba(249, 115, 22, 0.4) !important;
}

.truck-showcase-card img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.truck-showcase-card:hover img {
  transform: scale(1.06) rotate(1deg);
}

/* Expanding button hover layout */
.expanding-action-btn {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  gap: 0 !important;
  /* Fix: Remove gap in collapsed state to perfectly center the icon */
}

.expanding-action-btn:hover,
.expanding-action-btn.hover-expanded {
  width: 120px !important;
  border-radius: 25px !important;
  padding: 0 14px !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  /* Fix: Add gap only when expanded on hover */
}

.expanding-action-btn .btn-text {
  opacity: 0;
  max-width: 0;
  display: inline-block;
  transition: opacity 0.25s ease, max-width 0.25s ease, margin-left 0.25s ease;
}

.expanding-action-btn:hover .btn-text,
.expanding-action-btn.hover-expanded .btn-text {
  opacity: 1 !important;
  max-width: 75px !important;
  margin-left: 0 !important;
  /* Rely on gap: 8px for spacing */
}

/* ==========================================================================
   23. GLOBAL SCROLL-REVEAL INITIAL STATES & PERFORMANCE ACCELERATION
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
  animation-duration: 0.85s;
  animation-fill-mode: both;
}

/* Ensure smooth reveal on activation */
.reveal-on-scroll.animate__animated {
  opacity: 1;
}

/* Accessibility and print fallback settings */
@media print,
(prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   24. INDUSTRIES WE SERVE GRID & INTERACTIVE CARD STYLES
   ========================================================================== */
.industries-serve-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 1200px) {
  .industries-serve-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .industries-serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .industries-serve-grid {
    grid-template-columns: 1fr;
  }
}

.industry-serve-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.industry-serve-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--industry-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-serve-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--industry-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--industry-bg);
}

.industry-serve-card:hover::before {
  opacity: 1;
}

.industry-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--industry-bg);
  color: var(--industry-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.industry-serve-card:hover .industry-icon-wrapper {
  transform: scale(1.12) rotate(8deg);
  background-color: var(--industry-color);
  color: #0b0f19;
  box-shadow: 0 0 20px var(--industry-bg);
}

.industry-serve-card h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.industry-serve-card p {
  color: #ffffff !important;
  font-size: 0.76rem;
  line-height: 1.45;
  margin: 0;
  font-weight: 500 !important;
  opacity: 1 !important;
  transition: opacity 0.3s ease;
}

.industry-serve-card:hover p {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* ==========================================================================
   23. BRANDED IMAGE SHOWCASE SECTIONS
   ========================================================================== */

/* -- Warehouse Image (index.php - Why Choose Us) -- */
.why-choose-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  width: 100%;
}

.why-choose-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-image-wrapper:hover img {
  transform: scale(1.03);
}

.why-choose-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.35), transparent);
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

/* -- Crew Image (about.php - Genesis Section) -- */
.about-crew-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.about-crew-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-crew-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-crew-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.25), transparent);
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

/* -- About Page Banner with img1 background -- */
.page-banner-with-bg {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%), url('../../img/img1%20(1).png') center/cover no-repeat;
}

/* -- Responsive for image sections -- */
@media (max-width: 768px) {
  .why-choose-image-wrapper {
    border-radius: 16px;
    min-height: 260px;
    height: auto;
    max-height: 320px;
  }

  .about-crew-image-wrapper {
    max-width: 100%;
    border-radius: 16px;
    min-height: 260px;
    height: auto;
    max-height: 320px;
  }
}

/* ==========================================================================
   25. PREMIUM QUOTE PAGE FORM INPUTS
   ========================================================================== */
.quote-input {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 14px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  color: var(--color-primary);
  background-color: #fafbfc;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: block;
}

.quote-input:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(24, 54, 159, 0.08);
}

.quote-input::placeholder {
  color: var(--color-text-light);
  font-weight: 400;
  font-size: 0.82rem;
}

textarea.quote-input {
  line-height: 1.55;
}

/* Mobile responsive for quote form */
@media (max-width: 576px) {
  #quotation-form div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   26. PREMIUM VIDEO GALLERY SYSTEM
   ========================================================================== */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.video-gallery-item {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(15, 23, 42, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.video-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.video-gallery-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #000;
}

.video-gallery-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-gallery-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  background-color: #fafbfc;
}

.video-gallery-badge i {
  font-size: 1.15rem;
}

.video-gallery-badge.youtube {
  color: #dc3545;
}

.video-gallery-badge.facebook {
  color: #1877f2;
}

.video-gallery-badge.instagram {
  color: #e1306c;
}

/* -- Contact Details Responsive Grid -- */
.contact-details-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .contact-details-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   27. GLOBAL RESPONSIVE TYPOGRAPHY & SPACING OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
  /* Prevent any massive heading font-sizes on mobile devices, overriding inline styles */
  h1, 
  .hero-content h1, 
  .page-banner h1 {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
  }
  
  h1 span {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
  }

  h2, 
  .section-title,
  h2.section-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    letter-spacing: -0.3px !important;
  }

  h3 {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
  }

  h4 {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
  }
  
  /* Justify paragraphs and text blocks on mobile for a clean, premium editorial look */
  p:not(.text-center):not(.text-right),
  .faq-answer-inner:not(.text-center):not(.text-right) {
    text-align: justify !important;
    text-justify: inter-word !important;
  }
  
  /* Premium vertical-stacking mobile table design to prevent any text overlaps */
  .frontend-rates-table tbody,
  .frontend-rates-table tr,
  .frontend-rates-table td {
    display: block !important;
    width: 100% !important;
  }

  .frontend-rates-table td {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 10px 15px !important;
    position: relative !important;
    border-bottom: 1px solid var(--color-bg-alt) !important;
  }

  .frontend-rates-table td::before {
    content: attr(data-label) !important;
    position: static !important;
    transform: none !important;
    display: block !important;
    font-weight: 750 !important;
    font-size: 0.72rem !important;
    color: var(--color-secondary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 5px !important;
    text-align: left !important;
  }
  
  /* Optimize Hero Inquiry Form on Mobile */
  .hero-visual {
    padding: 20px 15px !important; /* Reduce padding to give inputs more width */
  }

  .hero-form-title {
    font-size: 1.1rem !important; /* Scale down slightly to fit on a single line */
    white-space: nowrap !important; /* Force title to stay in one line */
    margin-bottom: 15px !important;
    border-left-width: 3px !important;
    padding-left: 8px !important;
  }

  /* Sleek, premium buttons for mobile with reduced height and padding globally */
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-whatsapp-header,
  button:not(.nav-toggle):not(.quote-modal-close-btn),
  input[type="submit"],
  input[type="button"] {
    padding: 10px 18px !important;
    font-size: 0.88rem !important;
    height: auto !important;
    min-height: 42px !important;
    border-radius: var(--radius-md) !important;
  }

  /* Optimize section spacing for compact mobile viewports */
  .py-20 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .py-24 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}