/* ===================================================
   ELEVATE Co. — Main Stylesheet
   Aesthetic: Luxury Industrial | Steel + Gold
   =================================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --gold:         #c9a84c;
  --gold-light:   #e2c472;
  --gold-dark:    #a8872a;
  --steel-dark:   #1c2331;
  --steel-mid:    #2d3748;
  --steel-light:  #f2f3f5;
  --steel-border: #e0e2e7;
  --text-dark:    #1a1d26;
  --text-mid:     #4a5568;
  --text-light:   #a0aab8;
  --white:        #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 8px 40px rgba(0,0,0,0.10);
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.18);
}

/* ---------- GLOBAL ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- SECTION PADDING ---------- */
.section-pad { padding: 90px 0; }
@media (max-width: 768px) { .section-pad { padding: 60px 0; } }

/* ---------- BACKGROUNDS ---------- */
.bg-light-steel { background: var(--steel-light); }
.bg-dark-steel  { background: var(--steel-dark); }

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.link-gold {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.link-gold:hover { color: var(--gold-dark); }

/* ---------- BUTTONS ---------- */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-gold.active { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-dark:hover { background: var(--text-dark); color: var(--white); }

/* ---------- NAVBAR ---------- */
#mainNav {
  background: rgba(28, 35, 49, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
}
#mainNav.scrolled {
  padding: 10px 0;
  background: rgba(28, 35, 49, 0.99);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.brand-icon { color: var(--gold); margin-right: 4px; font-size: 0.9em; }
.brand-dot  { color: var(--gold); }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75) !important;
  padding: 8px 14px !important;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }

/* Custom hamburger */
.navbar-toggler { border: none; background: none; padding: 6px 4px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition);
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
  background: linear-gradient(135deg, #2d3748 0%, #1c2331 100%);
  border: 2px dashed rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(201,168,76,0.6);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
  border-radius: 2px;
  width: 100%;
  position: relative;
}
.img-placeholder small { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* ---------- HERO ---------- */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  border: none;
  border-radius: 0;
  background: linear-gradient(135deg, #1a2035 0%, #0d1117 60%, #1c2331 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,35,49,0.92) 0%, rgba(28,35,49,0.55) 60%, rgba(28,35,49,0.2) 100%);
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-section .d-flex {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s ease forwards 1.2s;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.2); opacity: 1; }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--gold);
}
.stat-item {
  padding: 16px 10px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-number span { font-size: 1.4rem; }
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ---------- PRODUCT CARDS ---------- */
.product-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.product-card-body { padding: 22px; }
.product-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ---------- FEATURE CARDS ---------- */
.feature-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--steel-border);
  border-radius: 2px;
  transition: all var(--transition);
  height: 100%;
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.feature-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ---------- BANNER ---------- */
.banner-section { position: relative; min-height: 320px; display: flex; align-items: center; }
.banner-img-placeholder {
  position: absolute;
  inset: 0;
  height: 100%;
  border: none;
  border-radius: 0;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,35,49,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.banner-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 12px;
  line-height: 1.4;
}
.banner-author {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------- PROJECTS ---------- */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--steel-dark);
  cursor: pointer;
}
.project-card:hover .project-info { background: rgba(201,168,76,0.92); }
.project-card:hover .project-info h5 { color: var(--white); }
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  background: rgba(28,35,49,0.88);
  transition: background var(--transition);
}
.project-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.project-info h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2px;
  transition: color var(--transition);
}
.project-info p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 2px;
  transition: all var(--transition);
  height: 100%;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); }
.featured-testimonial {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span  { font-size: 0.78rem; color: var(--gold); }

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--steel-light) 0%, #e8eaef 100%);
  border-top: 3px solid var(--gold);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--steel-dark);
  padding: 70px 0 0;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 50px 0 24px; }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin: 0; }
.footer-legal {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  text-decoration: none;
  margin-left: 18px;
  transition: color var(--transition);
}
.footer-legal:hover { color: var(--gold); }
.site-footer { padding-bottom: 28px; }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-right: 8px;
  text-decoration: none;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--white); }
.social-links.dark a { background: rgba(28,35,49,0.08); color: var(--steel-dark); }
.social-links.dark a:hover { background: var(--gold); color: var(--white); }

/* ---------- PAGE HERO ---------- */
.page-hero {
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-top: 100px;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  border: none;
  border-radius: 0;
  background: linear-gradient(135deg, #1a2035 0%, #0d1117 100%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,35,49,0.88) 0%, rgba(28,35,49,0.4) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.breadcrumb-light .breadcrumb-item a { color: var(--gold); text-decoration: none; }
.breadcrumb-light .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---------- PRODUCT SERIES DETAIL ---------- */
.product-series-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}
.product-series-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 6px;
}
.product-series-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(201,168,76,0.07);
  border-radius: 2px;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.spec-item i { color: var(--gold); font-size: 0.9rem; }

