:root {
  --color-primary:       #1C1917;
  --color-primary-light: #292524;
  --color-primary-mid:   #44403C;
  --color-primary-dark:  #0C0A09;
  --color-primary-form:  rgba(28,25,23,0.92);
  --color-overlay:       rgba(28,25,23,0.78);
  --color-accent:        #FFC107;
  --color-accent-glow:   #FFCA28;
  --color-accent-gold:   #FFC107;
  --color-red:           #DC2626;
  --color-red-dark:      #B91C1C;
  --color-white:         #ffffff;
  --color-black:         #000000;
  --color-text-navy:     #1C1917;
  --color-text-body:     #444444;
  --color-text-light:    #cbd5e1;
  --color-text-muted:    rgba(255,255,255,0.78);
  --color-bg-light:      #FAFAF9;
  --color-bg-hover-nav:  rgba(255,255,255,0.18);
  --glass-bg:            rgba(255,255,255,0.1);
  --glass-border:        rgba(255,255,255,0.2);
  --color-star:          #fbbc04;
  --color-google-blue:   #4285F4;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  26px;
  --radius-full:  50%;
  --hero-height:       100vh;
  --hero-min-height:   900px;
  --hero-padding-top:  calc(var(--nav-height) + 40px);
  --hero-content-left: clamp(24px, 3vw, 48px);
  --nav-height:        80px;
  --mobile-nav-height: 56px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1280px !important;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; margin: 0; padding: 0; font-family: 'Inter', 'Open Sans', sans-serif; }
a { text-decoration: none; }

.text-accent { color: var(--color-accent) !important; }
.text-dark { color: var(--color-primary) !important; }

/* ═══════════ Unified Hero Design System ═══════════ */
.hero {
  position: relative;
  overflow: visible;
}

@media (min-width: 992px) {
  .hero {
    min-height: max(var(--hero-height), var(--hero-min-height));
    padding: 0;
    padding-bottom: 40px;
    background: #111;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.50) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.03) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero__inner {
    min-height: max(var(--hero-height), var(--hero-min-height));
    padding-top: var(--hero-padding-top);
  }
}

.hero__content {
  margin-left: var(--hero-content-left);
}

.hero__logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.hero__logo .logo {
  width: 150px; 
  height: 150px; 
  border-radius: var(--radius-full); 
  background-color: var(--color-overlay); 
  background-size: cover; 
  background-position: center; 
  border: 3px solid rgba(255,255,255,0.35); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  cursor: pointer;
}

.hero__title {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  display: block;
}

.hero__title .text-accent {
  color: var(--color-accent-gold, var(--color-accent));
}

.hero__subtitle {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  max-width: 520px;
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
  margin: 0;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Nav white text scoping for dark heroes */
.page-hero-dark .main-nav:not(.navbar-scrolled) .nav-btn,
.page-hero-dark .main-nav:not(.navbar-scrolled) .nav-phone-link {
  color: var(--color-white);
}

.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all .3s ease;
}

.main-nav.navbar-scrolled {
  background: rgba(28, 25, 23, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 72px;
}

.main-nav.navbar-scrolled .nav-btn {
  color: var(--color-white) !important;
  text-shadow: none;
  height: 72px;
}

.main-nav.navbar-scrolled .nav-btn:hover {
  background: rgba(255,255,255,0.05);
}

.main-nav.navbar-scrolled .nav-phone-link {
  height: 72px;
}

.main-nav > ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 100%;
}

.main-nav > ul > li { position: relative; }
.nav-logo           { display: none; }
.nav-logo-link      { display: block; text-decoration: none; width: 140px; height: 140px; position: absolute; top: 10px; z-index: 2000; border-radius: 50%; overflow: hidden; transition: width .3s ease, height .3s ease, top .3s ease, border-radius .3s ease, opacity .3s ease, visibility .3s ease; }
.main-nav.navbar-scrolled .nav-logo-link { width: 90px; height: 90px; top: 5px; border-radius: 0; overflow: hidden; }
.nav-logo-img       { width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); }
.nav-phone          { display: flex; justify-content: flex-end; }

.nav-links-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
}

.nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  height: var(--nav-height);
  padding: 0 16px;
  color: #222;
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  outline: none;
  letter-spacing: .01em;
  transition: all .3s ease;
}

.main-nav.nav-light-text:not(.navbar-scrolled) .nav-btn {
  color: var(--color-white);
}

.main-nav.nav-light-text:not(.navbar-scrolled) .topbar-phone,
.main-nav.nav-light-text:not(.navbar-scrolled) .hamburger i {
  color: var(--color-white);
}

.nav-btn::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: #F4B400;
  box-shadow: 0 0 12px rgba(244,180,0,.55);
  opacity: 0;
  transition: width .25s ease, opacity .25s ease;
}

.nav-btn:hover::after,
.nav-btn.active::after {
  width: 42px;
  opacity: 1;
}

.nav-btn:hover,
.nav-btn.active {
  font-weight: 600;
  color: #F4B400 !important;
  text-shadow: 0 0 20px rgba(244,180,0,.5), 0 0 40px rgba(244,180,0,.25);
}

.nav-btn.active::after {
  box-shadow: 0 0 20px rgba(244,180,0,.8), 0 0 40px rgba(244,180,0,.4);
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--nav-height);
  padding: 0 20px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: .03em;
  transition: all .3s ease;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
}
.nav-phone-link:hover { background: var(--color-accent-glow); }
.nav-phone-link i     { font-size: 16px; }

.mobile-topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--mobile-nav-height);
  padding: 0 12px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-topbar-logo-link {
  display: block;
  order: 2;
  flex: 1;
  text-align: center;
}

.mobile-topbar-logo {
  height: 45px;
  width: auto;
  display: inline-block;
}

.topbar-phone-icon { 
  display: flex; align-items: center; justify-content: center; 
  width: 36px; height: 36px; 
  background: var(--color-accent); 
  border-radius: 50%; 
  color: #fff !important; 
  text-decoration: none; 
  order: 3; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); 
}
.topbar-phone-icon i { font-size: 15px; }

