/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
  --primary: #ff6b6b;
  --primary-dark: #e55555;
  --primary-light: #ff9999;
  --secondary: #4ecdc4;
  --secondary-dark: #3db8b0;
  --secondary-light: #7eddd7;
  --accent: #ffe66d;
  --accent-dark: #e6cc4d;
  --purple: #c44dff;
  --purple-light: #d88aff;
  --pink: #ff9ff3;
  --pink-light: #ffccf9;
  --blue: #54a0ff;
  --blue-light: #8bc0ff;
  --orange: #ff9f43;

  --bg-white: #ffffff;
  --bg-cream: #fff9f0;
  --bg-light: #fef6f6;
  --bg-dark: #2d1b4e;
  --bg-darker: #1a0f30;

  --text-dark: #2d1b4e;
  --text-body: #4a3f5c;
  --text-muted: #7a6f8e;
  --text-light: #ffffff;

  --shadow-sm: 0 2px 8px rgba(45, 27, 78, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 27, 78, 0.12);
  --shadow-lg: 0 8px 40px rgba(45, 27, 78, 0.16);
  --shadow-xl: 0 16px 60px rgba(45, 27, 78, 0.2);
  --shadow-candy: 0 6px 0 rgba(0, 0, 0, 0.08);
  --shadow-candy-hover: 0 8px 0 rgba(0, 0, 0, 0.12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-display: "Fredoka One", "Baloo 2", cursive;
  --font-heading: "Baloo 2", "Nunito", cursive;
  --font-body: "Nunito", sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--text-light);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 3px 0 var(--primary-dark);
}

.section-tag-light {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.15)
  );
  color: var(--text-light);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title-light {
  color: var(--text-light);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-candy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  position: relative;
  border: 3px solid transparent;
  text-align: center;
}

.btn-candy-primary {
  background: var(--primary);
  color: var(--text-light);
  box-shadow:
    0 4px 0 var(--primary-dark),
    var(--shadow-sm);
}

.btn-candy-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 var(--primary-dark),
    var(--shadow-md);
  background: var(--primary-light);
}

.btn-candy-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--primary-dark);
}

.btn-candy-secondary {
  background: var(--secondary);
  color: var(--text-light);
  box-shadow:
    0 4px 0 var(--secondary-dark),
    var(--shadow-sm);
}

.btn-candy-secondary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 var(--secondary-dark),
    var(--shadow-md);
  background: var(--secondary-light);
}

.btn-candy-secondary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--secondary-dark);
}

.btn-candy-purple {
  background: var(--purple);
  color: var(--text-light);
  box-shadow:
    0 4px 0 #a33de0,
    var(--shadow-sm);
}

.btn-candy-purple:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #a33de0,
    var(--shadow-md);
  background: var(--purple-light);
}

.btn-candy-yellow {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow:
    0 4px 0 var(--accent-dark),
    var(--shadow-sm);
}

.btn-candy-yellow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 var(--accent-dark),
    var(--shadow-md);
}

.btn-candy-pink {
  background: var(--pink);
  color: var(--text-light);
  box-shadow:
    0 4px 0 #e080d6,
    var(--shadow-sm);
}

.btn-candy-pink:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #e080d6,
    var(--shadow-md);
}

.btn-candy-blue {
  background: var(--blue);
  color: var(--text-light);
  box-shadow:
    0 4px 0 #3d80e0,
    var(--shadow-sm);
}

.btn-candy-blue:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #3d80e0,
    var(--shadow-md);
}

.btn-candy-outline {
  background: transparent;
  color: var(--text-dark);
  border: 3px solid var(--text-dark);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}

.btn-candy-outline:hover {
  transform: translateY(-2px);
  background: var(--text-dark);
  color: var(--text-light);
}

.btn-candy-ghost {
  background: transparent;
  color: var(--text-muted);
  text-decoration: underline;
  padding: 8px 16px;
}

.btn-candy-ghost:hover {
  color: var(--primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-white);
  box-shadow: 0 -4px 30px rgba(45, 27, 78, 0.15);
  border-top: 4px solid var(--primary);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-icon-wrap {
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

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

.cookie-settings-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px;
  border-top: 2px dashed var(--primary-light);
  padding-top: 16px;
}

.cookie-setting-item {
  margin-bottom: 10px;
}

.cookie-setting-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text-body);
}

.cookie-setting-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-normal);
  padding: 8px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-bubble {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 0 var(--primary-dark);
  transition: transform var(--transition-bounce);
}

.nav-logo:hover .logo-bubble {
  transform: rotate(-10deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

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

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(255, 107, 107, 0.1);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

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

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(
    165deg,
    #fff5f5 0%,
    #fff9f0 30%,
    #f0fffe 60%,
    #fff5f5 100%
  );
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary-light);
  bottom: -50px;
  left: -50px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 40%;
  left: 30%;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-4 {
  width: 150px;
  height: 150px;
  background: var(--purple-light);
  top: 20%;
  right: 30%;
  animation: blobFloat 9s ease-in-out infinite reverse;
}

.blob-5 {
  width: 100px;
  height: 100px;
  background: var(--pink-light);
  bottom: 20%;
  right: 15%;
  animation: blobFloat 7s ease-in-out infinite;
}

/* Confetti */
.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  opacity: 0.6;
}

