/* ==========================================================================
   FIVE STARS - DARGELIS | FOTOGRAFIE & VIDEOGRAFIE MIT HERZ
   High-End Interactive Effects, Smooth Animations, 3D Tilt & Logo Integration
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #0c0d10;
  --bg-secondary: #14161c;
  --bg-card: #181b22;
  --bg-card-hover: #1f232c;
  --bg-glass: rgba(12, 13, 16, 0.92);

  --accent-gold: #dcb35c;
  --accent-gold-light: #f7d58b;
  --accent-gold-dark: #b58934;
  --accent-gold-glow: rgba(220, 179, 92, 0.35);

  --accent-whatsapp: #25d366;
  --accent-whatsapp-hover: #20ba59;

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-light: #6b7280;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(220, 179, 92, 0.35);
  --border-gold-solid: #dcb35c;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevations */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(220, 179, 92, 0.25);

  /* Transitions */
  --trans-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-bounce: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1200px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

/* ==========================================================================
   PAGE SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), #ffffff, var(--accent-gold-light));
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--accent-gold);
}

/* Ambient Background Glow Effect */
body::before {
  content: "";
  position: fixed;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 179, 92, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: floatAmbient 18s infinite alternate ease-in-out;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 80px) scale(1.15); }
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast), opacity var(--trans-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Headings */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  background: rgba(220, 179, 92, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  margin-bottom: 16px;
  transition: all var(--trans-normal);
}

.section-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--accent-gold-glow);
  background: rgba(220, 179, 92, 0.18);
}

.section-tag::before {
  content: "★";
  font-size: 0.75rem;
  color: var(--accent-gold);
  animation: starSpin 4s infinite linear;
}

@keyframes starSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  max-width: 700px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   DYNAMIC TOPBAR USER MENU & LOGOUT DROPDOWN
   ========================================================================== */
.topbar-user-wrap {
  position: relative;
  display: inline-block;
}

.topbar-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(201, 168, 106, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.topbar-login-btn:hover {
  background: rgba(201, 168, 106, 0.3);
  box-shadow: 0 0 12px rgba(201, 168, 106, 0.4);
}

.topbar-login-btn.logged-in {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.25) 0%, rgba(20, 24, 33, 0.95) 100%);
  border-color: var(--accent-gold);
}

.topbar-user-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 230px;
  background: #0f131c;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 999999;
  animation: fadeInDown 0.2s ease;
}

.topbar-user-wrap:hover .topbar-user-dropdown,
.topbar-user-wrap.open .topbar-user-dropdown {
  display: flex;
}

.topbar-user-header {
  padding: 8px 10px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.topbar-user-role {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.topbar-user-name {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: all 0.15s ease;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
}

.topbar-dropdown-item:hover {
  background: rgba(201, 168, 106, 0.15);
  color: #fff;
}

.topbar-dropdown-item.logout-action {
  color: #f87171;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
  padding-top: 10px;
}

.topbar-dropdown-item.logout-action:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* ==========================================================================
   BUTTONS WITH SHIMMER & RIPPLE
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--trans-normal);
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.96) !important;
}

/* Shimmer Sweep Animation on Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #0c0d10;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(220, 179, 92, 0.35);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: rotate(30deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(220, 179, 92, 0.55);
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  background: var(--accent-whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--accent-whatsapp-hover);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
  transform: translateY(-3px) scale(1.02);
}

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

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #0c0d10;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-sm { padding: 8px 16px; font-size: 0.84rem; }
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }

/* Click Ripple Wave */
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* ==========================================================================
   TOPBAR & HEADER WITH EMBEDDED LOGO (PERFECTED Z-INDEX & DROPDOWN)
   ========================================================================== */
.topbar {
  background: #08090b;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
  z-index: 100005;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 1440px;
  position: relative;
  z-index: 100006;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(12, 14, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.25);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
  transition: all var(--trans-normal);
}

