/* ============================================================
   SEETO KUI (HOLDINGS) LTD — Corporate Website Stylesheet
   Author: Built for Seeto Kui (Holdings) Ltd
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --primary:        #CC1114;
  --primary-light:  #e01e21;
  --primary-mid:    #b80e11;
  --accent:         #D4AF37;
  --accent-light:   #E8C84E;
  --accent-dark:    #B8960C;
  --white:          #ffffff;
  --off-white:      #fafbfc;
  --light-bg:       #f9f4f4;
  --mid-bg:         #f5eded;
  --text-dark:      #1a0000;
  --text-body:      #3d3033;
  --text-muted:     #7a6666;
  --border:         #ecdede;
  --shadow-sm:      0 2px 8px rgba(204,17,20,0.08);
  --shadow-md:      0 8px 30px rgba(204,17,20,0.12);
  --shadow-lg:      0 20px 60px rgba(204,17,20,0.16);
  --shadow-accent:  0 8px 30px rgba(212,175,55,0.35);
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --nav-height:     80px;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container:      1240px;
  --container-wide: 1440px;
}

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

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

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

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

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

ul { list-style: none; }

button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

.section-padding { padding: 100px 0; }
.section-padding--sm { padding: 70px 0; }
.section-padding--lg { padding: 130px 0; }

/* ── Section Headers ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

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

.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle--white { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.35);
}

.btn--outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn--outline-white:hover {
  border-color: var(--accent);
  background: rgba(212,175,55,0.15);
  color: var(--accent);
}

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

.btn--outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

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

.btn--dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Divider ── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin-bottom: 24px;
}

.gold-divider--center { margin: 0 auto 24px; }

/* ── Scroll Animation Classes ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar--transparent {
  background: transparent;
}

.navbar--scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,31,60,0.1);
  height: 70px;
}

.navbar--dark {
  background: var(--primary);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navbar__logo-mark {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.navbar__logo-text { line-height: 1.2; }

.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  transition: var(--transition-fast);
}

.navbar__logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

.navbar--scrolled .navbar__logo-name { color: var(--primary); }
.navbar--scrolled .navbar__logo-tagline { color: var(--accent-dark); }

/* Nav Links */
.navbar__nav { display: flex; align-items: center; gap: 4px; }

.navbar__link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.navbar__link:hover { color: var(--accent); }
.navbar__link:hover::after { transform: scaleX(1); }
.navbar__link.active { color: var(--accent); }
.navbar__link.active::after { transform: scaleX(1); }

.navbar--scrolled .navbar__link { color: var(--text-body); }
.navbar--scrolled .navbar__link:hover { color: var(--primary); }
.navbar--scrolled .navbar__link.active { color: var(--primary); }

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

.navbar__cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.navbar__cta::after { display: none; }

/* Mobile Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar--scrolled .navbar__hamburger span { background: var(--primary); }

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.navbar__mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar__mobile-link:hover { color: var(--accent); background: rgba(255,255,255,0.05); }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 950px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(160,8,10,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #8b0000 0%, #CC1114 40%, #8b0000 100%);
}

/* Animated pattern overlay */
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(212,175,55,1) 60px,
      rgba(212,175,55,1) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(212,175,55,1) 60px,
      rgba(212,175,55,1) 61px
    );
}

/* Floating geometric shapes */
.hero__shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero__shape {
  position: absolute;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 50%;
  animation: floatShape 8s ease-in-out infinite;
}

.hero__shape--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  animation-delay: 0s;
}

.hero__shape--2 {
  width: 400px; height: 400px;
  bottom: -150px; left: -100px;
  animation-delay: 3s;
  border-color: rgba(212,175,55,0.1);
}

.hero__shape--3 {
  width: 200px; height: 200px;
  top: 20%; right: 20%;
  animation-delay: 1.5s;
  border-color: rgba(255,255,255,0.06);
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(5deg); }
  66% { transform: translate(-8px, 10px) rotate(-3deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-height);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.4s both;
}

.hero__heading .highlight {
  color: var(--accent);
  display: block;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInDown 0.8s ease 0.6s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s ease 0.8s both;
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fadeInRight 0.8s ease 0.5s both;
}

.hero__stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hero__stat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
}

.hero__stat-card--accent {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.25);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.4;
}

.hero__stat-icon {
  width: 36px;
  height: 36px;
  background: rgba(212,175,55,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
  cursor: pointer;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Hero Keyframes */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--primary-mid);
  padding: 20px 0;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-bar__icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about { background: var(--white); }

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

.about__image-wrap {
  position: relative;
}

.about__image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-bg {
  width: 100%;
  aspect-ratio: 4/5;
  background: #1a0000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212,175,55,0.04) 40px, rgba(212,175,55,0.04) 41px);
}

.about__image-pattern {
  width: 200px;
  height: 200px;
  border: 3px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about__image-pattern::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 50%;
}

.about__image-pattern::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
}

.about__logo-large {
  width: 100px;
  height: 100px;
  z-index: 2;
  position: relative;
}

/* Floating badge on image */
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-accent);
  text-align: center;
}

.about__badge-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about__badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

.about__corner-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  opacity: 0.4;
}

/* About Content */
.about__content p {
  color: var(--text-body);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.about__pillar:hover {
  background: var(--mid-bg);
  transform: translateX(4px);
}

.about__pillar-icon {
  width: 36px;
  height: 36px;
  background: rgba(212,175,55,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.about__pillar-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.about__pillar-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   STATS SECTION
   ============================================================ */

.stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px
  );
}

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

.stats__item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.stats__item:last-child { border-right: none; }

.stats__item:hover {
  background: rgba(255,255,255,0.04);
}

.stats__icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 20px;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__number .suffix {
  color: var(--accent);
}

.stats__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   DIVISIONS SECTION
   ============================================================ */

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

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

.division-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.3);
}

