:root {
  --bg-main: #080a0e;
  --bg-topbar: #05070a;
  --bg-nav: rgba(8, 10, 14, 0.92);
  --bg-card: rgba(15, 19, 28, 0.85);
  --bg-card-hover: rgba(22, 28, 42, 0.95);
  --border-gold: rgba(212, 163, 67, 0.35);
  --border-gold-hover: rgba(250, 215, 125, 0.9);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --gold-primary: #d4a343;
  --gold-light: #fce08b;
  --gold-dark: #9a6f20;
  --gold-gradient: linear-gradient(135deg, #fce08b 0%, #d4a343 50%, #9a6f20 100%);
  --tp-green: #00b67a;
  --orange-accent: #f84e1d;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --accent-green: #22c55e;
  --shadow-gold: 0 10px 25px -5px rgba(212, 163, 67, 0.35);
  --shadow-card: 0 15px 35px -10px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 35px rgba(212, 163, 67, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(212, 163, 67, 0.14) 0%, transparent 45%),
              radial-gradient(circle at 100% 25%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 0% 65%, rgba(212, 163, 67, 0.1) 0%, transparent 45%),
              radial-gradient(circle at 80% 85%, rgba(0, 182, 122, 0.08) 0%, transparent 40%),
              var(--bg-main);
  min-height: 100vh;
  position: relative;
}

/* Background Particle Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Content Wrapper */
.content-layer {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.gold-text {
  background: linear-gradient(90deg, #fce08b 0%, #fff6d6 20%, #d4a343 45%, #ffffff 60%, #d4a343 80%, #fce08b 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: textShine 6s infinite linear;
}

@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* Dynamic Rotating Text in Hero */
.rotating-text-wrap {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  min-height: 1.2em;
}

.rotating-text {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.rotating-text.out {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  filter: blur(6px);
}

.rotating-text.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Text Hover Micro-Interactions */
.service-title, .process-step-title, .trust-content h4, .area-city-name {
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.service-card:hover .service-title,
.process-step-card:hover .process-step-title,
.trust-item:hover .trust-content h4 {
  color: #fff6d6;
  text-shadow: 0 0 16px rgba(212, 163, 67, 0.6);
  transform: translateX(3px);
}

.section-tag {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 163, 67, 0.8);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 163, 67, 0.2); }
  50% { box-shadow: 0 0 35px rgba(212, 163, 67, 0.5); }
}

@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Shimmer Button */
.btn-shimmer {
  background: linear-gradient(90deg, #d4a343 0%, #fff1ba 25%, #d4a343 50%, #9a6f20 75%, #d4a343 100%);
  background-size: 200% auto;
  animation: goldShimmer 4s infinite linear;
  color: #0b0d11 !important;
  font-weight: 800;
}

/* ====================================================
   TOPBAR & VECTOR FLAGS
   ==================================================== */
.elever-topbar {
  background: var(--bg-topbar);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.elever-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.elever-topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.elever-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.elever-info-pill svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.elever-info-pill:hover {
  color: var(--gold-light);
}

.elever-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Vector Flag Icon */
.flag-icon {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.lang-trigger-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-trigger-flag .flag-icon {
  width: 21px;
  height: 14px;
}

/* Language Dropdown */
.lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.lang-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 163, 67, 0.35);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.lang-trigger-btn:hover, .lang-dropdown-wrapper.active .lang-trigger-btn {
  background: rgba(212, 163, 67, 0.18);
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 163, 67, 0.35);
}

.lang-trigger-code {
  letter-spacing: 0.05em;
}

.lang-trigger-arrow {
  transition: transform 0.3s ease;
  color: var(--gold-light);
}

.lang-dropdown-wrapper.active .lang-trigger-arrow {
  transform: rotate(180deg);
}

/* Dropdown Panel */
.lang-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 290px;
  background: #0d1017;
  border: 1px solid rgba(212, 163, 67, 0.4);
  border-radius: 14px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 163, 67, 0.15);
  z-index: 1200;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: dropFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown-wrapper.active .lang-dropdown-panel {
  display: flex;
}

@keyframes dropFadeIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-panel-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lang-panel-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.lang-search-box {
  padding: 8px 12px;
  position: relative;
}

.lang-search-input {
  width: 100%;
  padding: 8px 12px 8px 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.84rem;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.lang-search-input:focus {
  border-color: var(--gold-primary);
  background: rgba(212, 163, 67, 0.1);
  box-shadow: 0 0 0 2px rgba(212, 163, 67, 0.2);
}

.lang-search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.lang-list {
  max-height: 260px;
  overflow-y: auto;
  padding: 4px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lang-list::-webkit-scrollbar {
  width: 5px;
}

.lang-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

.lang-list::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

.lang-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  color: #e5e7eb;
}

.lang-list-item:hover {
  background: rgba(212, 163, 67, 0.15);
  transform: translateX(2px);
}

.lang-list-item.active {
  background: rgba(212, 163, 67, 0.22);
  border: 1px solid rgba(212, 163, 67, 0.45);
}

.lang-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-item-info {
  display: flex;
  flex-direction: column;
}

.lang-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.lang-item-sub {
  font-size: 0.70rem;
  color: var(--text-muted);
}

.lang-item-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-item-badge {
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.70rem;
  font-weight: 800;
  color: #9ca3af;
  letter-spacing: 0.05em;
}

.lang-list-item.active .lang-item-badge {
  background: #ff5722;
  color: #ffffff;
  font-weight: 900;
}

.lang-item-check {
  color: #ff5722;
  font-weight: 900;
  font-size: 0.95rem;
  display: none;
}

.lang-list-item.active .lang-item-check {
  display: inline-block;
}

/* ====================================================
   MAIN NAVBAR (Elever Style)
   ==================================================== */
.elever-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 163, 67, 0.25);
}

.elever-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 20px;
}