.header.scrolled {
  background: #0a0c10;
  border-bottom-color: var(--border-gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1440px;
  padding: 0 20px;
  gap: 12px;
}

.header.scrolled .nav-container { height: 66px; }

/* Brand Logo Layout */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 14px;
  text-decoration: none;
  transition: transform var(--trans-fast);
}
.brand-logo:hover { transform: scale(1.02); }

.brand-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: invert(1) brightness(1.15) drop-shadow(0 0 8px rgba(220, 179, 92, 0.3));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: invert(1) brightness(1.25) drop-shadow(0 0 12px rgba(220, 179, 92, 0.6));
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-title span { color: var(--accent-gold); }

.brand-subtitle {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Nav Menu */
.nav-menu { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
  flex-shrink: 1;
  margin: 0;
  padding: 0;
}

.nav-item { 
  position: relative; 
  padding: 8px 0; /* Creates continuous hover surface */
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link svg { 
  transition: transform var(--trans-fast); 
  opacity: 0.8;
}
.nav-item:hover > .nav-link svg { 
  transform: rotate(180deg); 
  opacity: 1;
  color: var(--accent-gold);
}

/* ==========================================================================
   PREMIUM DESKTOP DROPDOWN MENU (ALWAYS ABOVE ALL CONTENT & IMAGES)
   ========================================================================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: #11141c;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 20px rgba(201, 168, 106, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100000; /* ALWAYS ON TOP */
  pointer-events: none;
}

/* Safe Hover Bridge to prevent premature closing */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.15s ease;
  border-left: 2px solid transparent;
  background: transparent;
}

.dropdown-link:hover {
  background: rgba(201, 168, 106, 0.12);
  color: #ffffff;
  border-left-color: var(--accent-gold);
  transform: translateX(3px);
}

.dropdown-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.dropdown-link:hover .dropdown-icon {
  background: rgba(201, 168, 106, 0.2);
  border-color: var(--border-gold);
  transform: scale(1.08);
}

.dropdown-text {
  display: flex;
  flex-direction: column;
}

.dropdown-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.15s ease;
}

.dropdown-link:hover .dropdown-text strong {
  color: var(--accent-gold);
}

.dropdown-text span {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 1px;
}

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




/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--trans-normal);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO SECTION & PARALLAX FLOATS
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 70px 0 50px;
  background: radial-gradient(circle at 75% 30%, rgba(220, 179, 92, 0.07) 0%, transparent 60%),
              var(--bg-primary);
  overflow: hidden;
}

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

.hero-content { position: relative; z-index: 2; }

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.badge-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  transition: all var(--trans-fast);
}

.badge-location:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.badge-location svg { color: var(--accent-gold); }

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title .title-accent {
  color: var(--accent-gold);
  display: block;
}

.hero-description {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--trans-fast);
}
.hero-feature-item:hover { transform: translateX(3px); }

.hero-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(220, 179, 92, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--trans-fast);
}
.hero-feature-item:hover .hero-feature-icon { transform: scale(1.15); }

.hero-feature-text { font-size: 0.82rem; font-weight: 600; color: #e5e7eb; }

/* Visual Card with 3D Tilt */
.hero-visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
  transform-style: preserve-3d;
}

