/* ==========================================================================
   SMAP Auto Parts - Premium Aesthetics Stylesheet
   Color Theme: High-Contrast Royal Blue, Midnight Black, Slate & Cyan
   Font Families: 'Outfit' (Headings) & 'Inter' (Body)
   ========================================================================== */

/* 1. Design Tokens & CSS Variables */
:root {
  /* Colors */
  --primary-blue: #006cb7;
  --primary-gradient: linear-gradient(135deg, #0052a3 0%, #007fff 100%);
  --accent-cyan: #00d2ff;
  --accent-cyan-glow: rgba(0, 210, 255, 0.4);
  --neutral-gray: #64748b;
  --neutral-light: #f8fafc;
  --neutral-white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Backgrounds */
  --bg-page: #fafcff;
  --bg-dark-midnight: #0b0f19;
  --bg-dark-slate: #1e293b;
  --bg-glass-dark: rgba(15, 23, 42, 0.8);
  --bg-glass-light: rgba(255, 255, 255, 0.7);
  
  /* Borders & Shadows */
  --border-light: rgba(0, 108, 183, 0.08);
  --border-glass: rgba(255, 255, 255, 0.08);
  --shadow-premium: 0 10px 30px -10px rgba(0, 108, 183, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-premium-hover: 0 20px 40px -15px rgba(0, 108, 183, 0.16), 0 0 0 1px var(--primary-blue);
  --shadow-inset-glow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  /* Transitions */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-normal: 0.3s;
}

/* 2. Global Resets & Custom Scrollbars */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none !important;
  transition: color var(--duration-normal) var(--transition-smooth);
}

a:hover, a:focus, a:active {
  text-decoration: none !important;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
  border: 2px solid var(--bg-page);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}

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

/* Section Spacing */
.section {
  padding: 5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

/* 3. Button Design */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration-normal) var(--transition-smooth);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 108, 183, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 108, 183, 0.45);
}

.btn-secondary {
  background-color: var(--bg-dark-slate);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.2);
}

.btn-secondary:hover {
  background-color: #0f172a;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: rgba(0, 108, 183, 0.05);
  transform: translateY(-2px);
}

