/* ============================================
   CSS Design System - Variables
   Premium Corporate Website
   ============================================ */

:root {
  /* ===== Color Palette ===== */
  /* Primary Colors */
  --color-deep-blue: #0a1a3f;
  --color-deep-blue-light: #1a2e5a;
  --color-deep-blue-dark: #050d1f;
  --color-vibrant-orange: #ff7a00;
  --color-orange-light: #ff9933;
  --color-orange-dark: #e66a00;

  /* Neutral Colors */
  --color-white: #ffffff;
  --color-off-white: #f8f9fc;
  --color-grey-50: #f5f7fa;
  --color-grey-100: #e8ecf2;
  --color-grey-200: #d1d9e6;
  --color-grey-300: #b0baca;
  --color-grey-400: #8b99ab;
  --color-grey-500: #6b7a8c;
  --color-grey-600: #4a5568;
  --color-grey-700: #2d3748;
  --color-grey-800: #1a202c;
  --color-grey-900: #0d1117;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* Gradients */
  --gradient-blue: linear-gradient(
    135deg,
    var(--color-deep-blue) 0%,
    var(--color-deep-blue-light) 100%
  );
  --gradient-blue-dark: linear-gradient(
    180deg,
    var(--color-deep-blue) 0%,
    var(--color-deep-blue-dark) 100%
  );
  --gradient-orange: linear-gradient(
    135deg,
    var(--color-vibrant-orange) 0%,
    var(--color-orange-light) 100%
  );
  --gradient-blue-orange: linear-gradient(
    135deg,
    var(--color-deep-blue) 0%,
    var(--color-vibrant-orange) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    var(--color-deep-blue-dark) 0%,
    var(--color-deep-blue) 50%,
    var(--color-deep-blue-light) 100%
  );

  /* ===== Typography ===== */
  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Font Sizes - Desktop */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
  --text-6xl: 3.75rem; /* 60px */
  --text-7xl: 4.5rem; /* 72px */
  --text-8xl: 6rem; /* 96px */

  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Letter Spacing */
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;

  /* ===== Spacing System (8px base) ===== */
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.25rem; /* 20px */
  --space-6: 1.5rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-10: 2.5rem; /* 40px */
  --space-12: 3rem; /* 48px */
  --space-16: 4rem; /* 64px */
  --space-20: 5rem; /* 80px */
  --space-24: 6rem; /* 96px */
  --space-32: 8rem; /* 128px */
  --space-40: 10rem; /* 160px */

  /* ===== Layout ===== */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;
  --container-max: 1600px;

  /* ===== Borders ===== */
  --radius-none: 0;
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem; /* 8px */
  --radius-lg: 0.75rem; /* 12px */
  --radius-xl: 1rem; /* 16px */
  --radius-2xl: 1.5rem; /* 24px */
  --radius-3xl: 2rem; /* 32px */
  --radius-full: 9999px;

  --border-thin: 1px;
  --border-medium: 2px;
  --border-thick: 4px;

  /* ===== Shadows ===== */
  --shadow-sm: 0 1px 2px 0 rgba(10, 26, 63, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(10, 26, 63, 0.07), 0 2px 4px -2px rgba(10, 26, 63, 0.05);
  --shadow-lg:
    0 10px 15px -3px rgba(10, 26, 63, 0.08),
    0 4px 6px -4px rgba(10, 26, 63, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(10, 26, 63, 0.1),
    0 8px 10px -6px rgba(10, 26, 63, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(10, 26, 63, 0.2);
  --shadow-inner: inset 0 2px 4px 0 rgba(10, 26, 63, 0.05);
  --shadow-glow-orange: 0 0 40px rgba(255, 122, 0, 0.3);
  --shadow-glow-blue: 0 0 40px rgba(10, 26, 63, 0.3);

  /* ===== Animations ===== */
  --duration-instant: 0ms;
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 700ms;
  --duration-slowest: 1000ms;

  --ease-linear: linear;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

  /* ===== Z-Index Scale ===== */
  --z-behind: -1;
  --z-base: 0;
  --z-raised: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-max: 9999;

  /* ===== Glass Effect ===== */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(20px);
}

/* ===== Responsive Typography Scale ===== */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
    --text-7xl: 3.5rem;
    --text-8xl: 4.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --text-4xl: 2rem;
    --text-5xl: 2.25rem;
    --text-6xl: 2.5rem;
    --text-7xl: 3rem;
    --text-8xl: 3.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --text-3xl: 1.5rem;
    --text-4xl: 1.75rem;
    --text-5xl: 2rem;
    --text-6xl: 2.25rem;
    --text-7xl: 2.5rem;
    --text-8xl: 3rem;
  }
}
/* ============================================
   Base Styles - Reset & Typography
   Premium Corporate Website
   ============================================ */

/* ===== CSS Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-grey-700);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-deep-blue);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
}

h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
}

h3 {
  font-size: var(--text-4xl);
}

h4 {
  font-size: var(--text-3xl);
}

h5 {
  font-size: var(--text-2xl);
}

h6 {
  font-size: var(--text-xl);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-grey-600);
}

.lead {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--color-grey-500);
}

.text-large {
  font-size: var(--text-lg);
}

.text-small {
  font-size: var(--text-sm);
}

.text-tiny {
  font-size: var(--text-xs);
}

/* ===== Links ===== */
a {
  color: var(--color-vibrant-orange);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-orange-dark);
}