.hero-visual-card:hover {
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.hero-image-wrap {
  position: relative;
  height: 480px;
  background: linear-gradient(180deg, rgba(20, 22, 28, 0.1) 0%, rgba(12, 13, 16, 0.95) 100%),
              url('../images/about/kevin-kamera-hero.webp') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.hero-floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(12, 13, 16, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: floatBadge 4s infinite alternate ease-in-out;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.rating-stars { color: var(--accent-gold); font-size: 0.85rem; letter-spacing: 2px; }
.rating-label { font-size: 0.76rem; font-weight: 700; color: #ffffff; }
.rating-sub { font-size: 0.68rem; color: var(--text-muted); }

.hero-card-bottom {
  background: rgba(20, 22, 28, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.author-info { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-gold);
  object-fit: cover;
}
.author-name { font-weight: 700; font-size: 0.92rem; color: #fff; }
.author-title { font-size: 0.75rem; color: var(--accent-gold-light); }

/* ==========================================================================
   TRUST & REGION BAR
   ========================================================================== */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 0;
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-heading {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-locations { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }

.loc-pill {
  font-size: 0.8rem;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  transition: all var(--trans-normal);
}

.loc-pill:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px var(--accent-gold-glow);
}

/* ==========================================================================
   INTERACTIVE CARDS & SPOTLIGHT HOVER
   ========================================================================== */
.section { padding: 80px 0; position: relative; }
.section-alt { background-color: var(--bg-secondary); }

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

.about-media-stack { position: relative; }

.about-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  transition: transform var(--trans-normal);
}
.about-img-main:hover { transform: scale(1.02); }

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: #191c24;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}

.about-floating-number {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 2px;
}

.about-floating-desc { font-size: 0.78rem; color: var(--text-muted); }
.about-lead { font-size: 1.08rem; color: #e2e8f0; margin-bottom: 16px; font-weight: 500; line-height: 1.7; }
.about-text { color: var(--text-muted); margin-bottom: 24px; font-size: 0.94rem; line-height: 1.75; }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.about-point:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(4px);
}

.point-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: rgba(220, 179, 92, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.point-title { font-weight: 600; font-size: 0.88rem; color: #ffffff; }
.point-desc { font-size: 0.78rem; color: var(--text-muted); }

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-normal);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  background: var(--bg-card-hover);
}

.service-img-wrap { position: relative; height: 200px; overflow: hidden; }

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

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

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(12, 13, 16, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.service-body { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.service-title { font-size: 1.25rem; margin-bottom: 10px; color: #fff; transition: color var(--trans-fast); }
.service-card:hover .service-title { color: var(--accent-gold); }

.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }

.service-tag-item {
  font-size: 0.72rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  transition: all var(--trans-fast);
}
.service-card:hover .service-tag-item {
  background: rgba(220, 179, 92, 0.1);
  color: var(--accent-gold-light);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.service-price-hint { font-size: 0.82rem; color: var(--text-muted); }
.service-price-hint strong { color: var(--accent-gold); font-size: 1rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  transition: all var(--trans-fast);
}
.service-card:hover .service-link {
  color: var(--accent-gold);
  transform: translateX(4px);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--trans-normal);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #1d212b 0%, #14161d 100%);
  border-color: var(--border-gold-solid);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transform: translateY(-6px);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.pricing-popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(220, 179, 92, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.pricing-title { font-size: 1.35rem; color: #ffffff; margin-bottom: 10px; }

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-ab { font-size: 0.9rem; color: var(--text-muted); }
.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.pricing-vat { font-size: 0.72rem; color: var(--text-light); margin-top: 4px; }
.pricing-features { flex-grow: 1; margin-bottom: 24px; }

.pricing-feature-item {
  display: block;
  font-size: 0.84rem;
  color: #d1d5db;
  margin-bottom: 10px;
  line-height: 1.45;
}

.pricing-feature-item svg {
  display: inline-block;
  vertical-align: -2px;
  color: var(--accent-gold);
  margin-right: 6px;
}

.pricing-feature-item a {
  display: inline;
  color: var(--accent-gold);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity var(--trans-fast);
}

.pricing-feature-item a:hover {
  opacity: 0.8;
}
.pricing-card .btn { width: 100%; }

/* Process Steps */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  transition: all var(--trans-normal);
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}

.process-step-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(220, 179, 92, 0.2);
  transition: color var(--trans-fast);
}
.process-step-card:hover .process-step-num {
  color: var(--accent-gold);
}

.process-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(220, 179, 92, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
  transition: transform var(--trans-normal);
}
.process-step-card:hover .process-icon-box {
  transform: scale(1.15) rotate(6deg);
  background: rgba(220, 179, 92, 0.25);
}

.process-step-title { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.process-step-text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }

/* Specials & Testimonials */
.specials-grid, .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.special-card, .testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-normal);
}

.special-card:hover, .testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.special-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(220, 179, 92, 0.15);
  color: var(--accent-gold);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.special-title { font-size: 1.25rem; color: #ffffff; margin-bottom: 10px; }
.special-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }

.quote-icon {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  color: rgba(220, 179, 92, 0.25);
  line-height: 1;
  margin-bottom: 6px;
  transition: transform var(--trans-fast);
}
.testimonial-card:hover .quote-icon { transform: scale(1.2) translateY(-2px); color: var(--accent-gold); }

.testimonial-text { font-size: 0.92rem; color: #e2e8f0; line-height: 1.65; margin-bottom: 20px; flex-grow: 1; font-style: italic; }

.testimonial-author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.author-main-info strong { display: block; font-size: 0.9rem; color: #fff; }
.author-main-info span { font-size: 0.74rem; color: var(--accent-gold); }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 40px auto 0; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--trans-fast);
}

.faq-item:hover { border-color: rgba(220, 179, 92, 0.4); }
.faq-item.active { border-color: var(--border-gold); }

.faq-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question { font-size: 0.98rem; font-weight: 600; color: #ffffff; }

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--trans-normal), background var(--trans-normal);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  background: var(--accent-gold);
  color: #000;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-normal), padding var(--trans-normal);
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-item.active .faq-body { padding: 0 20px 18px; max-height: 300px; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #181b24 0%, #101217 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  box-shadow: var(--shadow-gold), var(--shadow-md);
  margin: 50px 0;
  transition: transform var(--trans-normal);
}

.cta-banner:hover { transform: scale(1.01); }

.cta-title { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
.cta-desc { font-size: 0.98rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 28px; }
.cta-btn-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* Footer */
.footer {
  background: #07080a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 24px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-muted); transition: all var(--trans-fast); }
.footer-links a:hover { color: var(--accent-gold); transform: translateX(4px); }

.footer-social-bar { display: flex; align-items: center; gap: 8px; margin-top: 16px; }

.social-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--trans-fast);
}

.social-icon-btn:hover {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  transform: translateY(-3px) scale(1.1);
}

.seo-cloud {
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  font-size: 0.74rem;
  line-height: 1.8;
  color: #6b7280;
}
.seo-cloud a { color: #8b92a2; }
.seo-cloud a:hover { color: var(--accent-gold); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* Floating WhatsApp Button with Breathing Glow */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-whatsapp);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--trans-normal);
  animation: pulseWhatsapp 3s infinite ease-in-out;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { transform: scale(1.04); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65); }
  100% { transform: scale(1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  background: var(--accent-whatsapp-hover);
}

.floating-whatsapp svg { width: 20px; height: 20px; }

/* ==========================================================================
   SCROLL REVEAL UTILITIES
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   PORTFOLIO CATEGORY JUMP BAR & GALLERY STYLES
   ========================================================================== */
.portfolio-jump-nav {
  position: sticky;
  top: 76px;
  z-index: 90;
  background: rgba(14, 16, 21, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 0;
  margin-bottom: 40px;
}

.portfolio-chips-wrap {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.portfolio-chips-wrap::-webkit-scrollbar { display: none; }

.portfolio-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--trans-fast);
  touch-action: manipulation;
}

.portfolio-chip:hover, .portfolio-chip.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 14px rgba(220, 179, 92, 0.35);
  transform: translateY(-2px);
}

.portfolio-section-block {
  scroll-margin-top: 150px;
  margin-bottom: 60px;
}

.portfolio-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.portfolio-section-title {
  font-size: 1.6rem;
  color: #fff;
}

.portfolio-grid-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-item-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: all var(--trans-normal);
}

.portfolio-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transform: translateY(-4px);
}

.portfolio-item-card:hover img {
  transform: scale(1.08);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.portfolio-item-card:hover .portfolio-item-overlay,
.portfolio-item-card:active .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.portfolio-item-sub {
  color: var(--accent-gold);
  font-size: 0.78rem;
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR (89% MOBILE OPTIMIZATION)
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14, 16, 21, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 8px 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.mobile-bottom-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr 1fr;
  gap: 8px;
  align-items: center;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 4px;
  border-radius: 8px;
  transition: all var(--trans-fast);
  touch-action: manipulation;
}

.mobile-bottom-btn svg { width: 18px; height: 18px; }

.mobile-bottom-btn.highlight-wa {
  background: var(--accent-whatsapp);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.mobile-bottom-btn.highlight-builder {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a88339 100%);
  color: #000;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(220, 179, 92, 0.4);
}

.mobile-bottom-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.lightbox-img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid var(--border-gold);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (PERFECTED FOR 89% MOBILE VISITORS)
   ========================================================================== */
@media (max-width: 1050px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .specials-grid, .testimonials-grid, .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid-masonry { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* ==========================================================================
   PERFECT MOBILE & TABLET RESPONSIVENESS (100% FLUID VIEWPORT)
   ========================================================================== */
@media (max-width: 1120px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    padding-bottom: 74px !important; /* Space for sticky bottom bar */
  }

  .topbar {
    display: none !important;
  }

  .mobile-bottom-bar { 
    display: block !important; 
  }
  
  .floating-whatsapp { 
    display: none !important; 
  }

  .header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .nav-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 62px !important;
    padding: 0 12px !important;
    justify-content: space-between !important;
    gap: 6px !important;
  }

  .brand-logo {
    margin-right: 0 !important;
    gap: 8px !important;
  }

  .brand-logo-img {
    width: 32px !important;
    height: 32px !important;
  }

  .brand-title {
    font-size: 1.02rem !important;
  }

  .brand-stars, .brand-subtitle {
    display: none !important;
  }

  /* HIDE ALL DESKTOP ACTION BUTTONS IN TOP HEADER */
  .nav-actions {
    gap: 6px !important;
  }

  .nav-actions > a {
    display: none !important;
  }

  .nav-actions .open-cart-btn {
    padding: 6px 10px !important;
    font-size: 0.85rem !important;
  }

  .nav-actions .open-cart-btn span:nth-child(2) {
    display: none !important; /* Hides "Warenkorb" word, keeps "🛒 (0)" */
  }

  .mobile-toggle { 
    display: flex !important; 
  }

  .nav-menu {
    position: fixed !important;
    top: 62px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100vh - 62px) !important;
    background: #0e1015 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px 20px 80px !important;
    gap: 4px !important;
    overflow-y: auto !important;
    transform: translateX(-100%) !important;
    transition: transform var(--trans-normal) !important;
    z-index: 99999 !important;
  }

  .nav-menu.open { 
    transform: translateX(0) !important; 
  }

  .nav-item { 
    width: 100% !important; 
    padding: 0 !important;
  }

  .nav-link {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 12px 10px !important;
    font-size: 1rem !important;
    border-bottom: 1px solid var(--border-subtle) !important;
  }

  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: none !important;
    border-left: 2px solid var(--accent-gold) !important;
    border-radius: 0 !important;
    margin: 4px 0 10px !important;
    padding: 4px 8px !important;
    display: none !important;
  }

  .nav-item.dropdown-open .dropdown-menu { 
    display: block !important; 
  }

  .hero-grid, .about-grid { 
    grid-template-columns: 1fr !important; 
    gap: 28px !important; 
  }
  
  .hero { 
    min-height: auto !important; 
    padding: 30px 0 !important; 
  }

  .pricing-grid, 
  .services-grid, 
  .specials-grid, 
  .testimonials-grid, 
  .process-steps-grid, 
  .portfolio-grid-masonry {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-grid { 
    grid-template-columns: 1fr !important; 
  }

  .hero-badge-group {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 18px !important;
    font-size: 0.88rem !important;
  }
}


/* GLOBAL HEADER & MOBILE DRAWER RULES */
.nav-desktop-only { display: inline-flex; }

@media (max-width: 1120px) {
  .nav-desktop-only { display: none !important; }
  .cart-btn-label { display: none !important; }
  .topbar { display: none !important; }

  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100000 !important;
    width: 100% !important;
  }

  .nav-container {
    height: 62px !important;
    padding: 0 12px !important;
  }

  .mobile-toggle {
    display: flex !important;
    z-index: 100002 !important;
    cursor: pointer !important;
  }

  .nav-menu {
    position: fixed !important;
    top: 62px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100vh - 62px) !important;
    background: #0e1015 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 16px 20px 80px !important;
    gap: 4px !important;
    overflow-y: auto !important;
    transform: translateX(-100%) !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 99999 !important;
  }

  .nav-menu.open {
    transform: translateX(0) !important;
    display: flex !important;
  }

  .nav-item {
    width: 100% !important;
    padding: 0 !important;
  }

  .nav-link {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 12px 10px !important;
    font-size: 1rem !important;
    border-bottom: 1px solid var(--border-subtle) !important;
  }

  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: none !important;
    border-left: 2px solid var(--accent-gold) !important;
    border-radius: 0 !important;
    margin: 4px 0 10px !important;
    padding: 4px 8px !important;
    display: none !important;
  }

  .nav-item.dropdown-open .dropdown-menu {
    display: block !important;
  }
}


