:root {
  --color-bg: #0b0c10;
  --color-surface: #12141d;
  --color-surface-glass: rgba(18, 20, 29, 0.75);
  --color-border: #242938;
  --color-border-glow: rgba(255, 0, 127, 0.3);
  
  --color-text-main: #f7f7f7;
  --color-text-muted: #94a3b8;
  
  --color-neon-pink: #ff007f;
  --color-neon-cyan: #00f0ff;
  --color-neon-green: #00ff66;
  --color-neon-gold: #ffcc00;
  --color-neon-purple: #a855f7;

  --font-heading: 'League Spartan', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  overflow-x: hidden;
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 0, 127, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(0, 240, 255, 0.08) 0%, transparent 40%);
}

/* GDPR Cookie Consent Banner */
.cookie-banner-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 440px;
  width: calc(100% - 48px);
  background: rgba(18, 20, 29, 0.95);
  border: 1px solid var(--color-neon-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 22px 24px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-container.show {
  display: block;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-banner-desc a {
  color: var(--color-neon-cyan);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  background: var(--color-neon-pink);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 0, 127, 0.4);
  transition: all 0.2s;
}

.cookie-btn:hover {
  background: #ff3399;
  transform: translateY(-2px);
}

.cookie-btn-sec {
  background: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.cookie-btn-sec:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-neon-cyan);
  color: var(--color-neon-cyan);
}

/* Privacy Policy Modal */
.privacy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.privacy-modal-card {
  background: var(--color-surface);
  border: 1px solid var(--color-neon-cyan);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
  border-radius: 24px;
  max-width: 700px;
  max-height: 85vh;
  width: 100%;
  padding: 36px;
  position: relative;
  overflow-y: auto;
}

.privacy-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.privacy-modal-body h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-neon-pink);
  margin: 20px 0 8px;
}

.privacy-modal-body p, .privacy-modal-body ul {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.privacy-modal-body ul {
  padding-left: 20px;
}

/* Builder Mode Top Admin Bar */
.admin-toolbar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(18, 20, 29, 0.95);
  border: 1px solid var(--color-neon-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.builder-toggle-btn {
  background: var(--color-surface);
  color: #fff;
  border: 1px solid var(--color-neon-cyan);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.builder-toggle-btn:hover, .builder-toggle-btn.active {
  background: var(--color-neon-cyan);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

.builder-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.builder-actions.show {
  display: flex;
}

.builder-action-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

.builder-action-btn:hover {
  background: var(--color-neon-pink);
  border-color: var(--color-neon-pink);
}

body.builder-mode-active [contenteditable="true"] {
  outline: 2px dashed var(--color-neon-cyan);
  outline-offset: 4px;
  border-radius: 4px;
  cursor: text;
}

/* Modals & Panels */
.builder-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.builder-modal-card {
  background: var(--color-surface);
  border: 1px solid var(--color-neon-cyan);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  padding: 32px;
  position: relative;
}

.builder-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.layout-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.layout-choice-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.layout-choice-box:hover {
  border-color: var(--color-neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
}

.layout-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

/* Custom Dynamic Sections */
.custom-section-block {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
}

.custom-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.custom-section-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.custom-section-img-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.btn-delete-section {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 59, 48, 0.9);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  z-index: 10;
}

body.builder-mode-active .btn-delete-section {
  display: block;
}

/* Header & Nav */
header {
  background-color: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  height: 68px;
  width: auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.8));
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .header-logo-img {
  transform: scale(1.06);
}

.logo {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-neon-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255, 0, 127, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo span {
  color: var(--color-neon-cyan);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.logo-tag {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: bold;
  letter-spacing: 1px;
  margin-left: 2px;
  vertical-align: super;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

nav a:hover, nav a.active {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-neon-pink), var(--color-neon-cyan));
  transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--color-neon-pink);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 1150px;
  margin: 0 auto;
}

.hero-logo-banner {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 45px rgba(0, 240, 255, 0.5), 0 0 85px rgba(255, 0, 127, 0.3);
  border: 1px solid var(--color-border);
  transition: transform 0.4s ease;
}

.hero-logo-img:hover {
  transform: scale(1.02);
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255, 0, 127, 0.1);
  border: 1px solid rgba(255, 0, 127, 0.3);
  color: var(--color-neon-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--color-neon-pink), var(--color-neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--color-text-muted);
  font-size: 19px;
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  background: var(--color-surface);
  color: #fff;
  padding: 14px 36px;
  border-radius: 48px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--color-neon-pink);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 15px;
}

.cta-btn:hover {
  background: var(--color-neon-pink);
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.8);
  transform: translateY(-2px);
}

