/* ============================================================
   SAB Group of Companies — Design System
   Premium Luxury Hospitality Supplier
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES — Design Tokens
   ============================================================ */
:root {
  /* Brand Palette */
  --color-gold:        #B8973A;
  --color-gold-light:  #D4AF5A;
  --color-gold-pale:   #F5EDD6;
  --color-charcoal:    #1A1A1A;
  --color-dark:        #111111;
  --color-white:       #FFFFFF;
  --color-off-white:   #FAFAF8;
  --color-cream:       #F7F4EE;
  --color-stone:       #E8E4DC;
  --color-slate:       #6B6B6B;
  --color-mist:        #D6D2CB;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --space-section: 6rem;
  --space-section-sm: 4rem;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 24px rgba(184,151,58,0.25);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold    { color: var(--color-gold); }
.text-white   { color: var(--color-white); }
.text-slate   { color: var(--color-slate); }
.bg-dark      { background: var(--color-dark); }
.bg-cream     { background: var(--color-cream); }
.bg-charcoal  { background: var(--color-charcoal); }
.bg-white     { background: var(--color-white); }

.font-display { font-family: var(--font-display); }
.font-italic  { font-style: italic; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: var(--space-section) 0;
}

.section-pad-sm {
  padding: var(--space-section-sm) 0;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
}

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, var(--text-7xl));
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.15;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, var(--text-3xl));
  font-weight: 400;
  line-height: 1.25;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.3;
}

.lead {
  font-size: var(--text-lg);
  color: var(--color-slate);
  line-height: 1.75;
  font-weight: 300;
}

/* Gold rule divider */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  margin: 1.5rem 0;
}
.gold-rule.centered { margin: 1.5rem auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn-gold:hover {
  background: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

.btn-dark {
  background: var(--color-charcoal);
  color: var(--color-white);
}
.btn-dark:hover {
  background: var(--color-dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  padding: 0.6rem 0;
}

.top-bar a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-base);
}
.top-bar a:hover { color: var(--color-gold); }

.top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-contact { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-contact span { display: flex; align-items: center; gap: 0.375rem; }

.top-bar-social { display: flex; align-items: center; gap: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-stone);
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.nav-item { position: relative; }

.nav-link {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  padding: 0.625rem 1rem;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-stone);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  z-index: 100;
}

.nav-item:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-stone);
  transition: all var(--transition-base);
}
.dropdown-menu-custom a:last-child { border-bottom: none; }
.dropdown-menu-custom a:hover {
  background: var(--color-cream);
  color: var(--color-gold);
  padding-left: 1.5rem;
}

/* Nav CTA */
.nav-cta { margin-left: 1rem; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-1 { background-image: url('../img/sab-group-of-companies-4.jpg'); }
.hero-slide-2 { background-image: url('../img/sab-group-of-companies-48.jpg'); }
.hero-slide-3 { background-image: url('../img/sab-group-of-companies-54.jpg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.75) 0%,
    rgba(17,17,17,0.45) 60%,
    rgba(17,17,17,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-desc {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}
.hero-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 3px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================================
   INTRO / ABOUT STRIP
   ============================================================ */
.intro-section {
  padding: var(--space-section) 0;
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-media {
  position: relative;
}

.intro-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 140px;
  height: 140px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-display);
}

.intro-badge .badge-number {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}
.intro-badge .badge-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 0.75rem;
  line-height: 1.4;
}

.intro-content { padding-right: 1rem; }

.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-stone);
}

.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-slate);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* ============================================================
   DIVISIONS
   ============================================================ */
.divisions-section {
  padding: var(--space-section) 0;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 3.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.division-card {
  background: var(--color-charcoal);
  padding: 3rem 2.5rem;
  transition: background var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.division-card:hover { background: rgba(255,255,255,0.04); }

.division-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left;
  /*filter: brightness(0) invert(1);*/
  opacity: 0.8;
}

.division-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-white);
}

.division-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  flex: 1;
}

.division-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  transition: gap var(--transition-base);
}
.division-link:hover { gap: 0.875rem; }
.division-link svg { width: 14px; height: 14px; }

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.products-section {
  padding: var(--space-section) 0;
  background: var(--color-off-white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Featured large card */
.product-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  cursor: pointer;
}

.product-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card-featured .product-card-img {
  min-height: 560px;
}

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

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.1) 60%);
  transition: background var(--transition-base);
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.3) 60%);
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--color-white);
  transform: translateY(0);
  transition: transform var(--transition-base);
}

.product-card-category {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.product-card-featured .product-card-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.product-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card-action {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section {
  padding: var(--space-section) 0;
  background: var(--color-white);
}

.industries-flex {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-stone);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  transition: all var(--transition-base);
  cursor: default;
}

.industry-pill svg {
  color: var(--color-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.industry-pill:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-pale);
  color: var(--color-gold);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: var(--space-section) 0;
  background: var(--color-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-img-wrap { position: relative; }

.why-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.why-accent {
  position: absolute;
  top: 2rem;
  right: -2rem;
  width: 120px;
  height: 120px;
  background: var(--color-gold-pale);
  border: 1px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.why-accent .accent-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.3;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-pale);
  border: 1px solid rgba(184,151,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

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

.why-feature-body {}
.why-feature-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: 0.375rem;
}
.why-feature-desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.65;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-section {
  padding: var(--space-section) 0;
  background: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:first-child img { min-height: 416px; }

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.5);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--space-section) 0;
  background: var(--color-charcoal);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background var(--transition-base);
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-gold-light);
  margin-top: 0.1rem;
}

