/* ============================================================
   RYUZEN AUTOMOTIVE INDUSTRY LTD. - Main Stylesheet
   Color Concept: Red #D42B2B | Dark #1A1A1A | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&family=Roboto+Condensed:wght@400;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --red:         #D42B2B;
  --red-dark:    #A81F1F;
  --red-light:   #E84040;
  --dark:        #1A1A1A;
  --darker:      #0D0D0D;
  --gray-dark:   #2C2C2C;
  --gray-mid:    #444444;
  --gray:        #666666;
  --gray-light:  #999999;
  --light:       #F4F4F4;
  --off-white:   #F9F9F9;
  --white:       #FFFFFF;
  --border-dark: rgba(255,255,255,0.08);
  --border-light:#E0E0E0;
  --shadow:      0 4px 24px rgba(0,0,0,0.15);
  --shadow-red:  0 6px 28px rgba(212,43,43,0.35);
  --transition:  all 0.3s ease;
  --font-heading:'Oswald', sans-serif;
  --font-body:   'Roboto', sans-serif;
}

/* ─── Base Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── Typography ─── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--red); }
.title-underline {
  display: block;
  width: 60px; height: 4px;
  background: var(--red);
  margin: 0.75rem 0 1.5rem;
  position: relative;
}
.title-underline::after {
  content: '';
  display: block;
  width: 30px; height: 4px;
  background: var(--dark);
  position: absolute;
  left: 68px; top: 0;
}
.text-red   { color: var(--red) !important; }
.text-dark2 { color: var(--dark) !important; }
.bg-dark2   { background-color: var(--dark) !important; }
.bg-darker  { background-color: var(--darker) !important; }
.bg-red     { background-color: var(--red) !important; }
.bg-light2  { background-color: var(--light) !important; }

/* ─── Utility ─── */
.section-pad   { padding: 90px 0; }
.section-pad-sm{ padding: 60px 0; }
.over-hidden   { overflow: hidden; }
.ls-1          { letter-spacing: 1px; }
.ls-2          { letter-spacing: 2px; }
.fw-oswald     { font-family: var(--font-heading); }

/* ─── Buttons ─── */
.btn-ryuzen-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-ryuzen-red::before {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--darker);
  z-index: -1;
  transition: left 0.35s ease;
}
.btn-ryuzen-red:hover { color: var(--white); border-color: var(--darker); }
.btn-ryuzen-red:hover::before { left: 0; }

.btn-ryuzen-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 0;
  transition: var(--transition);
}
.btn-ryuzen-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-ryuzen-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 0;
  transition: var(--transition);
}
.btn-ryuzen-dark:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ─── Logo SVG ─── */
.navbar-brand .brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo-icon { flex-shrink: 0; }
.brand-logo-text { line-height: 1; }
.brand-logo-text .brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
}
.brand-logo-text .brand-sub {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.52rem;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 2.5px;
  margin-top: 3px;
  text-transform: uppercase;
}

/* ─── NAVBAR ─── */
#mainNav {
  background: var(--darker);
  padding: 0;
  transition: var(--transition);
  border-bottom: 2px solid var(--red);
}
#mainNav.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
#mainNav .navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 28px 16px;
  position: relative;
  transition: var(--transition);
}
#mainNav .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active { color: var(--white); }
#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after { width: 100%; }
#mainNav .navbar-toggler { border-color: rgba(255,255,255,0.3); }
#mainNav .navbar-toggler-icon { filter: invert(1); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  margin-left: 12px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--dark);
  padding: 7px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar a { color: rgba(255,255,255,0.65); }
.top-bar a:hover { color: var(--red); }
.top-bar .top-bar-icon { color: var(--red); margin-right: 5px; }

