/* ===== ULTRA MODERN BELLACURES STYLES ===== */

/* Self-hosted font declarations
   To avoid render-blocking requests to Google Fonts, we include the required
   typefaces directly from the project's `fonts/` directory. The DejaVu Sans
   files are used as a local substitute for the original "Outfit" family,
   while the Playfair Display weights come from locally downloaded WOFF2 files.
*/
@font-face {
  font-family: "Outfit";
  src: url("fonts/DejaVuSans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("fonts/DejaVuSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
iframe {
  filter: none !important;
}

:root {
  /* Dark Luxury Theme */
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-tertiary: #18181b;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);

  /* Text Colors */
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  /* Accent Colors */
  --accent-primary: #f472b6;
  --accent-secondary: #c084fc;
  --accent-gradient: linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #818cf8 100%);
  --accent-glow: rgba(244, 114, 182, 0.4);

  /* Spacing */
  --section-padding: clamp(80px, 12vw, 160px);

  /* Typography */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;

  /* Effects */
  --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-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 20px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) var(--bg-secondary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Custom Cursor ===== */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower.hovering {
  width: 60px;
  height: 60px;
  background: rgba(244, 114, 182, 0.1);
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: pulse 1.5s ease infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--bg-tertiary);
  border-radius: 10px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: var(--accent-gradient);
  width: 0%;
  animation: loading 2s ease forwards;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text {
  color: var(--text-primary);
}
.logo-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--accent-primary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-primary);
}

.nav-link:hover::before {
  top: 0;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.mobile-language-toggle {
  width: 100%;
  max-width: 220px;
  text-align: center;
}

.mobile-menu.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-link:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-link:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-link:nth-child(4) {
  transition-delay: 0.25s;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 3rem 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-sphere 20s ease-in-out infinite;
}

.sphere-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.sphere-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.sphere-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #818cf8 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes float-sphere {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
  }
  75% {
    transform: translate(-50px, -30px) scale(1.05);
  }
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  overflow: hidden;
}

.word {
  display: inline-block;
  transform: translateY(100%);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-line:nth-child(2) .word:nth-child(1) {
  animation-delay: 0.1s;
}
.title-line:nth-child(2) .word:nth-child(2) {
  animation-delay: 0.2s;
}

.word.accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.4s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.5s forwards;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: var(--accent-gradient);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-primary);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px var(--accent-glow);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* 3D Floating Cards */
.hero-3d {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 600px;
  perspective: 1000px;
}

.floating-card {
  position: absolute;
  width: 200px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card:hover {
  transform: scale(1.05) !important;
  z-index: 10;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.card-overlay span {
  font-weight: 600;
  font-size: 1rem;
}

.card-1 {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  animation-delay: 0s;
}

.card-2 {
  top: 80px;
  left: 180px;
  transform: rotate(3deg);
  animation-delay: -2s;
  z-index: 2;
}

.card-3 {
  top: 250px;
  left: 40px;
  transform: rotate(-3deg);
  animation-delay: -4s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translateY(-20px) rotate(var(--rotate, 0deg));
  }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 80px;
  left: 3rem;
  display: flex;
  gap: 4rem;
  z-index: 2;
}

.stat {
  text-align: left;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: scroll 2s ease infinite;
}

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Marquee Section ===== */
.marquee-section {
  padding: 1.5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  position: absolute;
  left: 0;
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.marquee-dot {
  color: var(--accent-primary) !important;
  font-size: 0.75rem !important;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* ===== Services Section ===== */
.services {
  padding: var(--section-padding) 3rem;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 114, 182, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card.featured {
  border-color: rgba(244, 114, 182, 0.3);
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--accent-gradient);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bg-primary);
  text-transform: uppercase;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -10px;
  right: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-primary);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--accent-primary);
  gap: 0.75rem;
}

/* ===== Features Section ===== */
.features {
  position: relative;
  padding: var(--section-padding) 3rem;
  background: var(--bg-secondary);
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
}