.hamburger      { background: none; border: none; cursor: pointer; padding: 4px; display: flex; align-items: center; order: 1; }
.hamburger i    { font-size: 26px; color: #222; }

.mobile-topbar.navbar-scrolled {
  background: rgba(28, 25, 23, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all .3s ease;
}

.mobile-topbar.navbar-scrolled .topbar-phone-icon,
.mobile-topbar.navbar-scrolled .hamburger i {
  color: var(--color-white);
}

.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1199; }
.overlay.active { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0; left: -320px;
  width: 300px; height: 100dvh;
  background: var(--color-primary-light);
  z-index: 1200;
  display: flex; flex-direction: column;
  transition: left .3s ease;
  overflow-y: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.mobile-drawer::-webkit-scrollbar { display: none; }
.mobile-drawer.open { left: 0; }

.drawer-header { background: var(--color-accent); padding: 16px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.drawer-logo-link   { display: flex; align-items: center; text-decoration: none; }
.drawer-logo-img    { max-height: 48px; width: auto; display: block; border-radius: 50%; }
.close-btn     { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; }
.close-btn i   { font-size: 20px; color: var(--color-white); }

.drawer-nav { list-style: none; margin: 0; padding: 0; }
.drawer-nav > li { border-bottom: 1px solid rgba(255,255,255,.1); }
.drawer-nav > li > .m-nav-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: none; color: var(--color-white); font-family: 'Inter', 'Open Sans', sans-serif; font-size: 1.1rem; font-weight: 700; padding: 15px 16px; cursor: pointer; text-align: left; transition: background .2s; }
.drawer-nav > li > .m-nav-btn:hover { background: rgba(255,255,255,.08); }

.drawer-phone { margin-top: auto; padding: 16px 12px; border-top: 1px solid rgba(255,255,255,0.15); flex-shrink: 0; }
.drawer-phone-link { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--color-accent); color: var(--color-white); font-size: 1.2rem; font-weight: 800; padding: 14px; border-radius: var(--radius-md); letter-spacing: .03em; transition: background .2s; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.drawer-phone-link:hover { background: var(--color-accent-glow); }
.drawer-phone-link i     { font-size: 20px; }



.form-container   { width: 100%; }
.appointment-card { background: var(--color-primary-form); border-radius: 10px; color: var(--color-white); width: 75%; box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.appointment-pill { background: var(--color-accent); color: var(--color-white); border-radius: var(--radius-pill); padding: 10px 20px; font-weight: 800; display: inline-block; font-size: 1.15rem; box-shadow: 0 4px 0 rgba(0,0,0,0.12); }
.rounded-input    { border-radius: 4px !important; padding: 5px 8px; box-shadow: none; border: none; }
.form-control:focus, .form-select:focus, textarea:focus { outline: none; box-shadow: 0 0 0 0.15rem rgba(255,193,7,0.3); }
.btn-cta          { background: var(--color-accent); border: none; border-radius: var(--radius-md); font-weight: 700; padding: 12px 18px; box-shadow: 0 6px 0 rgba(0,0,0,0.08); }
.btn-cta:hover    { background: var(--color-accent-glow); }






.serving-areas-sec {
  background-color: #fde9b9;
  padding: 64px 0;
}
.serving-areas-sec h3 {
  font-size: 28px;
  font-weight: 700;
  color: #18191c;
  margin-bottom: 24px;
}
.serving-areas-text {
  color: #3f3f3f;
  font-size: 16px;
  line-height: 1.8;
}

.footer-main         { background-color: #2A2A28; font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: var(--color-text-light) !important; padding: 72px 0 0; }
.footer-main p       { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.footer-heading      { font-size: 1.3rem; font-weight: 700; color: var(--color-white) !important; text-transform: uppercase; letter-spacing: 0.08em; position: relative; padding-bottom: 8px; margin-bottom: 18px; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 2.5px; background-color: var(--color-accent); }
.footer-list li      { margin-bottom: 8px; color: var(--color-text-light); font-size: 1.05rem; }
.footer-list a       { color: var(--color-text-light); font-size: 1.05rem; transition: color .2s; text-decoration: none; }
.footer-list a:hover { color: var(--color-accent-glow); text-decoration: none !important; }
.business-hours li   { display: flex; justify-content: space-between; max-width: 320px; margin-bottom: 10px; color: var(--color-text-light); font-size: 1.05rem; }
.btn-facebook        { background-color: #2b4b77; color: var(--color-white); width: 38px; height: 38px; border-radius: 4px; border: none; font-weight: bold; }
.btn-facebook:hover  { background-color: #3b5998; }
.copyright-bar       { background-color: rgba(0,0,0,0.3); color: rgba(255,255,255,0.9); border-top: 1px solid rgba(255,255,255,0.05); padding: 18px 0; }
.copyright-bar p     { font-size: 1.25rem; }
.copyright-bar a     { color: rgba(255,255,255,0.9); font-size: 1.25rem; }
.copyright-bar a:hover { color: var(--color-accent-glow); }
.footer-phone-cta    { display: inline-flex; align-items: center; gap: 8px; color: var(--color-white); font-size: 1.25rem; font-weight: 800; letter-spacing: .03em; background: var(--color-accent); padding: 12px 24px; border-radius: var(--radius-md); transition: background .2s; }
.footer-phone-cta:hover { background: var(--color-accent-glow); color: var(--color-white); }
.footer-phone-cta i  { font-size: 18px; }

.footer-contact-item { margin-bottom: 10px; line-height: 1.6; font-size: 1.1rem; color: var(--color-text-light); }
.footer-contact-label { font-weight: 600; color: var(--color-white); }
.footer-social-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background-color: var(--color-primary-light); color: var(--color-white) !important; border-radius: 50%; font-size: 1.25rem; transition: transform 0.2s, background-color 0.2s; text-decoration: none !important; }
.footer-social-btn:hover { transform: translateY(-2px); background-color: var(--color-accent); color: var(--color-white) !important; }

@media (max-width: 991px) {
  .mobile-topbar { display: flex; }
  .main-nav      { display: none; }
}
@media (min-width: 992px) {
  .main-nav { display: block; }
  .mobile-topbar, .mobile-drawer, .overlay { display: none !important; }
}

@media (max-width: 991.98px) {
  .appointment-card { width: 100%; }
}

@media (max-width: 767.98px) {
  .appointment-card { width: 100% !important; }
  .form-container   { padding: 0 8px; }
  .col-md-4.col-12  { margin-top: 24px; }
}

@media (max-width: 575.98px) {
  .appointment-pill  { font-size: 1rem; padding: 8px 14px; }
  .appointment-card  { border-radius: 8px; padding: 16px !important; width: 100% !important; }
  .btn-cta           { width: 100%; text-align: center; }
  .form-container    { padding: 0 8px; }

  .serving-areas-sec { padding: 40px 0; }
  .serving-areas-sec h3 { font-size: 22px; }
  .footer-main img   { max-height: 120px !important; }
  .footer-phone-cta  { font-size: 1.05rem; padding: 10px 18px; }
  .footer-phone-cta i { font-size: 16px; }
  .footer-heading    { font-size: 1.15rem; }
  .footer-main p     { font-size: 0.98rem; }
  .footer-contact-item { font-size: 0.98rem; }
  .footer-list li, .footer-list a, .business-hours li { font-size: 0.95rem; }
  .business-hours li { flex-direction: column; gap: 2px; }
  .copyright-bar p, .copyright-bar a { font-size: 1.05rem; }
}

/* Phase 6 CTA Banner */
.cta-banner {
  background-color: #FFF8EA;
  border-radius: 18px;
  padding: 48px;
}
.cta-banner h2 {
  color: var(--color-primary-dark);
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-banner p {
  color: var(--color-text-body);
  font-size: 1.1rem;
  margin-bottom: 0;
}
.cta-banner-btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 1.1rem;
}
.cta-banner-btn-primary:hover {
  background: var(--color-accent-glow);
  transform: translateY(-2px);
  color: var(--color-primary-dark);
}
.cta-banner-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  transition: color .2s;
}
.cta-banner-phone:hover {
  color: var(--color-primary);
}

@media (max-width: 575.98px) {
  .cta-banner {
    padding: 32px 24px;
  }
  .cta-banner-btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* Company / Expertise / Stats */
.company-section { background: var(--color-white); }

.section-expertise { background: var(--color-bg-light); }
.section-expertise .card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.section-expertise .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: var(--color-accent);
}
.section-expertise .card-img-container {
  height: 180px;
  overflow: hidden;
}
.section-expertise .card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.section-expertise .card:hover .card-img-container img {
  transform: scale(1.08);
}
.section-expertise .card-body { padding: 18px; }
.section-expertise .card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
}
.company-img-col   { background: url('/demo/images/about-img.webp') no-repeat center center / cover; position: absolute; top: 0; left: 0; bottom: 0; height: 100%; }
.about-content-bg  { background-color: #FFF5E6; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
.text-navy         { color: var(--color-text-navy); }
.section-title     { padding: 15px 25px; font-weight: 800; color: var(--color-text-navy); font-size: 2.2rem; line-height: 1.2; }
.highlight         { background: var(--color-accent); color: var(--color-white); padding: 4px 10px; border-radius: var(--radius-sm); }
.trust-pill        { background-color: var(--color-accent); color: var(--color-white); padding: 0 15px; border-radius: var(--radius-md); display: inline-block; }
.content-text p    { color: var(--color-text-body); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.2rem; }
.stat-box          { background: var(--color-primary-light); color: var(--color-white); padding: 15px 10px; border-radius: var(--radius-md); height: 100%; }
.stat-box p        { font-size: 13px; margin: 0; }
.stat-container    { position: relative; display: flex; flex-direction: column; align-items: center; max-width: 160px; margin: 0 auto; }
.stat-circle       { background: radial-gradient(circle at top, var(--color-accent-glow), var(--color-accent)); width: 90px; height: 90px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: var(--color-white); font-weight: 800; font-size: 1.8rem; border: 4px solid var(--color-white); box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 2; }
.stat-label        { background: linear-gradient(to bottom, var(--color-primary-light), var(--color-primary-dark)); color: var(--color-white); width: 100%; padding: 45px 10px 15px; margin-top: -45px; border-radius: 10px; font-size: 0.85rem; font-weight: 700; line-height: 1.2; text-transform: uppercase; min-height: 110px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.btn-contact-custom { border: 2px solid var(--color-accent); color: var(--color-accent); background: var(--color-white); font-weight: 700; padding: 10px 25px; border-radius: var(--radius-sm); transition: background .3s, color .3s; display: flex; align-items: center; }
.btn-contact-custom:hover { background: var(--color-accent); color: var(--color-white); }

/* Reviews */
.review-section { background-color: #fdfbe8; font-family: 'Arial', sans-serif; }
.text-google    { color: #4285F4; }
.text-facebook  { color: #1877F2; }
.review-badge   { text-decoration: none; color: #555; width: 140px; height: 140px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; padding: 5px; transition: transform 0.3s ease; }
.review-badge:hover { transform: scale(1.05); }
.inner-content  { background: white; width: 100%; height: 100%; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 300; font-size: 0.85rem; line-height: 1.2; z-index: 2; }
.google-ring    { background: conic-gradient(#4285F4 0deg 90deg, #EA4335 90deg 180deg, #FBBC05 180deg 270deg, #34A853 270deg 360deg); padding: 5px; }
.facebook-ring  { background: #3b5998; padding: 5px; }

/* Projects Carousel */
.modern-carousel-section {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  background: var(--color-white);
  overflow: hidden;
}

.modern-carousel-section h1 { color: var(--color-primary); margin-bottom: 10px; padding: 0 20px; }

.carousel-outer { position: relative; width: 100%; overflow: hidden; }

.carousel-wrapper {
  display: flex;
  gap: 16px;
  padding: 30px 20px;
  overflow-x: scroll;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.carousel-wrapper::-webkit-scrollbar { display: none; }
.carousel-wrapper:active { cursor: grabbing; }

.project-card {
  position: relative;
  flex: 0 0 220px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: grab;
  box-shadow: -6px 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, flex 0.4s ease;
  scroll-snap-align: start;
}

.project-card:hover {
  transform: scale(1.06) translateY(-6px);
  z-index: 10;
  flex: 0 0 270px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  border-color: var(--color-accent);
  cursor: pointer;
}

.carousel-wrapper:has(.project-card:hover) .project-card:not(:hover) { opacity: 0.55; filter: grayscale(0.4); }

.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover img { transform: scale(1.06); }

.card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; background: linear-gradient(transparent, rgba(0,0,0,0.92)); color: var(--color-white); transform: translateY(16px); opacity: 0; transition: all 0.4s ease; }
.project-card:hover .card-content { transform: translateY(0); opacity: 1; }
.card-content h3 { margin: 0; font-size: 1.2rem; font-weight: 700; }
.card-content p  { font-size: 0.82rem; margin-top: 6px; color: var(--color-text-light); line-height: 1.5; }

.tag { display: inline-block; padding: 4px 12px; background: var(--color-accent-gold); color: #0f172a; border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }

.carousel-arrow { display: none; position: absolute; top: 45%; transform: translateY(-50%); z-index: 20; background: rgba(0,0,0,0.6); color: var(--color-white); border: 2px solid rgba(255,255,255,0.4); border-radius: var(--radius-full); width: 44px; height: 44px; font-size: 2rem; cursor: pointer; padding: 0; text-align: center; line-height: 1; transition: background 0.2s; }
.carousel-arrow:hover, .carousel-arrow:active { background: rgba(0,0,0,0.9); }
.arrow-prev { left: 10px; }
.arrow-next { right: 10px; }
.carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 16px; }
.dot           { width: 10px; height: 10px; border-radius: var(--radius-full); background: rgba(0,0,0,0.2); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.dot.active    { background: var(--color-primary); transform: scale(1.35); }

/* Review Carousel */
.review-sec     { padding: 80px 0; background-color: #fde9b9; }
.review-sec h2  { color: var(--color-primary-dark); }
.review-sec-sub { color: var(--color-text-body); font-size: 1rem; margin-bottom: 32px; }

.review-carousel-outer { position: relative; width: 100%; max-width: 100%; margin: 0; padding: 0 48px; box-sizing: border-box; }

.review-track { display: flex; gap: 16px; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px; }
.review-track::-webkit-scrollbar { display: none; }

.review-card { flex: 0 0 calc(25% - 12px); scroll-snap-align: start; background: var(--color-white); border-radius: var(--radius-md); padding: 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); display: flex; flex-direction: column; text-align: left; transition: transform .2s; }
.review-card:hover { transform: translateY(-4px); }

.review-header { display: flex; align-items: center; margin-bottom: 12px; }
.avatar        { width: 40px; height: 40px; border-radius: var(--radius-full); color: var(--color-white); font-weight: 700; display: flex; align-items: center; justify-content: center; margin-right: 12px; flex-shrink: 0; }
.user-info     { display: flex; flex-direction: column; }
.user-name     { font-weight: 600; font-size: 14px; color: #202124; }
.review-date   { font-size: 12px; color: #70757a; }
.stars         { color: var(--color-star); font-size: 16px; margin-bottom: 10px; }
.review-text   { font-size: 13px; line-height: 1.6; color: #3c4043; flex: 1; }
.google-logo   { font-size: 18px; color: #4285F4; margin-left: auto; flex-shrink: 0; }

.review-arrow  { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 38px; height: 38px; border-radius: var(--radius-full); background: rgba(0,0,0,0.1); border: 2px solid rgba(0,0,0,0.2); color: var(--color-primary); font-size: 1.8rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.review-arrow:hover { background: rgba(0,0,0,0.2); }
.review-prev   { left: 6px; }
.review-next   { right: 6px; }
.review-dots   { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.review-dot    { width: 10px; height: 10px; border-radius: var(--radius-full); background: rgba(0,0,0,0.2); cursor: pointer; transition: background .3s, transform .3s; display: inline-block; }
.review-dot.active { background: var(--color-primary); transform: scale(1.3); }

/* Component Media Queries */
@media (max-width: 991.98px) {
  .company-img-col  { position: relative !important; height: 280px; width: 100% !important; flex: 0 0 100%; max-width: 100%; }
  .company-section .offset-lg-5 { margin-left: 0 !important; width: 100% !important; flex: 0 0 100%; max-width: 100%; }
  .section-title { font-size: 1.8rem; padding: 10px 16px; }
  .stat-circle   { width: 75px; height: 75px; font-size: 1.4rem; }
  .stat-label    { font-size: 0.75rem; padding-top: 40px; margin-top: -40px; }

  .modern-carousel-section { padding: 40px 0; }
  .carousel-wrapper { padding: 10px 16px 20px; gap: 12px; }
  .project-card     { flex: 0 0 80vw; max-width: 300px; height: 320px; border-radius: var(--radius-md); }
  .project-card:hover { flex: 0 0 80vw; transform: scale(1.02); }
  .card-content     { transform: translateY(0); opacity: 1; }
  .carousel-dots    { display: flex; }
  .carousel-arrow   { display: flex; align-items: center; justify-content: center; }
  .dot              { background: rgba(255,255,255,0.35); }
  .dot.active       { background: var(--color-accent); }

  .review-card           { flex: 0 0 calc(50% - 10px); }
  .review-carousel-outer { padding: 0 44px; }
}

@media (max-width: 575.98px) {
  .section-title     { font-size: 1.5rem; padding: 8px 12px; }
  .stat-circle       { width: 65px; height: 65px; font-size: 1.3rem; }
  .stat-label        { font-size: 0.72rem; padding-top: 36px; margin-top: -36px; }

  .carousel-wrapper  { padding: 10px 8px 20px; }
  .project-card      { flex: 0 0 88vw; max-width: 100%; height: 280px; }
  .card-content h3   { font-size: 1rem; }
  .arrow-prev        { left: 4px; }
  .arrow-next        { right: 4px; }

  .review-sec            { padding: 50px 0; }
  .review-card           { flex: 0 0 100%; }
  .review-carousel-outer { padding: 0 36px; }
  .review-arrow          { width: 32px; height: 32px; font-size: 1.4rem; }

  .review-badge          { width: 100px; height: 100px; }
  .inner-content         { font-size: 0.72rem; }
  .inner-content img     { width: 34px !important; }
}