/* ─── PAGE HERO BANNER ─── */
.page-hero {
  background: linear-gradient(135deg, var(--darker) 0%, var(--gray-dark) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&auto=format&fit=crop&q=60') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero .hero-strip {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 5px;
  background: var(--red);
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.page-hero-title span { color: var(--red); }
.breadcrumb-custom { background: transparent; padding: 0; margin: 0; }
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item a:hover { color: var(--red); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--red); font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ─── HERO SECTION (HOME) ─── */
#hero {
  min-height: 100vh;
  background: var(--darker);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581092160607-ee67df8a71eb?w=1920&auto=format&fit=crop&q=75') center/cover no-repeat;
  opacity: 0.18;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(13,13,13,0.97) 0%,
    rgba(13,13,13,0.85) 55%,
    rgba(212,43,43,0.15) 100%);
}
.hero-corner-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 220px 220px;
  border-color: transparent transparent var(--red) transparent;
  opacity: 0.12;
}
.hero-vertical-line {
  position: absolute;
  top: 0; right: 28%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: 0.3;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,43,43,0.15);
  border: 1px solid rgba(212,43,43,0.4);
  padding: 8px 18px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}
.hero-badge span.dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--red); display: block; }
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0.3); transform-origin: top; }
}
.hero-right-panel {
  position: relative;
  z-index: 1;
}
.hero-stats-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  padding: 2.5rem;
  border-left: 4px solid var(--red);
}
.hero-stat-item { padding: 1.2rem 0; border-bottom: 1px solid var(--border-dark); }
.hero-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── TICKER / MARQUEE ─── */
.ticker-section {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrapper { display: flex; align-items: center; gap: 0; }
.ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 30px;
}
.ticker-item i { opacity: 0.7; font-size: 0.75rem; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ABOUT PREVIEW ─── */
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge .badge-text {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}
.about-feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  padding: 10px 18px;
  margin-bottom: 10px;
  border-left: 3px solid var(--red);
  font-size: 0.88rem;
  font-weight: 500;
}
.about-feature-pill i { color: var(--red); font-size: 1rem; }

/* ─── STATS COUNTER ─── */
.stats-section {
  background: var(--dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--border-dark);
}
.stat-card:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─── FEATURES / PILLARS ─── */
.features-section { background: var(--white); }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 4px;
  background: var(--red);
  transition: width 0.4s ease;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-card:hover::before { width: 100%; }
.feature-icon {
  width: 72px; height: 72px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--red); }
.feature-icon i {
  font-size: 1.6rem;
  color: var(--red);
  transition: var(--transition);
}
.feature-card:hover .feature-icon i { color: var(--white); }
.feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ─── PRODUCTS SECTION ─── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.product-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badge {
  position: absolute;
  top: 12px; left: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
}
.product-card-body { padding: 24px; }
.product-category {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.product-card-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.product-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-spec-tag {
  display: inline-block;
  background: var(--light);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  margin: 3px 3px 3px 0;
  text-transform: uppercase;
}

/* ─── PRODUCTS PAGE ─── */
.product-filter-bar { margin-bottom: 40px; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  margin: 4px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.product-full-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.product-full-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.product-full-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
}
.product-full-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-full-card:hover .product-full-img img { transform: scale(1.05); }

/* ─── MANUFACTURING SECTION ─── */
.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 30px;
  background: var(--border-light);
}
.process-step:last-child .step-number::after { display: none; }
.step-content { padding-top: 4px; }
.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.step-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

.machine-card {
  background: var(--dark);
  overflow: hidden;
  transition: var(--transition);
}
.machine-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.machine-img {
  height: 200px;
  overflow: hidden;
}
.machine-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.machine-card:hover .machine-img img { transform: scale(1.08); }
.machine-body { padding: 20px; }
.machine-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.machine-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ─── CTA BANNER ─── */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cta-text { color: rgba(255,255,255,0.85); font-size: 1rem; margin-top: 12px; }

