/* ==========================================================================
   EFRAZ TRADING CORPORATE STYLE SHEET (MULTI-PAGE EXPANSION)
   ========================================================================== */

/* 1. Design System & CSS Variables */
:root {
  /* Colors */
  --primary: #10b981;        /* Fresh Emerald Green */
  --primary-hover: #059669;
  --secondary: #f97316;      /* Vibrant Warm Orange */
  --secondary-hover: #ea580c;
  
  --dark-slate: #0f172a;     /* Corporate Deep Blue */
  --dark-navy: #1e293b;      /* Slate Card Backgrounds */
  --light-bg: #f8fafc;       /* Clean Light Gray */
  --light-card: #ffffff;     /* White Card Backgrounds */
  
  --text-dark: #0f172a;      /* Slate for text on light */
  --text-muted: #64748b;     /* Gray for secondary text */
  --text-light: #f1f5f9;     /* Light gray for dark backgrounds */
  
  --emerald-glow: rgba(16, 185, 129, 0.15);
  --orange-glow: rgba(249, 115, 22, 0.15);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  
  /* Fonts */
  --font-headings: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1); /* Slower for smooth slide */
  
  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* 2. Global Resets & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 3. Button Typography & Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--emerald-glow);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--orange-glow);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--dark-slate);
  transform: translateY(-2px);
}

.btn-card {
  width: 100%;
  padding: 10px 18px;
  font-size: 0.9rem;
  background-color: var(--light-bg);
  color: var(--dark-slate);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}

.btn-card:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* 4. Common Layout Modules & Sections */
section {
  padding: 100px 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  background-color: var(--emerald-glow);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-slate);
  margin-bottom: 20px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* 5. Header / Navigation styling */
.announcement-bar {
  background-color: var(--dark-slate);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--dark-navy);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.announcement-tag {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
}

.main-header {
  position: fixed;
  top: 37px; /* Matches Announcement bar height */
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 16px 0;
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  top: 0;
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--dark-slate);
}

.brand-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--primary);
  line-height: 1.2;
}

.main-header.scrolled .brand-name {
  color: var(--dark-slate);
}

.nav-menu ul {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
}

.main-header.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.main-header.scrolled .mobile-menu-toggle .bar {
  background-color: var(--dark-slate);
}