.confetti-1 {
  background: var(--primary);
  top: 15%;
  left: 10%;
  animation: confettiFall 6s linear infinite;
  animation-delay: 0s;
}
.confetti-2 {
  background: var(--secondary);
  top: 10%;
  left: 25%;
  animation: confettiFall 8s linear infinite;
  animation-delay: 1s;
  width: 8px;
  height: 8px;
}
.confetti-3 {
  background: var(--accent);
  top: 5%;
  left: 55%;
  animation: confettiFall 7s linear infinite;
  animation-delay: 2s;
  border-radius: 50%;
}
.confetti-4 {
  background: var(--purple);
  top: 8%;
  left: 70%;
  animation: confettiFall 9s linear infinite;
  animation-delay: 0.5s;
  width: 10px;
  height: 10px;
}
.confetti-5 {
  background: var(--pink);
  top: 12%;
  left: 85%;
  animation: confettiFall 6.5s linear infinite;
  animation-delay: 3s;
}
.confetti-6 {
  background: var(--blue);
  top: 3%;
  left: 40%;
  animation: confettiFall 8.5s linear infinite;
  animation-delay: 1.5s;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.confetti-7 {
  background: var(--orange);
  top: 18%;
  left: 60%;
  animation: confettiFall 7.5s linear infinite;
  animation-delay: 4s;
}
.confetti-8 {
  background: var(--primary-light);
  top: 7%;
  left: 90%;
  animation: confettiFall 10s linear infinite;
  animation-delay: 2.5s;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95);
  }
  75% {
    transform: translate(15px, 10px) scale(1.02);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 230, 109, 0.3);
  border: 2px solid var(--accent);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px) rotate(-2deg);
  animation: titleReveal 0.7s ease forwards;
}

.title-line-1 {
  color: var(--primary);
  animation-delay: 0.4s;
}
.title-line-2 {
  color: var(--secondary);
  animation-delay: 0.55s;
}
.title-line-3 {
  color: var(--purple);
  animation-delay: 0.7s;
}
.title-line-4 {
  color: var(--accent-dark);
  animation-delay: 0.85s;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.15s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.3s;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-dark);
  display: inline;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-divider {
  width: 3px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    var(--primary-light),
    var(--secondary-light)
  );
  border-radius: 2px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  animation: heroVisualReveal 0.8s ease forwards;
  animation-delay: 0.6s;
}

@keyframes heroVisualReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-bubble {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  overflow: hidden;
  border: 6px solid var(--bg-white);
  box-shadow:
    var(--shadow-xl),
    0 0 0 3px var(--primary-light);
  animation: morphBubble 8s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes morphBubble {
  0%,
  100% {
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  }
  25% {
    border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  }
  50% {
    border-radius: 45% 55% 60% 40% / 60% 45% 55% 45%;
  }
  75% {
    border-radius: 60% 40% 45% 55% / 40% 60% 40% 60%;
  }
}

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

.floating-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-dark);
  white-space: nowrap;
  z-index: 3;
}

.floating-card-1 {
  top: 10%;
  left: -10%;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 25%;
  right: -5%;
  animation: floatCard 5s ease-in-out infinite reverse;
}

.floating-card-3 {
  bottom: 5%;
  left: 5%;
  animation: floatCard 4.5s ease-in-out infinite;
  animation-delay: 1s;
}

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

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  transition: transform var(--transition-bounce);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card-inner {
  position: relative;
  z-index: 2;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 3px solid #f0edf5;
  box-shadow: var(--shadow-candy);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover .service-card-inner {
  border-color: var(--card-color, var(--primary-light));
  box-shadow:
    var(--shadow-candy-hover),
    0 0 30px rgba(255, 107, 107, 0.1);
}

.service-card-glow {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-xl);
  background: var(--glow-color, var(--primary));
  opacity: 0;
  filter: blur(20px);
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.service-card:hover .service-card-glow {
  opacity: 0.15;
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid #f0edf5;
  transition: transform var(--transition-bounce);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 4px 0;
  font-weight: 500;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fef6f6, #fff9f0);
  border-radius: var(--radius-md);
}

.price-from {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
}

.btn-service-detail {
  width: 100%;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
  padding: 100px 0;
  background: linear-gradient(
    165deg,
    var(--bg-dark) 0%,
    #3d2466 50%,
    var(--bg-darker) 100%
  );
  position: relative;
  overflow: hidden;
}

.gallery-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 107, 107, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(78, 205, 196, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 230, 109, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: transform var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 2;
}

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

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 27, 78, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 8px;
  width: fit-content;
}

.gallery-overlay h4 {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 100px 0;
  background: var(--bg-cream);
  position: relative;
}

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

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 2px solid #f0edf5;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.trust-badge:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.trust-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.about-img-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.about-img-1 {
  width: 85%;
  aspect-ratio: 4/3;
}

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

