/*
 * SHAHEEN AL JABAL BUILDING MATERIALS TRD LLC
 * Premium Corporate Website Stylesheet
 * Created: May 2026
 */

@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');

:root {
  /* Brand Palette */
  --primary-navy: #0F2B48;
  --primary-navy-rgb: 15, 43, 72;
  --accent-yellow: #FFC815;
  --accent-yellow-rgb: 255, 200, 21;
  --accent-red: #D32F2F;
  --accent-red-rgb: 211, 47, 47;
  --neutral-dark: #1E2229;
  --neutral-light: #F4F6F9;
  --neutral-white: #FFFFFF;
  --neutral-grey: #6B7280;
  
  /* UI System Variables */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --box-shadow-premium: 0 10px 30px -10px rgba(15, 43, 72, 0.12);
  --box-shadow-hover: 0 20px 40px -15px rgba(15, 43, 72, 0.22);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 9999px;
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) - 20px);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-navy);
  font-weight: 700;
}

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--neutral-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-navy-rgb), 0.3);
  border-radius: var(--border-radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-navy-rgb), 0.5);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Common Section Heading Style */
.section-header {
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header .subtitle {
  text-transform: uppercase;
  color: var(--accent-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-yellow);
  border-radius: var(--border-radius-pill);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--primary-navy-rgb), 0.08);
  transition: var(--transition-smooth);
}

/* Native CSS Scroll-driven header shrink (for supported browsers) */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  header {
    animation: shrinkHeader auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 100px;
  }
  
  @keyframes shrinkHeader {
    to {
      height: 70px;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
  }
}

/* JavaScript Fallback class for shrinking header */
header.shrunk {
  height: 70px !important;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.logo-saj {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--accent-red);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo-saj span {
  color: var(--primary-navy);
}

.logo-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 140px;
  line-height: 1.2;
  border-left: 2px solid var(--accent-yellow);
  padding-left: 8px;
}

/* Navigation Menu */
nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-navy);
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-yellow);
  transition: var(--transition-fast);
}

nav a:hover {
  color: var(--accent-red);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.header-cta {
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  padding: 10px 24px;
  border-radius: var(--border-radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(var(--primary-navy-rgb), 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta:hover {
  background-color: var(--accent-yellow);
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--accent-yellow-rgb), 0.3);
}

/* Mobile Menu Toggle */
.menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(var(--primary-navy-rgb), 0.75), rgba(var(--primary-navy-rgb), 0.45)), url('assets/hero_crane.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: var(--neutral-white);
  position: relative;
  padding-top: var(--header-height);
}

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

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--border-radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 1s ease both;
}

.hero-tagline span {
  width: 8px;
  height: 8px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.15;
  color: var(--neutral-white);
  font-weight: 800;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
  color: var(--accent-yellow);
}

.hero-desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 680px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-yellow);
  color: var(--primary-navy);
  box-shadow: 0 8px 24px rgba(var(--accent-yellow-rgb), 0.35);
}

.btn-primary:hover {
  background-color: var(--neutral-white);
  color: var(--primary-navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--neutral-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--neutral-white);
  transform: translateY(-3px);
}

.hero-badges {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
}

.hero-badges-wrapper {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-number {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-yellow);
}

.badge-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  max-width: 140px;
}

/* About Us Section */
.about {
  background-color: var(--neutral-white);
}

/* Curved brochure image grid layout */
.about-images-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  transition: var(--transition-smooth);
  position: relative;
}

.about-img-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.about-img-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(var(--primary-navy-rgb), 0.4), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.about-img-card:hover {
  transform: scale(1.03);
  box-shadow: var(--box-shadow-hover);
}

.about-img-card:hover::after {
  opacity: 1;
}

/* Big curved loader image */
.about-img-card.large-curved {
  grid-row: span 2;
  border-radius: 50% 50% var(--border-radius-md) var(--border-radius-md) / 30% 30% var(--border-radius-md) var(--border-radius-md);
}

.about-img-card.large-curved img {
  height: 100%;
  min-height: 480px;
}

.about-content {
  padding-left: 20px;
}

