/* ==========================================================================
   ABCC Oilfield & Industrial Operations - Design System & Custom Stylesheet
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Color Palette */
  --primary: #0A2C7D;          /* Deep Navy Blue */
  --primary-rgb: 10, 44, 125;
  --secondary: #FF6B00;        /* Industrial Orange */
  --secondary-hover: #E05E00;
  --dark: #081A3A;             /* Dark Navy / Charcoal */
  --dark-rgb: 8, 26, 58;
  --light: #FFFFFF;            /* Pure White */
  --gray: #F8FAFC;             /* Section Background Light Gray */
  --border-color: #E2E8F0;     /* Light Border Gray */
  
  /* Text Colors */
  --text-primary: #0F172A;     /* Dark Slate */
  --text-secondary: #475569;   /* Muted Slate */
  --text-light: #F8FAFC;       /* Off-white */
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 25px -5px rgba(10, 44, 125, 0.08), 0 10px 10px -5px rgba(10, 44, 125, 0.03);
  --shadow-nav: 0 4px 30px -5px rgba(8, 26, 58, 0.06);

  /* Border Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-width: 1400px;
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bg-gray {
  background-color: var(--gray);
}

.bg-dark {
  background-color: var(--dark);
  color: var(--light);
}

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

.text-orange {
  color: var(--secondary) !important;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
}

.bg-dark .section-title {
  color: var(--light);
}

/* Common Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  text-align: center;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--light);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 44, 125, 0.15);
}

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

.btn-secondary-white:hover {
  background-color: var(--light);
  color: var(--dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Top Utility Bar */
.utility-bar {
  background-color: var(--dark);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.utility-left {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.utility-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.utility-item svg {
  color: var(--secondary);
  width: 14px;
  height: 14px;
}

/* Main Navigation */
.main-header {
  background-color: var(--light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 85px;
  border-bottom: 1px solid var(--border-color);
}

.main-header.is-sticky {
  height: 75px;
  box-shadow: var(--shadow-nav);
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo a {
  display: flex;
  align-items: center;
}

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

.main-header.is-sticky .logo img {
  height: 44px;
}

/* Desktop Navigation Menu */
.nav-links {
  display: flex;
  gap: 1.8rem;
  height: 100%;
  align-items: center;
}

.nav-item {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 1.5rem 0;
  cursor: pointer;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

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

.nav-item svg.chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-item:hover svg.chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--light);
  min-width: 230px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
  border-top: 3px solid var(--secondary);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent var(--secondary) transparent;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.dropdown-menu li a:hover {
  background-color: var(--gray);
  color: var(--secondary);
}

/* Right Nav Controls */
.nav-right-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}



/* Mobile Toggle Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section (Full-Width Background Banner)
   ========================================================================== */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0;
  min-height: calc(80vh - 85px);
  display: flex;
  align-items: center;
}

/* Hero Dark Navy Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 26, 58, 0.95) 0%, rgba(10, 44, 125, 0.75) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  color: var(--light);
  width: 100%;
}

.hero-content {
  max-width: 850px;
  color: var(--light);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.hero p.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 720px;
}

/* Hero Trust Grid */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.hero-trust-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0.9rem;
  border-radius: var(--radius-md);
  color: var(--light);
  transition: all var(--transition-normal);
}

.hero-trust-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.hero-trust-text h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--light);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1.2rem;
}

/* ==========================================================================
   Brands Section
   ========================================================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.brand-card {
  background-color: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 44, 125, 0.25);
}

.brand-card img {
  max-width: 90%;
  max-height: 60%;
  object-fit: contain;
}

.brand-card svg {
  width: 100%;
  height: 100%;
  max-width: 90%;
  max-height: 60%;
}

.brands-actions {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Product Categories
   ========================================================================== */
/* ==========================================================================
   Product Categories
   ========================================================================== */
.categories-section {
  position: relative;
  background-color: #FAFCFF; /* Extremely light blue-gray background for premium feel */
  background-image: 
    radial-gradient(#CBD5E1 1.5px, transparent 1.5px), 
    radial-gradient(#CBD5E1 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 2% 40px, 98% 40px;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .categories-section {
    background-image: none; /* Hide background pattern on tablet/mobile */
  }
}

.categories-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.categories-subtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.categories-subtitle::before,
.categories-subtitle::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: var(--secondary);
}

.categories-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

.categories-divider-line {
  width: 65px;
  height: 3.5px;
  background-color: var(--secondary);
  margin: 1.2rem auto;
  border-radius: var(--radius-full);
}

.categories-desc-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 1.8rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

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

.category-card {
  position: relative;
  background: var(--light);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 3rem 1.8rem 2.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(8, 26, 58, 0.02);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: 0 12px 28px rgba(10, 44, 125, 0.08);
}

.category-icon-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: all var(--transition-normal);
}

.category-card:hover .category-icon-circle {
  background-color: #E2E8F0;
  transform: scale(1.05);
}

.category-icon-circle .cat-svg {
  width: 48px;
  height: 48px;
  display: block;
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
  transition: color var(--transition-fast);
}

