/* ============================================
   ALROWAD Trading Company — Global Website
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2440;
  --primary-light: #2a5a8c;
  --accent: #d4a843;
  --accent-light: #e8c76a;
  --accent-dark: #b8902e;
  --gold: #d4a843;
  --gold-gradient: linear-gradient(135deg, #d4a843, #f0d078, #d4a843);
  --bg: #ffffff;
  --bg-alt: #f8f9fc;
  --bg-dark: #0c1e33;
  --text: #2d3748;
  --text-light: #718096;
  --text-muted: #a0aec0;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Animation Classes ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-up"] { transform: translateY(40px); }

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

.navbar:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
}

.navbar:not(.scrolled) .logo-name { color: #fff; }

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar:not(.scrolled) .logo-tagline { color: rgba(255,255,255,0.7); }

.footer .logo img {
  filter: brightness(0) invert(1);
  height: 48px;
}

.footer .logo-name { color: #fff; }
.footer .logo-tagline { color: rgba(255,255,255,0.5); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a:hover { color: var(--primary); background: var(--bg-alt); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl) !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .hamburger span { background: #fff; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c1e33;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(12, 30, 51, 0.85) 0%, rgba(26, 58, 92, 0.7) 40%, rgba(30, 77, 122, 0.6) 70%, rgba(15, 45, 79, 0.85) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(42, 90, 140, 0.2) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(212, 168, 67, 0.3);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 0 80px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius-xl);
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--font);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: inline;
}

.hero-stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 64px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* ---------- ABOUT ---------- */
.about { background: var(--bg-alt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-lead {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-feature-icon svg { width: 22px; height: 22px; }

.about-feature strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-card-vision {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}

.about-card-mission {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.about-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.about-card-icon svg { width: 48px; height: 48px; }
.about-card-vision .about-card-icon svg { stroke: var(--accent); }
.about-card-mission .about-card-icon svg { stroke: var(--primary); }

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.08), rgba(26, 58, 92, 0.04));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.service-card:hover .service-icon svg { stroke: #fff; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- SOLUTIONS ---------- */
.solutions { background: var(--bg-alt); }

.solution-block {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: center;
  padding: 28px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.solution-block:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.solution-block.reverse {
  grid-template-columns: 400px 1fr;
}

.solution-block.reverse .solution-visual { order: -1; }

.solution-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(26, 58, 92, 0.06);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.solution-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-tags span {
  padding: 6px 14px;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

.solution-tags span:hover {
  background: var(--primary);
  color: #fff;
}

.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.solution-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
  box-shadow: var(--shadow-md);
}

.solution-block:hover .solution-img {
  transform: scale(1.05);
}

/* ---------- STATS BANNER ---------- */
.stats-banner {
  background: linear-gradient(135deg, rgba(15, 36, 64, 0.92), rgba(26, 58, 92, 0.9), rgba(42, 90, 140, 0.92)),
    url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80') center/cover no-repeat;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(212, 168, 67, 0.1), transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(212, 168, 67, 0.08), transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  display: inline;
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.stat-icon-24 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-top: 8px;
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

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

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.why-icon svg {
  width: 64px;
  height: 64px;
  stroke: var(--accent);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, rgba(184, 144, 46, 0.93), rgba(212, 168, 67, 0.9), rgba(232, 199, 106, 0.93)),
    url('https://images.unsplash.com/photo-1541829070764-84a7d30dd3f3?w=1920&q=80') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.1), transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(15, 36, 64, 0.75);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact { background: var(--bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.contact-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

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

.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-alt);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
  background: #fff;
}

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

.form-group select { cursor: pointer; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-links-group h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-group a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-links-group a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

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

/* ---------- SOLUTIONS OVERVIEW ---------- */
.solutions-overview { background: var(--bg); }

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

.sol-overview-card {
  padding: 28px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
}

.sol-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  background: #fff;
}

.sol-ov-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.08), rgba(212, 168, 67, 0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sol-ov-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  transition: var(--transition);
}

.sol-overview-card:hover .sol-ov-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.sol-overview-card:hover .sol-ov-icon svg { stroke: #fff; }

.sol-overview-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.sol-overview-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---------- WHAT WE SUPPLY — PROFILE BLOCKS ---------- */
.supply-section { background: var(--bg-alt); }

.supply-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 32px;
  transition: all 0.4s ease;
}

.supply-block:last-child { margin-bottom: 0; }

.supply-block:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.supply-block.reverse {
  grid-template-columns: 1fr 420px;
}

.supply-block.reverse .supply-block-img { order: 2; }
.supply-block.reverse .supply-block-content { order: 1; }

/* Block Image */
.supply-block-img {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.supply-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.supply-block:hover .supply-block-img img {
  transform: scale(1.05);
}

.supply-block-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 36, 64, 0.25) 0%, rgba(15, 36, 64, 0.05) 40%, rgba(15, 36, 64, 0.1) 100%);
}

.supply-block-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
  z-index: 2;
}

/* Block Content */
.supply-block-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.supply-block-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: var(--font-display);
  line-height: 1.3;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--accent);
}

.supply-block-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Service Categories Grid */
.supply-block-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.supply-cat {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.supply-cat:hover {
  border-color: var(--accent);
  background: rgba(212, 168, 67, 0.04);
}

.supply-cat h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212, 168, 67, 0.3);
}

.supply-cat ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.supply-cat li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.supply-cat li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.supply-block-brands {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

.back-to-top svg { width: 20px; height: 20px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-overview-grid { grid-template-columns: repeat(3, 1fr); }
  .solution-block,
  .solution-block.reverse {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .solution-block.reverse .solution-visual { order: 0; }
  .supply-block, .supply-block.reverse { grid-template-columns: 1fr; }
  .supply-block.reverse .supply-block-img { order: 0; }
  .supply-block.reverse .supply-block-content { order: 0; }
  .supply-block-img { min-height: 280px; }
  .supply-block-content { padding: 32px; }
  .supply-block-categories { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-block,
  .solution-block.reverse {
    grid-template-columns: 1fr;
  }
  .solution-block.reverse .solution-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--text) !important;
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-links a:hover { background: var(--bg-alt); }

  .nav-cta { margin-top: 16px; text-align: center; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .solutions-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-block-img { min-height: 220px; }
  .supply-block-content { padding: 24px; }
  .supply-block-content h3 { font-size: 1.2rem; }
  .supply-block-categories { grid-template-columns: 1fr; gap: 12px; }
  .supply-block { margin-bottom: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 48px 0; }

  .contact-form-wrapper { padding: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stat-number { font-size: 2rem; }
  .stat-number, .stat-icon-24 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ---------- Mobile Menu Overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