/* ─── MANUFACTURING OVERVIEW (Dark BG) ─── */
.mfg-preview {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
}
.mfg-img-wrap { position: relative; }
.mfg-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.mfg-tag-overlay {
  position: absolute;
  top: 24px; left: -24px;
  background: var(--red);
  color: var(--white);
  padding: 16px 24px 16px 48px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ─── QUALITY / CERTIFICATIONS ─── */
.cert-badge {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.cert-badge:hover { border-color: var(--red); box-shadow: var(--shadow); }
.cert-icon { font-size: 2.5rem; color: var(--red); margin-bottom: 14px; }
.cert-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}

/* ─── RAW MATERIALS / PARTNERS ─── */
.partner-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
}
.partner-card:hover { border-color: var(--red); }
.partner-icon {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-icon i { font-size: 1.4rem; color: var(--red); }
.partner-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.partner-desc { font-size: 0.82rem; color: var(--gray); margin-top: 3px; }

/* ─── ABOUT PAGE ─── */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--dark));
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 4px;
  width: 16px; height: 16px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--red);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}
.timeline-text { font-size: 0.92rem; color: var(--gray); margin-top: 6px; }

.value-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}
.value-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.value-icon { font-size: 2.2rem; color: var(--red); margin-bottom: 18px; }
.value-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ─── CONTACT PAGE ─── */
.contact-info-card {
  background: var(--dark);
  padding: 36px 30px;
  height: 100%;
  border-bottom: 4px solid var(--red);
  transition: var(--transition);
}
.contact-info-card:hover { background: var(--gray-dark); }
.contact-info-icon {
  width: 58px; height: 58px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-info-icon i { font-size: 1.3rem; color: var(--white); }
.contact-info-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.contact-info-text { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.7; }

.contact-form-wrap {
  background: var(--white);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.form-label-custom {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-control-custom {
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--off-white);
  transition: var(--transition);
}
.form-control-custom:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--red);
  background: var(--white);
}
.map-placeholder {
  background: var(--light);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  flex-direction: column;
  gap: 12px;
  color: var(--gray);
}
.map-placeholder i { font-size: 3rem; color: var(--red); }

/* ─── FOOTER ─── */
#footer {
  background: var(--darker);
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
  border-top: 4px solid var(--red);
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-top: 18px;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--red);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a i { font-size: 0.65rem; color: var(--red); transition: var(--transition); }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item i { color: var(--red); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-bottom {
  background: rgba(0,0,0,0.4);
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid var(--border-dark);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-newsletter .form-control,
.footer-newsletter .btn { border-radius: 0; }
.footer-newsletter .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 10px 14px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.1);
}

/* ─── BACK TO TOP ─── */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ─── DECORATIVE ELEMENTS ─── */
.red-divider { width: 100%; height: 4px; background: var(--red); }
.diagonal-bg {
  position: relative;
  background: var(--red);
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  padding: 100px 0;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.outlined-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  position: absolute;
  bottom: -30px;
  right: 0;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ─── TABS ─── */
.nav-pills-custom .nav-link {
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 0;
  color: var(--gray);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  margin: 4px;
  transition: var(--transition);
}
.nav-pills-custom .nav-link:hover,
.nav-pills-custom .nav-link.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.header-logo img {
  height:100px;
  width:auto;
  padding-bottom: 7px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  #mainNav .navbar-nav .nav-link { padding: 12px 16px; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .section-title { font-size: 2rem; }
  .about-img-badge { right: 10px; bottom: 10px; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat-card:last-child { border-bottom: none; }
  .contact-form-wrap { padding: 30px 24px; }
}
@media (max-width: 767px) {
  .section-pad  { padding: 60px 0; }
  .hero-title   { font-size: 2.2rem; }
  .cta-title    { font-size: 1.8rem; }
  .hero-stats-panel { margin-top: 40px; }
  .outlined-text { font-size: 5rem; }
  .page-hero-title { font-size: 2rem; }
  .footer-heading { margin-top: 30px; }
}

@media (max-width: 500px) {
    .header-logo img {
      height:85px;
      width:auto;
      padding-bottom: 5px;
    }
}

