/* ============================================
   Photo Edit Factory — Premium Dark Theme CSS
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #101018;
  --bg-surface: #13131a;
  --bg-surface-hover: #1a1a24;
  --bg-card: rgba(18, 18, 28, 0.7);
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(232, 168, 56, 0.3);
  
  --gold-start: #e8a838;
  --gold-end: #f0c060;
  --gold-glow: rgba(232, 168, 56, 0.15);
  
  --purple-start: #6c5ce7;
  --purple-end: #a855f7;
  --purple-glow: rgba(108, 92, 231, 0.15);
  
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-tertiary: #555568;
  --text-white: #ffffff;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-start) var(--bg-secondary);
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

html::-webkit-scrollbar-thumb {
  background: var(--gold-start);
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---- Utility Classes ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end), var(--purple-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-start);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 40px var(--gold-glow), 0 0 60px var(--gold-glow); }
}

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

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-on-scroll.animate-left {
  transform: translateX(-40px);
}

.animate-on-scroll.animate-left.animated {
  transform: translateX(0);
}

.animate-on-scroll.animate-right {
  transform: translateX(40px);
}

.animate-on-scroll.animate-right.animated {
  transform: translateX(0);
}

.animate-on-scroll.animate-scale {
  transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animated {
  transform: scale(1);
}

/* Stagger children animations */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }


/* ======================
   NAVIGATION
   ====================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth), transform 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: var(--bg-primary);
  padding: 12px 0;
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.nav-logo .logo-icon {
  width: 109px;
  height: 109px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-logo .logo-accent {
  color: var(--gold-start);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  transition: var(--transition-smooth);
  border-radius: var(--radius-full);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end)) !important;
  color: var(--bg-primary) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: var(--transition-smooth) !important;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(232, 168, 56, 0.3) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ======================
   HERO SECTION
   ====================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 158px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow.glow-1 {
  width: 500px;
  height: 500px;
  background: var(--gold-glow);
  top: -100px;
  right: -150px;
  opacity: 0.6;
}

.hero-bg-glow.glow-2 {
  width: 400px;
  height: 400px;
  background: var(--purple-glow);
  bottom: -50px;
  left: -100px;
  opacity: 0.4;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-center {
  text-align: center;
  width: 100%;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.16rem, 4.5vw, 3.24rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .line {
  display: block;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 50%, var(--purple-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Hero Category Tabs */