/* ===== Lists ===== */
ul,
ol {
  list-style: none;
}

/* ===== Images & Media ===== */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  object-fit: cover;
}

/* ===== Form Elements ===== */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  border: var(--border-thin) solid var(--color-grey-200);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-white);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-vibrant-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-grey-400);
}

/* ===== Tables ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

/* ===== Horizontal Rule ===== */
hr {
  border: none;
  border-top: var(--border-thin) solid var(--color-grey-200);
  margin: var(--space-8) 0;
}

/* ===== Selection ===== */
::selection {
  background-color: var(--color-vibrant-orange);
  color: var(--color-white);
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-grey-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-grey-300);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-grey-400);
}

/* ===== Focus Visible ===== */
:focus-visible {
  outline: 2px solid var(--color-vibrant-orange);
  outline-offset: 2px;
}

/* ===== Screen Reader Only ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ============================================
   Component Styles
   Premium Corporate Website
   ============================================ */

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-lg {
  max-width: var(--container-2xl);
}

.container-sm {
  max-width: var(--container-md);
}

/* ===== Sections ===== */
.section {
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

.section-dark {
  background: var(--gradient-blue);
  color: var(--color-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-grey {
  background-color: var(--color-grey-50);
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-header .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-6);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-grey-500);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-transform: none;
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  border: var(--border-medium) solid transparent;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-xl),
    0 0 50px rgba(255, 122, 0, 0.4);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-deep-blue);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-deep-blue-light);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-vibrant-orange);
  color: var(--color-vibrant-orange);
}

.btn-outline:hover {
  background: var(--color-vibrant-orange);
  color: var(--color-white);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--border-thin) solid var(--glass-border);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--color-white);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ===== Cards ===== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.card-floating {
  box-shadow: var(--shadow-xl);
}

.card-floating:hover {
  transform: translateY(-12px) scale(1.02);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--border-thin) solid var(--glass-border);
}

.card-dark {
  background: var(--gradient-blue);
  color: var(--color-white);
}

.card-dark h1,
.card-dark h2,
.card-dark h3,
.card-dark h4,
.card-dark h5,
.card-dark h6 {
  color: var(--color-white);
}

/* Card with accent line */
.card-accent {
  border-top: 4px solid var(--color-vibrant-orange);
}

.card-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
}

/* Card Icon */
.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.1) 0%,
    rgba(10, 26, 63, 0.1) 100%
  );
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  color: var(--color-vibrant-orange);
  font-size: var(--text-2xl);
}

.card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
  color: var(--color-deep-blue);
}

.card-text {
  color: var(--color-grey-600);
  margin-bottom: 0;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-4) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar-logo {
  height: 40px;
  width: auto;
}

.navbar-brand-text {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  transition: color var(--duration-normal) var(--ease-out);
}

.navbar.scrolled .navbar-brand-text {
  color: var(--color-deep-blue);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--color-grey-700);
}

