/* signs-of-leaking-shower page: section-scoped overflow guards */
#signs-cta .row > [class*="col-"] {
  min-width: 0;
}

#signs-cta .text-muted,
#signs-cta .lead {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media(max-width: 576px) {
  #signs-cta .row {
    --bs-gutter-x: 1rem;
  }
}

/* melbourne area pages: section-scoped overflow guards */
#melbourne-intro .row > [class*="col-"],
#melbourne-service-area .row > [class*="col-"],
#melbourne-why-choose-us .row > [class*="col-"] {
  min-width: 0;
}

#melbourne-intro .text-muted,
#melbourne-service-area .text-muted,
#melbourne-why-choose-us .text-muted,
#melbourne-intro .lead,
#melbourne-service-area .lead,
#melbourne-why-choose-us .lead {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media(max-width: 576px) {
  #melbourne-intro .row,
  #melbourne-service-area .row,
  #melbourne-why-choose-us .row {
    --bs-gutter-x: 1rem;
  }
}
/* how-we-fix-your-leaking-shower page: section-scoped overflow guards */
#howwefix-why-process-works .row > [class*="col-"],
#howwefix-about-megabloc .row > [class*="col-"] {
  min-width: 0;
}

#howwefix-why-process-works .text-muted,
#howwefix-about-megabloc .text-muted,
#howwefix-why-process-works .lead,
#howwefix-about-megabloc .lead {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media(max-width: 576px) {
  #howwefix-why-process-works .row,
  #howwefix-about-megabloc .row {
    --bs-gutter-x: 1rem;
  }
}
/* ==================================================
   GLOBAL FOUNDATION
   ================================================== */

:root {
  --brand-primary: #070D59; /* Deep Blue */
  --brand-secondary: #00B4D8; /* Cyan */
  --brand-accent: #ffc43a; /* Yellow/Orange */
  --soft: #f8f9fa;
  --text-main: #212529;
  --text-light: #6c757d;
  --fs-h2: 2.2rem;
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --font-family: 'Google Sans', sans-serif;
}

html {
  max-width: 100vw;
}

body {
  font-family: var(--font-family, 'Inter', sans-serif);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--fs-h2);
}

a {
  text-decoration: none;
}

.text-brand-primary {
  color: var(--brand-primary) !important;
}

.text-brand-secondary,
.text-secondary-brand {
  color: var(--brand-secondary) !important;
}

.bg-brand-primary {
  background-color: var(--brand-primary) !important;
}

    @media (min-width: 576px) and (max-width: 1024px) {
      .header-grid {
        min-height: 64px;
        grid-template-columns: 1fr auto 1fr;
      }
      .header-center img {
        height: 38px !important;
      }
      .header-left .nav-link, .header-right .nav-link {
        font-size: 0.85rem;
        padding-right: 10px;
      }
    }

 /* Face dropdown-ul să se deschidă la hover pe Desktop (ecrane > 992px) */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.text-accent {
    --bs-text-opacity: 1;
    color: var(--brand-accent) !important;
}

/* Stiluri specifice pentru Meniul Mobile (Offcanvas) */
#mobileMenu .offcanvas-body {
    padding: 0;
}

/* Link-urile principale din meniul mobil */
#mobileMenu .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Linie subtila separatoare */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mobileMenu .nav-link:hover,
#mobileMenu .nav-link:focus {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Ajustare săgeată dropdown (chevron) să fie în dreapta complet */
#mobileMenu .dropdown-toggle::after {
    margin-left: auto; /* Împinge săgeata în dreapta */
    transition: transform 0.3s ease;
}

/* Când meniul e deschis, rotim săgeata */
#mobileMenu .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Stil pentru sub-meniu (Lista de orașe) */
#mobileMenu .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.3) !important; /* Fundal mai închis pentru contrast */
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    /* Important: Static face ca meniul să împingă conținutul în jos (efect acordeon) */
    position: static !important; 
    transform: none !important;
}

/* Link-urile orașelor */
#mobileMenu .dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px 12px 40px; /* 40px indentare stânga */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