.cta-btn-secondary {
  border-color: var(--color-neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.cta-btn-secondary:hover {
  background: var(--color-neon-cyan);
  color: #000;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.whatsapp-btn {
  border-color: var(--color-neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
  color: var(--color-neon-green);
}

.whatsapp-btn:hover {
  background: var(--color-neon-green);
  color: #000;
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.8);
}

/* Custom Interactive Neon Sign Builder Studio */
.neon-studio-section {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.neon-studio-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.neon-preview-container {
  width: 100%;
  height: 240px;
  background: #090a0f;
  border: 2px solid var(--color-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

.neon-live-text {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--color-neon-pink);
  text-shadow: 0 0 15px var(--color-neon-pink), 0 0 30px var(--color-neon-pink), 0 0 45px var(--color-neon-pink);
  letter-spacing: 3px;
  text-align: center;
  word-break: break-word;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.studio-controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.studio-control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.studio-control-group label {
  font-size: 13px;
  font-weight: bold;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.color-picker-row {
  display: flex;
  gap: 10px;
}

.color-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}

.color-dot:hover, .color-dot.active {
  transform: scale(1.15);
  border-color: #fff;
}

/* Service Card Photo Area */

/* Services Section Layout */
.services-section {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.service-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-neon-pink), var(--color-neon-cyan));
  opacity: 0.7;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-neon-pink);
  box-shadow: 0 15px 35px rgba(255, 0, 127, 0.2);
}

.service-card-photo {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0b0c10;
}

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

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

.service-photo-upload-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Show upload overlay always in builder mode, or on hover otherwise */
body.builder-mode-active .service-photo-upload-overlay {
  opacity: 1;
  pointer-events: auto;
}

.service-card-photo:hover .service-photo-upload-overlay {
  opacity: 1;
  pointer-events: auto;
}

.service-photo-upload-btn {
  background: rgba(18, 20, 29, 0.9);
  color: var(--color-neon-cyan);
  border: 1px solid var(--color-neon-cyan);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
  transition: all 0.2s;
  white-space: nowrap;
}

.service-photo-upload-btn:hover {
  background: var(--color-neon-cyan);
  color: #000;
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body .service-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}

.service-card-body p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-body .service-features {
  list-style: none;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.service-features li {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '⚡';
  font-size: 12px;
  color: var(--color-neon-cyan);
}


/* GRAVITY LAB SECTION */
.gravity-section {
  max-width: 1050px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section-header {
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-neon-pink);
  text-shadow: 0 0 12px rgba(255, 0, 127, 0.4);
  margin-bottom: 8px;
}

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

.skyline-lab-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 24px auto;
  border: 3px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 240, 255, 0.15);
  background: #030409;
}

.skyline-canvas-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 720;
}

#skylineCanvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

/* Color Picker Palette Styling */
.color-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.picker-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.color-palette {
  display: flex;
  gap: 8px;
}

.color-picker-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid rgba(0,0,0,0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
  outline: none;
}

.color-picker-btn:hover {
  transform: scale(1.15);
}

.color-picker-btn.active {
  border-color: #ffffff;
  transform: scale(1.2);
}

.stat-badge-group {
  display: flex;
  gap: 8px;
}

.gravity-toolbar.flex-wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.gravity-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 20px;
  margin-top: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.controls-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ctrl-btn {
  background: var(--color-surface);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ctrl-btn:hover {
  background: #1e2333;
  border-color: var(--color-neon-cyan);
  color: var(--color-neon-cyan);
}

.ctrl-btn.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--color-neon-cyan);
  color: var(--color-neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.stat-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Gallery Section */
.gallery-section {
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.img-change-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  display: none;
  z-index: 10;
}

body.builder-mode-active .img-change-overlay {
  display: block;
}

.img-upload-label {
  background: rgba(18, 20, 29, 0.9);
  color: var(--color-neon-cyan);
  border: 1px solid var(--color-neon-cyan);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 12, 16, 0.95), transparent);
  padding: 24px;
  color: #fff;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 6px;
}

