:root {
  --primary: #b4883a;
  --primary-dark: #7b5b25;
  --secondary: #253746;
  --accent: #e8dcc6;
  --light-bg: #faf7f2;
  --text: #1d252d;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(10, 16, 24, 0.12);
}

[data-theme="dark"] {
  --primary: #c89a4a;
  --primary-dark: #e2bd7d;
  --secondary: #e5edf6;
  --accent: #293a4a;
  --light-bg: #0f1720;
  --text: #e4ebf2;
  --white: #16222e;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--light-bg);
  line-height: 1.75;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--secondary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
}

.section-tag::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--primary);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: all 0.35s ease;
  background: linear-gradient(110deg, rgba(25, 39, 53, 0.95), rgba(11, 19, 28, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.main-header.scrolled {
  box-shadow: 0 12px 30px rgba(10, 16, 24, 0.23);
  background: rgba(11, 19, 28, 0.95);
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.04em;
  font-size: 1.45rem;
  color: #fff;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
}

.brand-wrap img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.78rem 1rem !important;
  border-radius: 0.55rem;
  transition: color 0.3s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
}

.nav-link.dropdown-toggle {
  padding-right: 1.6rem !important;
}

.nav-link.dropdown-toggle::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  border: 0;
  margin-left: 0;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  transition: transform 0.22s ease;
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after,
.nav-item.dropdown .nav-link.dropdown-toggle.show::after {
  transform: translateY(-50%) rotate(180deg);
}

.navbar .dropdown-menu {
  margin-top: 0.45rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(37, 55, 70, 0.12);
  box-shadow: 0 18px 36px rgba(13, 22, 32, 0.2);
  padding: 0.45rem;
  min-width: 245px;
}

.navbar .dropdown-item {
  font-size: 0.9rem;
  padding: 0.52rem 0.78rem;
  border-radius: 0.5rem;
}

.navbar .dropdown-item:hover {
  background: rgba(180, 136, 58, 0.14);
  color: #5e431a;
}

.navbar-toggler {
  border: 0;
  border-radius: 0.6rem;
  padding: 0.28rem 0.36rem;
  height: 40px;
  width: 46px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(180, 136, 58, 0.24);
}

.toggler-lines {
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.toggler-lines span {
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-lines span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-mobile-cta {
  min-height: 38px;
  padding: 0.44rem 0.72rem;
  font-size: 0.76rem;
  line-height: 1;
  border-radius: 0.55rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-side-quote {
  position: fixed;
  right: 0;
  top: 58%;
  transform: translateY(-50%);
  z-index: 1035;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  padding: 0.78rem 0.5rem;
  border-radius: 0.65rem 0 0 0.65rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 14px 26px rgba(15, 24, 34, 0.28);
}

.mobile-side-quote:hover {
  color: #fff;
  background: #9e742e;
}

body.nav-menu-open .mobile-side-quote,
body.nav-menu-open .floating-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateX(14px);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 14, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1038;
}

body.nav-menu-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.header-mini-btn {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 0.55rem;
  min-height: 38px;
  min-width: 38px;
  padding: 0.32rem 0.48rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-grid;
  place-items: center;
  transition: all 0.25s ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.theme-toggle i {
  font-size: 1rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
}

.lang-btn.active {
  background: rgba(180, 136, 58, 0.96);
  color: #fff;
}


@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.btn-theme {
  background: linear-gradient(120deg, var(--primary), #d3a962);
  color: #fff;
  border: 0;
  border-radius: 0.6rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-theme:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(180, 136, 58, 0.25);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(14, 23, 32, 0.9), rgba(37, 55, 70, 0.72)),
    url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
  padding: 7rem 0 5.5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.hero::before {
  width: 380px;
  height: 380px;
  background: var(--primary);
  top: -120px;
  right: -120px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: #fff;
  bottom: -80px;
  left: -90px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 700;
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats .stat-box {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  padding: 0.9rem;
}

.hero-stats h4 {
  font-weight: 700;
  margin: 0;
}

.hero-stats small {
  color: rgba(255, 255, 255, 0.85);
}

.feature-card,
.service-card,
.blog-card,
.contact-card,
.about-card,
.process-step,
.value-card,
.check-card,
.form-card,
.faq-card,
.metrics-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(37, 55, 70, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feature-card,
.service-card,
.blog-card,
.about-card,
.value-card,
.check-card,
.metrics-card {
  padding: 1.4rem;
  height: 100%;
}

.contact-card {
  padding: 1.4rem;
  height: auto;
}

.faq-card {
  padding: 1.4rem;
}

.hero .feature-card {
  color: var(--text);
}

.service-card img,
.blog-card img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  object-fit: cover;
}

.service-card img {
  height: 220px;
}

.service-card:hover,
.blog-card:hover,
.faq-card:hover,
.metrics-card:hover,
.value-card:hover,
.check-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 16, 24, 0.16);
}

.service-card h5,
.service-card h6,
.blog-card h5 {
  color: var(--secondary);
}

.blog-card img {
  height: 230px;
}

.page-hero {
  padding: 5.3rem 0 4rem;
  color: #fff;
  background: linear-gradient(120deg, rgba(14, 23, 32, 0.9), rgba(37, 55, 70, 0.78));
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom span {
  color: #fff;
}

.process-step {
  padding: 1.5rem;
}

.process-step .step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "\F272";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

.cta-band {
  background: linear-gradient(115deg, var(--secondary), #11202d);
  color: #fff;
  border-radius: 1.1rem;
  padding: 2.2rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.portfolio-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.portfolio-mini-grid img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: 0.6rem;
}

.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-tile {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  display: block;
}

.gallery-tile img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.78));
}

.gallery-tile:hover img {
  transform: scale(1.06);
}

.main-footer {
  background: linear-gradient(110deg, #121d28, #1d2e3d);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 4rem;
}

.main-footer .footer-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}

.main-footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.main-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 0;
  font-size: 0.92rem;
}

.form-card,
.home-v2-form-card {
  position: relative;
  overflow: hidden;
}

.form-card::before,
.home-v2-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #b4883a, #d9b474, #476f99);
}

.form-card h3,
.form-card h4,
.form-card h5,
.home-v2-form-card h3,
.home-v2-form-card h4,
.home-v2-form-card h5 {
  color: #213648;
  font-weight: 700;
}

.form-card form .form-control,
.form-card form .form-select,
.home-v2-form-card form .form-control,
.home-v2-form-card form .form-select {
  border-radius: 0.8rem;
  border: 1px solid rgba(37, 55, 70, 0.18);
  background: #f8fafc;
  min-height: 48px;
  font-size: 0.94rem;
  transition: all 0.22s ease;
}

.form-card form textarea.form-control,
.home-v2-form-card form textarea.form-control {
  min-height: 120px;
  padding-top: 0.7rem;
}

.form-card form .form-control::placeholder,
.home-v2-form-card form .form-control::placeholder {
  color: #748494;
}

.form-card form .form-control:focus,
.form-card form .form-select:focus,
.home-v2-form-card form .form-control:focus,
.home-v2-form-card form .form-select:focus {
  border-color: rgba(180, 136, 58, 0.8);
  background: #fff;
  box-shadow: 0 0 0 0.24rem rgba(180, 136, 58, 0.14);
}

.form-card form .btn-theme,
.home-v2-form-card form .btn-theme {
  min-height: 48px;
  border-radius: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.form-card form .is-invalid,
.home-v2-form-card form .is-invalid {
  border-color: #dc3545;
  box-shadow: none;
}

.invalid-feedback {
  font-size: 0.8rem;
  font-weight: 500;
}

.floating-actions {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 14px 28px rgba(12, 24, 20, 0.26);
}

.floating-actions .wa {
  background: #25d366;
}

.floating-actions .call {
  background: #0d6efd;
}

.timeline {
  border-left: 2px dashed rgba(37, 55, 70, 0.2);
  padding-left: 1.2rem;
}

.timeline-item {
  margin-bottom: 1.3rem;
}

.timeline-item h6 {
  margin-bottom: 0.3rem;
}

section {
  position: relative;
}

.scope-section {
  background: linear-gradient(180deg, #f7f3ed 0%, #fdfbf8 100%);
}

.scope-panel {
  background: linear-gradient(145deg, #fff, #f8f1e5);
  border: 1px solid rgba(180, 136, 58, 0.22);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.scope-cards {
  display: grid;
  gap: 1rem;
}

.scope-service-card {
  background: #fff;
  border: 1px solid rgba(37, 55, 70, 0.12);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 26px rgba(15, 22, 32, 0.1);
}

.scope-service-card small {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.scope-service-card h5 {
  margin-bottom: 0.4rem;
  color: var(--secondary);
}

.scope-service-card p {
  margin-bottom: 0.6rem;
  color: #55606b;
}

.scope-service-card a {
  color: #0d6efd;
  font-weight: 600;
}

.process-clean {
  background: #f4f7fa;
}

.process-clean-card {
  background: #fff;
  border: 1px solid rgba(37, 55, 70, 0.12);
  border-radius: 0.9rem;
  box-shadow: 0 8px 20px rgba(16, 25, 36, 0.08);
  padding: 1.1rem 1rem;
  height: 100%;
}

.process-clean-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.process-clean-card h6 {
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

.process-clean-card p {
  margin-bottom: 0;
  color: #5e6b78;
}

.location-card {
  position: relative;
}

.location-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, #d8b067, #a6782f);
  box-shadow: 0 12px 24px rgba(166, 120, 47, 0.28);
}

.location-hub-panel {
  background: linear-gradient(140deg, #ffffff, #f5efe3);
  border: 1px solid rgba(37, 55, 70, 0.12);
  border-radius: 1rem;
  padding: 1.3rem;
  box-shadow: 0 14px 26px rgba(18, 28, 41, 0.08);
}

.location-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.location-chip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2b3e4f;
  border: 1px solid rgba(37, 55, 70, 0.16);
  background: #fff;
  transition: all 0.2s ease;
}

.location-chip-link:hover {
  transform: translateY(-1px);
  border-color: rgba(166, 120, 47, 0.55);
  color: #7a541f;
}

.location-city-card {
  background: #fff;
  border: 1px solid rgba(37, 55, 70, 0.12);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 14px 25px rgba(18, 28, 41, 0.08);
  position: relative;
  overflow: hidden;
}

.location-city-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--city-a), var(--city-b));
}

.location-city-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-icon.city {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--city-a), var(--city-b));
  box-shadow: 0 10px 22px rgba(21, 29, 40, 0.2);
}

.location-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.location-area-pill {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: #f4f6f8;
  border: 1px solid rgba(37, 55, 70, 0.12);
  color: #3b4e61;
}

.location-text-link {
  color: #355070;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.location-text-link i {
  font-size: 1.15rem;
}

@media (max-width: 991px) {
  .hero {
    padding-top: 5rem;
  }

  #mainNav.navbar-collapse {
    position: fixed;
    top: 74px;
    left: 0;
    width: min(84vw, 340px);
    height: calc(100vh - 74px);
    background: linear-gradient(140deg, #1c2f44, #0c1a2a 65%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 22px 0 48px rgba(4, 9, 15, 0.45);
    padding: 1rem 1rem 1.35rem;
    overflow-y: auto;
    transform: translateX(-106%);
    transition: transform 0.32s ease;
    z-index: 1039;
  }

  #mainNav.navbar-collapse.collapse {
    display: block !important;
    visibility: hidden;
    pointer-events: none;
  }

  #mainNav.navbar-collapse.collapse.show {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .scope-panel {
    position: static !important;
  }

  .process-clean-card {
    min-height: 0;
  }

  .portfolio-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-hub-panel {
    padding: 1.05rem;
  }
}