.nav-link:hover {
  color: var(--color-vibrant-orange);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-vibrant-orange);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  min-width: 220px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--color-grey-700);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav-dropdown-link:hover {
  background: var(--color-grey-50);
  color: var(--color-vibrant-orange);
}

/* Mobile Menu */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled .navbar-toggle span {
  background: var(--color-deep-blue);
}

/* ===== Footer ===== */
.footer {
  background: var(--gradient-blue-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand-text {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
}

.footer-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-link:hover {
  color: var(--color-vibrant-orange);
  padding-left: var(--space-2);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: all var(--duration-normal) var(--ease-out);
}

.footer-social-link:hover {
  background: var(--color-vibrant-orange);
  transform: translateY(-3px);
  color: var(--color-white);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 122, 0, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-vibrant-orange);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
  letter-spacing: var(--tracking-wide);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.hero-text {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-10);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero Background Elements */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--color-vibrant-orange);
  opacity: 0.1;
  filter: blur(80px);
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 10%;
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.badge-primary {
  background: rgba(255, 122, 0, 0.15);
  color: var(--color-vibrant-orange);
}

.badge-secondary {
  background: rgba(10, 26, 63, 0.1);
  color: var(--color-deep-blue);
}

/* ===== Dividers ===== */
.divider-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.divider-diagonal svg {
  width: 100%;
  height: 100%;
}

.divider-diagonal-top {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
}

/* ===== Grid Layouts ===== */
.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-vibrant-orange);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-base);
  color: var(--color-grey-500);
  font-weight: var(--font-medium);
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  gap: var(--space-2);
  border-bottom: 2px solid var(--color-grey-100);
  margin-bottom: var(--space-8);
}

.tab {
  padding: var(--space-4) var(--space-6);
  font-weight: var(--font-medium);
  color: var(--color-grey-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.tab:hover {
  color: var(--color-deep-blue);
}

.tab.active {
  color: var(--color-vibrant-orange);
  border-bottom-color: var(--color-vibrant-orange);
}

/* ===== Accordion ===== */
.accordion {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--color-grey-100);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: var(--color-white);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.accordion-header:hover {
  background: var(--color-grey-50);
}

.accordion-title {
  font-weight: var(--font-semibold);
  color: var(--color-deep-blue);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: var(--space-6);
  background: var(--color-grey-50);
}

/* ===== Form ===== */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-weight: var(--font-medium);
  color: var(--color-grey-700);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--color-grey-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: all var(--duration-fast) var(--ease-out);
  background: var(--color-white);
}

.form-control:focus {
  border-color: var(--color-vibrant-orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
  outline: none;
}

.form-control-dark {
  background: var(--color-deep-blue-light);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control-dark:focus {
  border-color: var(--color-vibrant-orange);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-deep-blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-8) var(--space-8);
    gap: var(--space-4);
    transition: right var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-2xl);
  }

  .navbar-nav.active {
    right: 0;
  }

  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    width: 100%;
    padding: var(--space-3) 0;
  }

  .navbar-nav .btn {
    width: 100%;
    margin-top: var(--space-4);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    margin-top: var(--space-2);
    width: 100%;
  }

  /* Override desktop hover state */
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
    left: auto;
  }

  .nav-dropdown-link {
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-vibrant-orange);
  }

  .navbar-toggle {
    display: flex;
    z-index: 1001;
  }

  .navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: var(--space-16) 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-vibrant-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: #e66e00;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: rgba(10, 26, 63, 0.95) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  box-shadow: var(--shadow-lg);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand-text {
  color: var(--color-white) !important;
}

.navbar.scrolled .navbar-toggle span {
  background: var(--color-white) !important;
}

/* Invert logo brightness to make it dark if it uses white text */
/* Logo stays white on dark background */
.navbar.scrolled .navbar-logo {
  filter: none;
}
/* App Store Badges */
.footer-apps {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 200px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  text-decoration: none;
  transition: all var(--duration-fast);
}

.app-btn:hover {
  background: var(--color-white);
  color: var(--color-deep-blue);
  transform: translateY(-2px);
  border-color: var(--color-white);
}

