/* ==========================================================================
   GDTRANS WEBSITE - CUSTOM DESIGN SYSTEM (LIGHT MODE)
   ========================================================================== */

/* 1. GLOBAL VARIABLES & DESIGN TOKENS */
:root {
  /* Color Palette */
  --primary-color: #1e3a8a;      /* Deep Navy Blue */
  --primary-light: #3b82f6;     /* Sky/Royal Blue */
  --primary-glow: rgba(59, 130, 246, 0.15);
  
  --secondary-color: #0f172a;    /* Slate 900 (Text) */
  --text-muted: #475569;         /* Slate 600 */
  --bg-color: #f8fafc;           /* Slate 50 (Page Background) */
  --card-bg: #ffffff;            /* Pure White */
  --border-color: #e2e8f0;       /* Slate 200 */
  
  --warning-color: #ea580c;      /* Phishing Amber-Orange */
  --warning-bg: #fff7ed;         /* Amber 50 */
  --warning-border: #fed7aa;     /* Amber 200 */
  
  --success-color: #059669;      /* Emerald Green */
  --success-bg: #ecfdf5;         /* Emerald 50 */
  
  /* Fonts */
  --font-headers: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
  list-style: none;
}

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

/* 3. UTILITIES & LAYOUT */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.col-full { grid-column: 1 / -1; }

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-headers);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  background-color: var(--primary-glow);
  border-radius: 50px;
}

.section-subtitle.warning-badge {
  color: var(--warning-color);
  background-color: rgba(234, 88, 12, 0.1);
}

.section-title {
  font-family: var(--font-headers);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-muted);
}

/* Scroll Reveal Elements */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
  background-color: #172554;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 2px solid var(--border-color);
  color: var(--secondary-color);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: rgba(30, 58, 138, 0.03);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-warning {
  background-color: var(--warning-color);
  color: white;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.2);
}

.btn-warning:hover {
  background-color: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

/* ==========================================
   4. INTRO SPLASH LOADER (ANIMATED)
   ========================================== --> */
#intro-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

#intro-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
}

.loader-logo-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  animation: logoScaleIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-logo {
  height: 130px;
  width: auto;
  opacity: 0;
  animation: logoFadeIn 1s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.2s, logoShine 2.5s infinite linear 1.2s;
}

.loader-progress-container {
  width: 240px;
  height: 3px;
  background-color: var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
  animation: fillProgress 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-text {
  font-family: var(--font-headers);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  opacity: 0;
  animation: fadeInText 0.8s forwards ease-out 0.4s;
}

@keyframes logoScaleIn {
  0% { transform: scale(0.85); filter: blur(4px); }
  100% { transform: scale(1); filter: blur(0); }
}

@keyframes logoFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fillProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes logoShine {
  0% { filter: brightness(1); }
  30% { filter: brightness(1.2) contrast(1.1); }
  60% { filter: brightness(1); }
  100% { filter: brightness(1); }
}


/* ==========================================
   5. HEADER & NAVIGATION
   ========================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: background-color var(--transition-normal), height var(--transition-normal);
}

.main-header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 52px;
  width: auto;
  transition: var(--transition-normal);
}

.main-header.scrolled .nav-logo {
  height: 42px;
}

.logo-text {
  font-family: var(--font-headers);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
  transition: var(--transition-normal);
}

.logo-text span {
  color: var(--primary-light);
}

/* Nav Menu */
.desktop-nav {
  height: 100%;
}

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

.nav-list li {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-light);
  transition: width var(--transition-normal);
  border-radius: 20px;
}

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

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

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
  background-color: var(--primary-color);
}

.nav-link.security-highlight-link {
  color: var(--warning-color);
}

.nav-link.security-highlight-link::after {
  background-color: var(--warning-color);
}

.nav-link.security-highlight-link:hover {
  color: #c2410c;
}

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