.category-card:hover .category-card-title {
  color: var(--secondary);
}

.category-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 90%;
}

.category-card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--primary);
  opacity: 0.85;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}

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

.category-card:hover .category-card-arrow svg {
  stroke: var(--secondary);
}

.categories-actions-custom {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-navy-custom {
  background-color: var(--dark);
  color: var(--light);
  border-radius: 6px;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all var(--transition-normal);
}

.btn-navy-custom:hover {
  background-color: #0c245c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 44, 125, 0.2);
  color: var(--light);
}

.btn-navy-custom .btn-chevron {
  width: 14px;
  height: 14px;
  stroke: var(--secondary);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   Featured & New Products Carousel
   ========================================================================== */
.carousel-outer-wrapper {
  position: relative;
  padding: 0 3.5rem;
}

.product-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.product-carousel-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1.5rem 0.5rem;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.product-carousel-track::-webkit-scrollbar {
  display: none;
}
.product-carousel-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Product Card */
.product-card {
  flex: 0 0 calc((100% - (3 * 1.8rem)) / 4); /* 4 cards per row desktop */
  scroll-snap-align: start;
  background-color: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 44, 125, 0.2);
}

.product-image-container {
  position: relative;
  aspect-ratio: 16/12;
  background-color: var(--light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3rem;
}

.product-card .btn {
  margin-top: auto;
  font-size: 0.85rem;
  padding: 0.7rem 1.2rem;
}

/* Slider Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--light);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 10;
  transition: all var(--transition-normal);
}

.carousel-btn:hover {
  background-color: var(--primary);
  color: var(--light);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

/* New Products 3-Column Grid */
.new-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.new-products-grid .product-card {
  flex: none;
  width: 100%;
}

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

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

/* ==========================================================================
   Industries We Serve
   ========================================================================== */
#industries {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.industry-card {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 26, 58, 0.9) 0%, rgba(8, 26, 58, 0.3) 70%, rgba(8, 26, 58, 0.05) 100%);
  z-index: 1;
  transition: all var(--transition-normal);
}

.industry-card:hover .industry-bg {
  transform: scale(1.06);
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, rgba(255, 107, 0, 0.85) 0%, rgba(10, 44, 125, 0.4) 100%);
}

.industry-text {
  position: relative;
  z-index: 2;
  padding: 1rem 0.8rem;
  width: 100%;
  text-align: center;
}

.industry-text h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1.25;
}

/* ==========================================================================
   Why Choose & Services Panel
   ========================================================================== */
.value-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

.why-choose-col {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.services-col {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.why-choose-col h2, .services-col h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4rem;
  position: relative;
}

.why-choose-col h2::after, .services-col h2::after {
  content: '';
  position: absolute;
  bottom: -0.7rem;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
}

/* Grid of KPIs */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.8rem;
}

.kpi-card {
  display: flex;
  flex-direction: column;
}

.kpi-icon {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.kpi-icon svg {
  width: 32px;
  height: 32px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.kpi-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.4;
}

/* Grid of Services */
.services-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 1.8rem;
}

.services-panel-card {
  display: flex;
  flex-direction: column;
}

.services-panel-card:nth-child(5) {
  grid-column: span 2;
  max-width: 60%;
}

.service-icon {
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   CTA Section (Background Photo with Dark Overlay)
   ========================================================================== */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 26, 58, 0.95) 0%, rgba(10, 44, 125, 0.8) 100%);
  z-index: 1;
}

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

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-grow: 1;
}

.cta-logo {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  box-shadow: var(--shadow-lg);
}

.cta-logo img {
  max-width: 100%;
  height: auto;
}

.cta-text-content {
  max-width: 750px;
  color: var(--light);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Footer (Corporate Layout)
   ========================================================================== */
.footer {
  background-color: var(--dark);
  color: var(--text-light);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr; /* 6 columns */
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

/* Column 1 - Company Info */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo img {
  height: 52px;
  background-color: var(--light);
  padding: 5px;
  border-radius: var(--radius-sm);
}

.footer-info-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: rgba(255, 255, 255, 0.7);
}

.social-icon:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--light);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* Links Columns */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