/* ==========================================================================
   PERFECT MOBILE DRAWER (IMMUNE TO CONTAINING BLOCK / CLIPPING)
   ========================================================================== */
@media (max-width: 1120px) {
  .header {
    background: #0c0e12 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100000 !important;
  }

  .nav-container {
    overflow: visible !important;
    height: 62px !important;
    padding: 0 12px !important;
  }

  .mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    z-index: 100002 !important;
    touch-action: manipulation !important;
  }

  .mobile-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #ffffff !important;
    margin: 2px 0 !important;
    transition: all 0.25s ease !important;
    border-radius: 2px !important;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  /* FULLSCREEN STANDALONE MOBILE DRAWER */
  .nav-menu {
    position: fixed !important;
    top: 62px !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 62px) !important;
    background: #0d1017 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 16px 20px 100px !important;
    gap: 6px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateX(-100%) !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 999999 !important;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.9) !important;
    border-right: 1px solid var(--border-gold) !important;
  }

  .nav-menu.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }

  body.mobile-menu-active {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    touch-action: none !important;
  }

  .nav-menu {
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
  }

  .nav-item {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .nav-link {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 13px 14px !important;
    font-size: 1.02rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    background: transparent !important;
  }

  .nav-link:active, .nav-link:hover {
    background: rgba(201, 168, 106, 0.12) !important;
    color: var(--accent-gold) !important;
  }

  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    border-left: 3px solid var(--accent-gold) !important;
    border-radius: 0 8px 8px 0 !important;
    margin: 4px 0 10px !important;
    padding: 6px 8px !important;
    display: none !important;
  }

  .nav-item.dropdown-open .dropdown-menu {
    display: block !important;
  }

  .dropdown-link {
    padding: 10px 12px !important;
    font-size: 0.92rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  }
}

