/* =========================================
   BizCorp - Main Stylesheet
   ========================================= */

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

/* --- CSS Variables --- */
:root {
  --primary:    #333333;
  --primary-dk: #353535;
  --accent:     #8d0809;
  --accent-lt:  #a01212;
  --light:      #faf5f5;
  --gray:       #8d6c6c;
  --dark:       #202020;
  --white:      #ffffff;
  --border:     #dde3ee;
  --shadow:     0 4px 24px rgba(26,60,110,0.10);
  --shadow-lg:  0 12px 48px rgba(26,60,110,0.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:  'Playfair Display', serif;
  --font-body:  'DM Sans', sans-serif;
}

/* --- Reset & Base --- */
*, *::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;
}
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Utility --- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--primary-dk); margin-bottom: 14px; }
.section-subtitle { font-size: 1rem; color: var(--gray); max-width: 560px; margin: 0 auto 48px; }
.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,146,42,0.10);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.35);
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-dark:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.divider-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  border-radius: 2px;
  margin: 0 auto 24px;
}
.divider-line-left { margin: 0 0 24px; }

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  background: transparent;
}
#navbar.scrolled {
  background: var(--primary-dk);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(15,36,69,0.35);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon span { font-size: 1.2rem; }
.logo-text { font-family: var(--font-head); font-size: 1.35rem; color: var(--white); font-weight: 700; }
.logo-text em { color: var(--accent-lt); font-style: normal; }
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.navbar-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 16px;
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-menu a:hover, .navbar-menu a.active { color: var(--white); }
.navbar-menu a:hover::after, .navbar-menu a.active::after { transform: scaleX(1); }
.navbar-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}
.navbar-contact i { color: var(--accent); font-size: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  background: var(--primary-dk);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--white); padding-left: 28px; background: rgba(255,255,255,0.04); }

/* =========================================
   HERO
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dk) 0%, #080000 60%, #b02525 100%);
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: rgba(200,146,42,0.07); }
.hero-shape-3 { width: 200px; height: 200px; top: 30%; right: 20%; background: rgba(255,255,255,0.03); }
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.30);
  color: var(--accent-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.7rem; }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero-title span { color: var(--accent-lt); }
.hero-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item { }
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.hero-stat-number span { color: var(--accent-lt); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.9); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.hero-img-badge-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.hero-img-badge-text strong { font-size: 1rem; color: var(--dark); display: block; line-height: 1.2; }
.hero-img-badge-text span { font-size: 0.75rem; color: var(--gray); }
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
}
.scroll-indicator:hover { color: rgba(255,255,255,0.8); }
.scroll-indicator i { animation: scrollBounce 1.8s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section { background: var(--white); }
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-exp-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}
.about-exp-badge .num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-lt);
  line-height: 1;
}
.about-exp-badge .txt { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 4px; line-height: 1.3; }
.about-content { padding-left: 48px; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 32px; }
.about-feature-item { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(26,60,110,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.about-feature-item:hover .about-feature-icon { background: var(--primary); color: var(--white); }
.about-feature-text h5 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.about-feature-text p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section { background: var(--light); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.service-card-body h4 {
  font-size: 1.15rem;
  color: var(--primary-dk);
  margin-bottom: 10px;
  font-family: var(--font-head);
}
.service-card-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 20px; flex: 1; }
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  margin-top: auto;
}
.btn-service i { transition: var(--transition); }
.btn-service:hover { color: var(--accent); }
.btn-service:hover i { transform: translateX(4px); }

/* =========================================
   CLIENTS / CAROUSEL
   ========================================= */
.clients-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}
.client-logo-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 70px;
}
.client-logo-item .logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  height: 60px;
  min-width: 130px;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
  white-space: nowrap;
}
.client-logo-item .logo-box:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
}
/* Slick overrides */
.slick-prev, .slick-next {
  z-index: 10;
  width: 36px; height: 36px;
}
.slick-prev { left: -20px; }
.slick-next { right: -20px; }
.slick-prev:before, .slick-next:before {
  color: var(--primary);
  font-size: 26px;
  opacity: 0.5;
}

/* =========================================
   NUMBERS SECTION
   ========================================= */