.about-content .tag {
  color: var(--accent-red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.about h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about h2 span {
  color: var(--accent-red);
}

.about-text {
  font-size: 16px;
  color: var(--neutral-grey);
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.highlight-box {
  display: flex;
  gap: 16px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(var(--accent-red-rgb), 0.08);
  color: var(--accent-red);
  font-size: 20px;
  flex-shrink: 0;
}

.highlight-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-desc {
  font-size: 13px;
  color: var(--neutral-grey);
}

/* Mission & Vision Section */
.mission-vision {
  background-color: var(--neutral-light);
  position: relative;
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mv-card {
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--box-shadow-premium);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
}

.mv-card.mission::before {
  background-color: var(--accent-yellow);
}

.mv-card.vision::before {
  background-color: #10B981; /* Green from flyer bottom */
}

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

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-md);
  font-size: 28px;
  margin-bottom: 28px;
}

.mv-card.mission .mv-icon {
  background-color: rgba(var(--accent-yellow-rgb), 0.12);
  color: var(--accent-navy);
}

.mv-card.vision .mv-icon {
  background-color: rgba(16, 185, 129, 0.12);
  color: #10B981;
}

.mv-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--neutral-grey);
  font-size: 15px;
  line-height: 1.7;
}

.mv-card .deco-arrow {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 24px;
  opacity: 0.15;
  transition: var(--transition-smooth);
}

.mv-card:hover .deco-arrow {
  opacity: 0.5;
  transform: translateX(8px);
}

/* Products & Services Section */
.products {
  background-color: var(--neutral-white);
}

/* Filters UI */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  background-color: var(--neutral-light);
  color: var(--primary-navy);
  padding: 12px 24px;
  border-radius: var(--border-radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background-color: rgba(var(--primary-navy-rgb), 0.08);
}

.filter-btn.active {
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  box-shadow: 0 4px 15px rgba(var(--primary-navy-rgb), 0.15);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  transition: var(--transition-smooth);
}

.product-card {
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(var(--accent-yellow-rgb), 0.3);
}

.product-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.product-desc {
  font-size: 14px;
  color: var(--neutral-grey);
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-link i {
  transition: var(--transition-fast);
}

.product-card:hover .product-link {
  color: var(--accent-red);
}

.product-card:hover .product-link i {
  transform: translateX(4px);
}

.product-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(var(--primary-navy-rgb), 0.05);
  color: var(--primary-navy);
  font-size: 18px;
}

.product-card:hover .product-icon {
  background-color: var(--accent-yellow);
  color: var(--primary-navy);
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-navy-rgb), 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 20px;
  color: var(--neutral-grey);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-red);
}

.modal-cat {
  color: var(--accent-red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.modal-body {
  color: var(--neutral-grey);
  font-size: 15px;
  margin-bottom: 24px;
}

.modal-features {
  list-style: none;
  margin-bottom: 30px;
}

.modal-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--neutral-dark);
}

.modal-features li i {
  color: #10B981;
}

/* Logistics Showcase Section */
.logistics {
  background-color: var(--neutral-light);
}

.logistics-card {
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
}

.logistics-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.logistics-content {
  padding: 48px;
}