.app-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

.app-btn-content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.app-btn-small {
  font-size: 0.7rem;
  opacity: 0.8;
}

.app-btn-large {
  font-size: 0.9rem;
  font-weight: var(--font-bold);
}

.footer-social {
  margin-top: var(--space-6);
  display: flex;
  gap: var(--space-4);
}
/* ============================================
   Animation Styles
   Premium Corporate Website
   ============================================ */

/* ===== Keyframe Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 122, 0, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gpsPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
  }
  100% {
    transform: scale(0.95);
  }
}

/* ===== Reveal Classes ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--duration-slow) var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all var(--duration-slow) var(--ease-out);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--duration-slow) var(--ease-out);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all var(--duration-slow) var(--ease-out);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}

/* Animation utilities */
.animate-float {
  animation: float 3s ease-in-out infinite;
}
.animate-pulse-glow {
  animation: pulseGlow 2s ease-out infinite;
}
.animate-bounce {
  animation: bounce 2s infinite;
}
.animate-rotate {
  animation: rotate 20s linear infinite;
}

/* Hover effects */
.hover-lift {
  transition: transform var(--duration-normal) var(--ease-out);
}
.hover-lift:hover {
  transform: translateY(-5px);
}
.hover-scale {
  transition: transform var(--duration-normal) var(--ease-out);
}
.hover-scale:hover {
  transform: scale(1.05);
}
.hover-glow {
  transition: box-shadow var(--duration-normal) var(--ease-out);
}
.hover-glow:hover {
  box-shadow: var(--shadow-glow-orange);
}

/* Text gradient */
.text-gradient {
  background: var(--gradient-blue-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* GPS elements */
.gps-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-vibrant-orange);
  animation: gpsPulse 2s infinite;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}
.scroll-indicator-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}
.scroll-indicator-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: fadeInDown 1.5s infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
/* ============================================
   Utility Classes
   Premium Corporate Website
   ============================================ */

/* ===== Display ===== */
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-grid {
  display: grid !important;
}

/* ===== Flexbox ===== */
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.align-stretch {
  align-items: stretch;
}
.gap-1 {
  gap: var(--space-1);
}
.gap-2 {
  gap: var(--space-2);
}
.gap-3 {
  gap: var(--space-3);
}
.gap-4 {
  gap: var(--space-4);
}
.gap-6 {
  gap: var(--space-6);
}
.gap-8 {
  gap: var(--space-8);
}

/* ===== Text Alignment ===== */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* ===== Font Weights ===== */
.font-light {
  font-weight: var(--font-light);
}
.font-regular {
  font-weight: var(--font-regular);
}
.font-medium {
  font-weight: var(--font-medium);
}
.font-semibold {
  font-weight: var(--font-semibold);
}
.font-bold {
  font-weight: var(--font-bold);
}

/* ===== Colors ===== */
.text-white {
  color: var(--color-white);
}
.text-blue {
  color: var(--color-deep-blue);
}
.text-orange {
  color: var(--color-vibrant-orange);
}
.text-grey {
  color: var(--color-grey-600);
}
.text-muted {
  color: var(--color-grey-400);
}
.bg-white {
  background-color: var(--color-white);
}
.bg-grey {
  background-color: var(--color-grey-50);
}
.bg-blue {
  background-color: var(--color-deep-blue);
}
.bg-orange {
  background-color: var(--color-vibrant-orange);
}

/* ===== Spacing - Margins ===== */
.m-0 {
  margin: 0;
}
.m-auto {
  margin: auto;
}
.mt-0 {
  margin-top: 0;
}
.mt-4 {
  margin-top: var(--space-4);
}
.mt-6 {
  margin-top: var(--space-6);
}
.mt-8 {
  margin-top: var(--space-8);
}
.mt-12 {
  margin-top: var(--space-12);
}
.mt-16 {
  margin-top: var(--space-16);
}
.mb-0 {
  margin-bottom: 0;
}
.mb-4 {
  margin-bottom: var(--space-4);
}
.mb-6 {
  margin-bottom: var(--space-6);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mb-12 {
  margin-bottom: var(--space-12);
}
.mb-16 {
  margin-bottom: var(--space-16);
}

/* ===== Spacing - Padding ===== */
.p-0 {
  padding: 0;
}
.p-4 {
  padding: var(--space-4);
}
.p-6 {
  padding: var(--space-6);
}
.p-8 {
  padding: var(--space-8);
}
.py-4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.py-12 {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}
.px-4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}
.px-6 {
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

/* ===== Width & Height ===== */
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}