.hero-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-tab {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-tab:hover {
  border-color: var(--gold-start);
  color: var(--text-primary);
}

.hero-tab.active {
  background: rgba(232, 168, 56, 0.1);
  border-color: var(--gold-start);
  color: var(--gold-start);
}

.hero-tab svg {
  width: 14px;
  height: 14px;
}

/* Hero 3D Carousel */
.hero-carousel {
  width: 73vw;
  max-width: 1053px;
  height: 41.6vw;
  max-height: 601px;
  margin: 0 auto 36px;
  position: relative;
  animation: carouselFadeIn 1s ease 0.3s forwards;
  opacity: 0;
}

@keyframes carouselFadeIn {
  from {
    opacity: 0;
    margin-top: 40px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 92%;
  height: 100%;
  transform: translateX(-50%) scale(0.8);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              filter 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              visibility 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              z-index 0s;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Active center slide — TOP (front, largest) */
.hero-slide.active {
  transform: translateX(-50%) scale(1);
  z-index: 5;
  opacity: 1;
  pointer-events: all;
  filter: brightness(1);
}

/* Previous slide — BEHIND, peeking left */
.hero-slide.prev {
  transform: translateX(-61%) scale(0.92);
  z-index: 2;
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  filter: brightness(0.45);
}

/* Next slide — BEHIND, peeking right */
.hero-slide.next {
  transform: translateX(-39%) scale(0.92);
  z-index: 2;
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  filter: brightness(0.45);
}

/* Far previous — deep behind left */
.hero-slide.far-prev {
  transform: translateX(-69%) scale(0.84);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Far next — deep behind right */
.hero-slide.far-next {
  transform: translateX(-31%) scale(0.84);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Hide slider controls on non-active slides */
.hero-slide:not(.active) .hero-slider-handle,
.hero-slide:not(.active) .hero-slider-line,
.hero-slide:not(.active) .hero-ba-label {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.hero-slide.active .hero-slider-handle,
.hero-slide.active .hero-slider-line,
.hero-slide.active .hero-ba-label {
  opacity: 1;
  pointer-events: auto;
  transition: none;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0b10;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-slider-before {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-slider-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Clips from LEFT — overlay shows on RIGHT side where 'After' label is */
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
}

.hero-slider-after-wrap .hero-slider-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.hero-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  cursor: col-resize;
  transition: box-shadow 0.15s ease;
}

.hero-slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-slider-handle svg {
  width: 14px;
  height: 14px;
  stroke: #222;
}

/* Hero Before/After Labels */
.hero-ba-label {
  position: absolute;
  top: 14px;
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-white);
  z-index: 12;
  pointer-events: none;
}

.hero-ba-label.before {
  right: calc(50% + 10px);
  left: auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.hero-ba-label.after {
  left: calc(50% + 10px);
  right: auto;
  background: rgba(232, 168, 56, 0.6);
  backdrop-filter: blur(4px);
}

/* Hero Slide Inner (multi-image wrapper) */
.hero-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-slide-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-images .hero-slider-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translateX(-39%) scale(0.92);
  filter: brightness(0.45);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              filter 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
  will-change: transform, opacity, filter;
}

.hero-slide-images .hero-slider-container.active-img {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) scale(1);
  filter: brightness(1);
  z-index: 2;
}

/* Slide exit to left (when going next) — same as outer carousel .prev */
.hero-slide-images .hero-slider-container.exit-left {
  opacity: 1;
  transform: translateX(-61%) scale(0.92);
  filter: brightness(0.45);
  z-index: 1;
}

/* Slide exit to right (when going prev) — same as outer carousel .next */
.hero-slide-images .hero-slider-container.exit-right {
  opacity: 1;
  transform: translateX(-39%) scale(0.92);
  filter: brightness(0.45);
  z-index: 1;
}

/* Premium Glassmorphic Arrows — positioned on background/side images */
.hero-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.hero-img-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.hero-img-arrow:hover {
  background: rgba(232, 168, 56, 0.3);
  border-color: rgba(232, 168, 56, 0.6);
  color: #fff;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 32px rgba(232, 168, 56, 0.3), 0 0 40px rgba(232, 168, 56, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-img-arrow:active {
  transform: translateY(-50%) scale(0.95);
  background: rgba(232, 168, 56, 0.4);
}

.hero-img-prev {
  left: -20px;
}

.hero-img-next {
  right: -20px;
}

/* Image Indicator Dots — HIDDEN */
.hero-img-dots {
  display: none !important;
}

.hero-slide.active .hero-img-dots {
  opacity: 1;
  transition-delay: 0.3s;
}

.hero-img-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-img-dot.active {
  width: 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  box-shadow: 0 0 8px rgba(232, 168, 56, 0.4);
}

.hero-img-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

/* Hero CTA Center */
.hero-cta-center {
  text-align: center;
  margin-bottom: 16px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 70px;
  justify-content: center;
  margin-top: calc(24px + 3%);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Hero Buttons (kept for reuse) */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(232, 168, 56, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--gold-start);
  color: var(--gold-start);
  transform: translateY(-3px);
  box-shadow: 0 4px 24px var(--gold-glow);
}

/* ======================
   SERVICES SECTION
   ====================== */
#services {
  padding: var(--section-padding);
  position: relative;
}

.services-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-slider-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.service-slider-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: left;
  z-index: 5;
}

.service-slider-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px var(--gold-glow);
}

.service-slider-card:hover::before {
  transform: scaleX(1);
}

.service-slider-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--purple-start), var(--purple-end));
}

.service-slider-card:nth-child(even):hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px var(--purple-glow);
}

/* Service Slider Container */
.service-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3697 / 2957;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

.service-slider-container .srv-img-before {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.service-slider-container .srv-img-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Clips from LEFT — overlay shows on RIGHT side where 'After' label is */
  clip-path: inset(0 0 0 50%);
}