.btn-white {
  background-color: white;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

/* 4. Sticky Header with Frosted Glass */
.header-top {
  background-color: var(--bg-dark-midnight);
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-top-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-top-info a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-top-info a:hover {
  color: var(--accent-cyan);
}

.main-header {
  background-color: var(--bg-glass-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--duration-normal);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-container img {
  height: 52px;
  width: auto;
  transition: transform var(--duration-normal);
}

.logo-container:hover img {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #334155;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: all var(--duration-normal) var(--transition-smooth);
  transform: translateX(-50%);
}

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

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

.nav-link.active {
  color: var(--primary-blue);
}

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

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0f172a;
  border-radius: 9999px;
  transition: all var(--duration-normal) var(--transition-smooth);
}

/* Premium Backdrop Overlay for Mobile Navigation Drawer */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--transition-smooth);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Scroll lock when mobile menu is active */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 7.5rem 2.5rem 3rem 2.5rem;
    gap: 1.75rem;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--duration-normal) var(--transition-smooth), visibility var(--duration-normal) var(--transition-smooth);
    z-index: 99;
    overflow-y: auto; /* Allow scroll in case menu items overflow vertically */
  }
  
  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
  }
  
  .nav-menu .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 0;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
    transition: all var(--duration-normal);
  }
  
  .nav-menu .nav-link::after {
    display: none;
  }
  
  .nav-menu .nav-link.active {
    color: var(--primary-blue);
    font-weight: 700;
    border-bottom-color: rgba(0, 108, 183, 0.2);
    padding-left: 8px;
  }
  
  .nav-menu .btn {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 1rem;
    padding: 0.9rem 1.5rem !important;
    font-size: 1rem !important;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 108, 183, 0.2);
  }
  
  .hamburger.active {
    position: relative;
  }
  
  .hamburger.active span {
    position: absolute;
    top: 8px;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

/* 5. Stunning Hero Section with Grid & Glow */
.hero {
  /* Digital Grid Pattern + Dynamic Radial Glow + Base Gradient (bottom layer) */
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(0, 108, 183, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(0, 210, 255, 0.05) 0%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(135deg, #090d16 0%, #121c2e 100%);
  background-size: 100% 100%, 100% 100%, 45px 45px, 45px 45px, 100% 100%;
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-page), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  background: rgba(0, 108, 183, 0.2);
  border: 1px solid rgba(0, 108, 183, 0.4);
  color: var(--accent-cyan);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 5rem 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
}

/* 15. Premium Page Title Section (Light Version) */
.page-title-section {
  background: linear-gradient(135deg, #f8fafc 0%, #fafcff 100%);
  padding: 3.5rem 0 2.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.page-title-section h1 {
  font-size: 2.75rem;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-subtitle-badge {
  color: var(--primary-blue);
  background-color: rgba(0, 108, 183, 0.06);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
}

.page-title-section .breadcrumbs {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.page-title-section .breadcrumbs a {
  color: #64748b;
  transition: color var(--duration-normal);
}

.page-title-section .breadcrumbs a:hover {
  color: var(--primary-blue);
}

.page-title-section .breadcrumbs span.active {
  color: var(--primary-blue);
  font-weight: 600;
}

/* 6. B2B Focus Audience Cards (Aesthetic upgrade) */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.audience-card {
  background: white;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary-blue);
  border-radius: 1rem;
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow-premium);
  transition: all var(--duration-normal) var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .audience-card {
    padding: 2rem 1.5rem;
  }
}

.audience-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.audience-card:hover::after {
  opacity: 1;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(0, 108, 183, 0.18);
  border-color: rgba(0, 108, 183, 0.2);
}

.audience-icon {
  background: linear-gradient(135deg, rgba(0, 108, 183, 0.08) 0%, rgba(0, 210, 255, 0.12) 100%);
  color: var(--primary-blue);
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all var(--duration-normal) var(--transition-smooth);
}

.audience-card:hover .audience-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-gradient);
}

.audience-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.audience-card p {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.audience-features {
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
  margin-top: auto;
  list-style: none;
}

.audience-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  color: #475569;
  transition: color var(--duration-normal);
}

.audience-card:hover .audience-features li {
  color: #1e293b;
}

.audience-features li::before {
  content: "✓";
  color: white;
  background-color: var(--primary-blue);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all var(--duration-normal) var(--transition-smooth);
}

.audience-card:hover .audience-features li::before {
  transform: scale(1.1);
  background-color: var(--accent-cyan);
}

/* 7. Stats Counter Panel (Modern Overlay) */
.stats-section {
  background-color: #f8fafc;
  color: #475569;
  padding: 5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 2.25rem 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-premium);
  transition: transform var(--duration-normal) var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(0, 108, 183, 0.12);
  border-color: rgba(0, 108, 183, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* 8. Brand bulletin ticker (Aesthetic upgrade) */
.brand-ticker-section {
  background-color: #f8fafc;
  padding: 3.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.brand-ticker-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #64748b;
  margin-bottom: 2.5rem;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
  gap: 2rem;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  width: 150px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 0.5rem;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  border: 1px solid #e2e8f0;
  transition: all var(--duration-normal) var(--transition-smooth);
}

.ticker-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all var(--duration-normal) var(--transition-smooth);
}

.ticker-item:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 108, 183, 0.08);
  border-color: rgba(0, 108, 183, 0.2);
}

.ticker-item:hover img {
  transform: scale(1.03);
}

/* 9. Product Category Tiles & Filtering (Premium Cards) */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.filter-btn {
  background-color: white;
  border: 1px solid #cbd5e1;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
  transition: all var(--duration-normal) var(--transition-smooth);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.filter-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.filter-btn.active {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 108, 183, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.product-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  transition: all var(--duration-normal) var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(0, 108, 183, 0.12);
  border-color: rgba(0, 108, 183, 0.2);
}

.product-image {
  background-color: #f1f5f9;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform var(--duration-normal) var(--transition-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-blue);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.product-info p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-actions {
  margin-top: auto;
}

.product-actions .btn {
  width: 100%;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
}

/* 10. Operations & Workflows */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  background-color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary-blue);
  box-shadow: var(--shadow-premium);
  transition: transform var(--duration-normal);
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .value-item {
    padding: 1.5rem;
  }
}

.value-item:hover {
  transform: translateX(4px);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  opacity: 0.6;
}

.value-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-content p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Workflow Steps */
.workflow-section {
  background-color: #f8fafc;
}

.workflow-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
}

.workflow-step {
  flex: 1 1 0px;
  min-width: 0;
  text-align: center;
  position: relative;
}