/* ===== Position ===== */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ===== Overflow ===== */
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}

/* ===== Border Radius ===== */
.rounded {
  border-radius: var(--radius-md);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.rounded-full {
  border-radius: var(--radius-full);
}

/* ===== Shadows ===== */
.shadow {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-xl {
  box-shadow: var(--shadow-xl);
}

/* ===== Z-Index ===== */
.z-0 {
  z-index: var(--z-base);
}
.z-10 {
  z-index: var(--z-raised);
}
.z-50 {
  z-index: var(--z-modal);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .md-d-none {
    display: none !important;
  }
  .md-d-block {
    display: block !important;
  }
  .md-text-center {
    text-align: center;
  }
  .md-flex-column {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .sm-d-none {
    display: none !important;
  }
  .sm-d-block {
    display: block !important;
  }
}
/* ============================================
   About Page Styles
   ============================================ */

/* Page Hero */
.page-hero {
  padding: 180px 0 120px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xl);
}

/* About Intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-intro-content .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.about-intro-content h2 {
  margin-bottom: var(--space-6);
}

.about-intro-content .lead {
  color: var(--color-grey-600);
  margin-bottom: var(--space-6);
}

.about-image-stack {
  position: relative;
  height: 450px;
}

.about-image {
  position: absolute;
  border-radius: var(--radius-xl);
}

.about-image-1 {
  width: 70%;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-image-2 {
  width: 60%;
  height: 250px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.about-stats-card {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  padding: var(--space-6) var(--space-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  text-align: center;
  z-index: 3;
}

.about-stats-card .stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-vibrant-orange);
  line-height: 1;
}

.about-stats-card .stat-label {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
  font-weight: var(--font-medium);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-grey-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: var(--space-12);
  position: relative;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + var(--space-10));
  text-align: right;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + var(--space-10));
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--color-vibrant-orange);
  border: 4px solid var(--color-white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.timeline-content {
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
}

.timeline-year {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-2);
}

.timeline-content h4 {
  margin-bottom: var(--space-2);
  color: var(--color-deep-blue);
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--color-grey-600);
}

/* Mission Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.mv-card {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
  transition: all var(--duration-normal) var(--ease-out);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.mv-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.1) 0%,
    rgba(10, 26, 63, 0.05) 100%
  );
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  color: var(--color-vibrant-orange);
}

.mv-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--color-deep-blue);
}

.mv-card p {
  color: var(--color-grey-600);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  color: var(--color-grey-600);
}

.values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-vibrant-orange);
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about-image-stack {
    height: 350px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 80px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }

  .timeline-dot {
    left: 20px;
  }
}
/* ============================================
   Clients Page Styles
   ============================================ */

/* Page Hero - Shared */
.page-hero {
  padding: 180px 0 120px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}
.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xl);
}

/* Client Logo Grid */
.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-6);
}

.client-logo-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-grey-400);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--color-grey-100);
}

.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  background: var(--color-deep-blue);
  color: var(--color-white);
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.case-study-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.case-study-image {
  height: 200px;
}

.case-study-content {
  padding: var(--space-6);
}

.case-study-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-3);
}

.case-study-card h3 {
  font-size: var(--text-xl);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-3);
}

.case-study-card p {
  color: var(--color-grey-600);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.case-study-stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-grey-100);
}

.case-study-stats .stat {
  display: flex;
  flex-direction: column;
}

.case-study-stats .stat strong {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-vibrant-orange);
}