/* MOBILE QUICK ACCESS TILES - STRICTLY MOBILE ONLY */
.mobile-quick-grid {
  display: none !important;
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
  .mobile-quick-grid {
    display: block !important;
  }
  .mobile-quick-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .mobile-quick-card:active {
    background: var(--accent-gold);
    color: #000;
  }
  .mobile-quick-card.highlight {
    background: rgba(201, 168, 106, 0.18);
    border-color: var(--border-gold);
    color: var(--accent-gold-light);
    font-weight: 700;
  }
}

/* MOBILE AUTH CARD - ONLY VISIBLE ON MOBILE DRAWER */
.mobile-nav-auth-card {
  display: none !important;
}

@media (max-width: 1120px) {
  .mobile-nav-auth-card {
    display: block !important;
  }
}

/* ==========================================================================
   TOPBAR & COMPACT HEADER SYSTEM (PERFECTED PREMIUM DESIGN)
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, #06070a 0%, #0d0f15 50%, #06070a 100%);
  border-bottom: 1px solid rgba(201, 168, 106, 0.25);
  font-size: 0.78rem;
  color: #94a3b8;
  padding: 7px 0;
  width: 100%;
  position: relative;
  z-index: 100005 !important;
}
.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-link {
  color: #cbd5e1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.topbar-link:hover {
  color: var(--accent-gold);
}
.topbar-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 9px;
  border-radius: 12px;
  font-size: 0.74rem;
  color: #94a3b8;
}
.topbar-rating {
  color: #fbbf24;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.topbar-highlight {
  color: var(--accent-gold-light);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.topbar-highlight:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(201, 168, 106, 0.5);
}
.topbar-login-btn {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(201,168,106,0.22) 0%, rgba(201,168,106,0.08) 100%);
  padding: 2px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}
.topbar-login-btn:hover {
  background: var(--accent-gold);
  color: #000000 !important;
  box-shadow: 0 0 12px rgba(201,168,106,0.4);
  transform: translateY(-1px);
}



@media (max-width: 1120px) {
  .topbar { display: none !important; }
  .mobile-quick-grid { display: block !important; }
}

/* VERTICAL TESTIMONIAL MARQUEE */
.testimonial-vertical-marquee {
  max-height: 380px;
  overflow: hidden;
  position: relative;
}
.testimonial-vertical-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: verticalMarquee 22s linear infinite;
}
.testimonial-vertical-marquee:hover .testimonial-vertical-track {
  animation-play-state: paused;
}
@keyframes verticalMarquee {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}