.logistics-tag {
  color: var(--accent-red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.logistics-content h3 {
  font-size: 32px;
  margin-bottom: 24px;
}

.logistics-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.logistics-item {
  display: flex;
  gap: 16px;
}

.logistics-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(var(--accent-yellow-rgb), 0.15);
  color: var(--primary-navy);
  font-size: 18px;
  flex-shrink: 0;
}

.logistics-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.logistics-item p {
  font-size: 13px;
  color: var(--neutral-grey);
}

/* Interactive Quote Request Section */
.quote {
  background: linear-gradient(135deg, var(--primary-navy), #061629);
  color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(var(--accent-yellow-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.quote-header h2 {
  color: var(--neutral-white);
}

/* Multi-step progress tracker */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto 50px auto;
  position: relative;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.wizard-progress-bar {
  position: absolute;
  top: 20px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-yellow);
  z-index: 2;
  transition: var(--transition-smooth);
}

.progress-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #122133;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.progress-step.active {
  border-color: var(--accent-yellow);
  background-color: var(--accent-yellow);
  color: var(--primary-navy);
  box-shadow: 0 0 15px rgba(var(--accent-yellow-rgb), 0.4);
}

.progress-step.completed {
  border-color: #10B981;
  background-color: #10B981;
  color: var(--neutral-white);
}

/* Wizard Form Card */
.wizard-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.wizard-step {
  display: none;
  animation: fadeIn 0.4s ease both;
}

.wizard-step.active {
  display: block;
}

.wizard-step h3 {
  color: var(--neutral-white);
  font-size: 24px;
  margin-bottom: 8px;
}

.wizard-step-desc {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 28px;
}

/* Custom Grid Select Options (Step 1) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.option-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  position: relative;
}

.option-box i {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.option-box h4 {
  color: var(--neutral-white);
  font-size: 15px;
  font-weight: 600;
}

.option-box input {
  position: absolute;
  top: 12px;
  right: 12px;
  accent-color: var(--accent-yellow);
  opacity: 0;
}

.option-box:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.option-box.selected {
  background-color: rgba(var(--accent-yellow-rgb), 0.1);
  border-color: var(--accent-yellow);
}

.option-box.selected i {
  color: var(--accent-yellow);
}

/* Step 2 & 3 Input Fields */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  color: var(--neutral-white);
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-yellow);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(var(--accent-yellow-rgb), 0.1);
}

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

/* Form Validation Styling */
.form-control:invalid:not(:placeholder-shown) {
  border-color: var(--accent-red);
}

/* Wizard Buttons */
.wizard-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.btn-wizard {
  padding: 12px 28px;
  font-size: 14px;
}

.btn-wizard-prev {
  background-color: transparent;
  color: var(--neutral-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-wizard-prev:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--neutral-white);
}

.btn-wizard-next {
  background-color: var(--accent-yellow);
  color: var(--primary-navy);
}

.btn-wizard-next:hover {
  background-color: var(--neutral-white);
  color: var(--primary-navy);
}

/* Success Wizard Step */
.wizard-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(16, 185, 129, 0.15);
  color: #10B981;
  font-size: 32px;
  border-radius: 50%;
  margin: 0 auto 24px auto;
}

.success-title {
  font-size: 28px;
  margin-bottom: 12px;
}

/* Contact Us Section */
.contact {
  background-color: var(--neutral-white);
}

.contact-info-panel {
  background-color: var(--neutral-light);
  border-radius: var(--border-radius-lg);
  padding: 48px;
}

.contact-info-panel h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(var(--primary-navy-rgb), 0.05);
  color: var(--primary-navy);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-content p {
  font-size: 14px;
  color: var(--neutral-grey);
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  font-size: 16px;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--accent-yellow);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

/* Styled map container */
.map-container {
  height: 100%;
  min-height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  position: relative;
}

.styled-map {
  width: 100%;
  height: 100%;
  background-color: #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-card {
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  z-index: 5;
}

.map-card h4 {
  color: var(--accent-red);
  margin-bottom: 8px;
}

.map-card p {
  font-size: 13px;
  color: var(--neutral-grey);
  margin-bottom: 12px;
}

.map-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.map-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: radial-gradient(var(--primary-navy) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* Footer Section */
footer {
  background-color: #121519;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--accent-yellow);
}

.footer-top {
  margin-bottom: 60px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--accent-yellow);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--neutral-white);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--neutral-white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-yellow);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-yellow);
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact-list i {
  color: var(--accent-yellow);
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Entrance Reveals (JavaScript driven IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .about-images-wrapper {
    gap: 12px;
  }
  
  .about-img-card img {
    height: 200px;
  }
  
  .about-img-card.large-curved img {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .menu-btn {
    display: block;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: var(--neutral-white);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    padding: 40px 24px;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 24px;
  }
  
  .header-cta {
    display: none; /* Can trigger from menu instead */
  }
  
  .hero {
    height: auto;
    padding: 120px 0 80px 0;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-badges-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  
  .about-images-wrapper {
    margin-bottom: 24px;
  }
  
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
  }
  
  .mv-card {
    padding: 32px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .logistics-img {
    min-height: 250px;
  }
  
  .logistics-content {
    padding: 32px;
  }
  
  .logistics-features {
    grid-template-columns: 1fr;
  }
  
  .wizard-card {
    padding: 24px;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-info-panel {
    padding: 32px;
  }
  
  .map-container {
    min-height: 300px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