.case-study-stats .stat span {
  font-size: var(--text-xs);
  color: var(--color-grey-500);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 4rem;
  color: var(--color-vibrant-orange);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--color-grey-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-info strong {
  display: block;
  font-size: var(--text-base);
  color: var(--color-deep-blue);
}

.testimonial-info span {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
}

/* Responsive */
@media (max-width: 1024px) {
  .clients-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 80px;
  }
  .clients-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   Contact Page Styles
   ============================================ */

/* Light Navbar override */
.navbar-light .navbar-brand-text {
  color: var(--color-deep-blue);
}
.navbar-light .nav-link {
  color: var(--color-grey-700);
}
.navbar-light .navbar-toggle span {
  background: var(--color-deep-blue);
}

/* Contact Header */
.contact-header {
  padding: 160px 0 80px;
  background: var(--color-white);
}

.contact-header-content {
  max-width: 600px;
}

.contact-header .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.contact-header h1 {
  color: var(--color-deep-blue);
  margin-bottom: var(--space-4);
}

.contact-header .lead {
  color: var(--color-grey-600);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-12);
}

/* Contact Form */
.contact-form-card {
  background: var(--color-deep-blue);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.contact-form-card h3 {
  color: var(--color-white);
  margin-bottom: var(--space-8);
  font-size: var(--text-2xl);
}

.contact-form .form-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus {
  border-color: var(--color-vibrant-orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.2);
}

/* Fix dropdown select styling */
.contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form select.form-control option {
  background-color: #0a1a3f;
  color: #ffffff;
  padding: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-card {
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: all var(--duration-normal) var(--ease-out);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.1) 0%,
    rgba(10, 26, 63, 0.05) 100%
  );
  border-radius: var(--radius-lg);
  color: var(--color-vibrant-orange);
}

.contact-info-card h4 {
  font-size: var(--text-lg);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-2);
}

.contact-info-card p {
  color: var(--color-grey-600);
  margin-bottom: 0;
  line-height: var(--leading-relaxed);
}

.contact-info-card a {
  color: var(--color-grey-600);
}

.contact-info-card a:hover {
  color: var(--color-vibrant-orange);
}

/* Map Section */
.map-section {
  position: relative;
}

.map-wrapper {
  position: relative;
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(100%) contrast(1.1);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 26, 63, 0.1) 0%,
    rgba(10, 26, 63, 0.3) 100%
  );
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-header {
    padding: 120px 0 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: var(--space-8);
  }
}
/* ============================================
   Home Page Styles
   Premium Corporate Website
   ============================================ */

/* ===== Hero Enhancements ===== */
.hero {
  padding-top: 100px;
  position: relative;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 26, 63, 0.8), rgba(10, 26, 63, 0.6)),
    url("../../images/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--color-grey-100);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.1) 0%,
    rgba(10, 26, 63, 0.05) 100%
  );
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  color: var(--color-vibrant-orange);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-icon {
  background: var(--gradient-orange);
  color: var(--color-white);
  transform: scale(1.1);
}

.service-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-3);
}

.service-text {
  color: var(--color-grey-600);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--font-semibold);
  color: var(--color-vibrant-orange);
  transition: gap var(--duration-fast) var(--ease-out);
}

.service-link:hover {
  gap: var(--space-3);
}

/* ===== Advantages Section ===== */
.advantages-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.advantages-content .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.advantages-content h2 {
  margin-bottom: var(--space-6);
}

.advantages-content .lead {
  margin-bottom: var(--space-10);
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.advantage-item {
  display: flex;
  gap: var(--space-4);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-vibrant-orange);
  color: var(--color-white);
  border-radius: var(--radius-lg);
}

.advantage-item h4 {
  font-size: var(--text-lg);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-1);
}

.advantage-item p {
  color: var(--color-grey-600);
  margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
  transition: all var(--duration-normal) var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-card .stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-vibrant-orange);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-card .stat-label {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
  font-weight: var(--font-medium);
}

.diagonal-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(255, 122, 0, 0.05) 50%
  );
  pointer-events: none;
}

/* ===== Clients Slider ===== */
.clients-slider {
  overflow: hidden;
  padding: var(--space-8) 0;
}

.clients-track {
  display: flex;
  gap: var(--space-12);
  animation: slide 30s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  min-width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-grey-100);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-grey-400);
  transition: all var(--duration-normal) var(--ease-out);
}