.about-img-2 {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 55%;
  aspect-ratio: 3/4;
  z-index: 2;
  border: 5px solid var(--bg-white);
}

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

.about-counter-bubble {
  position: absolute;
  top: -20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-light);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.15),
    var(--shadow-lg);
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite;
}

.about-counter-number {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.about-counter-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

/* ========================================
   CASE STUDIES SECTION
   ======================================== */
.case-studies {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.case-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid #f0edf5;
  box-shadow: var(--shadow-candy);
  transition: all var(--transition-normal);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.case-header {
  padding: 28px 28px 20px;
  background: linear-gradient(
    135deg,
    var(--case-color),
    color-mix(in srgb, var(--case-color) 70%, white)
  );
  position: relative;
}

.case-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.case-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 800;
}

.case-body {
  padding: 24px 28px 28px;
}

.case-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.7;
}

.case-results {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.case-result {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}

.case-result-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
}

.case-result-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.case-quote {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-body);
  padding: 16px;
  background: linear-gradient(135deg, #fef6f6, #f0fffe);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  line-height: 1.6;
}

.case-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
  padding: 100px 0;
  background: linear-gradient(165deg, #fef6f6 0%, #f0fffe 50%, #fefbf0 100%);
  position: relative;
  overflow: hidden;
}

.team-bg-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.team-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.team-bubble-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.team-bubble-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  bottom: -50px;
  right: -50px;
}

.team-bubble-3 {
  width: 150px;
  height: 150px;
  background: var(--purple);
  top: 50%;
  right: 20%;
}

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

.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 3px solid #f0edf5;
  box-shadow: var(--shadow-candy);
  transition: all var(--transition-bounce);
}

.team-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--avatar-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-bounce);
}

.team-card:hover .team-avatar {
  transform: scale(1.1) rotate(5deg);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: 100px 0;
  background: var(--bg-white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 3px solid #f0edf5;
  box-shadow: var(--shadow-candy);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  border: none;
  padding: 0;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}

.testimonial-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
}

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

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid #f0edf5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: var(--shadow-candy);
  transition: all var(--transition-normal);
}

.testimonial-nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.08);
}

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

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f0edf5;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.2);
  box-shadow: 0 2px 0 var(--primary-dark);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 100px 0;
  background: linear-gradient(165deg, #fef6f6 0%, #fff9f0 50%, #f0fffe 100%);
  position: relative;
  overflow: hidden;
}

.contact-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.contact-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -200px;
  right: -100px;
}

.contact-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -150px;
  left: -100px;
}

.contact-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 50%;
  left: 50%;
}

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

.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 3px solid #f0edf5;
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  border: 3px solid #f0edf5;
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}

.form-group input.error {
  border-color: #ff4757;
  box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.15);
}

.form-group input.success {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.15);
}

.form-error {
  display: block;
  font-size: 0.82rem;
  color: #ff4757;
  margin-top: 4px;
  font-weight: 600;
  min-height: 1.2em;
}

.form-group-consent {
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-text a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background: rgba(78, 205, 196, 0.15);
  color: var(--secondary-dark);
  border: 2px solid var(--secondary);
}

.form-message.error {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 2px solid #ff4757;
}

/* Contact Info */
.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 3px solid #f0edf5;
  box-shadow: var(--shadow-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px dashed #f0edf5;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--info-color) 15%, white),
    color-mix(in srgb, var(--info-color) 5%, white)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-item a {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.contact-info-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(45, 27, 78, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-bounce);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--primary-light);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0edf5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: rotate(90deg);
}

.modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.modal-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.modal-content ul {
  margin-bottom: 20px;
}

.modal-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-body);
}

.modal-price-block {
  background: linear-gradient(135deg, #fef6f6, #fff9f0);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 20px;
}

.modal-price-block h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.modal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #f0edf5;
}

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

.modal-price-row span:last-child {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-top: 0;
}

.footer-wave {
  position: relative;
  top: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 24px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-bubble-footer {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-light);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 800;
}

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

.footer-links-col a {
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links-col a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* ========================================
   SCROLL ANIMATIONS (reveal on scroll)
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

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

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

  .hero-visual {
    order: -1;
  }

  .hero-image-bubble {
    max-width: 360px;
  }

  .floating-card-1 {
    left: 5%;
  }
  .floating-card-2 {
    right: 5%;
  }

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

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

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2/1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content .section-title {
    text-align: center;
  }

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

  .trust-badges {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .gallery-item {
    aspect-ratio: 16/9;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 3px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .modal {
    padding: 28px 20px;
    margin: 16px;
  }
}

@media (max-width: 480px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .hero-image-bubble {
    max-width: 280px;
  }

  .cases-grid {
    gap: 20px;
  }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to bottom,
    var(--primary-light),
    var(--secondary-light)
  );
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

/* ========================================
   SELECTION
   ======================================== */
::selection {
  background: var(--primary);
  color: var(--text-light);
}

/* ========================================
   FOCUS STYLES (Accessibility)
   ======================================== */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .navbar,
  .cookie-banner,
  .modal-overlay,
  .hero-bg-shapes,
  .confetti {
    display: none !important;
  }
}