/* ==========================================================================
   PREMIUM MOBILE QUICK TILES (APP-LIKE CARDS)
   ========================================================================== */
@media (max-width: 1120px) {
  .mobile-quick-grid {
    display: block !important;
    padding: 12px 14px 18px !important;
    background: linear-gradient(180deg, rgba(201,168,106,0.08) 0%, rgba(255,255,255,0.02) 100%) !important;
    border: 1px solid rgba(201,168,106,0.25) !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
  }
  .mobile-quick-header {
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    color: var(--accent-gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .mobile-quick-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .mobile-quick-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(14, 17, 24, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 10px 4px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4) !important;
  }
  .mobile-quick-card .quick-icon {
    font-size: 1.3rem !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .mobile-quick-card .quick-label {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: #e2e8f0 !important;
    line-height: 1.2 !important;
  }
  .mobile-quick-card:active {
    transform: scale(0.95) !important;
    background: var(--accent-gold) !important;
  }
  .mobile-quick-card:active .quick-label {
    color: #000 !important;
  }
  .mobile-quick-card.highlight {
    background: linear-gradient(135deg, rgba(201,168,106,0.25) 0%, rgba(201,168,106,0.08) 100%) !important;
    border: 1px solid var(--border-gold) !important;
  }
  .mobile-quick-card.highlight .quick-label {
    color: var(--accent-gold-light) !important;
    font-weight: 800 !important;
  }
}


/* ==========================================================================
   WIZARD STYLES (STEP-BY-STEP SINGLE QUESTION VIEW)
   ========================================================================== */
.wizard-step {
  animation: wizardFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wizard-cat-card, .wizard-option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wizard-option-card.vid-hour-card, .wizard-option-card.photo-hour-card {
  text-align: center;
  padding: 14px 8px;
  align-items: center;
}
.wizard-option-card.vid-hour-card strong, .wizard-option-card.photo-hour-card strong {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.wizard-option-card[data-hour="more"] {
  grid-column: 1 / -1;
  padding: 14px 16px;
}
.wizard-option-card[data-hour="more"] strong {
  font-size: 1.02rem;
}
.wizard-cat-card {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.wizard-cat-card .cat-icon {
  font-size: 1.8rem;
  background: rgba(201, 168, 106, 0.12);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}
.wizard-cat-card .cat-text strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.wizard-cat-card .cat-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.wizard-option-card strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.wizard-option-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.wizard-cat-card:hover, .wizard-option-card:hover {
  background: rgba(201, 168, 106, 0.08);
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-2px);
}
.wizard-cat-card.selected, .wizard-option-card.selected {
  background: rgba(201, 168, 106, 0.18) !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 15px rgba(201, 168, 106, 0.25) !important;
}
.wizard-option-card .opt-tag {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--accent-gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