@media (max-width: 992px) {
  .workflow-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
  }
  .workflow-step {
    flex: 1 1 200px;
    max-width: 240px;
  }
}

.step-number {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--bg-dark-slate);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 auto 1.5rem auto;
  border: 3px solid var(--primary-blue);
  box-shadow: 0 4px 10px rgba(0, 108, 183, 0.2);
}

.workflow-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.workflow-step p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* 11. Contact Info & Glassmorphic Form Card */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
}

.contact-info-icon {
  background: linear-gradient(135deg, rgba(0, 108, 183, 0.08) 0%, rgba(0, 210, 255, 0.12) 100%);
  color: var(--primary-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 108, 183, 0.05);
}

.contact-info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.contact-info-text p,
.contact-info-text a {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form-container {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 576px) {
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 0.5rem;
  background-color: #f8fafc;
  outline: none;
  font-size: 0.95rem;
  transition: all var(--duration-normal) var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-blue);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(0, 108, 183, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.map-container {
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
}

/* 12. Awards Grid (Premium Centered Grid Layout) */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.award-card {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: all var(--duration-normal) var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(0, 108, 183, 0.18);
  border-color: rgba(0, 108, 183, 0.2);
}

.award-icon-container {
  color: var(--primary-blue);
  background: linear-gradient(135deg, rgba(0, 108, 183, 0.08) 0%, rgba(0, 210, 255, 0.12) 100%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all var(--duration-normal) var(--transition-smooth);
}

.award-card:hover .award-icon-container {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-gradient);
  color: white;
}

.award-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
}

.award-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .award-card {
    padding: 2rem 1.5rem;
  }
}

/* 13. Deep Premium Footer */
.main-footer {
  background-color: var(--primary-blue);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-top: auto;
}

.footer-top-area {
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  
  .footer-widget:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  
  .footer-widget:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  .footer-widget:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  
  .footer-widget:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }
}

.footer-widget h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #ffb700;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: transform var(--duration-normal);
}

.footer-logo:hover {
  transform: scale(1.02);
}

.footer-widget p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links li {
  margin-bottom: 0.75rem;
  list-style-type: none !important;
}

.footer-links a {
  color: white;
  display: inline-block;
  transition: all var(--duration-normal);
}

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

.footer-contact {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
}

.footer-contact a {
  color: white;
  transition: color var(--duration-normal);
}

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

.footer-bottom-area {
  background-color: #005691;
  padding: 1.75rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Category & Brand Ticker special links */
.footer-highlight-link {
  color: #ffb700 !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  transition: transform var(--duration-normal) var(--transition-smooth);
}

.footer-highlight-link:hover {
  color: white !important;
  transform: translateX(4px);
}

/* 14. Aesthetic Image Containers */
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-image-container {
  display: block;
  position: relative;
  max-width: 440px;
  width: 100%;
  justify-self: end;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 50px rgba(0, 108, 183, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--duration-normal) var(--transition-smooth);
}

.hero-image-container:hover img {
  transform: scale(1.02);
}

.about-image-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.about-image-container img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
  transition: transform var(--duration-normal) var(--transition-smooth);
}

.about-image-container:hover img {
  transform: scale(1.01);
}

.about-quote-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-dark-slate);
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
  max-width: 290px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border-left: 4px solid var(--primary-blue);
  box-shadow: var(--shadow-inset-glow);
}

@media (max-width: 992px) {
  .hero-image-container {
    display: none;
  }
  .about-quote-card {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: 100%;
    margin-top: 1.5rem;
  }
}

/* 16. Responsive Layout Helper Classes (Replacing inline grids) */
.home-what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-history-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 992px) {
  .home-what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-history-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* 17. Why Partner With Us Section Styles */
.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.partner-card {
  background: white;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary-blue);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-premium);
  transition: all var(--duration-normal) var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.partner-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.partner-card:hover::after {
  opacity: 1;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(0, 108, 183, 0.18);
  border-color: rgba(0, 108, 183, 0.2);
}

.partner-icon {
  background: linear-gradient(135deg, rgba(0, 108, 183, 0.08) 0%, rgba(0, 210, 255, 0.12) 100%);
  color: var(--primary-blue);
  width: 55px;
  height: 55px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all var(--duration-normal) var(--transition-smooth);
}

.partner-card:hover .partner-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-gradient);
}

.partner-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
}

.partner-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-partner-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .partner-card {
    padding: 2rem 1.5rem;
  }
}