.client-logo:hover {
  background: var(--color-deep-blue);
  color: var(--color-white);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all var(--duration-normal) var(--ease-out);
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

/* ===== News Section ===== */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-12);
}

.news-header .label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-2);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-8);
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--color-grey-100);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.news-card-featured {
  grid-row: span 2;
}

.news-image {
  height: 200px;
}

.news-card-featured .news-image {
  height: 300px;
}

.news-content {
  padding: var(--space-6);
}

.news-category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-3);
}

.news-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.news-card-featured h3 {
  font-size: var(--text-2xl);
}

.news-card p {
  color: var(--color-grey-600);
  margin-bottom: var(--space-4);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-grey-400);
}

.news-meta a {
  font-weight: var(--font-semibold);
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-12);
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--color-vibrant-orange);
  opacity: 0.1;
  filter: blur(80px);
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: 10%;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .advantages-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-featured {
    grid-row: auto;
  }

  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}
/* ============================================
   News Page Styles
   ============================================ */

/* Page Hero - Shared */
.page-hero {
  padding: 180px 0 120px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}
.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xl);
}

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.featured-image {
  height: 400px;
}

.featured-content {
  padding: var(--space-10);
  padding-left: 0;
}

.featured-content .news-category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  background: rgba(255, 122, 0, 0.1);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.featured-content h2 {
  font-size: var(--text-3xl);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-4);
}

.featured-excerpt {
  color: var(--color-grey-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.featured-meta {
  display: flex;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-grey-400);
  margin-bottom: var(--space-6);
}

/* News Article Grid */
.news-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.news-article-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.news-article-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.news-article-image {
  height: 200px;
}

.news-article-content {
  padding: var(--space-6);
}

.news-article-content .news-category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-3);
}

.news-article-card h3 {
  font-size: var(--text-lg);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.news-article-card p {
  color: var(--color-grey-600);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.news-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}

.news-article-meta span {
  color: var(--color-grey-400);
}

.news-article-meta a {
  font-weight: var(--font-semibold);
  color: var(--color-vibrant-orange);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}

.pagination-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  color: var(--color-grey-600);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.pagination-btn:hover {
  background: var(--color-grey-50);
  color: var(--color-vibrant-orange);
}

.pagination-btn.active {
  background: var(--color-vibrant-orange);
  color: var(--color-white);
}

.pagination-next {
  width: auto;
  padding: 0 var(--space-6);
}

/* Newsletter */
.newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  background: var(--color-deep-blue);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
}

.newsletter-content h3 {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}

.newsletter-form .form-control {
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  border-color: var(--color-vibrant-orange);
}

/* Responsive */
@media (max-width: 1024px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
  .featured-content {
    padding: var(--space-8);
  }
  .news-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    width: 100%;
  }
  .newsletter-form .form-control {
    flex: 1;
    width: auto;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 80px;
  }
  .news-article-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .form-control {
    width: 100%;
  }
}
/* ============================================
   Service Detail Pages Styles
   ============================================ */

/* Service Hero */
.service-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 26, 63, 0.85), rgba(10, 26, 63, 0.7)),
    url("../../images/service-hero.png") center/cover no-repeat;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.service-hero .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.service-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.service-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
}

/* GPS Animation for Fleet Hero */
.gps-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.gps-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-vibrant-orange),
    transparent
  );
  opacity: 0.4;
}

.gps-line-1 {
  width: 300px;
  top: 30%;
  left: 60%;
  animation: gpsSweep 4s ease-in-out infinite;
}
.gps-line-2 {
  width: 200px;
  top: 50%;
  left: 70%;
  animation: gpsSweep 5s ease-in-out infinite 1s;
}
.gps-line-3 {
  width: 250px;
  top: 70%;
  left: 55%;
  animation: gpsSweep 4.5s ease-in-out infinite 0.5s;
}

@keyframes gpsSweep {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-100px);
  }
  50% {
    opacity: 0.6;
    transform: translateX(0);
  }
}

.gps-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-vibrant-orange);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
  animation: gpsPulse 2s ease-out infinite;
}