#mobileMenu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Mobile menu buttons styling */
#mobileMenu .offcanvas-body > div {
    padding: 20px;
}



    /* --- UTILITIES --- */
    .container-narrow { max-width: 960px; }
    .container-tight { max-width: 720px; }
    
    .section { padding-block: 80px; }
    .section-sm { padding-block: 40px; }

    /* Prevent long content/flex children from forcing horizontal overflow */
    .section .row > [class*="col-"] {
      min-width: 0;
    }
    
    .bg-soft { background-color: var(--soft); }
    .bg-primary-dark { background-color: var(--brand-primary); color: white; }
    
    .text-primary-brand { color: var(--brand-primary) !important; }
    .text-secondary-brand { color: var(--brand-secondary) !important; }

    @media(max-width: 768px) {
      .section { padding-block: 50px; }
      h1 { font-size: 2.2rem !important; }
      h2 { font-size: 1.75rem !important; }
      .lead { font-size: 1.1rem !important; }
    }

    /* Buttons */
    .btn-primary {
      background-color: var(--brand-secondary);
      border-color: var(--brand-secondary);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 4px 14px rgba(0, 180, 216, 0.4);
    }
    .btn-primary:hover, .btn-primary:active {
      background-color: #0096b4 !important;
      border-color: #0096b4 !important;
      transform: translateY(-2px);
    }
    .btn-accent {
      background-color: var(--brand-accent);
      border-color: var(--brand-accent);
      color: var(--brand-primary);
      font-weight: 700;
    }
    .btn-accent:hover {
      background-color: #ffc107;
      border-color: #ffc107;
    }

	.btn:hover {
        color: #fff !important;
        background-color: #000;
        border-color: #000;
    }

    .cta-lg {
      padding: 14px 28px;
      font-size: 1.1rem;
      border-radius: 50px;
    }
    @media(max-width: 576px) {
      .cta-lg { padding: 12px 20px; font-size: 1rem; width: 100%; margin-bottom: 10px; }
    }

    /* --- TOP BAR --- */
    .top-bar {
      background-color: #050a44;
      color: rgba(255,255,255,0.8);
      font-size: 0.85rem;
      padding-block: 8px;
    }

    /* --- HEADER (Cleaned Up) --- */
    .site-header {
      background-color: var(--brand-primary);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 1000;
      position: sticky;
      top: 0;
    }

    /* --- MOBILE NAVBAR FIXES --- */
    
    /* 1. Resetare Buton Burger */
    .navbar-toggler {
        padding: 0 !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .navbar-toggler:focus, 
    .navbar-toggler:active,
    .btn-close:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    /* 2. Meniul Lateral (Offcanvas) - Fundal ALBASTRU (Revert) */
    .offcanvas-mobile-custom {
        background-color: var(--brand-primary) !important; /* Albastru */
        color: white !important; /* Text Alb */
    }

    /* Link-urile */
    .offcanvas-mobile-custom .nav-link {
        color: rgba(255,255,255,0.9) !important;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.1); /* Linie fină albă */
        padding-block: 15px;
    }

    /* Butonul X (Close) - Il facem alb */
    .offcanvas-mobile-custom .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%); /* Face X-ul alb */
        opacity: 0.8;
    }
    
    /* Dropdown - Săgeata Albă */
    .offcanvas-mobile-custom .dropdown-toggle::after {
        color: white;
        filter: invert(1); 
    }
    
    /* Dropdown Meniu */
    .offcanvas-mobile-custom .dropdown-menu {
        background-color: rgba(0,0,0,0.2); /* Fundal întunecat pentru contrast */
        border: none;
        margin-top: 0;
    }
    
    .offcanvas-mobile-custom .dropdown-item {
        color: rgba(255,255,255,0.8);
        padding-block: 10px;
    }
    .offcanvas-mobile-custom .dropdown-item:hover, 
    .offcanvas-mobile-custom .dropdown-item:focus {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

    /* 3. Centrare Perfectă Logo Mobile */
    .mobile-nav-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-block: 4px;
        flex-wrap: nowrap;
    }

    .mobile-nav-container .navbar-toggler {
        position: absolute;
        left: 0;
        flex: 0 0 auto;
    }

    .mobile-logo-wrapper {
        position: relative;
        flex: 0 0 auto;
        z-index: 5;
        display: flex;
        align-items: center;
    }

    .mobile-nav-container a[href^="tel:"] {
        position: absolute;
        right: 0;
        flex: 0 0 auto;
    }

    /* Desktop Grid System */
    .header-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      min-height: 80px;
    }
    .header-left { justify-self: start; display: flex; gap: 15px; }
    .header-center { justify-self: center; display: flex; align-items: center; }
    .header-right { justify-self: end; display: flex; align-items: center; gap: 15px; }

    .header-left .nav-link, .header-right .nav-link {
      color: rgba(255,255,255,0.85);
      font-weight: 500;
      transition: var(--transition);
      font-size: 0.95rem;
      white-space: nowrap;
      position: relative;
      padding-right: 15px;
      /*margin-right: 20px;*/
    }
    
    .header-left .nav-link::after, .header-left .dropdown::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 20px;
      width: 2px;
      background-color: rgb(255 255 255 / 16%);
    }
    
    .header-left .nav-link:last-child::after, .header-left > *:last-child::after {
      display: none;
    }
    
    .header-right .nav-link:not(:last-of-type) {
      padding-right: 15px;
      /*margin-right: 20px;*/
      position: relative;
    }
    
    .header-right .nav-link:not(:last-of-type)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 20px;
      width: 2px;
      background-color: rgb(255 255 255 / 16%);
    }
    
    .header-left .nav-link:hover, .header-right .nav-link:hover { color: #fff; }

    @media(max-width: 1100px) {
        .header-left .nav-link, .header-right .nav-link { font-size: 0.85rem; }
        .header-left, .header-right { gap: 15px; }
    }

    /* --- HERO --- */
    .hero {
      position: relative;
      min-height: 650px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: visible;
      background-color: var(--brand-primary);
      padding-bottom: 120px;
    }
    /* FIX PENTRU LISTELE DIN HERO (daca le adaugi inapoi) */
    .hero ul, .hero ol {
        padding-left: 0 !important;
        list-style: none;
        display: inline-block;
        text-align: left;
    }

    @media(max-width: 991px) {
      .hero { min-height: auto; padding-top: 60px; padding-bottom: 60px; }
    }

    .hero .bg img {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover;
      opacity: 1;
      filter: blur(0px);
    }
    .hero .bg::after {
      content: '';
      position: absolute;
      top:0; left:0; right:0; bottom:0;
      background: linear-gradient(180deg, rgb(7 13 89 / 81%) 0%, rgb(7 13 89 / 69%) 50%, rgb(7 13 89) 100%);
    }

    .hero .container { position: relative; z-index: 2; }
    .hero h1 {
      font-size: 3rem;
      text-shadow: 0 4px 10px rgba(0,0,0,0.3);
      margin-bottom: 1.5rem;
    }
    .hero-badges {
      display: flex; justify-content: center; gap: 15px; margin-bottom: 2rem; flex-wrap: wrap;
    }
    .hero-badge {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 5px;
    }
    @media(min-width: 992px) { .hero h1 { font-size: 4rem; } }

    /* --- OVERLAP SECTION LAYOUT --- */
    .overlap-section {
        background-color: var(--soft);
        position: relative;
        padding-bottom: 40px;
    }
    .overlap-section .row > [class*="col-"] {
      min-width: 0;
    }
    .overlap-form-col {
        margin-top: -80px;
        z-index: 10;
        position: relative;
    }
    @media(max-width: 991px) {
        .overlap-form-col { margin-top: -25px; }
        .overlap-section { padding-top: 40px; }
    }

    /* --- AUTO SLIDER --- */
    .auto-slider-container { padding: 40px 20px; }
    .as-slide { display: none; animation: fadeIn 0.8s; }
    .as-slide.active { display: block; }
    .as-quote {
        font-size: 1.25rem; font-style: italic; color: var(--brand-primary);
        margin-bottom: 1.5rem; line-height: 1.5;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .as-author { font-weight: 700; color: var(--text-main); }
    .as-loc { color: var(--text-light); font-size: 0.9rem; }

    #about .row > [class*="col-"] {
      min-width: 0;
    }
    #about .position-relative > .position-absolute {
      max-width: calc(100% - 2rem);
    }

    @media(max-width: 576px) {
      #quote .row,
      #about .row {
        --bs-gutter-x: 1rem;
      }
    }

    /* shower-leak-repairs page: section-scoped overflow guards */
    #real-cost-of-leaks .row > [class*="col-"],
    #service-details .row > [class*="col-"],
    #band-aid-vs-real-fix .row > [class*="col-"],
    #our-experience .row > [class*="col-"] {
      min-width: 0;
    }

    #real-cost-of-leaks .d-flex.gap-3 > :last-child,
    #our-experience .d-flex.gap-3 > :last-child {
      min-width: 0;
    }

    #real-cost-of-leaks .text-muted,
    #service-details .text-muted,
    #band-aid-vs-real-fix .text-muted,
    #our-experience .text-muted {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    @media(max-width: 576px) {
      #real-cost-of-leaks .row,
      #service-details .row,
      #band-aid-vs-real-fix .row,
      #our-experience .row {
        --bs-gutter-x: 1rem;
      }
    }

    /* shower-rebuilds page: section-scoped overflow guards */
    #rebuild-intro .row > [class*="col-"],
    #rebuild-why-choose-us .row > [class*="col-"] {
      min-width: 0;
    }

    #rebuild-intro .text-muted,
    #rebuild-why-choose-us .text-muted,
    #rebuild-intro .lead,
    #rebuild-why-choose-us .lead {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    @media(max-width: 576px) {
      #rebuild-intro .row,
      #rebuild-why-choose-us .row {
        --bs-gutter-x: 1rem;
      }
    }

    /* shower-regrouting page: section-scoped overflow guards */
    #regrouting-intro .row > [class*="col-"],
    #regrouting-why-choose-us .row > [class*="col-"] {
      min-width: 0;
    }

    #regrouting-intro .text-muted,
    #regrouting-why-choose-us .text-muted,
    #regrouting-intro .lead,
    #regrouting-why-choose-us .lead {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    @media(max-width: 576px) {
      #regrouting-intro .row,
      #regrouting-why-choose-us .row {
        --bs-gutter-x: 1rem;
      }
    }
    
    /* --- TRUST STRIP --- */
    .trust-strip { border-bottom: 1px solid #eee; border-top: 1px solid #eee; }
    .trust-logo {
        height: auto; max-height: 40px; width: auto; max-width: 100%;
        opacity: 0.6; transition: opacity 0.3s;
        filter: grayscale(100%); object-fit: contain;
    }
    .trust-logo:hover { opacity: 1; filter: grayscale(0%); }

    /* home page: mobile infinite trusted-by carousel */
    #home-trusted-by {
      overflow: clip;
    }

    #home-trusted-by .trusted-marquee {
      overflow: hidden;
      width: 100%;
    }

    #home-trusted-by .trusted-marquee-track {
      display: flex;
      align-items: center;
      gap: 28px;
      width: max-content;
      animation: trustedMarquee 18s linear infinite;
      will-change: transform;
      padding-inline: 4px;
    }

    #home-trusted-by .trusted-marquee .trust-logo {
      max-height: 34px;
      width: auto;
      flex: 0 0 auto;
      opacity: 0.6;
      filter: grayscale(100%);
    }

    @keyframes trustedMarquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @media (prefers-reduced-motion: reduce) {
      #home-trusted-by .trusted-marquee-track {
        animation: none;
      }
    }

    /* --- QUOTE WIZARD --- */
    .form-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.05);
    }
    @media(max-width: 576px) { .form-card { /*padding: 1.5rem !important;*/ } }

    .qw-viewport { position: relative; transition: height 0.3s ease; }
    .qw-step {
      width: 100%; position: absolute; top: 0; left: 0;
      opacity: 0; pointer-events: none; transform: translateX(20px); transition: all 0.3s ease;
    }
    .qw-step.is-active { position: relative; opacity: 1; pointer-events: auto; transform: translateX(0); z-index: 5; }
    .qw-step.is-exit-left { transform: translateX(-20px); opacity: 0; }
    .qw-step.is-exit-right { transform: translateX(20px); opacity: 0; }
    
    .qw-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    @media(min-width: 576px) { .qw-grid { grid-template-columns: repeat(3, 1fr); } }

    .option-btn {
      border: 2px solid #f1f3f5;
      background: #fff;
      border-radius: 12px;
      padding: 20px 10px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; cursor: pointer; transition: var(--transition);
      color: var(--text-main); height: 100%; width: 100%;
    }
    .option-btn:hover { border-color: var(--brand-secondary); background: #f0fbff; transform: translateY(-2px); }
    .option-btn.is-selected {
      border-color: var(--brand-secondary);
      background-color: #e0f7fa;
      color: var(--brand-primary);
      font-weight: 700;
      box-shadow: inset 0 0 0 1px var(--brand-secondary);
    }
    .option-icon { font-size: 1.8rem; margin-bottom: 10px; color: var(--brand-secondary); }

    /* --- PROCESS STEPS --- */
    .step-card { position: relative; padding: 2rem; text-align: center; }
    .step-number {
        display: inline-flex; align-items: center; justify-content: center;
        width: 60px; height: 60px; background: var(--brand-secondary);
        color: white; font-size: 1.5rem; font-weight: 800;
        border-radius: 50%; margin-bottom: 1.5rem;
    }

    /* --- BEFORE / AFTER --- */
    .ba-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
    @media(min-width: 768px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
    @media(min-width: 1200px) { .ba-grid-full { grid-template-columns: repeat(3, 1fr); } }

    .ba-canvas {
      position: relative; width: 100%; overflow: hidden;
      border-radius: 16px; box-shadow: var(--shadow-sm); aspect-ratio: 1/1;
    }
    .ba-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
    .ba-after-img { z-index: 2; clip-path: inset(0 50% 0 0); }
    .ba-label {
      position: absolute; top: 15px; padding: 6px 12px;
      background: rgba(0,0,0,0.7); color: #fff; font-size: 0.75rem; font-weight: 700;
      border-radius: 6px; z-index: 10; pointer-events: none; text-transform: uppercase;
    }
    .ba-label-left { left: 15px; } .ba-label-right { right: 15px; }
    .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; z-index: 5; pointer-events: none; box-shadow: 0 0 10px rgba(0,0,0,0.5); }
    .ba-knob {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 48px; height: 48px; background: var(--brand-secondary);
      border: 3px solid #fff; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .ba-range { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: col-resize; z-index: 20; margin: 0; }

    /* --- SERVICES & FEATURES --- */
    .service-card {
        background: #fff; border-radius: 16px; padding: 30px; height: 100%;
        transition: var(--transition); border: 1px solid #eee; text-align: left;
        display: flex; flex-direction: column;
    }
    .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-accent); }
    .service-card > div:nth-child(2) { flex-grow: 1; }
    .service-card > a { margin-top: auto; }
    .service-icon-box {
        width: 60px; height: 60px; background: #f0fbff; border-radius: 12px;
        display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--brand-primary);
    }
    .feature-card {
        background: #fff; padding: 2.5rem 2rem; border-radius: 16px; text-align: center; height: 100%;
        transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--brand-secondary); }
    .feature-icon {
        width: 90px; height: 90px; background: #e0f7fa; color: var(--brand-secondary);
        border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1.5rem;
    }

    /* --- CONTACT WRAPPER --- */
    .contact-wrapper { background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; }
    .contact-info-box { background: var(--brand-primary); color: #fff; height: 100%; padding: 40px; }

    /* --- TESTIMONIALS SLIDER --- */
    .tsl { position: relative; padding: 0 40px; overflow: hidden; }
    .tsl-viewport { overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
    .tsl-viewport::-webkit-scrollbar { display: none; }
    .tsl-track { display: flex; gap: 20px; padding-bottom: 20px; }
    .tsl-card {
      min-width: 280px; max-width: 320px; flex: 0 0 auto;
      background: #fff; border: 1px solid #eee; padding: 20px;
      border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }
    .tsl-stars { color: #ffc107; margin-bottom: 10px; font-size: 0.9rem; }
    .tsl-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: #fff; border: 1px solid #ddd; width: 40px; height: 40px;
      border-radius: 50%; z-index: 5; cursor: pointer; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: var(--transition);
    }
    .tsl-btn:hover { background: var(--brand-secondary); color: #fff; border-color: var(--brand-secondary); }
    .tsl-prev { left: 0; } .tsl-next { right: 0; }

    /* Resetare variabilă Bootstrap pentru padding */
    .navbar {
      --bs-navbar-toggler-padding-y: 0rem !important;
    }

    .page-header {
        background: linear-gradient(135deg, var(--brand-primary) 0%, #050a44 100%);
        padding: 80px 0;
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .page-header::after {
        content: ''; position: absolute; bottom: -50px; right: -50px; width: 300px; height: 300px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
    }



    /* --- HERO WOW SECTION --- */
    .about-hero {
        position: relative;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        background-color: var(--brand-primary);
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }
    .about-hero-bg {
        position: absolute; 
        top: 0; 
        left: 0; 
        right: 0;
        bottom: 0;
        width: 100%; 
        height: 100%;
        object-fit: cover; 
    }

    .about-hero-bg img {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover;
      opacity: 1;
      filter: blur(0px);
    }
    .about-hero-bg::after {
      content: '';
      position: absolute;
      top:0; left:0; right:0; bottom:0;
      background: linear-gradient(180deg, rgb(7 13 89 / 81%) 0%, rgb(7 13 89 / 69%) 50%, rgb(7 13 89) 100%);
    }


    .about-hero-content {
        position: relative; z-index: 2; padding: 60px 20px;
        animation: fadeInUp 1s ease-out;
    }
    .about-hero-content .d-flex {
      flex-wrap: wrap;
    }
    .hero-subtitle {
        display: inline-block;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(5px);
        padding: 8px 20px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.2);
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
    @media(max-width: 768px) { .hero-title { font-size: 2.5rem; } }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* --- ABOUT STORY --- */
    .section { padding: 60px 0; }
    .story-img-container {
        position: relative;
        padding-bottom: 30px;
        padding-right: 30px;
    }
    .story-img {
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        width: 100%;
        height: auto;
    }

    /* Keep floating badges within image wrappers on narrow screens */
    .section .position-relative > .position-absolute.bottom-0.start-0 {
      max-width: calc(100% - 2rem);
    }

    /* Ensure text in icon+copy rows can wrap instead of expanding layout */
    .section .d-flex.gap-3 > :last-child {
      min-width: 0;
    }
    .story-badge {
        position: absolute;
        bottom: 0;
        right: 0;
        background: var(--brand-accent);
        color: var(--brand-primary);
        padding: 25px 35px;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        text-align: center;
        z-index: 2;
        transform: rotate(-3deg);
    }
    .story-badge h3 { font-size: 2.5rem; margin: 0; line-height: 1; }
    .story-badge span { font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

    /* --- STATS COUNTER --- */
    .stats-section { background: var(--brand-primary); color: #fff; padding: 80px 0; position: relative; }
    .stats-section::before {
        content: ''; position: absolute; top:0; left:0; width: 100%; height: 100%;
        background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 30px 30px; opacity: 0.5;
    }
    .stat-item { text-align: center; padding: 20px; position: relative; z-index: 2; }
    .stat-number { font-size: 3.5rem; font-weight: 800; color: var(--brand-secondary); margin-bottom: 5px; line-height: 1; }
    .stat-label { font-size: 1.1rem; opacity: 0.8; font-weight: 500; }

    /* --- VALUES / WHY CHOOSE US --- */
    .value-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 16px;
        border: 1px solid #eee;
        transition: var(--transition);
        height: 100%;
        text-align: center;
    }
    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: var(--brand-secondary);
    }
    .value-icon {
        width: 80px; height: 80px;
        background: #e0f7fa;
        color: var(--brand-secondary);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 25px;
        font-size: 2rem;
    }

    /* --- BEFORE / AFTER SLIDER (Interactive) --- */
    .ba-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 20px;
    }
    @media(min-width: 992px) {
      .ba-grid { grid-template-columns: repeat(3, 1fr); }
    }

     /* Buttons */
    .btn-primary {
      background-color: var(--brand-secondary);
      border-color: var(--brand-secondary);
      color: #fff;
      font-weight: 700;
      padding: 12px 30px;
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
    }
    .btn-primary:hover {
      background-color: #0096b4;
      border-color: #0096b4;
      transform: translateY(-3px);
    }
    .btn-outline-primary {
        color: var(--brand-primary);
        border-color: var(--brand-primary);
        border-width: 2px;
        font-weight: 700;
        padding: 10px 28px;
        border-radius: 50px;
    }
    .btn-outline-primary:hover {
        background-color: var(--brand-primary);
        color: #fff;
    }
    .btn-accent {
      background-color: var(--brand-accent);
      border: none;
      color: #373430;
      font-weight: 800;
      /*padding: 10px 24px;*/
      border-radius: 50px;
      transition: color 0.35s ease, box-shadow 0.35s ease;
      box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
        
      background: #F7B31C;
	  background: linear-gradient(0deg,rgba(247, 179, 28, 1) 0%, rgba(251, 207, 23, 1) 100%);
    }
    .btn-accent:hover {
      /*background-color: #ffb60d;
      background: linear-gradient(0deg, rgb(255 192 53) 0%, rgb(228 186 8) 100%);
      color: #373430;
      /*transform: scale(1.05);*/
         
      background-color: #ffb60d;
      color: #fff;
      /* transform: scale(1.05); */
      box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 1), 0px 0px 20px #ffc10791;

    }

	.btn-navy {
      background-color: var(--brand-primary);
      border: none;
      color: #fff;
      font-weight: 800;
      /*padding: 10px 24px;*/
      border-radius: 50px;

    }
    .btn-navy:hover {
	  background-color: #202aa1 !important;
      color: #fff !important;
      /*transform: scale(1.05);*/
    }


    
    /* --- GUARANTEE SECTION --- */
    .guarantee-box {
        background: #fff;
        border: 2px solid var(--brand-accent);
        border-radius: 20px;
        padding: 50px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }
    .guarantee-seal {
        width: 120px;
        margin-bottom: 25px;
        animation: float 6s ease-in-out infinite;
    }
    @keyframes float { 
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    /* --- CTA STRIP --- */
    .cta-strip {
        background: var(--brand-accent);
        padding: 80px 0;
        text-align: center;
    }
    .cta-strip h3 { color: var(--brand-primary); font-size: 2.2rem; margin-bottom: 20px; font-weight: 800; }



    /* --- CONTACT SECTION --- */
    .contact-section { padding: 80px 0; background: var(--soft); }
    
    .contact-wrapper {
        background: #fff;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* Left Side: Info */
    .contact-info {
        background: var(--brand-primary);
        color: #fff;
        padding: 50px;
        height: 100%;
        position: relative;
    }
    .contact-info::before {
        content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
        background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 20px 20px; opacity: 0.3; pointer-events: none;
    }
    
    .info-item { display: flex; align-items: flex-start; margin-bottom: 30px; position: relative; z-index: 2; }
    .info-icon {
        width: 50px; height: 50px; background: rgba(255,255,255,0.1);
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        margin-right: 20px; font-size: 1.2rem; color: var(--brand-secondary); flex-shrink: 0;
    }
    .info-text h5 { font-size: 1.1rem; margin-bottom: 5px; color: #fff; }
    .info-text p, .info-text a { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 0; text-decoration: none; transition: var(--transition); }
    .info-text a:hover { color: #fff; }

    /* Map */
    .map-container {
        border-radius: 12px;
        overflow: hidden;
        height: 250px;
        margin-top: 30px;
        border: 2px solid rgba(255,255,255,0.1);
    }

    /* Right Side: Form */
    .contact-form-box { padding: 50px; }
    .form-control, .form-select {
        background-color: #f8f9fa;
        border: 1px solid #e9ecef;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    /* --- HERO (Enhanced) --- */
    .hero-split {
        background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%, #e6f4f1 100%);
        padding: 100px 0 120px;
        position: relative;
        overflow: hidden;
    }
    .hero-split::before {
        content: ''; position: absolute; top: -10%; right: -5%; width: 50vw; height: 50vw;
        background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, rgba(255,255,255,0) 70%);
        border-radius: 50%; pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; padding-right: 30px; }
    .hero-h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; color: var(--brand-primary); }
    .hero-list li { margin-bottom: 15px; font-size: 1.15rem; display: flex; align-items: center; }
    .hero-list i { color: var(--brand-secondary); margin-right: 15px; font-size: 1.3rem; filter: drop-shadow(0 2px 4px rgba(0,180,216,0.3)); }
    
    @media(max-width: 991px) {
        .hero-h1 { font-size: 2.5rem; }
        .hero-split { padding: 60px 0; }
        .hero-content { margin-bottom: 50px; padding-right: 0; text-align: center; }
        .hero-list { display: inline-block; text-align: left; }
        .contact-form-box { padding: 30px; }
        .contact-info { padding: 30px; }
    }

    /* --- FORM CARD (Floating) --- */
    .hero-form-wrapper {
        background: #fff;
        padding: 35px;
        border-radius: 24px;
        box-shadow: 0 25px 50px -12px rgba(7, 13, 89, 0.25);
        position: relative;
        z-index: 5;
        border: 1px solid rgba(0,0,0,0.05);
        transform: perspective(1000px) rotateY(-2deg);
        transition: transform 0.5s ease;
    }
    .hero-form-wrapper:hover { transform: perspective(1000px) rotateY(0deg) translateY(-5px); }
    

    
    .qw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .option-btn {
        border: 2px solid #f1f5f9; border-radius: 12px; padding: 18px 10px;
        text-align: center; cursor: pointer; background: #fff; transition: all 0.2s;
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        height: 100%; box-shadow: var(--shadow-sm);
    }
    .option-btn:hover { border-color: var(--brand-secondary); background: #f0fbff; transform: translateY(-2px); }
    .option-btn.is-selected { background: #e0f7fa; color: var(--brand-primary); border-color: var(--brand-secondary); font-weight: 700; }
    .option-btn.is-selected .text-muted { color: var(--brand-primary) !important; opacity: 0.7; }
    .option-btn i { font-size: 1.8rem; margin-bottom: 8px; color: var(--brand-secondary); }

    
    /* --- CTA STRIP --- */
    .cta-strip {
        background: var(--brand-accent);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-strip h3 { color: var(--brand-primary); font-size: 2.2rem; margin-bottom: 20px; }


    /* --- USP BAR --- */
    .usp-bar { background: #fff; border-bottom: 1px solid #eee; border-top: 1px solid #eee; padding: 50px 0; }
    .usp-item { display: flex; align-items: center; gap: 15px; }
    .usp-icon { 
        width: 60px; height: 60px; background: #e0f7fa; 
        color: var(--brand-primary); border-radius: 16px; display: flex; 
        align-items: center; justify-content: center; font-size: 1.5rem;
    }
    .usp-text strong { display: block; line-height: 1.2; font-size: 1.1rem; color: var(--brand-primary); }

    /* --- ISSUES SECTION (Hover Lift) --- */
    .issue-card {
        text-align: left;
        padding: 0;
        background: #fff;
        border-radius: 16px;
        height: 100%;
        transition: var(--transition);
        border: none;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }
    .issue-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
    .issue-img-wrap { overflow: hidden; height: 200px; }
    .issue-img {
        width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
    }
    .issue-card:hover .issue-img { transform: scale(1.1); }
    .issue-content { padding: 25px; }
    .issue-title { color: #dc3545; font-weight: 700; margin-bottom: 8px; }

    /* --- TECH COMPARISON --- */
    .tech-box { padding: 40px; border-radius: 20px; height: 100%; box-shadow: var(--shadow-lg); }
    .tech-box-old { background: #fff; border-left: 5px solid #dc3545; }
    .tech-box-new { background: #fff; border-left: 5px solid var(--brand-secondary); position: relative; overflow: hidden; transform: scale(1.02); box-shadow: var(--shadow-hover); border: 2px solid var(--brand-secondary); }
    .tech-box-new::before { content: "WINNER"; position: absolute; top: 0; right: 0; background: var(--brand-secondary); color: white; padding: 5px 15px; font-size: 0.8rem; font-weight: 800; border-bottom-left-radius: 10px; }

    /* --- WHY US (Dark Mode) --- */
    .why-us-section { background: var(--brand-primary); color: #fff; position: relative; }
    /* Pattern overlay */
    .why-us-section::after {
        content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
        background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 30px 30px; opacity: 0.1; pointer-events: none;
    }
    
    .why-us-card {
        padding: 35px 25px; border-radius: 20px; height: 100%; border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.05); transition: var(--transition); text-align: center;
        backdrop-filter: blur(5px);
    }
    .why-us-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
    .why-us-icon {
        width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
        margin: 0 auto 25px; font-size: 2rem; background: rgba(0, 180, 216, 0.2); color: var(--brand-secondary);
        transition: var(--transition);
    }
    .why-us-card:hover .why-us-icon { background: var(--brand-secondary); color: #fff; transform: rotateY(180deg); }
    .why-us-title { font-weight: 700; margin-bottom: 15px; color: #fff; }
    .why-us-text { color: rgba(255,255,255,0.7); font-size: 0.95rem; }


    /* --- SECTION SPACING --- */
    .section-pad { padding-block: 120px; }
    @media(max-width: 991px) {
        .section-pad { padding-block: 80px; }
    }


     /* --- FAQ (Clean) --- */
    .accordion-item { border: none; margin-bottom: 15px; border-radius: 12px !important; box-shadow: var(--shadow-sm); overflow: hidden; }
    .accordion-button { font-weight: 700; color: var(--brand-primary); background: #fff; padding: 25px; font-size: 1.1rem; }
    .accordion-button:not(.collapsed) { color: var(--brand-secondary); background: #f0fbff; box-shadow: none; }
    .accordion-button:focus { box-shadow: none; }
    .accordion-body { padding: 25px 25px 25px 25px; color: var(--text-light); background: #fff; }

    /* --- REVIEWS --- */
    .review-card {
        background: #fff; border: 1px solid #f0f0f0; padding: 30px;
        border-radius: 20px; height: 100%; box-shadow: var(--shadow-lg);
        position: relative;
    }
    .review-quote-icon { position: absolute; top: 20px; right: 20px; font-size: 3rem; color: #f0f0f0; }


     /* --- WHY US (NEW) --- */
    .why-us-section { padding: 80px 0; background: #fff; }
    .why-us-card {
        padding: 30px; border-radius: 12px; height: 100%; border: 1px solid #eee;
        background: #fff; transition: all 0.3s; text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .why-us-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: var(--brand-secondary); }
    .why-us-icon {
        width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
        margin: 0 auto 20px; font-size: 1.8rem; background: #f4f7f6; color: var(--brand-primary);
        transition: all 0.3s;
    }
    .why-us-card:hover .why-us-icon { background: var(--brand-primary); color: #fff; }
    .why-us-title { font-weight: 700; margin-bottom: 15px; color: var(--brand-primary); }

    /* --- SERVICES (DARK) --- */
    .services-dark { background-color: var(--brand-primary); padding: 80px 0; color: #fff; }
    .service-card-dark {
        background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
        padding: 30px; border-radius: 12px; height: 100%; transition: all 0.3s;
    }
    .service-card-dark:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
    .svc-icon { color: var(--brand-secondary); font-size: 2rem; margin-bottom: 20px; }
    .svc-title { font-weight: 700; margin-bottom: 10px; color: #fff; }
    .svc-text { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

    /* --- BEFORE / AFTER --- */
    .ba-section { padding: 80px 0; }
    .ba-canvas {
      position: relative; width: 100%; overflow: hidden;
      border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); aspect-ratio: 1;
    }
    .ba-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
    .ba-after-img { z-index: 2; clip-path: inset(0 50% 0 0); }
    .ba-badge {
        position: absolute; top: 20px; left: 20px; background: rgba(0,0,0,0.8);
        color: #fff; padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; z-index: 10;
    }
    .ba-handle {
        position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff;
        z-index: 5; pointer-events: none; filter: drop-shadow(0 0 3px rgba(0,0,0,0.5));
    }
    .ba-circle {
        position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 40px; height: 40px; background: #fff; border-radius: 50%;
        display: flex; align-items: center; justify-content: center; color: var(--brand-primary);
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .ba-range { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: col-resize; z-index: 20; margin: 0; }

    .review-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

    /* ==================================================
       BEFORE / AFTER GRID
       ================================================== */

    .ba-grid {
      display: grid;
      gap: 24px;
      margin-bottom: 40px;
    }

    .ba-grid-full {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .ba {
      width: 100%;
    }

    .ba-before {
      z-index: 1;
    }

    .ba-knob {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      background: rgba(7, 13, 89, 0.85);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .ba-label {
      position: absolute;
      top: 10px;
      padding: 6px 12px;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      z-index: 5;
      border-radius: 4px;
    }

    .ba-label-left {
      left: 10px;
    }

    .ba-label-right {
      right: 10px;
    }

    .ba-range {
      -webkit-appearance: none;
      appearance: none;
    }

    @media (max-width: 768px) {
      .ba-grid-full {
        grid-template-columns: 1fr;
      }

      .ba-knob {
        width: 40px;
        height: 40px;
        font-size: 14px;
      }

      .ba-label {
        font-size: 11px;
        padding: 4px 8px;
      }
    }

    /* ==================================================
       FINISH LEVELS
       ================================================== */

    .finish-level-card {
      display: block;
      cursor: pointer;
      margin-bottom: 20px;
    }

    .finish-level-card input[type="radio"] {
      display: none;
    }

    .finish-level-content {
      background: white;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 24px;
      transition: all 0.3s ease;
      position: relative;
    }

    .finish-level-card:hover .finish-level-content {
      border-color: #00a326;
      box-shadow: 0 4px 12px rgba(0, 163, 38, 0.1);
      transform: translateY(-2px);
    }

    .finish-level-card input[type="radio"]:checked + .finish-level-content {
      border-color: #00a326;
      border-width: 3px;
      background: linear-gradient(135deg, rgba(0, 163, 38, 0.08) 0%, rgba(0, 163, 38, 0.02) 100%);
      box-shadow: 0 6px 24px rgba(0, 163, 38, 0.3);
    }

    .finish-level-card input[type="radio"]:checked + .finish-level-content .finish-price {
      color: #00a326;
      font-weight: 700;
    }

    .finish-level-selected-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
      color: white;
      padding: 8px 16px;
      border-radius: 24px;
      font-weight: 600;
      font-size: 0.85rem;
      display: none;
      align-items: center;
      gap: 6px;
      box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
      z-index: 10;
    }

    .finish-level-selected-badge i {
      font-size: 1rem;
    }

    .finish-level-card input[type="radio"]:checked ~ .finish-level-content .finish-level-selected-badge {
      display: flex;
      animation: badgePopIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes badgePopIn {
      0% {
        opacity: 0;
        transform: scale(0.5) translateY(-10px);
      }
      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .finish-level-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid #e9ecef;
    }

    .finish-level-card .finish-icon {
      font-size: 2.5rem;
      color: var(--brand-primary);
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(2, 22, 141, 0.05);
      border-radius: 12px;
      flex-shrink: 0;
    }

    .finish-level-card .finish-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--brand-primary);
      margin-bottom: 4px;
    }

    .finish-price {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--brand-secondary);
      margin: 0;
    }

    .finish-level-card .finish-description {
      font-size: 0.95rem;
      color: #6c757d;
      margin-bottom: 16px;
    }

    .finish-includes {
      background: rgba(2, 22, 141, 0.02);
      padding: 16px;
      border-radius: 8px;
      border: 1px solid #e9ecef;
    }

    .finish-includes strong {
      color: var(--brand-primary);
      font-size: 0.95rem;
    }

    .includes-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .includes-list li {
      padding: 6px 0;
      font-size: 0.9rem;
      color: #495057;
      display: flex;
      align-items: flex-start;
    }

    .includes-list li i {
      margin-top: 2px;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .finish-level-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .finish-level-card .finish-title {
        font-size: 1.2rem;
      }

      .finish-price {
        font-size: 1.1rem;
      }
    }

    /* ==================================================
       PAGE-SPECIFIC PUBLIC STYLES
       ================================================== */

    /* Contact page */
    .contact-section {
      padding: 80px 0;
      background: var(--soft);
    }

    .contact-wrapper {
      background: #fff;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .contact-info::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.3;
      pointer-events: none;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      position: relative;
      z-index: 2;
    }

    .info-icon {
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      font-size: 1.2rem;
      color: var(--brand-secondary);
      flex-shrink: 0;
    }

    .info-text h5 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: #fff;
    }

    .info-text p,
    .info-text a {
      color: rgba(255,255,255,0.7);
      font-size: 0.95rem;
      margin-bottom: 0;
      text-decoration: none;
      transition: var(--transition);
    }

    .info-text a:hover {
      color: #fff;
    }

    .map-container {
      border-radius: 12px;
      overflow: hidden;
      height: 250px;
      margin-top: 30px;
      border: 2px solid rgba(255,255,255,0.1);
    }

    /* Reviews page */
    .review-text {
      flex: 1;
      color: #555;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .review-meta {
      font-size: 0.85rem;
      color: #999;
      border-top: 1px solid #f0f0f0;
      padding-top: 1rem;
    }

    .review-service {
      display: inline-block;
      background: #f0f0f0;
      color: #667eea;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    /* Leave review page */
    .star-rating {
      font-size: 2.5rem;
      color: #ddd;
      cursor: pointer;
    }

    .star-rating .fa-star {
      transition: color 0.2s;
    }

    .star-rating .fas {
      color: #ffc107;
    }

    .star-rating .fa-regular {
      color: #ddd;
    }

    .star-rating .fa-star.selected,
    .star-rating .fa-star:hover,
    .star-rating .fa-star:hover ~ .fa-star {
      color: #ffc107;
    }

    .review-step {
      display: none;
    }

    .review-step.active {
      display: block;
    }

    /* Careers listing and detail pages */
    .careers-hero {
      position: relative;
      overflow: hidden;
      padding: 140px 0 110px;
      background: linear-gradient(135deg, rgba(7, 13, 89, 0.96), rgba(10, 17, 117, 0.88));
      color: #fff;
    }

    .careers-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255, 191, 0, 0.22), transparent 35%), radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 30%);
    }

    .careers-hero .container,
    .career-list-card,
    .careers-value-card,
    .career-process-card,
    .career-empty,
    .career-job-topbar,
    .career-detail-card,
    .career-apply-card,
    .career-related-card,
    .career-not-found {
      position: relative;
      z-index: 1;
    }

    .careers-stat {
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      border-radius: 18px;
      padding: 1rem 1.2rem;
      min-width: 160px;
    }

    .careers-stat-number {
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 1;
    }

    .careers-section {
      padding: 90px 0;
    }

    .careers-value-card,
    .career-list-card,
    .career-process-card,
    .career-empty,
    .career-detail-card,
    .career-apply-card,
    .career-related-card,
    .career-not-found {
      border: 1px solid rgba(7, 13, 89, 0.08);
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(7, 13, 89, 0.08);
      background: #fff;
    }

    .careers-value-card,
    .career-process-card,
    .career-empty,
    .career-detail-card,
    .career-apply-card,
    .career-related-card,
    .career-not-found {
      padding: 1.75rem;
    }

    .career-detail-card,
    .career-apply-card,
    .career-related-card,
    .career-not-found {
      padding: 2rem;
    }

    .careers-value-card,
    .career-process-card {
      height: 100%;
    }

    .career-list-card {
      display: block;
      padding: 1.5rem;
      color: inherit;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      height: 100%;
    }

    .career-list-card:hover,
    .career-list-card.active {
      transform: translateY(-4px);
      border-color: rgba(255, 191, 0, 0.6);
      box-shadow: 0 24px 55px rgba(7, 13, 89, 0.12);
    }

    .career-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      background: rgba(7, 13, 89, 0.06);
      color: var(--brand-primary);
      font-size: 0.85rem;
      font-weight: 600;
    }

    .career-empty {
      text-align: center;
    }

    .career-list-card .btn {
      pointer-events: none;
    }

    .career-job-topbar {
      padding: 56px 0 18px;
      background: #f8f9fb;
    }

    .career-page-section {
      padding: 32px 0 80px;
    }

    .career-meta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .career-meta-item {
      border-radius: 18px;
      background: #f8f9fb;
      padding: 1rem 1.1rem;
    }

    .career-detail-list {
      margin: 0;
      padding-left: 1.2rem;
    }

    .career-detail-list li + li {
      margin-top: 0.55rem;
    }

    .career-detail-cta {
      flex-shrink: 0;
      align-self: flex-start;
    }

    .career-detail-cta .btn {
      white-space: nowrap;
    }

    .career-apply-card .form-control,
    .career-apply-card .form-select {
      border-radius: 14px;
      padding: 0.9rem 1rem;
      border-color: #d7dde8;
    }

    .career-related-card a {
      text-decoration: none;
      color: inherit;
    }

    @media (max-width: 991.98px) {
      .careers-hero {
        padding: 120px 0 90px;
      }

      .career-job-topbar {
        padding: 48px 0 16px;
      }

      .career-detail-cta {
        width: 100%;
      }

      .career-detail-cta .btn {
        width: 100%;
      }
    }