.elever-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.elever-brand img {
  height: 50px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(212, 163, 67, 0.4));
  transition: transform 0.35s ease;
  display: block;
}

.elever-brand:hover img {
  transform: scale(1.05);
}

.elever-brand-text {
  display: flex;
  flex-direction: column;
}

.elever-brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.15;
  white-space: nowrap;
}

.elever-brand-tagline {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.elever-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.elever-menu a {
  color: #f3f4f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.elever-menu a:hover {
  color: var(--gold-light);
}

.elever-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.elever-menu a:hover::after {
  width: 100%;
}

.elever-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.elever-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  color: #0b0d11;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.elever-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(212, 163, 67, 0.6);
}

/* Standard Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.90rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0d11;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -5px rgba(212, 163, 67, 0.55);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 8px 25px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(37, 211, 102, 0.6);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: rgba(212, 163, 67, 0.15);
  transform: translateY(-2px);
}

/* ====================================================
   HERO SECTION & 3D PARALLAX
   ==================================================== */
.hero {
  position: relative;
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 163, 67, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
  animation: pulseGlow 4s infinite ease-in-out;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-slogan {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-media {
  position: relative;
}

.banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 35px rgba(212, 163, 67, 0.15);
  background: var(--bg-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.banner-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-card), 0 0 50px rgba(212, 163, 67, 0.35);
}

.banner-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Badges on Hero Banner */
.hero-floating-pill {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(8, 10, 14, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  animation: floatSlow 6s infinite ease-in-out;
}

.hero-pill-stars {
  color: #ffb703;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.hero-pill-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

/* ====================================================
   TRUST BAR
   ==================================================== */
.trust-section {
  padding: 40px 0;
  border-top: 1px solid rgba(212, 163, 67, 0.15);
  border-bottom: 1px solid rgba(212, 163, 67, 0.15);
  background: rgba(14, 18, 26, 0.6);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.trust-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: rgba(212, 163, 67, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.trust-icon-svg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 163, 67, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.trust-item:hover .trust-icon-svg {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-gradient);
  color: #0b0d11;
}

.trust-content h4 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.trust-content p {
  font-size: 0.80rem;
  color: var(--text-muted);
}

/* ====================================================
   SERVICES SECTION
   ==================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 10px 30px rgba(212, 163, 67, 0.2);
}

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.1) 0%, rgba(15, 19, 28, 0.95) 100%);
}

.service-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.service-features {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.88rem;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ====================================================
   INTERACTIVE BEFORE / AFTER SLIDER
   ==================================================== */
.ba-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 163, 67, 0.08) 0%, transparent 70%),
              rgba(11, 14, 20, 0.7);
  border-top: 1px solid rgba(212, 163, 67, 0.15);
  border-bottom: 1px solid rgba(212, 163, 67, 0.15);
}

.ba-wrapper {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.ba-slider-box {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-image.before {
  background-image: url('assets/services/rigips.jpg');
  filter: grayscale(80%) brightness(0.7);
}

.ba-image.after {
  background-image: url('assets/services/hero-villa.jpg');
  width: 50%;
  border-right: 3px solid #fce08b;
  overflow: hidden;
}

.ba-badge {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: #fff;
  z-index: 5;
}

.ba-badge.before-badge {
  right: 20px;
}

.ba-badge.after-badge {
  left: 20px;
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 20px rgba(212, 163, 67, 0.8), 0 0 0 4px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d11;
  font-weight: 900;
  z-index: 10;
  pointer-events: none;
  cursor: ew-resize;
  transition: transform 0.2s ease;
}

/* ====================================================
   PROCESS & WORKFLOW (4 Steps)
   ==================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 10px 30px rgba(212, 163, 67, 0.25);
}

.process-step-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.process-step-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ====================================================
   TRUSTPILOT & TESTIMONIALS
   ==================================================== */
.tp-section {
  background: rgba(10, 13, 19, 0.85);
  border-top: 1px solid rgba(212, 163, 67, 0.15);
  border-bottom: 1px solid rgba(212, 163, 67, 0.15);
}

.tp-badge-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tp-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(0, 182, 122, 0.12);
  border: 1px solid rgba(0, 182, 122, 0.4);
  border-radius: 50px;
}

.tp-stars-row {
  display: flex;
  gap: 4px;
}

.tp-star-box {
  width: 20px;
  height: 20px;
  background: var(--tp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 3px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.review-text {
  font-size: 0.94rem;
  font-style: italic;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b0d11;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.review-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.review-author-meta {
  font-size: 0.75rem;
  color: var(--tp-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ====================================================
   FAQ ACCORDION
   ==================================================== */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover, .faq-item.active {
  border-color: var(--gold-primary);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 163, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-gradient);
  color: #0b0d11;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ====================================================
   SERVICE AREA
   ==================================================== */
.area-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 163, 67, 0.08) 0%, transparent 60%),
              rgba(14, 18, 26, 0.6);
  border-top: 1px solid rgba(212, 163, 67, 0.15);
  border-bottom: 1px solid rgba(212, 163, 67, 0.15);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.area-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.area-badge-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(212, 163, 67, 0.25);
  transition: var(--transition);
}

.area-badge-card:hover {
  border-color: var(--gold-primary);
  transform: translateX(6px);
  background: var(--bg-card-hover);
}

.area-city {
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-city-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.area-plz {
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(212, 163, 67, 0.15);
  color: var(--gold-light);
  font-weight: 600;
}

.area-map-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  text-align: center;
}

/* ====================================================
   CALCULATOR & QUOTE FORM
   ==================================================== */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(212, 163, 67, 0.1);
  max-width: 860px;
  margin: 0 auto;
}

.calc-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gold-light);
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.service-opt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.80rem;
  font-weight: 600;
  text-align: center;
}

.service-opt-btn:hover, .service-opt-btn.active {
  background: rgba(212, 163, 67, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.service-opt-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 163, 67, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

/* ====================================================
   CONTACT GRID
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-main);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 163, 67, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-card.wa .contact-card-icon {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25D366;
}

.contact-card-info h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.contact-card-info p {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Floating Bottom Bar for Mobile */
.floating-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 12, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 8px 10px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 99;
  justify-content: space-between;
  gap: 6px;
}

.floating-mobile-bar .btn {
  padding: 8px 6px;
  font-size: 0.76rem;
  border-radius: var(--radius-sm);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #12161f;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 580px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-card);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
footer {
  background: #05070a;
  border-top: 1px solid rgba(212, 163, 67, 0.15);
  padding: 50px 0 90px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand p {
  margin-top: 12px;
  max-width: 380px;
  line-height: 1.55;
}

.footer-links h5 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ====================================================
   RESPONSIVE BREAKPOINTS
   ==================================================== */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .elever-menu {
    gap: 18px;
  }
  .elever-menu a {
    font-size: 0.88rem;
  }
}

@media (max-width: 900px) {
  .elever-menu {
    display: none;
  }
  .elever-actions {
    display: none;
  }
  .elever-navbar {
    height: 70px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ba-slider-box {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .elever-topbar-left {
    display: none;
  }
  .elever-topbar-inner {
    justify-content: flex-end;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .elever-brand img {
    height: 42px;
    max-height: 42px;
  }
  .elever-brand-title {
    font-size: 1.05rem;
  }
  .elever-brand-tagline {
    font-size: 0.58rem;
  }
  .hero {
    padding: 24px 0 45px;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-value {
    font-size: 1.5rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-body {
    padding: 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .floating-mobile-bar {
    display: flex;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.7);
  }
  .floating-mobile-bar .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .calculator-card {
    padding: 20px 16px;
  }
  body {
    padding-bottom: 75px;
  }
}

/* ====================================================
   CIRCULAR SCROLL PROGRESS INDICATOR (Matching Screenshot)
   ==================================================== */
.scroll-progress-widget {
  position: fixed;
  bottom: 30px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 87, 34, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  user-select: none;
}

.scroll-progress-widget.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.scroll-progress-widget:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 87, 34, 0.6);
}

.scroll-progress-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  border-radius: 50%;
}

.scroll-progress-bg-ring {
  fill: none;
  stroke: rgba(255, 87, 34, 0.15);
  stroke-width: 4;
}

.scroll-progress-bar {
  fill: none;
  stroke: #ff5722;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-progress-text {
  position: relative;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ff5722;
  font-family: inherit;
  letter-spacing: -0.02em;
}

.scroll-progress-arrow {
  position: absolute;
  z-index: 3;
  color: #ff5722;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-progress-widget:hover .scroll-progress-text {
  opacity: 0;
}

.scroll-progress-widget:hover .scroll-progress-arrow {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-progress-widget {
    bottom: 74px;
    right: 18px;
    width: 48px;
    height: 48px;
  }
  .scroll-progress-text {
    font-size: 0.72rem;
  }
}

/* ====================================================
   APP AUDIO & VISUAL NOTIFICATION TOAST
   ==================================================== */
.notification-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #10141d;
  border: 1px solid var(--gold-primary);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 163, 67, 0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  width: calc(100% - 48px);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.notification-toast.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.notification-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 163, 67, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  animation: pulseGlow 2s infinite ease-in-out;
}

.notification-toast-body {
  flex-grow: 1;
}

.notification-toast-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.notification-toast-msg {
  font-size: 0.80rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.notification-toast-close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.notification-toast-close:hover {
  color: #ffffff;
}