.gps-dot-1 {
  top: 35%;
  right: 25%;
  animation-delay: 0s;
}
.gps-dot-2 {
  top: 55%;
  right: 15%;
  animation-delay: 0.5s;
}
.gps-dot-3 {
  top: 45%;
  right: 35%;
  animation-delay: 1s;
}

@keyframes gpsPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.1) 0%,
    rgba(10, 26, 63, 0.05) 100%
  );
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  color: var(--color-vibrant-orange);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-orange);
  color: var(--color-white);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: var(--text-xl);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-4);
}

.feature-card > p {
  color: var(--color-grey-600);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  color: var(--color-grey-600);
  font-size: var(--text-sm);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-vibrant-orange);
  font-weight: bold;
}

/* Process Steps */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-4);
}

.process-step {
  flex: 1;
  text-align: center;
  max-width: 250px;
}

.process-number {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  color: var(--color-vibrant-orange);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.process-step h4 {
  font-size: var(--text-xl);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-3);
}

.process-step p {
  color: var(--color-grey-600);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-vibrant-orange),
    var(--color-grey-200)
  );
  margin-top: 40px;
  flex-shrink: 0;
}

/* Floating Cards for Safety */
.floating-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.floating-card {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
}

.floating-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.floating-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-orange);
  border-radius: var(--radius-2xl);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.floating-card:hover::before {
  opacity: 1;
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.equipment-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.equipment-image {
  height: 250px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-image svg {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.5);
}

.equipment-content {
  padding: var(--space-6);
}

.equipment-content h3 {
  font-size: var(--text-xl);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-2);
}

.equipment-content p {
  color: var(--color-grey-600);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

/* Specs Accordion */
.specs-accordion {
  border: 2px solid var(--color-grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.specs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: var(--color-grey-50);
  cursor: pointer;
  font-weight: var(--font-semibold);
  color: var(--color-vibrant-orange);
  font-size: var(--text-sm);
  transition: background var(--duration-fast) var(--ease-out);
}

.specs-header:hover {
  background: var(--color-vibrant-orange);
  color: var(--color-white);
}

.specs-content {
  padding: var(--space-4);
  background: var(--color-white);
  display: none;
}

.specs-content.active {
  display: block;
}

.specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.specs-list dt {
  font-weight: var(--font-medium);
  color: var(--color-grey-500);
  font-size: var(--text-xs);
}

.specs-list dd {
  font-weight: var(--font-semibold);
  color: var(--color-deep-blue);
  font-size: var(--text-sm);
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.tool-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.tool-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.1) 0%,
    rgba(10, 26, 63, 0.05) 100%
  );
  border-radius: var(--radius-full);
  color: var(--color-vibrant-orange);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .floating-cards {
    grid-template-columns: 1fr;
  }
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    flex-wrap: wrap;
  }
  .process-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .equipment-grid {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .gps-animation {
    display: none;
  }
}
/* ============================================
   Services Page Styles
   ============================================ */

/* Page Hero - Shared */
.page-hero {
  padding: 180px 0 120px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}
.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xl);
}

/* Services Mega Grid */
.services-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.service-mega-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-mega-card:hover {
  transform: translateY(-10px);
}

.service-mega-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-mega-card:hover .service-mega-bg {
  transform: scale(1.05);
}

.service-mega-content {
  position: relative;
  z-index: 2;
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
}

.service-mega-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-mega-card:hover .service-mega-icon {
  background: var(--color-white);
  color: var(--color-vibrant-orange);
}

.service-mega-content h3 {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.service-mega-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.service-features li {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  padding-left: var(--space-5);
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-vibrant-orange);
  font-weight: bold;
}

.service-link-text {
  font-weight: var(--font-semibold);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--duration-fast) var(--ease-out);
}

.service-mega-card:hover .service-link-text {
  gap: var(--space-4);
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.advantage-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.advantage-number {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-vibrant-orange);
  opacity: 0.3;
  margin-bottom: var(--space-4);
}

.advantage-card h4 {
  font-size: var(--text-lg);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-3);
}

.advantage-card p {
  color: var(--color-grey-600);
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-mega-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 80px;
  }
  .service-mega-card {
    min-height: 400px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}