.numbers-section {
  background: linear-gradient(135deg, var(--primary-dk), var(--primary));
  position: relative;
  overflow: hidden;
}
.numbers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.number-item { text-align: center; position: relative; z-index: 2; }
.number-item .num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.number-item .num span { color: var(--accent-lt); }
.number-item .lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.number-item .icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-lt);
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(122, 2, 2, 0.95));
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-shape-1 { width: 400px; height: 400px; right: -100px; top: -150px; }
.cta-shape-2 { width: 200px; height: 200px; left: 5%; bottom: -80px; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-white:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--light); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin: 8px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author-info strong { font-size: 0.9rem; color: var(--dark); display: block; }
.testimonial-author-info span { font-size: 0.8rem; color: var(--gray); }

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--primary-dk);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; }
.footer-desc { font-size: 0.88rem; margin: 16px 0 24px; line-height: 1.8; color: rgba(255,255,255,0.9); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); color: var(--white); }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { color: var(--accent); font-size: 0.7rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--accent); font-size: 0.95rem; margin-top: 3px; }
.footer-contact-item span { color: rgba(255,255,255,0.9); font-size: 0.88rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: var(--accent-lt); }

/* =========================================
   PAGE BANNER (Inner pages)
   ========================================= */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; }
.breadcrumb-custom a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.breadcrumb-custom a:hover { color: var(--white); }
.breadcrumb-custom span { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.breadcrumb-custom span.current { color: var(--accent-lt); font-size: 0.88rem; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.mvv-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mvv-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.mvv-card h4 { font-size: 1.1rem; color: var(--primary-dk); margin-bottom: 12px; }
.mvv-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin: 0; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-card-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  font-weight: 900;
}
.team-card-body { padding: 20px; text-align: center; }
.team-card-body h5 { font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.team-card-body span { font-size: 0.82rem; color: var(--accent); font-weight: 500; }

/* =========================================
   SERVICE PAGE
   ========================================= */
.service-detail-body { padding: 20px 0; }
.benefit-list { display: flex; flex-direction: column; gap: 14px; }
.benefit-item { display: flex; align-items: flex-start; gap: 14px; }
.benefit-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(26,60,110,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}
.benefit-text { font-size: 0.9rem; color: var(--gray); line-height: 1.6; padding-top: 6px; }
.service-sidebar .sidebar-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.service-sidebar .sidebar-card h5 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; color: var(--dark); margin-bottom: 16px; }
.service-nav-links { display: flex; flex-direction: column; gap: 6px; }
.service-nav-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-nav-links a:hover, .service-nav-links a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.service-nav-links a i { font-size: 0.75rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h4 { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-lt);
  font-size: 1.05rem;
}
.contact-info-item-text strong { font-size: 0.85rem; color: var(--white); display: block; font-family: var(--font-body); margin-bottom: 2px; }
.contact-info-item-text span { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-label-custom {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  display: block;
  letter-spacing: 0.3px;
}
.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light);
  transition: var(--transition);
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,60,110,0.08);
}
.form-control-custom.is-invalid { border-color: #e53e3e; }
.form-control-custom.is-valid { border-color: #38a169; }
textarea.form-control-custom { resize: vertical; min-height: 130px; }
.field-error { font-size: 0.78rem; color: #e53e3e; margin-top: 5px; display: none; }
.field-error.show { display: block; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* =========================================
   AOS overrides
   ========================================= */
[data-aos] { transition-duration: 0.7s !important; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .navbar-menu, .navbar-contact { display: none; }
  .hamburger { display: flex; }
  .about-content { padding-left: 0; margin-top: 60px; }
  .about-exp-badge { right: 0; bottom: -20px; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-cta-group { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section .row { text-align: center; }
  .cta-section .row > div:last-child { margin-top: 24px; justify-content: center; display: flex; }
  .numbers-section [class*="col-"] { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .page-banner { padding: 120px 0 50px; }
  .contact-info-card, .contact-form-card { padding: 24px; }
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dk);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo { font-family: var(--font-head); font-size: 2rem; color: var(--white); font-weight: 700; }
.preloader-logo em { color: var(--accent-lt); font-style: normal; }
.preloader-bar {
  width: 260px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  border-radius: 2px;
  animation: preload 1.5s ease forwards;
}
@keyframes preload { to { width: 100%; } }
.preloader-content { text-align: center; }

/* --- Back to top --- */
#back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}
#back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-top:hover { background: var(--accent); }

/* Toast */
.toast-custom {
  position: fixed;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9998;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}
.toast-custom.show { display: flex; animation: toastIn 0.3s ease; }
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.toast-custom i { color: #4ade80; }
.toast-custom.error i { color: #f87171; }