/* ---------- COMPARISON TABLE ---------- */
.comparison-table {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.comparison-table thead tr th {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-color: rgba(255,255,255,0.1);
  padding: 14px;
}
.comparison-table tbody tr td {
  border-color: rgba(255,255,255,0.07);
  padding: 13px 14px;
  vertical-align: middle;
}
.comparison-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.highlight-col { background: rgba(201,168,76,0.08) !important; }
.text-gold { color: var(--gold) !important; }

/* ---------- SERVICE PAGES ---------- */
.service-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: -20px;
}
.service-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--steel-border);
  font-size: 0.95rem;
  color: var(--text-dark);
}
.service-list li i { color: var(--gold); font-size: 0.9rem; }

/* ---------- PROCESS TIMELINE ---------- */
.process-timeline { position: relative; }
.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.process-icon {
  width: 72px;
  height: 72px;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 20px;
}
.process-step h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }
.process-line {
  position: absolute;
  top: 65px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--gold);
  opacity: 0.3;
}
.process-line.last { display: none; }
@media (max-width: 768px) { .process-line { display: none; } }

/* ---------- MAINTENANCE PLANS ---------- */
.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover { border-color: rgba(201,168,76,0.3); }
.plan-featured {
  background: var(--steel-dark);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.plan-header h5 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.plan-price span { font-size: 0.9rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.plan-features { list-style: none; padding: 0; margin: 0 0 28px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plan-features li i.fa-check { color: var(--gold); }
.plan-features li i.fa-times { color: rgba(255,255,255,0.2); }
.plan-features li.disabled { color: rgba(255,255,255,0.3); }

/* ---------- ABOUT PAGE ---------- */
.value-card {
  padding: 36px 30px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.value-card:hover { border-color: rgba(201,168,76,0.3); }
.featured-value { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 20px;
}
.value-card h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.value-card p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline::before { left: 20px; }
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 40px;
  position: relative;
}
.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 16px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--steel-light);
  border-radius: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline-item, .timeline-item.right {
    justify-content: flex-start;
    padding-left: 50px;
    padding-right: 0;
  }
  .timeline-item::before { left: 14px; }
}
.timeline-year {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  white-space: nowrap;
  display: none;
}
.timeline-content {
  background: var(--white);
  border: 1px solid var(--steel-border);
  border-radius: 2px;
  padding: 22px 26px;
  max-width: 360px;
  box-shadow: var(--shadow);
}
.timeline-content h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold-dark);
}
.timeline-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* Timeline year badge above content */
.timeline-item::after {
  position: absolute;
  left: 50%;
  top: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
  transform: translateX(-50%);
}

/* ---------- TEAM ---------- */
.team-card {
  text-align: center;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-photo {
  height: 220px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.team-info h5 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; }
.team-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.team-info p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ---------- CERTS ---------- */
.cert-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--steel-border);
  border-radius: 2px;
  transition: all var(--transition);
}
.cert-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.cert-logo { height: 80px; margin-bottom: 16px; }
.cert-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; margin: 0; }

/* ---------- GALLERY ---------- */
.gallery-img {
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition);
}
.gallery-img:hover { transform: scale(1.02); }

/* ---------- CONTACT FORM ---------- */
.contact-form-wrapper { background: var(--white); border-radius: 2px; padding: 40px; border: 1px solid var(--steel-border); box-shadow: var(--shadow); }
.form-label-custom { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 6px; display: block; }
.form-control-custom {
  border: 1px solid var(--steel-border);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all var(--transition);
}
.form-control-custom:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  outline: none;
}
.form-select.form-control-custom { cursor: pointer; }
.check-gold:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* ---------- CONTACT INFO ---------- */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong { display: block; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 3px; }
.contact-info-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ---------- OFFICE CARDS ---------- */
.office-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition);
}
.office-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.office-info { padding: 18px; }
.office-info h5 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.office-info p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 5px; }
.office-info p i { color: var(--gold); margin-right: 4px; }

/* ---------- FAQ ACCORDION ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--steel-border) !important;
  border-radius: 2px !important;
  margin-bottom: 10px;
}
.faq-btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  padding: 18px 22px;
}
.faq-btn:not(.collapsed) { color: var(--gold-dark); background: rgba(201,168,76,0.04); box-shadow: none; }
.faq-btn::after { filter: none; }
.faq-body { padding: 4px 22px 20px; color: var(--text-mid); font-size: 0.92rem; line-height: 1.8; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(28,35,49,0.98); padding: 20px; margin-top: 10px; border-top: 1px solid rgba(201,168,76,0.2); }
  .nav-link { padding: 10px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .contact-form-wrapper { padding: 24px; }
}

@media (max-width: 575px) {
  .hero-title { font-size: 2.2rem; }
  .stat-number { font-size: 1.6rem; }
}