.gallery-overlay p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Contact / Modal */
.contact-section {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  max-width: 850px;
  margin: 80px auto;
  padding: 44px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(11, 12, 16, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-neon-pink);
  box-shadow: 0 0 12px rgba(255, 0, 127, 0.3);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

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

/* Footer */
footer {
  background-color: #08090d;
  color: var(--color-text-muted);
  text-align: center;
  padding: 44px 20px;
  font-size: 14px;
  border-top: 1px solid var(--color-border);
}

footer a {
  color: var(--color-neon-cyan);
  text-decoration: none;
}


/* =============================================
   HAMBURGER MOBILE NAV
   ============================================= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 6px;
  transition: all 0.2s;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-neon-cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hamburger-btn:hover {
  border-color: var(--color-neon-cyan);
  box-shadow: 0 0 12px rgba(0,240,255,0.3);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  padding: 60px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 12px;
  border-radius: 12px;
  transition: all 0.2s;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #fff;
  background: rgba(255,0,127,0.1);
  border-color: var(--color-neon-pink);
  padding-left: 20px;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section {
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 20px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 20px 28px;
  margin: 32px 0 28px;
  flex-wrap: wrap;
}

.reviews-avg-score {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  color: var(--color-neon-gold);
  text-shadow: 0 0 20px rgba(255,204,0,0.5);
  line-height: 1;
}

.stars-display {
  font-size: 22px;
  color: var(--color-neon-gold);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

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

.review-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  color: rgba(255,0,127,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-neon-pink);
  box-shadow: 0 12px 30px rgba(255,0,127,0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-neon-pink), var(--color-neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}

.review-name {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.review-stars {
  font-size: 14px;
  color: var(--color-neon-gold);
  letter-spacing: 1px;
}

.review-date {
  margin-left: auto;
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.review-text {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}

/* Star Rating Picker */
.star-rating-input {
  display: flex;
  gap: 8px;
  font-size: 32px;
  cursor: pointer;
  padding: 8px 0;
}

.star-pick {
  color: var(--color-border);
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}

.star-pick.lit {
  color: var(--color-neon-gold);
  text-shadow: 0 0 10px rgba(255,204,0,0.6);
}

.star-pick:hover {
  transform: scale(1.2);
}

/* =============================================
   FULL RESPONSIVE BREAKPOINTS
   ============================================= */

/* ---- Desktop+ (> 1200px) ---- */
@media (min-width: 1200px) {
  nav { gap: 28px; }
  nav a { font-size: 15px; }
}

/* ---- Laptop / Large Tablet (768px – 1199px) ---- */
@media (max-width: 1199px) {
  .nav-container { gap: 16px; }
  nav { gap: 14px; }
  nav a { font-size: 13px; }
  .logo { font-size: 26px; }
  .header-logo-img { height: 52px; }
}

/* ---- Tablet / iPad (768px – 1024px) ---- */
@media (max-width: 1024px) {
  nav { gap: 10px; }
  nav a { font-size: 12px; }
  .hero h1 { font-size: 42px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-summary { gap: 14px; padding: 16px 20px; }
}

/* ---- Mobile / iPhone / Android (< 768px) ---- */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .hamburger-btn { display: flex; }
  #main-nav { display: none !important; }
  
  /* Header layout */
  header {
    padding: 12px 5%;
    flex-direction: row;
    gap: 0;
  }

  .nav-container {
    flex-direction: row;
    gap: 10px;
    margin-left: auto;
    align-items: center;
  }

  /* Hide desktop lang switcher on mobile (it's in the drawer) */
  .nav-container > .lang-switcher { display: none; }

  /* Logo */
  .header-logo-img { height: 44px; }
  .logo { font-size: 22px; }

  /* Hero */
  .hero { padding: 40px 16px 30px; }
  .hero h1 { font-size: 32px; line-height: 1.2; }
  .hero p { font-size: 15px; }
  .hero-logo-img { max-width: 100%; }
  .hero-badge { font-size: 11px; letter-spacing: 1px; }

  /* Service cards */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-photo { height: 180px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reviews-summary .cta-btn { margin-left: 0; width: 100%; justify-content: center; }
  .reviews-avg-score { font-size: 40px; }

  /* Gravity Lab (Replaced with Neon City) */
  .neon-city-container { width: 100%; }
  .gravity-toolbar { flex-direction: column; align-items: stretch; }

  /* Contact form */
  .contact-section { padding: 0 16px; }

  /* Cookie banner */
  .cookie-banner-container { left: 10px; bottom: 10px; width: calc(100% - 20px); }

  /* Admin toolbar */
  .admin-toolbar { bottom: 12px; right: 12px; left: 12px; border-radius: 16px; justify-content: center; }
  .builder-action-btn { font-size: 11px; padding: 5px 8px; }
}

/* ---- Small phones / iPhone SE (< 480px) ---- */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .logo { font-size: 18px; }
  .header-logo-img { height: 36px; }
  .cta-btn { font-size: 13px; padding: 10px 20px; }
  .service-card-photo { height: 160px; }
  .reviews-avg-score { font-size: 34px; }
  .stars-display { font-size: 18px; }
  .review-card { padding: 18px; }
  .section-title { font-size: 28px; }
}

/* ---- Large phones landscape / mini tablets (480px – 767px) ---- */
@media (min-width: 480px) and (max-width: 767px) {
  .hero h1 { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}


/* Magic Bento Section */
.bento-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.magic-bento-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  padding: 20px 0;
}

.bento-card {
  position: relative;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bento-card:hover {
  border-color: rgba(132, 0, 255, 0.5);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .magic-bento-container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-large, .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 250px;
  }
}

.bento-content {
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.bento-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.auto-hide-text {
  color: #a0a0a0;
  font-size: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover .auto-hide-text {
  opacity: 1;
  transform: translateY(0);
}

/* Spotlight & Stars */
.bento-spotlight {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(132, 0, 255, 0.15), transparent 40%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-card:hover .bento-spotlight {
  opacity: 1;
}

.bento-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background-color: rgba(132, 0, 255, 0.4);
  pointer-events: none;
  z-index: 2;
}

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

.bento-stars-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}


.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  color: #e0f7ff;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6), 
               0 0 20px rgba(0, 150, 255, 0.4);
}


/* --- Accordion Gallery Styles --- */
.accordion-gallery-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 460px;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.ag-item {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s ease;
  transform: perspective(800px) rotateY(0deg);
}

.ag-item:hover, .ag-item.active {
  flex: 3;
}

.ag-img-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}