.features-gradient {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.features-left .section-tag.light {
  color: var(--accent-secondary);
}

.features-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.features-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--text-primary);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-primary);
  transition: var(--transition-smooth);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.features-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

/* Fixed truncated CSS and added the missing styles */
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
  border-radius: 12px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-primary);
}

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Portfolio Section ===== */
.portfolio {
  padding: var(--section-padding) 3rem;
  background: var(--bg-primary);
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.875rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--bg-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio-item.large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.portfolio-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-gradient);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bg-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.portfolio-overlay h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials .section-header {
  padding: 0 3rem;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  animation: testimonialScroll 40s linear infinite;
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  min-width: 400px;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  flex-shrink: 0;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--bg-primary);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.author-service {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== About Section ===== */
.about {
  padding: var(--section-padding) 3rem;
  background: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-wrapper {
  position: absolute;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-1 {
  width: 350px;
  height: 450px;
  top: 0;
  left: 0;
  z-index: 1;
}

.img-2 {
  width: 280px;
  height: 350px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.about-text .section-tag {
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-primary);
  flex-shrink: 0;
}

.about-feature span {
  font-size: 1rem;
  color: var(--text-primary);
}

.expertise {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.expertise-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.expertise-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.team {
  background: var(--bg-secondary);
}

/* ===== Process Section ===== */
.process {
  padding: var(--section-padding) 3rem;
  background: var(--bg-secondary);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 3rem 2rem;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transform: translateY(-50%);
  z-index: 0;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--bg-primary);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.process-step:hover .step-number {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  border-color: transparent;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 200px;
  margin: 0 auto;
}

/* ===== CTA Section ===== */
.cta {
  position: relative;
  padding: 100px 3rem;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0.1;
}

.cta-sphere {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--accent-gradient);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-primary);
  transition: var(--transition-smooth);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px var(--accent-glow);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* ===== Booking Section ===== */
.booking {
  padding: var(--section-padding) 3rem;
  background: var(--bg-primary);
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.booking-info .section-tag {
  margin-bottom: 1rem;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.booking-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-primary);
}

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

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

.contact-value {
  font-size: 1rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-secondary);
}

.social-link:hover {
  background: var(--accent-gradient);
  border-color: transparent;
}

.social-link:hover svg {
  stroke: var(--bg-primary);
}

.booking-cta {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.booking-note {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.booking-actions .btn-primary,
.booking-actions .btn-secondary {
  width: fit-content;
}

.booking-hint {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== Map Section ===== */
.map-section {
  position: relative;
  height: 500px;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  z-index: 10;
}

.map-card {
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 300px;
}

.map-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Floating Contact Buttons */
.floating-btn {
  position: fixed;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  z-index: 1200;
}

.floating-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.floating-btn:active {
  transform: translateY(0);
}

.floating-btn-call {
  left: 20px;
  background: linear-gradient(135deg, #11121c, #1f2233);
}

.floating-btn-whatsapp {
  right: 20px;
  background: linear-gradient(135deg, #1ebea5, #25d366);
}

.floating-btn .floating-label {
  font-size: 0.95rem;
}

.floating-btn .floating-subtle {
  opacity: 0.8;
  font-weight: 600;
}

.map-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-primary);
  transition: var(--transition-fast);
}

.map-link:hover {
  gap: 0.75rem;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  padding: 5rem 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-gradient);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}

.footer-social a:hover svg {
  fill: var(--bg-primary);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials .social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-socials .social-link:hover {
  background: var(--accent-gradient);
}

.footer-socials .social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}

.footer-socials .social-link:hover svg {
  fill: var(--bg-primary);
}

/* ===== Page Header for Services/Contacts ===== */
.page-header {
  position: relative;
  padding: 180px 3rem 100px;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-header-bg .gradient-sphere {
  opacity: 0.4;
}

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

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Services Page ===== */
.services-page {
  padding: var(--section-padding) 3rem;
  background: var(--bg-primary);
}

.services-page .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-category {
  margin-bottom: 5rem;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--bg-primary);
}

.category-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.subcategory {
  margin-bottom: 3rem;
}

.subcategory-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-primary);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.price-item:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(244, 114, 182, 0.2);
  transform: translateX(5px);
}

.service-name {
  font-size: 1rem;
  color: var(--text-primary);
}

.service-cost {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-primary);
}

/* ===== Contacts Page ===== */
.contacts-page {
  padding: var(--section-padding) 3rem;
  background: var(--bg-primary);
}

.contacts-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.contacts-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contacts-header .section-subtitle {
  max-width: 780px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-primary);
}