.mobile-toggle {
  display: none;
  cursor: pointer;
  padding: 4px;
  color: var(--secondary-color);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #ffffff;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s, visibility 0.4s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

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

.mobile-nav {
  padding: 30px 24px;
}

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

.mobile-nav-link {
  font-family: var(--font-headers);
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link.text-warning {
  color: var(--warning-color);
}


/* ==========================================
   6. HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    #ffffff 0%,
    #ffffff 35%,
    rgba(255, 255, 255, 0.95) 45%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-glow);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-icon {
  color: var(--primary-light);
}

.hero-title {
  font-family: var(--font-headers);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
}

.stat-icon {
  font-size: 16px;
}

/* Animations for Reveal on Load */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-active {
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge.reveal-active { animation-delay: 0.1s; }
.hero-title.reveal-active { animation-delay: 0.2s; }
.hero-lead.reveal-active { animation-delay: 0.3s; }
.hero-btns.reveal-active { animation-delay: 0.4s; }
.hero-stats.reveal-active { animation-delay: 0.5s; }

@keyframes revealUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* ==========================================
   7. SECURITY NOTICE SECTION (THE SCAM BUSTER)
   ========================================== */
.security-section {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.security-card {
  background-color: var(--card-bg);
  border: 2px solid var(--warning-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-normal);
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--warning-color) 0%, #f97316 100%);
}

.security-card:hover {
  transform: translateY(-2px);
}

.security-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 40px;
  gap: 30px;
}

/* Visual Column */
.security-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-animation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-svg {
  filter: drop-shadow(0 4px 10px rgba(234, 88, 12, 0.15));
  z-index: 2;
  animation: floatShield 4s ease-in-out infinite;
}

.pulse-ring {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: rgba(234, 88, 12, 0.1);
  z-index: 1;
  animation: pulseShield 2s infinite ease-out;
}

@keyframes floatShield {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseShield {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Details Column */
.security-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lang-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-flag {
  font-size: 20px;
}

.lang-header h3 {
  font-family: var(--font-headers);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}

.security-text {
  font-size: 15px;
  color: var(--text-muted);
}

.security-text strong {
  color: var(--secondary-color);
}

.domain-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-headers);
  font-size: 24px;
  font-weight: 800;
  color: var(--warning-color);
  background-color: rgba(234, 88, 12, 0.08);
  border: 1px dashed rgba(234, 88, 12, 0.3);
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  margin: 6px 0;
  animation: pulseDomain 3s infinite ease-in-out;
}

@keyframes pulseDomain {
  0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.1); }
  50% { box-shadow: 0 0 10px 4px rgba(234, 88, 12, 0.1); }
  100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.1); }
}

.security-divider {
  height: 1px;
  background-color: var(--border-color);
}

/* Security Card Footer */
.security-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
  gap: 20px;
}

.security-tip {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 650px;
}

.tip-icon {
  color: var(--warning-color);
  flex-shrink: 0;
}


/* ==========================================
   8. SERVICES SECTION
   ========================================== */
.services-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background-color: #ffffff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(59, 130, 246, 0.2);
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-glow);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.service-card:hover .card-icon-wrapper {
  background-color: var(--primary-color);
  color: white;
}