@media (max-width: 575px) {
  .main-header .navbar .container {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.28rem;
  }

  .navbar-brand {
    margin-right: 0;
    min-width: 0;
    flex: 0 1 auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }

  .main-footer {
    padding-bottom: 5.2rem;
  }

  .floating-actions {
    left: 0.9rem;
    bottom: 0.9rem;
  }

  .floating-actions a {
    width: 50px;
    height: 50px;
  }

  .process-clean-card {
    padding: 1rem 0.9rem;
  }

  .brand-wrap img {
    height: 45px;
  }

  .header-mobile-cta {
    min-height: 34px;
    padding: 0.3rem 0.5rem;
    font-size: 0.62rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    line-height: 1;
    margin-right: 0 !important;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .lang-btn {
    flex: 1;
    text-align: center;
  }

  .navbar-toggler {
    height: 32px;
    width: 34px;
    padding: 0.12rem 0.18rem;
    margin-left: 0 !important;
  }

  .header-mini-btn {
    min-height: 34px;
    min-width: 30px;
    padding: 0.2rem 0.3rem;
    font-size: 0.6rem;
    border-radius: 0.5rem;
    margin-right: 0 !important;
  }

  #mobileLangToggle {
    margin-left: auto !important;
  }

  .mobile-side-quote {
    display: inline-flex;
  }


  .footer-logo {
    width: 190px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .portfolio-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tile img {
    height: 220px;
  }
}

/* Dark theme overrides */
[data-theme="dark"] body {
  background: #0f1720;
  color: #e4ebf2;
}

[data-theme="dark"] .main-header {
  background: linear-gradient(110deg, rgba(11, 18, 25, 0.95), rgba(6, 12, 18, 0.96));
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .main-header.scrolled {
  background: rgba(6, 12, 18, 0.96);
}

[data-theme="dark"] .nav-link {
  color: rgba(230, 239, 248, 0.88);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

[data-theme="dark"] .navbar .dropdown-menu {
  background: #152231;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .navbar .dropdown-item {
  color: #d9e5f1;
}

[data-theme="dark"] .navbar .dropdown-item:hover {
  background: rgba(200, 154, 74, 0.16);
  color: #fff;
}

[data-theme="dark"] .lang-switch {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .lang-btn {
  color: rgba(233, 241, 250, 0.9);
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .about-card,
[data-theme="dark"] .process-step,
[data-theme="dark"] .value-card,
[data-theme="dark"] .check-card,
[data-theme="dark"] .form-card,
[data-theme="dark"] .faq-card,
[data-theme="dark"] .metrics-card,
[data-theme="dark"] .home-v2-form-card,
[data-theme="dark"] .scope-service-card,
[data-theme="dark"] .process-clean-card,
[data-theme="dark"] .location-hub-panel,
[data-theme="dark"] .location-city-card,
[data-theme="dark"] .strip-card {
  background: #16222e;
  border-color: rgba(255, 255, 255, 0.12);
  color: #e5edf6;
}

[data-theme="dark"] .scope-panel {
  background: linear-gradient(145deg, #16222e, #1a2a39);
  border-color: rgba(200, 154, 74, 0.35);
}

[data-theme="dark"] .process-clean,
[data-theme="dark"] .scope-section,
[data-theme="dark"] .home-v2-process,
[data-theme="dark"] .home-v2-strip,
[data-theme="dark"] .bg-white {
  background: #0f1720 !important;
}

[data-theme="dark"] .page-hero,
[data-theme="dark"] .hero,
[data-theme="dark"] .home-v2-hero {
  background-blend-mode: multiply;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .scope-service-card h5,
[data-theme="dark"] .process-clean-card h6,
[data-theme="dark"] .form-card h3,
[data-theme="dark"] .form-card h4,
[data-theme="dark"] .form-card h5 {
  color: #e7eef6;
}

[data-theme="dark"] .text-muted,
[data-theme="dark"] .scope-service-card p,
[data-theme="dark"] .process-clean-card p,
[data-theme="dark"] .home-v2-form-card p {
  color: #a5b4c4 !important;
}

[data-theme="dark"] .form-card form .form-control,
[data-theme="dark"] .form-card form .form-select,
[data-theme="dark"] .home-v2-form-card form .form-control,
[data-theme="dark"] .home-v2-form-card form .form-select {
  background: #0f1b27;
  border-color: rgba(255, 255, 255, 0.16);
  color: #e4edf7;
}

[data-theme="dark"] .form-card form .form-control::placeholder,
[data-theme="dark"] .home-v2-form-card form .form-control::placeholder {
  color: #95a6b8;
}

[data-theme="dark"] .form-card form .form-control:focus,
[data-theme="dark"] .form-card form .form-select:focus,
[data-theme="dark"] .home-v2-form-card form .form-control:focus,
[data-theme="dark"] .home-v2-form-card form .form-select:focus {
  background: #122130;
}

[data-theme="dark"] .location-chip-link,
[data-theme="dark"] .location-area-pill {
  background: #102131;
  border-color: rgba(255, 255, 255, 0.14);
  color: #d4e0ec;
}

/* Hide Google translate default UI chrome */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

/* Home v2 */
.home-v2-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 168, 94, 0.3), transparent 40%),
    linear-gradient(120deg, rgba(9, 16, 24, 0.95), rgba(26, 42, 56, 0.88)),
    url("https://images.unsplash.com/photo-1617806118233-18e1de247200?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.home-v2-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.12;
  margin-bottom: 0;
}

.home-v2-subtitle {
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
}

.home-v2-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.home-v2-cta-row .btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  font-weight: 700;
}

.home-v2-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.8rem;
  max-width: 560px;
}

.home-v2-metrics article {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
}

.home-v2-metrics h4 {
  margin: 0;
  font-weight: 700;
}

.home-v2-metrics p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.86);
}

.home-v2-form-card {
  background: #fff;
  color: var(--text);
  border-radius: 1rem;
  padding: 1.3rem;
  border: 1px solid rgba(37, 55, 70, 0.12);
  box-shadow: 0 20px 42px rgba(8, 14, 22, 0.26);
}

.home-v2-strip {
  background: #fff;
}

.strip-card {
  border: 1px solid rgba(37, 55, 70, 0.12);
  border-radius: 0.9rem;
  background: linear-gradient(130deg, #ffffff, #f5f7fb);
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  height: 100%;
}

.strip-card i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(180, 136, 58, 0.15);
  color: #7e5a21;
}

.strip-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f4255;
}

.home-v2-process {
  background: linear-gradient(180deg, #eff4f8 0%, #f7fafc 100%);
}

.process-line {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b4883a 0%, #385e92 70%);
  margin: 0 auto 1rem;
  max-width: 880px;
  transform-origin: left center;
}

.home-v2-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 991px) {
  .home-v2-hero {
    padding-top: 5.6rem;
  }

  .home-v2-metrics {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .home-v2-cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .home-v2-cta-row .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 0.85rem;
    padding: 0.55rem 0.5rem;
    white-space: nowrap;
  }

  .home-v2-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .home-v2-form-card {
    padding: 1.1rem;
  }
}