.service-slider-container .srv-img-after-wrap .srv-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Slider line */
.srv-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* Slider handle */
.srv-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  cursor: col-resize;
  transition: box-shadow 0.15s ease;
}

.srv-slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.srv-slider-handle svg {
  width: 14px;
  height: 14px;
  stroke: #222;
}

/* Before/After labels - positioned near slider line */
.srv-ba-label {
  position: absolute;
  top: 14px;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 12;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.srv-ba-label.before {
  right: calc(50% + 8px);
  left: auto;
  text-align: right;
}

.srv-ba-label.after {
  left: calc(50% + 8px);
  right: auto;
  text-align: left;
}

/* Service Info Below Slider */
.service-slider-info {
  padding: 24px 28px;
  border-top: 1px solid var(--border-subtle);
}

.service-slider-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-slider-info h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--gold-start), var(--gold-end));
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.service-slider-card:nth-child(even) .service-slider-info h3::before {
  background: linear-gradient(180deg, var(--purple-start), var(--purple-end));
}

.service-slider-card:nth-child(even) .srv-slider-handle {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.service-slider-card:nth-child(even) .srv-slider-handle:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.service-slider-card:nth-child(even) .srv-ba-label.after {
  color: rgba(255, 255, 255, 0.85);
}

.service-slider-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ======================
   PORTFOLIO / BEFORE-AFTER SECTION
   ====================== */
#portfolio {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

#portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-start), transparent);
}

/* Portfolio Tabs */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.portfolio-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.portfolio-tab:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.portfolio-tab.active {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  border-color: var(--gold-start);
  color: var(--bg-primary);
  font-weight: 600;
}

/* Before-After Slider */
.portfolio-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.ba-slider-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ba-image-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--text-white);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  width: 44px;
  height: 44px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  cursor: col-resize;
  transition: transform 0.15s ease;
}

.ba-slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.ba-slider-handle svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-primary);
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  z-index: 5;
  pointer-events: none;
}

.ba-label.before {
  left: 16px;
}

.ba-label.after {
  right: 16px;
  background: rgba(232, 168, 56, 0.7);
}

/* Thumbnails gallery */
.ba-thumbnails {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.ba-thumb {
  width: 80px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0.5;
}

.ba-thumb.active {
  border-color: var(--gold-start);
  opacity: 1;
  box-shadow: 0 0 16px var(--gold-glow);
}

.ba-thumb:hover {
  opacity: 0.8;
}

.ba-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ======================
   HOW IT WORKS SECTION
   ====================== */
#process {
  padding: var(--section-padding);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connection line between steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-start), var(--purple-end), var(--gold-start));
  z-index: 0;
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: var(--bg-surface);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-start);
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-primary);
  border-color: var(--gold-start);
  transform: scale(1.15);
  box-shadow: 0 0 30px var(--gold-glow);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

.process-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}


/* ======================
   PRICING SECTION
   ====================== */
#pricing {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

#pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-start), transparent);
}

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

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  border-color: var(--gold-start);
  background: linear-gradient(180deg, rgba(232, 168, 56, 0.06) 0%, var(--bg-card) 40%);
  box-shadow: 0 0 40px var(--gold-glow);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 60px var(--gold-glow);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-full);
}

.pricing-plan-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-price .currency {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 2px;
  color: var(--gold-start);
}

.pricing-price .per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-tertiary);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li .check {
  color: var(--gold-start);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  opacity: 0.35;
  text-decoration: line-through;
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  display: block;
}

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

.pricing-btn.btn-outline:hover {
  border-color: var(--gold-start);
  color: var(--gold-start);
  box-shadow: 0 0 24px var(--gold-glow);
}

.pricing-btn.btn-gold {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  border: none;
  color: var(--bg-primary);
  box-shadow: 0 4px 24px var(--gold-glow);
}

.pricing-btn.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(232, 168, 56, 0.4);
}


/* ======================
   TESTIMONIALS SECTION
   ====================== */
#testimonials {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.testimonials-track-wrapper {
  overflow: hidden;
  margin: 0;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--purple-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-primary);
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.testimonial-nav button:hover {
  background: var(--gold-start);
  color: var(--bg-primary);
  border-color: var(--gold-start);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--gold-start);
}