.card-title {
  font-family: var(--font-headers);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-features {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-features li {
  font-size: 13.5px;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.card-link {
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link .arrow {
  transition: transform var(--transition-fast);
}

.service-card:hover .card-link .arrow {
  transform: translateX(4px);
}


/* ==========================================
   9. ABOUT SECTION
   ========================================== */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-metrics {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.metric-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.metric-number {
  font-family: var(--font-headers);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.security-cta-banner {
  background-color: rgba(30, 58, 138, 0.02);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.security-cta-banner h4 {
  font-family: var(--font-headers);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.security-cta-banner p {
  font-size: 14px;
  color: var(--text-muted);
}


/* ==========================================
   10. TIPS / VIGILANCE SECTION
   ========================================== */
.tips-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tip-item {
  position: relative;
  padding: 30px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.tip-num {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: #ffffff;
  font-family: var(--font-headers);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tip-item h3 {
  font-family: var(--font-headers);
  font-size: 18px;
  font-weight: 750;
  margin-top: 10px;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.tip-item p {
  font-size: 14px;
  color: var(--text-muted);
}


/* ==========================================
   11. CONTACT & INTERACTIVE FORM SECTION
   ========================================== */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.contact-box {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
}

/* Info Panel */
.contact-info-panel {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-title {
  font-family: var(--font-headers);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.panel-desc {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.item-text {
  display: flex;
  flex-direction: column;
}

.item-text .label {
  font-size: 12px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.item-text .val {
  font-size: 15px;
  font-weight: 500;
  color: #f1f5f9;
  margin-top: 2px;
}

.item-text a.val:hover {
  color: var(--primary-light);
}

.legal-info-badge {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #94a3b8;
}

.legal-info-badge p {
  margin-bottom: 4px;
}

.legal-info-badge p:last-child {
  margin-bottom: 0;
}

/* Form Panel */
.contact-form-panel {
  padding: 50px 45px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  background-color: var(--bg-color);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--secondary-color);
  transition: all var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  background-color: #ffffff;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group textarea {
  resize: vertical;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-group.invalid label {
  color: #ef4444;
}

.error-msg {
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  display: none;
  animation: revealError 0.25s forwards ease-out;
}

.form-group.invalid .error-msg {
  display: block;
}

@keyframes revealError {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

.form-actions {
  margin-top: 30px;
}

.btn-icon {
  position: relative;
  overflow: hidden;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-icon:hover .btn-arrow {
  transform: translateX(4px);
}

/* Simulated Form Spinner */
.form-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#form-submit-btn.loading span,
#form-submit-btn.loading svg {
  visibility: hidden;
  opacity: 0;
}

#form-submit-btn.loading .form-spinner {
  display: block !important;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
}

/* Success Overlay styling */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: overlayFadeIn var(--transition-normal);
}

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

.success-content {
  text-align: center;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-content h3 {
  font-family: var(--font-headers);
  font-size: 26px;
  font-weight: 750;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.success-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Checkmark animation */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.checkmark-svg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: var(--success-color);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--success-color);
  animation: fillSuccess 0.4s ease-in-out forwards 0.3s, scaleSuccess 0.3s ease-in-out forwards 0.7s;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: var(--success-color);
  fill: none;
  animation: strokeCircle 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke: var(--success-color);
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.6s;
}

@keyframes strokeCircle {
  100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
  100% { stroke-dashoffset: 0; }
}

@keyframes fillSuccess {
  100% { box-shadow: inset 0px 0px 0px 40px var(--success-bg); }
}

@keyframes scaleSuccess {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}


/* ==========================================
   12. FOOTER
   ========================================== */
.main-footer {
  background-color: var(--secondary-color);
  color: #94a3b8;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-brand .logo-text {
  color: #ffffff;
}

.brand-desc {
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-links h4,
.footer-legal h4 {
  color: #ffffff;
  font-family: var(--font-headers);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14.5px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-legal p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 30px 0;
  background-color: #0b1329;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13.5px;
}

.footer-security-note {
  font-size: 13px;
  color: #f97316;
  font-weight: 500;
}


/* ==========================================
   13. RESPONSIVE WEB DESIGN (MEDIA QUERIES)
   ========================================== */

/* Up to 1024px (Tablets / Small Desktops) */
@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
  }
  
  .hero-bg-container {
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Just a very light background watermark on mobile */
  }
  
  .hero-overlay {
    background: #ffffff;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .security-visual {
    justify-content: flex-start;
  }
  
  .security-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-panel {
    order: 2;
  }
}

/* Up to 768px (Mobile & Small Tablets) */
@media (max-width: 768px) {
  /* Navigation */
  .desktop-nav {
    display: none;
  }
  
  .header-actions .btn {
    display: none; /* Hide header CTA button on mobile header */
  }
  
  .mobile-toggle {
    display: block;
  }
  
  /* Sections */
  .section-title {
    font-size: 28px;
  }
  
  .section-lead {
    font-size: 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Up to 480px (Small Mobile Phones) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .domain-tag {
    font-size: 18px;
    padding: 6px 16px;
  }
  
  .contact-form-panel {
    padding: 30px 20px;
  }
  
  .contact-info-panel {
    padding: 40px 20px;
  }
}

/* ==========================================
   14. LANGUAGE SWITCHER SELECTOR STYLING
   ========================================== */
.lang-selector-container {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.lang-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-select-btn:hover {
  background-color: #ffffff;
  border-color: var(--primary-light);
}

.lang-select-btn .chevron {
  transition: transform var(--transition-fast);
}

.lang-selector-container.open .lang-select-btn .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-premium);
  width: 140px;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 4px 0;
}

.lang-selector-container.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.lang-option:hover {
  background-color: var(--bg-color);
  color: var(--secondary-color);
}

.lang-option.active {
  color: var(--primary-color);
  background-color: var(--primary-glow);
  font-weight: 600;
}

/* Mobile Language Selector Bar */
.mobile-lang-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-lang-btn {
  flex: 1;
  min-width: 44px;
  text-align: center;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-lang-btn:hover {
  background-color: #ffffff;
  color: var(--secondary-color);
}

.mobile-lang-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}


/* ==========================================
   13. FLEET SECTION
   ========================================== */
.fleet-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.fleet-trucks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.fleet-truck-card {
  height: 100%;
}

.truck-model {
  font-family: var(--font-headers);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.truck-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-color);
  font-size: 13px;
  color: var(--text-muted);
}

.spec-item strong {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Slide-Show Gallery */
.fleet-slider-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  max-width: 960px;
  margin: 0 auto;
}

.fleet-slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  background-color: #0f172a;
  border-radius: 14px;
  overflow: hidden;
}

.fleet-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.fleet-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.fleet-slide.active {
  opacity: 1;
  z-index: 2;
}

.fleet-slider-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Slider Controls */
.fleet-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fleet-slider-btn:hover {
  background-color: var(--primary-light);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.fleet-slider-btn.prev-btn {
  left: 20px;
}

.fleet-slider-btn.next-btn {
  right: 20px;
}

/* Slider Dots */
.fleet-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.fleet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fleet-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.fleet-dot.active {
  background-color: var(--primary-light);
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .fleet-trucks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .fleet-slider-container {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .fleet-slider-container {
    height: 300px;
  }
  
  .fleet-slider-btn {
    width: 38px;
    height: 38px;
  }
  
  .fleet-slider-btn.prev-btn {
    left: 10px;
  }
  
  .fleet-slider-btn.next-btn {
    right: 10px;
  }
  
  .truck-specs {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   14. REVIEWS SECTION
   ========================================== */
.reviews-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reviews-slider-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 60px;
}

.reviews-slider {
  position: relative;
  min-height: 220px;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  z-index: 1;
}

.review-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
  z-index: 2;
}

.review-card {
  text-align: center;
  padding: 40px;
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.review-stars {
  font-size: 22px;
  color: #fbbf24;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-headers);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 24px;
}

.review-author {
  display: block;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 15px;
}

.review-source {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
  z-index: 10;
}

.slider-nav-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e2e8f0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot:hover {
  background-color: #cbd5e1;
}

.slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .reviews-slider-wrapper {
    padding: 0;
  }
  
  .slider-nav-btn {
    display: none;
  }
  
  .review-card {
    padding: 24px;
  }
  
  .review-text {
    font-size: 15px;
  }
}

/* Partnership / Sponsorship Highlight */
.partnership-highlight {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.partnership-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
  border-radius: 20px;
  padding: 32px 40px;
  max-width: 850px;
  box-shadow: 0 20px 40px rgba(4, 120, 87, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.partnership-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.partnership-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.4);
  z-index: 2;
}

.partnership-badge svg {
  display: block;
}

.partnership-text {
  z-index: 2;
}

.partnership-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.partnership-card h3 {
  font-family: var(--font-headers);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #ffffff;
}

.partnership-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #a7f3d0;
}

@media (max-width: 767px) {
  .partnership-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }
  
  .partnership-card h3 {
    font-size: 18px;
  }
}

/* ==========================================
   14. CUSTOM ADDITIONS (BENEFITS & FLEET HIGHLIGHTS)
   ========================================== */

/* About Benefits */
.about-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(59, 130, 246, 0.2);
}

.benefit-icon {
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-glow);
  border-radius: var(--radius-sm);
}

.benefit-text h3 {
  font-family: var(--font-headers);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.benefit-text p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
  }
}

/* Fleet Highlights */
.fleet-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.fleet-highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.fleet-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(59, 130, 246, 0.2);
}

.highlight-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #eff6ff;
  border-radius: 12px;
}

.highlight-icon-wrapper svg {
  width: 32px;
  height: 32px;
  display: block;
}

.highlight-content h4 {
  font-family: var(--font-headers);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.highlight-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .fleet-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