.contact-card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card-content a {
  color: var(--accent-primary);
  transition: var(--transition-fast);
}

.contact-card-content a:hover {
  text-decoration: underline;
}

.social-links-large {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link-large {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link-large svg {
  width: 24px;
  height: 24px;
  fill: var(--text-secondary);
}

.social-link-large:hover {
  background: var(--accent-gradient);
  border-color: transparent;
}

.social-link-large:hover svg {
  fill: var(--bg-primary);
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  min-height: 600px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(241, 173, 255, 0.12), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(144, 115, 255, 0.06));
  color: var(--text-primary);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(114, 56, 255, 0.1), rgba(114, 56, 255, 0));
  pointer-events: none;
}

.map-placeholder-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 520px;
  display: grid;
  gap: 0.75rem;
}

.map-hint {
  font-size: 1rem;
  color: var(--text-secondary);
}

.map-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-load-btn {
  justify-self: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--bg-gradient);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.map-load-btn:hover {
  transform: translateY(-1px);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(114, 56, 255, 0.2);
}

.map-placeholder.is-loading .map-load-btn {
  opacity: 0.8;
  pointer-events: none;
}

.map-placeholder iframe {
  border: 0;
}

/* ===== Elegant Menu Price Design ===== */
/* New elegant price list design inspired by the screenshot */

.elegant-menu {
  margin-bottom: 5rem;
}

.elegant-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.elegant-price-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.elegant-price-card {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.elegant-price-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(244, 114, 182, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.elegant-price-card.featured-card {
  border-color: rgba(244, 114, 182, 0.3);
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.08) 0%, rgba(192, 132, 252, 0.08) 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: var(--accent-gradient);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.elegant-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.elegant-card-header.extra-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.elegant-header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.5), transparent);
}

.elegant-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  text-align: center;
}

.elegant-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.elegant-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-fast);
}

.elegant-price-row:last-child {
  border-bottom: none;
}

.elegant-price-row:hover {
  transform: translateX(5px);
}

.elegant-price-row.highlight-row {
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.1), transparent);
  padding: 0.875rem 1rem;
  margin: 0 -1rem;
  border-radius: 12px;
  border-bottom: none;
}

.elegant-service-name {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 400;
  flex-shrink: 0;
}

.elegant-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15) 0px,
    rgba(255, 255, 255, 0.15) 2px,
    transparent 2px,
    transparent 8px
  );
  min-width: 20px;
}

.elegant-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
}

.price-note svg {
  stroke: var(--accent-primary);
  flex-shrink: 0;
}

.price-note span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Responsive for elegant menu */
@media (max-width: 1200px) {
  .elegant-price-grid.three-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .elegant-price-grid,
  .elegant-price-grid.three-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .elegant-price-card {
    padding: 2rem 1.5rem;
  }

  .elegant-card-title {
    font-size: 1.5rem;
  }

  .elegant-service-name {
    font-size: 0.95rem;
  }

  .elegant-price {
    font-size: 1rem;
  }

  .price-note {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
  }
}

/* ===== Enhanced SEO Section ===== */
.seo-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.seo-section > .seo-shell > p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.seo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.seo-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.seo-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.seo-keyword {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(244, 114, 182, 0.1);
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent-primary);
}

.seo-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-links a {
  font-weight: 500;
  color: var(--accent-primary);
  transition: var(--transition-fast);
}

.seo-links a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .seo-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-3d {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    justify-content: center;
    margin-top: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 400px;
  }
}