.ag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.6s ease, transform 0.6s ease;
  filter: grayscale(100%);
  transform: scale(1.2);
}

.ag-item:hover .ag-img, .ag-item.active .ag-img {
  filter: grayscale(0%);
  transform: scale(1);
}

.ag-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(6, 0, 16, 0.8), transparent);
  opacity: 0.6;
  transition: opacity 0.6s ease;
}

.ag-item:hover .ag-overlay, .ag-item.active .ag-overlay {
  opacity: 0.3;
}

.ag-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.1s;
  white-space: nowrap;
}

.ag-item:hover .ag-label, .ag-item.active .ag-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .accordion-gallery-container {
    flex-direction: column;
    height: 600px;
  }
}


.ag-upload-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 50;
  display: none;
}

body.builder-mode-active .ag-upload-overlay {
  display: block;
}

body.builder-mode-active .ag-item {
  border: 2px dashed var(--color-neon-pink);
}

body.builder-mode-active .ag-label {
  border: 1px dashed rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
  background: rgba(0,0,0,0.5);
  cursor: text;
}
\n/* --- New Studio Custom CSS --- */\n
        .font-brittany { font-family: 'Sacramento', cursive; }
        .font-caveat { font-family: 'Caveat', cursive; }
        .font-pacifico { font-family: 'Pacifico', cursive; }
        .font-montserrat { font-family: 'Montserrat', sans-serif; }
        .font-bungee { font-family: 'Bungee', cursive; }
        .font-marker { font-family: 'Permanent+Marker', cursive; }
        .font-shrikhand { font-family: 'Shrikhand', cursive; }

        /* Realistic Neon Glow Effects */
        .neon-glow {
            color: #fff;
            text-shadow: 
                0 0 5px var(--neon-color),
                0 0 10px var(--neon-color),
                0 0 20px var(--neon-color),
                0 0 40px var(--neon-color),
                0 0 80px var(--neon-color);
            transition: all 0.3s ease;
        }

        .neon-tube-base {
            position: absolute;
            color: rgba(255, 255, 255, 0.4);
            text-shadow: 0 0 2px rgba(0,0,0,0.8);
            pointer-events: none;
        }

        /* Custom scrollbar for controls */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #1f2937;
        }
        ::-webkit-scrollbar-thumb {
            background: #4b5563;
            border-radius: 3px;
        }
    