/* ===================================================
   DLS Elevators (Pvt) Ltd — Main Stylesheet
   Brand Color: Red
   =================================================== */

:root {
  --gold:         #c0392b;
  --gold-light:   #e74c3c;
  --gold-dark:    #922b21;
  --red-accent:   #e87b72;
  --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-red:   0 4px 24px rgba(192,57,43,0.20);
}

*, *::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-pad { padding: 90px 0; }
@media (max-width: 768px) { .section-pad { padding: 60px 0; } }

.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(--red-accent); }

.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-size: 18px; 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-red); transform: translateY(-1px);
}
.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); }

/* --- LOGO --- */
.logo { height: 48px; width: auto; object-fit: contain; }

/* --- NAVBAR --- */
#mainNav {
  background: rgba(28,35,49,0.96);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(192,57,43,0.2);
  transition: all var(--transition);
}
#mainNav.scrolled { padding: 8px 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;
}
.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(--red-accent) !important; }

.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; }

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
  background: linear-gradient(135deg, #2d3748 0%, #1c2331 100%);
  border: 2px dashed rgba(192,57,43,0.35);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: rgba(231,76,60,0.7);
  font-size: 0.82rem; line-height: 1.6; border-radius: 2px; width: 100%;
}
.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(--red-accent); 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(--red-accent); 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.85); margin-top: 4px; }

/* --- PRODUCT CARDS --- */
.product-card { background: var(--white); border-radius: 6px; overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow); height: 100%; }
.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; flex-grow: 1; }

/* --- 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-red); transform: translateY(-3px); }
.feature-icon { width: 52px; height: 52px; background: rgba(192,57,43,0.08); 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.82); 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(--red-accent); text-transform: uppercase; }

/* --- PROJECTS --- */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--steel-dark);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.project-img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Tall image — left feature card on desktop */
.project-img-tall {
  height: 540px;
}

/* Short image — right stacked cards */
.project-img-short {
  height: 160px;
}

/* Mobile: all cards get equal image height */
@media (max-width: 991.98px) {
  .project-img-tall,
  .project-img-short {
    height: 220px;
  }
}

/* Info bar sits below image (not absolute) */
.project-info {
  padding: 16px 20px 18px;
  background: rgba(28, 35, 49, 0.97);
  transition: background var(--transition);
}

.project-card:hover .project-info {
  background: rgba(192, 57, 43, 0.92);
}

.project-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-accent);
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.project-card:hover .project-tag {
  color: rgba(255, 255, 255, 0.75);
}

.project-info h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}

.project-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}


/* --- 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(192,57,43,0.4); }
.featured-testimonial { background: rgba(192,57,43,0.1); border-color: rgba(192,57,43,0.5); }
.stars { color: var(--red-accent); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color:black; 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(--red-accent); }

/* --- CTA --- */
.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 28px; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 16px; line-height: 1.7; }
.footer-heading { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-accent); 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: 16px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--red-accent); }
.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(--red-accent); }
.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); }
.footer-logo { height: 50px; width: auto; object-fit: contain; }

/* --- 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(--red-accent); 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 --- */
.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(192,57,43,0.06); 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(192,57,43,0.15); color: var(--red-accent); 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(192,57,43,0.08) !important; }
.text-gold { color: var(--red-accent) !important; }

/* --- SERVICE PAGES --- */
.service-number { font-family: var(--font-display); font-size: 5rem; font-weight: 700; color: rgba(192,57,43,0.12); 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: 18px; color: var(--text-dark); }
.service-list li i { color: var(--gold); font-size: 17px; }

/* --- BRANDS GRID --- */
.brands-grid { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 20px; }
.brand-badge { background: var(--white); border: 1px solid var(--steel-border); border-radius: 4px; padding: 6px 14px; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }

/* --- PROCESS TIMELINE --- */
.process-step { text-align: center; padding: 30px 20px; position: relative; }
.process-icon { width: 72px; height: 72px; background: rgba(192,57,43,0.12); 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: 18px; 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; } }

/* --- PLANS --- */
.plan-card { background: #363636; 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(192,57,43,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(--red-accent); }
.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: 17px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.plan-features li i.fa-check { color: var(--red-accent); }
.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(192,57,43,0.3); }
.featured-value { border-color: var(--gold); background: rgba(192,57,43,0.06); }
.value-icon { width: 64px; height: 64px; background: rgba(192,57,43,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: 17px; 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-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; }

/* --- 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-red); }
.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 --- */
.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-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(192,57,43,0.1); outline:none; }
.check-gold:checked { background-color:var(--gold); border-color:var(--gold); }
.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(192,57,43,0.08); 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(192,57,43,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(--red-accent); margin-right:4px; }

/* --- FAQ --- */
.faq-item { background:var(--white); border:1px solid var(--steel-border) !important; border-radius:2px !important; margin-bottom:10px; }
.faq-btn { 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(192,57,43,0.03); box-shadow: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(192,57,43,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; }
}