/* ============================================================
   CLIENTS LOGO STRIP
   ============================================================ */
.clients-section {
  padding: 4rem 0;
  background: var(--color-off-white);
  border-top: 1px solid var(--color-stone);
}

.clients-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-bottom: 2.5rem;
}

.clients-track-wrap { overflow: hidden; }

.clients-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: clientsScroll 30s linear infinite;
}

.clients-track img {
  /*height: 44px;*/
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: all var(--transition-base);
  flex-shrink: 0;
}
.clients-track img:hover {
  filter: none;
  opacity: 1;
}

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   CSR PREVIEW
   ============================================================ */
.csr-section {
  padding: var(--space-section) 0;
  background: var(--color-white);
}

.csr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.csr-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.csr-pillar {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--color-stone);
  transition: all var(--transition-base);
}
.csr-pillar:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-pale);
}

.csr-pillar-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.csr-pillar-icon svg { width: 20px; height: 20px; }

.csr-pillar-title {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 0.25rem;
}
.csr-pillar-desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.55;
}

.csr-img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.csr-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.csr-img-wrap img:first-child { margin-top: 3rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
  padding: 6rem 0;
  background: var(--color-dark);
  background-image: url('../img/sab-group-of-companies-105.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.65) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner .heading-lg { margin-bottom: 1.25rem; }
.cta-inner .lead { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold-light);
  font-size: var(--text-base);
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-base);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-white);
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.footer-links a:hover { color: var(--color-gold-light); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
  align-items: flex-start;
}

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

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base);
}
.footer-contact-item a:hover { color: var(--color-gold-light); }

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 0.5rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-base);
}
.footer-newsletter input:focus { border-color: var(--color-gold); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }

.footer-newsletter button {
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: background var(--transition-base);
  font-size: var(--text-sm);
}
.footer-newsletter button:hover { background: var(--color-gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition-base); }
.footer-bottom a:hover { color: var(--color-gold-light); }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.65);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.6); transition: color var(--transition-base); }
.breadcrumb-nav a:hover { color: var(--color-gold-light); }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--space-section) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-pale);
  border: 1px solid rgba(184,151,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}
.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: 0.375rem;
}
.contact-info-value {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: 1.55;
}
.contact-info-value a { color: var(--color-charcoal); }
.contact-info-value a:hover { color: var(--color-gold); }

/* Map */
.map-wrap {
  margin-top: 2.5rem;
  border: 1px solid var(--color-stone);
  overflow: hidden;
}
.map-wrap iframe { display: block; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-stone);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  outline: none;
  transition: border-color var(--transition-base);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-control:focus { border-color: var(--color-gold); }
.form-control::placeholder { color: var(--color-mist); }

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

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

/* Multi-step form */
.multistep-form {}

.form-steps {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-stone);
}

.form-step-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-mist);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-step-tab.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.form-step-tab.completed {
  color: var(--color-slate);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-stone);
  color: var(--color-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.form-step-tab.active .step-number {
  background: var(--color-gold);
  color: var(--color-white);
}

.form-step-tab.completed .step-number {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.step-content { display: none; }
.step-content.active { display: block; }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-stone);
}

/* Alert messages */
.alert {
  padding: 1rem 1.25rem;
  border-left: 3px solid;
  margin-bottom: 1.5rem;
  font-size: var(--text-sm);
}
.alert-success { background: #f0faf5; border-color: #22c55e; color: #15803d; }
.alert-error { background: #fff5f5; border-color: #ef4444; color: #b91c1c; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-charcoal);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card-featured { grid-column: span 1; grid-row: span 1; }
  .product-card-featured .product-card-img { min-height: 280px; }
}

@media (max-width: 900px) {
  :root {
    --space-section: 4rem;
    --space-section-sm: 3rem;
  }

  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-stone);
    padding: 1rem 0;
    box-shadow: var(--shadow-hover);
    gap: 0;
  }

  .dropdown-menu-custom {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-gold-pale);
    margin-left: 1rem;
    display: none;
  }

  .nav-item.open .dropdown-menu-custom { display: block; }

  .intro-grid,
  .why-grid,
  .csr-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .intro-badge { right: 0; }
  .why-accent { display: none; }
  .divisions-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-scroll { display: none; }
  .top-bar .top-bar-contact span:not(:first-child) { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .form-steps { overflow-x: auto; }
  .form-step-tab { flex-shrink: 0; }
  .stat-row { flex-wrap: wrap; gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .top-bar { display: none; }
  .industries-flex { gap: 0.5rem; }
}