@media (max-width: 992px) {
  .features-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-images {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .booking-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-timeline {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }

  .process-line {
    display: none;
  }

  .process-step {
    width: 100%;
    display: flex;
    text-align: left;
    gap: 1.5rem;
  }

  /* SEO & Marketing copy blocks */
  .seo-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
  }

  .seo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.08), transparent 40%),
      radial-gradient(circle at 80% 0%, rgba(129, 140, 248, 0.08), transparent 45%);
    pointer-events: none;
  }

  .seo-shell {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: var(--text-secondary);
  }

  .seo-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    align-items: start;
  }

  .seo-hero {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  }

  .seo-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .seo-hero h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: clamp(1.7rem, 2.6vw, 2.1rem);
    margin: 0.25rem 0 0.35rem;
  }

  .seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(244, 114, 182, 0.1), rgba(129, 140, 248, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .seo-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text-primary);
    font-weight: 600;
  }

  .seo-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(244, 114, 182, 0.12);
  }

  .seo-accent {
    color: var(--accent-primary);
  }

  .seo-shell h2 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }

  .seo-shell p {
    margin-bottom: 1rem;
    line-height: 1.8;
  }

  .seo-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.85rem;
  }

  .seo-highlight-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .seo-highlight-title {
    margin: 0;
    color: var(--text-primary);
    font-weight: 700;
  }

  .seo-highlight-text {
    margin: 0.25rem 0 0;
    color: var(--text-secondary);
  }

  .seo-dot {
    width: 10px;
    height: 10px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 0 6px rgba(244, 114, 182, 0.14);
    flex-shrink: 0;
  }

  .seo-cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
  }

  .seo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(244, 114, 182, 0.35);
    background: linear-gradient(120deg, rgba(244, 114, 182, 0.16), rgba(129, 140, 248, 0.12));
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  }

  .seo-cta.ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text-secondary);
  }

  .seo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  .seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .seo-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)) no-repeat,
      var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.35rem 1.6rem;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-smooth), border-color var(--transition-fast);
  }

  .seo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 114, 182, 0.35);
  }

  .seo-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .seo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.1rem;
  }

  .seo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(244, 114, 182, 0.14);
    color: var(--accent-primary);
    border: 1px solid rgba(244, 114, 182, 0.35);
    font-weight: 700;
    font-size: 0.9rem;
  }

  .seo-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
  }

  .seo-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .seo-card p {
    margin-bottom: 0.5rem;
  }

  .seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .seo-keyword {
    background: linear-gradient(120deg, rgba(244, 114, 182, 0.12), rgba(129, 140, 248, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.9rem;
  }

  .seo-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .seo-links a {
    color: var(--accent-primary);
    text-decoration: none;
    position: relative;
  }

  .seo-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
    transition: opacity var(--transition-fast);
  }

  .seo-links a:hover::after {
    opacity: 0.9;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 1.5rem 60px;
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .scroll-indicator {
    display: none;
  }

  .services,
  .features,
  .portfolio,
  .testimonials,
  .about,
  .process,
  .cta,
  .booking,
  .services-page,
  .contacts-page {
    padding: 60px 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    padding: 1.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item.large {
    grid-row: auto;
    aspect-ratio: 1;
  }

  .testimonial-card {
    min-width: 300px;
    padding: 1.5rem;
  }

  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  .page-header {
    padding: 140px 1.5rem 60px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .portfolio-tabs {
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .about-images {
    height: 350px;
  }

  .img-1 {
    width: 250px;
    height: 320px;
  }

  .img-2 {
    width: 200px;
    height: 260px;
  }

  .map-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 1.5rem;
  }

  .map-section {
    height: auto;
  }

  .map-section iframe {
    height: 300px;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .floating-btn {
    padding: 0.75rem 0.9rem;
    bottom: 16px;
    font-size: 0.9rem;
  }

  .floating-btn .floating-label {
    font-size: 0.9rem;
  }

  .floating-btn-call {
    left: 12px;
  }

  .floating-btn-whatsapp {
    right: 12px;
  }
}