/* Contact Column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--secondary);
  margin-top: 3px;
}

.footer-contact-details span {
  display: block;
  line-height: 1.4;
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Laptop Viewport (1440px) */
@media (max-width: 1440px) {
  :root {
    --container-width: 1200px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .product-card {
    flex: 0 0 calc((100% - (2 * 1.8rem)) / 3); /* 3 cards per row on laptop */
  }
}

/* Tablet Landscape/Desktop Small (1200px) */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }

  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 2.75rem;
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .value-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-choose-col {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  .services-col {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  .footer-col:last-child {
    grid-column: span 2;
  }
}

/* Tablet Viewport (1024px) */
@media (max-width: 1024px) {
  :root {
    --container-width: 720px;
  }
  
  .utility-bar {
    display: none; /* Hide top bar on mobile/tablet */
  }

  /* Hamburger Navigation Menu */
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background-color: var(--light);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0;
    overflow-y: auto;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-item > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .nav-item:hover svg.chevron {
    transform: rotate(90deg);
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--secondary);
    width: 100%;
    padding: 0.5rem 0 0 1rem;
    margin-top: 0.5rem;
    display: none;
  }

  .nav-item:hover .dropdown-menu {
    display: block;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-right-controls {
    gap: 0.8rem;
  }



  .btn-request-quote {
    display: none; /* Hide Quote button on header, show inside menu or keep clean */
  }

  .product-card {
    flex: 0 0 calc((100% - 1.8rem) / 2); /* 2 cards */
  }

  .cta-flex {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-left {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */

/* About Hero */
.about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 6rem;
  color: var(--light);
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 26, 58, 0.85) 0%, rgba(8, 26, 58, 0.95) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.about-hero p {
  font-size: 1.2rem;
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.6;
}

/* Who We Are Grid */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-we-are-text {
  text-align: left;
}

.who-we-are-text h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
}

.who-we-are-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
  margin-top: 0.5rem;
}

.who-we-are-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.who-we-are-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.who-we-are-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.who-we-are-image:hover img {
  transform: scale(1.05);
}

/* Product Portfolio Showcase */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.portfolio-card {
  background-color: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 44, 125, 0.15);
}

.portfolio-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(10, 44, 125, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-normal);
}

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

.portfolio-icon-wrapper svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
  fill: none;
  transition: all var(--transition-normal);
}

.portfolio-card:hover .portfolio-icon-wrapper svg {
  stroke: var(--light);
  transform: scale(1.1);
}

.portfolio-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
}

/* Industries Served - About Us */
.about-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-industry-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  text-align: left;
}

.about-industry-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.about-industry-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.about-industry-card:hover .about-industry-icon {
  background-color: var(--secondary);
}

.about-industry-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--secondary);
  fill: none;
  transition: all var(--transition-normal);
}

.about-industry-card:hover .about-industry-icon svg {
  stroke: var(--light);
}

.about-industry-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 1rem;
}

.about-industry-card p {
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.7);
  line-height: 1.6;
}

/* Why Choose - About Page */
.why-choose-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  background-color: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 44, 125, 0.15);
}

.why-icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 0, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--secondary);
  fill: none;
}

.why-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.why-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mission, Vision & Commitment */
.mission-vision-section {
  background-color: var(--gray);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}

.mv-card {
  background-color: var(--light);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mv-card.special-card {
  border-top: 4px solid var(--secondary);
}

.mv-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(10, 44, 125, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.mv-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
}

.mv-card.special-card .mv-icon-wrapper {
  background-color: rgba(255, 107, 0, 0.08);
}

.mv-card.special-card .mv-icon-wrapper svg {
  stroke: var(--secondary);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.mv-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Partner CTA Section */
.partner-cta {
  background-color: var(--dark);
  color: var(--light);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partner-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.partner-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.partner-cta p {
  font-size: 1.15rem;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.partner-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.partner-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Active Nav State */
.nav-item.active > a {
  color: var(--secondary);
  font-weight: 600;
}

/* ==========================================================================
   Contact Us Page Styles
   ========================================================================== */

/* Contact Hero */
.contact-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 6rem;
  color: var(--light);
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 26, 58, 0.85) 0%, rgba(8, 26, 58, 0.95) 100%);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.6;
}

/* Contact Grid Layout */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.contact-info-headline h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info-headline p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 0, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--secondary);
  fill: none;
}

.contact-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card-content p, 
.contact-card-content a {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-card-content a:hover {
  color: var(--secondary);
}

/* Contact Form Column */
.contact-form-card {
  background-color: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Form Controls styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control::placeholder {
  color: #94A3B8;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  outline: none;
}

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

.form-submit-btn {
  margin-top: 1rem;
  width: 100%;
}

/* Mobile Viewport (768px) Overrides */
@media (max-width: 768px) {
  :root {
    --container-width: 100%;
  }
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .section-padding {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .hero {
    padding: 4rem 0;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero p.hero-desc {
    margin-bottom: 2rem;
  }
  .hero-trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel-outer-wrapper {
    padding: 0;
  }
  .carousel-btn {
    display: none;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-panel-grid {
    grid-template-columns: 1fr;
  }
  .services-panel-card:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-col:last-child {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* About Us Responsive Overrides */
  .about-hero h1 {
    font-size: 2.25rem;
  }
  .about-hero p {
    font-size: 1.05rem;
  }
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-choose-about-grid {
    grid-template-columns: 1fr;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .partner-cta h2 {
    font-size: 2rem;
  }
  .partner-cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .partner-cta-actions .btn {
    width: 100%;
  }

  /* Contact Page Responsive Overrides */
  .contact-hero h1 {
    font-size: 2.25rem;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form-card {
    padding: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Small Mobile Viewport (375px) Overrides */
@media (max-width: 375px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    flex: 0 0 100%;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}