/* 6. Smooth Transition Home Slider */
.hero-section {
  padding: 0;
  height: 100vh;
  min-height: 650px;
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Flexbox horizontal track */
.slider-track {
  display: flex;
  width: 300%; /* 3 slides */
  height: 100%;
  transition: transform var(--transition-slow);
}

.slide {
  width: 33.3333%; /* 100% of viewport width */
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.slide-content {
  max-width: 680px;
  padding: 0 40px;
  margin-left: 10%;
  color: #ffffff;
  transform: translateY(30px);
  opacity: 0.8;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Trigger content entry details when parent container is selected */
.slider-track.active-0 .slide:nth-child(1) .slide-content,
.slider-track.active-1 .slide:nth-child(2) .slide-content,
.slider-track.active-2 .slide:nth-child(3) .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-badge {
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-headings);
}

.highlight-text {
  color: var(--primary);
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--text-light);
  opacity: 0.9;
}

.slide-actions {
  display: flex;
  gap: 16px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-dots .dot.active {
  width: 32px;
  border-radius: 50px;
  background-color: var(--primary);
}

/* 7. Secondary Page Banners */
.page-banner {
  padding: 140px 0 80px 0;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  text-align: center;
}

.banner-title {
  font-size: 3rem;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 12px;
  font-family: var(--font-headings);
}

.banner-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* 8. Value Bar (Homepage) */
.value-bar {
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 20;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background-color: var(--light-card);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 20px;
  border-bottom: 4px solid transparent;
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.value-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.value-info h3 {
  font-size: 1.2rem;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.value-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 9. Stats Counters */
.stats-section {
  background-color: var(--dark-slate);
  color: #ffffff;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number-wrapper {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-headings);
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-suffix {
  color: var(--secondary);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 10. About Sections Layout */
.about-section {
  background-color: var(--light-card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #cbd5e1 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.experience-badge-graphic {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--dark-slate);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.experience-badge-graphic .exp-num {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-headings);
  color: var(--secondary);
  line-height: 1;
}

.experience-badge-graphic .exp-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.graphic-globe-connection {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-globe-connection::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  animation: rotateGlobe 40s linear infinite;
}

.hub {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 4;
}

.hub.uae {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  top: 35%;
  left: 30%;
  box-shadow: 0 10px 20px var(--emerald-glow);
}

.hub.bd {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
  bottom: 35%;
  right: 30%;
  box-shadow: 0 10px 20px var(--orange-glow);
}

.connection-line {
  position: absolute;
  width: 30%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  top: 50%;
  left: 35%;
  transform: rotate(25deg);
  z-index: 3;
}

.direct-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  z-index: 5;
}

.direct-badge .badge-icon {
  background-color: var(--primary);
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
}

.direct-badge .badge-lbl {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-slate);
}

.about-content h2 {
  margin-top: 10px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--dark-slate);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.direct-importer-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 30px 0;
}

.direct-importer-box h4 {
  font-size: 1.1rem;
  color: var(--dark-slate);
  margin-bottom: 8px;
}

.direct-importer-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.expansion-note h5 {
  font-size: 1rem;
  color: var(--dark-slate);
  margin-bottom: 6px;
}

.expansion-note p {
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* About Detail Page Extras */
.about-detail-section {
  padding: 80px 0;
  background-color: var(--light-card);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.owner-letter-block {
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 60px;
  border: 1px solid #e2e8f0;
}

.letter-avatar {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px var(--emerald-glow);
}

.letter-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark-slate);
}

.quote-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.letter-sign {
  font-weight: 700;
  color: var(--primary);
}

/* 11. Services Page Layout */
.services-detail-section {
  background-color: var(--light-card);
  padding: 80px 0;
}

.service-card {
  background-color: var(--light-card);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald-glow);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: #ffffff;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--dark-slate);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-list-bullets {
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dark-slate);
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 12. Products Catalog Layout with Real Images */
.products-section {
  background-color: var(--light-card);
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.search-box-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-box-wrapper input {
  width: 100%;
  padding: 14px 20px 14px 45px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.search-box-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--emerald-glow);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 52%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--text-muted);
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
  background-color: transparent;
  color: var(--text-muted);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--emerald-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--light-card);
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

/* Card image box replacing graphics with cropped fitted images */
.prod-img-box-home,
.prod-img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #cbd5e1;
}

.prod-img-box-home img,
.prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.product-card:hover .prod-img-box img,
.product-card:hover .prod-img-box-home img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-tag {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.product-info h3 {
  font-size: 1.1rem;
  color: var(--dark-slate);
  margin-bottom: 8px;
  font-weight: 700;
}

.prod-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.prod-meta {
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.prod-meta .origin {
  color: var(--dark-slate);
  font-weight: 600;
}

.catalog-no-results {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  border: 1.5px dashed #cbd5e1;
  color: var(--text-muted);
  margin-top: 20px;
}

.catalog-no-results h3 {
  margin-bottom: 8px;
  color: var(--dark-slate);
}

/* 13. Dynamic Product Detail Page Styling */
.prod-detail-main {
  padding: 80px 0;
  background-color: var(--light-card);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.detail-slider-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out;
}

.detail-slider-container .slide.active {
  opacity: 1;
  z-index: 2;
}

.gallery-instruction {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Specs info sheet */
.detail-title {
  font-size: 2.2rem;
  color: var(--dark-slate);
  margin-bottom: 15px;
  font-weight: 800;
}

.detail-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.specs-section-title {
  font-size: 1.25rem;
  color: var(--dark-slate);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
  display: inline-block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.specs-table tr:nth-child(even) {
  background-color: var(--light-bg);
}

.specs-table td strong {
  color: var(--dark-slate);
}

.direct-inquiry-stamp-detail {
  background-color: var(--emerald-glow);
  color: var(--primary-hover);
  border: 1.5px dashed var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* 14. Network & Branches Layout */
.branches-section {
  background-color: var(--light-bg);
}

.branches-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  margin-top: 50px;
}

.locations-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.branch-tab {
  background-color: var(--light-card);
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-normal);
  outline: none;
  width: 100%;
}

.branch-tab:hover {
  transform: translateX(5px);
  border-color: var(--primary);
}

.branch-tab.active {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.branch-tab .flag {
  font-size: 2rem;
  line-height: 1;
}

.branch-meta h4 {
  font-size: 1.1rem;
  color: var(--dark-slate);
  margin-bottom: 4px;
}

.branch-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.location-details-box {
  background-color: var(--light-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  min-height: 480px;
}

.location-pane {
  display: none;
  flex-direction: column;
  height: 100%;
}

.location-pane.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.pane-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid #f1f5f9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.pane-header h3 {
  font-size: 1.5rem;
  color: var(--dark-slate);
}

.pane-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-list li {
  position: relative;
}

.pane-map-mockup {
  height: 200px;
  background-color: #f1f5f9;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid #cbd5e1;
}

.map-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: radial-gradient(rgba(16, 185, 129, 0.08) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  background-color: #e2e8f0;
}

.map-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-pulse {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulseMarker 1.8s infinite;
}

.marker-pulse.planning {
  background-color: var(--secondary);
  animation: pulseMarkerPlanning 1.8s infinite;
}

.marker-lbl {
  background-color: var(--dark-slate);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* Gulf expansion details grid */
.expansion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.exp-country {
  background-color: var(--light-bg);
  padding: 15px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid #cbd5e1;
}

.exp-flag {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: inline-block;
}

.exp-country h5 {
  font-size: 0.85rem;
  color: var(--dark-slate);
  margin-bottom: 6px;
}

.phase-lbl {
  display: inline-block;
  background-color: var(--orange-glow);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-active {
  background-color: var(--emerald-glow);
  color: var(--primary);
}

.status-planning {
  background-color: var(--orange-glow);
  color: var(--secondary);
}

/* 15. Contact Info + Form Section Styling */
.contact-section {
  background-color: var(--light-card);
}

.contact-card-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background-color: var(--dark-slate);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.contact-info-panel {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-tag {
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.contact-info-panel h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.contact-info-panel p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 40px;
  font-size: 1rem;
}

.owner-highlight-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  align-items: center;
}

.owner-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.owner-details h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.owner-details p {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 6px;
}

.contact-direct {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.quick-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.method-info h5 {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
  font-weight: 500;
}

.method-info p {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
  opacity: 1;
}

/* Glassmorphic Form */
.contact-form-panel {
  background-color: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

/* Floating labels effect */
.floating-input {
  position: relative;
}

.floating-input input,
.floating-input textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
  transition: var(--transition-fast);
}

.floating-input textarea {
  resize: vertical;
}

.floating-input input:focus,
.floating-input textarea:focus {
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.floating-input label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: var(--transition-fast);
}

/* Label rises when input focused or not empty */
.floating-input input:focus ~ label,
.floating-input input:not(:placeholder-shown) ~ label,
.floating-input textarea:focus ~ label,
.floating-input textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  left: 10px;
  font-size: 0.75rem;
  background-color: var(--dark-navy);
  padding: 0 6px;
  border-radius: 4px;
  color: var(--primary);
  font-weight: 600;
}

.select-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
  cursor: pointer;
}

.form-group select option {
  background-color: var(--dark-slate);
  color: #ffffff;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px;
  position: relative;
}

.btn-submit:hover {
  background-color: var(--primary-hover);
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: absolute;
}

/* Success Form Slide in */
.form-success-box {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--dark-navy);
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
  margin-top: 20px;
  animation: slideUpFade 0.4s ease;
}

.success-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.form-success-box h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.form-success-box p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* 16. Footer CSS Layout */
.corporate-footer {
  background-color: #0b0f19;
  color: var(--text-light);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo .brand-name {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-logo .brand-sub {
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 700;
}

.brand-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 24px;
}

.direct-import-stamp {
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px dashed var(--primary);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 4px;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-email {
  color: var(--primary);
  font-weight: 600;
  opacity: 1 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a:hover {
  color: var(--primary);
}

/* 17. Scroll Animations Trigger (Intersection Observer) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Animation variants */
.animate-on-scroll[data-animation="slide-in-left"] {
  transform: translateX(-40px);
}

.animate-on-scroll[data-animation="slide-in-left"].visible {
  transform: translateX(0);
}

.animate-on-scroll[data-animation="slide-in-right"] {
  transform: translateX(40px);
}

.animate-on-scroll[data-animation="slide-in-right"].visible {
  transform: translateX(0);
}

.animate-on-scroll[data-animation="fade-in"] {
  transform: scale(0.96);
}

.animate-on-scroll[data-animation="fade-in"].visible {
  transform: scale(1);
}

/* 18. Keyframe Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateGlobe {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseMarker {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes pulseMarkerPlanning {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

/* 20. Homepage Video Slide & Interactive Content Elements */
.slide.video-slide {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slide-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.slide.video-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.75));
  z-index: -1;
}

/* Process Sourcing Timeline */
.timeline-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
}

.timeline-track-line {
  position: absolute;
  top: 75px;
  left: 5%;
  width: 90%;
  height: 4px;
  background-color: #e2e8f0;
  z-index: 1;
}

.timeline-step {
  position: relative;
  flex: 1;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 4px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.timeline-step:hover .step-num-box {
  background-color: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 16px var(--emerald-glow);
}

.timeline-step:nth-child(even) .step-num-box {
  border-color: var(--secondary);
  color: var(--secondary);
}

.timeline-step:nth-child(even):hover .step-num-box {
  background-color: var(--secondary);
  color: #ffffff;
  box-shadow: 0 8px 16px var(--orange-glow);
}

.step-info h4 {
  font-size: 1.15rem;
  color: var(--dark-slate);
  margin-bottom: 8px;
  font-weight: 700;
}

.step-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 10px;
}

/* FAQ Accordion */
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  background-color: var(--light-card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-toggle {
  width: 100%;
  padding: 22px 30px;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-slate);
  transition: var(--transition-fast);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer p {
  padding: 0 30px 24px 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Layout */
.testimonial-card {
  background-color: var(--light-card);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.testimonial-card .stars {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.test-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.client-meta h5 {
  font-size: 0.95rem;
  color: var(--dark-slate);
  margin-bottom: 2px;
}

.client-meta p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* About headshot styling enhancements */
.about-headshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   19. Responsive Web Layout (Media Queries)
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-section {
    height: 90vh;
  }
  .slide-title {
    font-size: 3rem;
  }
  .slide-content {
    margin-left: 5%;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail-slider-container {
    height: 400px;
  }
}

@media (max-width: 992px) {
  section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .value-grid {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrapper {
    height: 400px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .branches-layout {
    grid-template-columns: 1fr;
  }
  .locations-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .branch-tab {
    flex-shrink: 0;
    min-width: 260px;
  }
  .contact-card-container {
    grid-template-columns: 1fr;
  }
  .contact-info-panel,
  .contact-form-panel {
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .owner-letter-block {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    display: none;
  }
  .main-header {
    top: 0;
    background-color: var(--dark-slate);
    padding: 12px 0;
  }
  .main-header.scrolled {
    background-color: var(--dark-slate);
  }
  .main-header.scrolled .brand-name,
  .brand-name {
    color: #ffffff;
  }
  .main-header.scrolled .mobile-menu-toggle .bar {
    background-color: #ffffff;
  }
  .nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background-color: var(--dark-slate);
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    transition: var(--transition-normal);
    overflow-y: auto;
    display: flex;
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    margin-bottom: 40px;
  }
  .nav-link {
    font-size: 1.15rem;
    color: #ffffff;
  }
  .nav-cta {
    display: block;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  .nav-cta .btn {
    width: 100%;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .slide-title {
    font-size: 2.3rem;
  }
  .slide-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .slide-actions {
    flex-direction: column;
    gap: 12px;
  }
  .slide-actions .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-number-wrapper {
    font-size: 2.8rem;
  }
  .location-details-box {
    padding: 24px;
  }
  .expansion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  .slide-title {
    font-size: 1.8rem;
  }
  .slide-content {
    padding: 0 20px;
    margin-left: 2%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
  .expansion-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   21. Upgraded Services Page Layouts & Interactive Dashboard Styles
   ========================================================================== */

/* Service Card Image Upgrade */
.service-img-box {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-img-box img {
  transform: scale(1.05);
}

/* Services Split Intro Grid */
.services-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.intro-stats {
  border-top: 1px solid #e2e8f0;
  padding-top: 25px;
  margin-top: 25px;
}

.intro-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.intro-image-box:hover img {
  transform: scale(1.03);
}

/* Reefer Telemetry Dashboard Styles */
.telemetry-dashboard-wrapper {
  background-color: #0f172a; /* Slate 900 */
  border-radius: var(--radius-lg);
  border: 2px solid #1e293b; /* Slate 800 */
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: #f8fafc;
  font-family: 'Outfit', sans-serif;
}

.telemetry-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #334155;
  padding-bottom: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.telemetry-status-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.telemetry-status-dot {
  width: 12px;
  height: 12px;
  background-color: #10b981; /* Emerald 500 */
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: telemetryPulse 1.8s infinite;
}

.telemetry-status-text {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #10b981;
}

.telemetry-id {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

.telemetry-id .highlight-code {
  color: #eab308; /* Yellow 500 */
  font-family: monospace;
  font-weight: 700;
  background-color: #1e293b;
  padding: 3px 8px;
  border-radius: 4px;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.telemetry-widget {
  background-color: #1e293b; /* Slate 800 */
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.telemetry-widget:hover {
  transform: translateY(-3px);
  border-color: #0284c7; /* Sky 600 */
}

.widget-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.widget-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.widget-value.temp-value {
  color: #38bdf8; /* Sky 300 */
}

.widget-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 50px;
  display: inline-block;
}

.widget-status.status-ok {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.telemetry-footer-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #334155;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 15px;
}

.telemetry-footer-col strong {
  color: #ffffff;
}

@keyframes telemetryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Supply Capacity Table */
.capacity-table-container {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.capacity-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: #ffffff;
  font-family: inherit;
}

.capacity-table th {
  background-color: var(--dark-slate);
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.capacity-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #cbd5e1;
  font-size: 0.9rem;
  color: var(--dark-slate);
  line-height: 1.5;
}

.capacity-table tbody tr:last-child td {
  border-bottom: none;
}

.capacity-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.capacity-table tbody tr:hover {
  background-color: rgba(16, 185, 129, 0.05);
  transition: background-color 0.2s ease;
}

.capacity-table td strong {
  color: var(--primary);
}

/* Media Query Adaptations for New Services Elements */
@media (max-width: 992px) {
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-image-box {
    height: 350px !important;
  }
  .telemetry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .telemetry-footer-stats {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .telemetry-grid {
    grid-template-columns: 1fr;
  }
  .telemetry-dashboard-wrapper {
    padding: 20px;
  }
  .widget-value {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Top Clients Brand Logo Carousel Section
   ========================================================================== */
.clients-section {
  position: relative;
  background-color: var(--light-card);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logos-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  display: flex;
}

.logos-slide-track {
  display: flex;
  width: calc(240px * 15);
  animation: logoMarquee 25s linear infinite;
}

.logos-slider-container:hover .logos-slide-track {
  animation-play-state: paused;
}

.client-logo-card {
  width: 240px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-card img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 5));
  }
}