/* ======================
   CONTACT / CTA SECTION
   ====================== */
#contact {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-start), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info .desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.contact-method:hover {
  border-color: var(--border-accent);
  box-shadow: 0 4px 24px var(--gold-glow);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-text {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.contact-method-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-start);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2'%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;
  padding-right: 40px;
}

.form-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 24px var(--gold-glow);
  align-self: flex-start;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(232, 168, 56, 0.35);
}

/* Service Chips — Multi-select Premium Tags */
.form-group-full {
  grid-column: 1 / -1;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.service-chip .chip-icon,
.service-chip .chip-check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-chip .chip-icon {
  opacity: 0.5;
}

.service-chip .chip-check {
  display: none;
}

.service-chip:hover {
  border-color: rgba(232, 168, 56, 0.4);
  color: var(--text-primary);
  background: rgba(232, 168, 56, 0.06);
  transform: translateY(-1px);
}

.service-chip:hover .chip-icon {
  opacity: 1;
  stroke: var(--gold-start);
}

/* Selected state */
.service-chip.selected {
  background: rgba(232, 168, 56, 0.12);
  border-color: var(--gold-start);
  color: var(--gold-start);
  box-shadow: 0 0 20px rgba(232, 168, 56, 0.15), inset 0 0 20px rgba(232, 168, 56, 0.05);
}

.service-chip.selected .chip-icon {
  display: none;
}

.service-chip.selected .chip-check {
  display: block;
  stroke: var(--gold-start);
  animation: chipCheckPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-chip:active {
  transform: scale(0.96);
}

@keyframes chipCheckPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* ======================
   FOOTER
   ====================== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 24px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--gold-start);
  color: var(--bg-primary);
  border-color: var(--gold-start);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--gold-start);
  padding-left: 4px;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  transition: var(--transition-fast);
}

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

.footer-separator {
  color: var(--text-tertiary);
  font-size: 0.8rem;
}


/* ======================
   RESPONSIVE DESIGN
   ====================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-left {
    order: 1;
  }
  
  .hero-right {
    order: 0;
  }
  
  .hero-desc {
    margin: 0 auto 36px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .services-slider-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .process-grid::before {
    display: none;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
    width: 100%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-logo .logo-icon {
    width: 99px;
    height: 99px;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 0;
    z-index: 999;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a.desktop-only {
    display: none;
  }

  .nav-links a.nav-cta {
    margin-top: 24px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--bg-primary);
    padding: 11px 28px;
    border-radius: var(--radius-full);
    text-align: center;
    font-size: 0.77rem;
    font-weight: 700;
    width: auto;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: clamp(1.87rem, 5vw, 2.55rem);
  }

  .hero-carousel {
    width: 85vw;
    height: 110vw;
    max-height: none;
  }

  .hero-img-arrow {
    width: 31px;
    height: 31px;
  }

  .hero-img-arrow svg {
    width: 13px;
    height: 13px;
  }

  .hero-cta-center .btn-primary {
    padding: 8px 18px;
    font-size: 0.8rem;
    width: 50%;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: nowrap;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }
  
  .services-slider-grid {
    grid-template-columns: 1fr;
  }
  
  .service-slider-container {
    height: 240px;
  }
  
  .ba-slider-container img {
    height: 300px;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 3.6vw, 2.88rem);
  }

  .section-desc {
    font-size: 0.95rem;
  }

  #testimonials {
    padding-top: 58px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-step {
    padding: 20px 12px;
  }

  .process-step h3 {
    font-size: 0.95rem;
  }

  .process-step p {
    font-size: 0.8rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
  
  .footer {
    padding: 51px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-socials {
    margin-top: 28px;
  }

  .footer-grid {
    gap: 37px;
  }

  .footer-brand .nav-logo {
    justify-content: center;
  }

  .footer-brand p {
    max-width: 100%;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .portfolio-tabs {
    gap: 6px;
  }
  
  .portfolio-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-floating-badge {
    display: none;
  }
  
  .ba-thumbnails {
    gap: 8px;
  }
  
  .ba-thumb {
    width: 60px;
    height: 42px;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
}