.division-card__header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.division-card__header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 50%;
}

.division-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.division-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.division-card__subtitle {
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.division-card__body {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.division-card__desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.division-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 24px;
}

.division-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.division-card__feature::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.division-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: var(--transition-fast);
}

.division-card__link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.division-card__link:hover { color: var(--accent-dark); }
.division-card__link:hover svg { transform: translateX(4px); }

/* Featured division - spans 2 columns */
.division-card--featured {
  grid-column: span 2;
  flex-direction: row;
}

.division-card--featured .division-card__header {
  width: 280px;
  flex-shrink: 0;
}

.division-card--featured .division-card__body {
  padding: 36px;
}

/* ============================================================
   HISTORY / TIMELINE SECTION
   ============================================================ */

.history { background: var(--white); }

.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 800px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--primary), var(--accent));
}

.timeline__item {
  position: relative;
  padding-bottom: 48px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent);
  z-index: 1;
}

.timeline__year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

.history__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.history__visual {
  position: sticky;
  top: 120px;
}

.history__card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.history__card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 14rem;
  color: rgba(212,175,55,0.08);
  line-height: 1;
}

.history__card-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.history__card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.history__card-avatar {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.2);
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.history__card-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.history__card-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.history__years {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.history__year-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
}

.history__year-badge .year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.history__year-badge .label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */

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

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

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

.value-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(13,31,60,0.06), rgba(13,31,60,0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: var(--transition);
}

.value-card:hover .value-card__icon {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.25));
  color: var(--accent-dark);
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(212,175,55,0.03) 80px,
    rgba(212,175,55,0.03) 81px
  );
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
}

.cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact__info-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.5;
}

/* Contact Form */
.contact__form-wrap {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
}

.contact__form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact__form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: 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,175,55,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

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

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

.form-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.form-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-submit svg { width: 18px; height: 18px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }

.form-success__icon {
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

/* ============================================================
   MAP SECTION
   ============================================================ */

.map-section { background: var(--light-bg); padding: 0; }

.map-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect width='100' height='100' fill='none'/%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(212,175,55,0.3)'/%3E%3C/svg%3E");
}

.map-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.map-pin {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
}

.map-pin svg {
  transform: rotate(45deg);
  color: var(--primary);
  width: 24px;
  height: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #080f1d;
  color: rgba(255,255,255,0.65);
}

.footer__main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer__brand { }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__logo-sub {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.footer__social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.footer__social svg { width: 16px; height: 16px; }

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover { color: var(--accent); transform: translateX(4px); }

.footer__link::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  opacity: 0.6;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copyright { font-size: 0.82rem; }

.footer__legal { display: flex; gap: 24px; }

.footer__legal-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}

.footer__legal-link:hover { color: var(--accent); }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(212,175,55,0.03) 60px, rgba(212,175,55,0.03) 61px);
}

.page-hero__content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb__item { display: flex; align-items: center; gap: 8px; }
.breadcrumb__item a { color: rgba(255,255,255,0.55); }
.breadcrumb__item a:hover { color: var(--accent); }
.breadcrumb__item.active { color: var(--accent); }
.breadcrumb__sep { color: rgba(255,255,255,0.25); }

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 900;
  border: none;
}

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

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

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

/* ============================================================
   PRELOADER
   ============================================================ */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader__logo { width: 80px; height: 80px; animation: spin 1s linear infinite; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
  from { width: 0; }
  to { width: 100%; }
}

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

@media (max-width: 1100px) {
  .hero__inner { gap: 40px; }
  .about__grid { gap: 50px; }
  .divisions__grid { grid-template-columns: 1fr 1fr; }
  .division-card--featured { grid-column: span 2; flex-direction: column; }
  .division-card--featured .division-card__header { width: 100%; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); max-width: 500px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image-wrap { order: -1; max-width: 400px; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats__item:nth-child(2n) { border-right: none; }
  .history__grid { grid-template-columns: 1fr; }
  .history__visual { position: static; margin-bottom: 40px; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; text-align: center; }
  .cta__actions { justify-content: center; }
  .section-padding { padding: 70px 0; }
}

@media (max-width: 640px) {
  .hero__inner { padding-top: 80px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .divisions__grid { grid-template-columns: 1fr; }
  .division-card--featured { flex-direction: column; }
  .division-card--featured .division-card__header { width: 100%; }
  .values__grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 20px; }
  .trust-bar__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-bar__divider { display: none; }
  .about__pillars { grid-template-columns: 1fr; }
  .about__badge { bottom: -10px; right: 10px; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; }
  .section-padding { padding: 56px 0; }
}

/* ============================================================
   BRANDS GRID RESPONSIVE
   ============================================================ */

/* ── Brand Cards (Subsidiaries Grid) ── */
#brands-grid {
  grid-template-columns: repeat(4, 1fr);
}

.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.brand-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.4);
}

/* Logo area — fills the full top of the card */
.brand-card__img-wrap {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
  box-sizing: border-box;
}

/* Card text body */
.brand-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  border-top: 1px solid var(--border);
}
.brand-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.brand-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* CTA card variant */
.brand-card--cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.brand-card--cta:hover {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 20px 50px rgba(13,31,60,0.3);
}

/* sub-card logo fix for divisions page */
.sub-card__logo {
  object-fit: contain !important;
  padding: 12px;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  #brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  #brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card__img-wrap { height: 140px; }
}
@media (max-width: 480px) {
  #brands-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .brand-card__img-wrap { height: 120px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .navbar, .back-to-top, .preloader { display: none; }
  body { padding-top: 0; }
  .hero { min-height: auto; height: auto; padding: 40px 0; }
}
