/* ========================================
   DR. AYŞE NAZ - AWWWARD WINNING STYLES
   Premium Dental Clinic Website
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Colors */
  --color-navy: #0a1628;
  --color-navy-light: #132238;
  --color-navy-dark: #060d17;
  --color-white: #ffffff;
  --color-off-white: #f8f9fa;
  --color-gold: #ed4999;
  --color-gold-light: #f472b6;
  --color-gold-dark: #db2777;
  --color-blush: #fce7f3;
  --color-turquoise: #204da0;
  --color-turquoise-dark: #1a3d80;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;

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

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Animation */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 40px rgba(237, 73, 153, 0.3);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth; - Disabled to prevent conflict with GSAP ScrollSmoother */
  font-size: 16px;
  /* Hide scrollbar */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  overflow-x: hidden;
  width: 100%;
}

html::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

body {
  overflow-x: hidden;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-navy);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for smooth scroll - only when ScrollSmoother is active */
body.smooth-scroll #smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

body.smooth-scroll #smooth-content {
  overflow: visible;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

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

/* ========== CUSTOM CURSOR ========== */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold);
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-smooth), width 0.3s var(--ease-smooth),
    height 0.3s var(--ease-smooth);
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: var(--color-turquoise);
}

@media (hover: none) {
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Hide logo paths initially for GSAP animation */
.preloader-logo-svg path {
  opacity: 0;
}

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

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.tooth-icon {
  width: 60px;
  height: 60px;
  color: var(--color-gold);
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.preloader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-md);
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-turquoise));
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

.preloader-counter {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-gray-400);
  letter-spacing: 0.2em;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-md) 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  font-weight: 500;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: height 0.3s var(--ease-smooth);
}

.nav.scrolled .nav-logo-img {
  height: 40px;
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 35px;
  }

  .nav.scrolled .nav-logo-img {
    height: 30px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  opacity: 0.8;
  position: relative;
  padding: var(--space-xs) 0;
  transition: opacity 0.3s var(--ease-smooth);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
  opacity: 1;
}

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

.nav-link-cta {
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  color: var(--color-white) !important;
  opacity: 1;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  padding: var(--space-sm);
}

.nav-toggle-line {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-smooth);
}

.gallery-track-wrapper img {
  border: 4px solid var(--color-white);

  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
/* Mobile Navigation */
@media (max-width: 968px) {
  .nav-toggle {
    display: flex;
  }

  .nav-container {
    padding: 0 var(--space-md);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-navy);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl);
    transition: right 0.5s var(--ease-expo), visibility 0s 0.5s;
    visibility: hidden;
  }

  .nav-menu.active {
    right: 0;
    visibility: visible;
    transition: right 0.5s var(--ease-expo), visibility 0s;
  }

  .nav-link {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(50px);
  }

  .nav-menu.active .nav-link {
    opacity: 0.8;
    transform: translateX(0);
    transition: all 0.5s var(--ease-expo);
  }

  .nav-link-cta {
    margin-top: var(--space-xl);
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-navy-dark) 0%,
    var(--color-navy) 50%,
    var(--color-navy-light) 100%
  );
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-parallax-layer {
  position: absolute;
  width: 100%;
  height: 120%;
  top: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-layer-1 {
  background: url("assets/images/hero-bg.jpeg") center/cover no-repeat,
    radial-gradient(
      ellipse at 20% 80%,
      rgba(237, 73, 153, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(32, 77, 160, 0.1) 0%,
      transparent 50%
    );
  opacity: 0.6;
}

.hero-layer-2 {
  background: linear-gradient(
      to bottom,
      rgba(10, 22, 40, 0.3) 0%,
      rgba(10, 22, 40, 0.8) 100%
    ),
    radial-gradient(
      circle at 60% 70%,
      rgba(237, 73, 153, 0.08) 0%,
      transparent 40%
    );
  opacity: 1;
}

.hero-layer-3 {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(32, 77, 160, 0.05) 0%,
    transparent 30%
  );
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px var(--space-xl) 0px !important;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  z-index: 1;
  opacity: 0; /* Initial state for animation */
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero-image-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}

.hero-image-frame.frame-1 {
  transform: translate(-20px, 20px);
}

.hero-image-frame.frame-2 {
  transform: translate(20px, -20px);
}

.hero-doctor-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.2;
  display: block;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-grid {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding-top: 0;
  }

  .hero-content {
    width: 48%;
    text-align: left;
    padding: 0;
  }

  .hero-image-container {
    width: 45%;
    max-width: 450px;
    margin-top: 0;
  }

  .hero-doctor-image {
    aspect-ratio: 0.95;
    object-fit: cover;
  }

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

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-subtitle {
    margin: 0 0 var(--space-lg) 0;
    text-align: left;
    max-width: 90%;
    font-size: 1rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  visibility: hidden;
  letter-spacing: -0.02em;
}

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

.hero-title-accent {
  color: #ed4999 !important;
  /* Force Pink */
  font-size: 1.1em !important;
  /* Make it HUGE */
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow: visible !important;
  line-height: 0.9;
  margin: 0;
  /* More spacing */
  background: none !important;
  display: block;
  /* Ensure it takes its own line */
}

/* Apply solid pink color to individual characters when split */
.hero-title-accent .char {
  color: #ed4999 !important;
  -webkit-text-fill-color: #ed4999 !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

/* Fallback for when text is not split */
.hero-title-accent:not(:has(.char)) {
  color: var(--color-gold);
  -webkit-text-fill-color: var(--color-gold);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-300);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  /*  justify-content: center; */
  flex-wrap: wrap;
  /* margin-bottom: var(--space-3xl); */
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  width: 100%;
}

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

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  letter-spacing: 0.05em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-gray-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.floating-element {
  position: absolute;
  color: var(--color-gold);
  opacity: 0.3;
  font-size: 2rem;
}

.floating-el-1 {
  top: 20%;
  left: 10%;
}

.floating-el-2 {
  top: 60%;
  right: 15%;
}

.floating-el-3 {
  bottom: 30%;
  left: 20%;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  color: var(--color-white);
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-gold {
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  color: var(--color-white);
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-smooth);
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Magnetic Button Effect */
.magnetic-btn {
  transition: transform 0.3s var(--ease-smooth);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
}

.section-header-light {
  color: var(--color-white);
}

.section-header-light .section-subtitle {
  color: var(--color-gray-300);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  position: relative;
  padding: 0 var(--space-lg);
}

.section-tag::before,
.section-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
}

.section-tag::before {
  right: 100%;
}

.section-tag::after {
  left: 100%;
}

.section-tag-light {
  color: var(--color-gold-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-turquoise)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== SERVICES SECTION ========== */
.services {
  background: var(--color-off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  position: relative;
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
  border: 1px solid var(--color-gray-100);
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-turquoise)
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: transparent;
}

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

.service-card-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-navy) 0%,
    var(--color-navy-light) 100%
  );
  color: var(--color-white);
  border: none;
}

.service-card-featured .service-desc,
.service-card-featured .service-price {
  color: var(--color-gray-300);
}

.service-card-featured .service-icon {
  color: var(--color-gold);
}

.service-card-featured .service-link {
  color: var(--color-gold);
}

.service-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  color: var(--color-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-lg);
  color: var(--color-turquoise);
  position: relative;
  z-index: 1;
}

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

.service-desc {
  font-size: 0.95rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.service-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-turquoise);
  position: relative;
  z-index: 1;
  transition: gap 0.3s var(--ease-smooth);
}

.service-link:hover {
  gap: var(--space-md);
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ========== VIP SECTION ========== */
.vip {
  background: linear-gradient(
    135deg,
    var(--color-navy-dark) 0%,
    var(--color-navy) 100%
  );
  position: relative;
  overflow: hidden;
}

.vip-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.vip-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(237, 73, 153, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(32, 77, 160, 0.05) 0%,
      transparent 40%
    );
}

.vip .container {
  position: relative;
  z-index: 1;
}

.vip-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
}

.vip-timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-gold),
    var(--color-turquoise)
  );
  opacity: 0.3;
}

@media (max-width: 640px) {
  .vip-timeline-line {
    left: 24px;
  }
}

.vip-step {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.vip-step-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}

.vip-step-icon svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 640px) {
  .vip-step-icon {
    width: 48px;
    height: 48px;
  }

  .vip-step-icon svg {
    width: 24px;
    height: 24px;
  }
}

.vip-step-content {
  padding-top: var(--space-md);
}

.vip-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.vip-step-content p {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  line-height: 1.6;
}

.vip-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-3xl);
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.vip-price {
  margin-bottom: var(--space-xl);
}

.vip-price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-gray-400);
  margin-bottom: var(--space-sm);
}

.vip-price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-gold);
}

.vip-price-includes {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-top: var(--space-sm);
}

/* ========== ABOUT SECTION ========== */
.about {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
}

.about-image {
  width: 100%;
  height: 100%;
  background: url("assets/images/doctor.jpeg") center/cover no-repeat,
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  opacity: 0.5;
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 968px) {
  .about-floating-card {
    right: var(--space-lg);
  }
}

.about-floating-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.stat-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-white);
  opacity: 0.8;
}

.about-content .section-tag {
  margin-bottom: var(--space-md);
  padding-left: 0;
}

.about-content .section-tag::before {
  display: none;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.about-role {
  font-size: 1.1rem;
  color: var(--color-turquoise);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.about-text {
  margin-bottom: var(--space-xl);
}

.about-text p {
  color: var(--color-gray-600);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.credential-icon {
  font-size: 1.5rem;
}

.credential-text strong {
  display: block;
  font-weight: 600;
  color: var(--color-navy);
}

.credential-text span {
  font-size: 0.9rem;
  color: var(--color-gray-500);
}

.about-languages {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.lang-label {
  font-weight: 600;
  color: var(--color-gray-600);
}

.lang-flag {
  font-size: 0.9rem;
  color: var(--color-gray-500);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  background: var(--color-off-white);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: var(--space-md) 0;
}

.testimonials-track {
  display: flex;
  gap: var(--space-xl);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  flex-shrink: 0;
  width: calc(33.333% - var(--space-lg));
  min-width: 320px;
  max-width: 400px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

@media (max-width: 1200px) {
  .testimonial-card {
    width: calc(50% - var(--space-md));
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
    max-width: 100%;
  }
}

.testimonial-before-after {
  aspect-ratio: 16/10;
  background: url("assets/images/before-after-2.jpg") center/cover no-repeat,
    var(--color-navy);
  position: relative;
}

.ba-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ba-label {
  position: absolute;
  top: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ba-before {
  left: var(--space-md);
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.ba-after {
  right: var(--space-md);
  background: var(--color-gold);
  color: var(--color-white);
}

.ba-placeholder {
  color: var(--color-gray-400);
  font-size: 0.9rem;
}

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

.testimonial-content {
  padding: var(--space-xl);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.author-name {
  font-weight: 600;
  color: var(--color-navy);
}

.author-location {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.testimonials-nav {
  display: none; /* Hidden by default on desktop */
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

@media (max-width: 1200px) {
  .testimonials-nav {
    display: flex; /* Show on tablet and mobile */
  }
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
}

.testimonial-nav-btn:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.testimonial-nav-btn svg {
  width: 20px;
  height: 20px;
}

.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gray-300);
  transition: all 0.3s var(--ease-smooth);
}

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

/* ========== ISTANBUL SECTION ========== */
.istanbul {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.istanbul-parallax {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.istanbul-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.istanbul-layer-1 {
  background: url("assets/images/istanbul-bg.jpeg") center/cover no-repeat,
    linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
}

.istanbul-layer-2 {
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(237, 73, 153, 0.3) 0%,
    transparent 60%
  );
}

.istanbul-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(10, 22, 40, 0.5) 50%,
    rgba(10, 22, 40, 0.9) 100%
  );
}

.istanbul-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-5xl) 0;
}

.istanbul-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.istanbul-text {
  font-size: 1.1rem;
  color: var(--color-gray-300);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.istanbul-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 640px) {
  .istanbul-highlights {
    grid-template-columns: 1fr;
  }
}

.istanbul-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-smooth);
}

.istanbul-highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 2rem;
}

.highlight-text {
  font-weight: 500;
  color: var(--color-white);
}

/* ========== CONTACT SECTION ========== */
.contact {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

.contact-info .section-tag {
  padding-left: 0;
}

.contact-info .section-tag::before {
  display: none;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.contact-text {
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  transition: all 0.3s var(--ease-smooth);
}

.contact-method:hover {
  border-color: var(--color-gold);
  transform: translateX(10px);
}

.contact-method.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--color-white);
}

.contact-method.whatsapp:hover .method-label,
.contact-method.whatsapp:hover .method-value {
  color: var(--color-white);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease-smooth);
}

.contact-method.whatsapp:hover .method-icon {
  background: rgba(255, 255, 255, 0.2);
}

.method-icon svg {
  width: 24px;
  height: 24px;
}

.method-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-value {
  font-weight: 600;
  color: var(--color-navy);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-off-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
}

.contact-form {
  display: grid;
  gap: var(--space-xl);
}

/* Form Messages */
.form-message {
  grid-column: 1 / -1;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s var(--ease-smooth);
}

.form-message.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  background-color: rgba(37, 211, 102, 0.1);
  color: #128c7e;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.form-message.error {
  background-color: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc2626;
}

.form-group.error label {
  color: #dc2626;
}

.form-error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 0.75rem;
  color: #dc2626;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s var(--ease-smooth);
}

.form-group.error .form-error-text {
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  position: relative;
  margin-bottom: var(--space-sm); /* Add space for error text */
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-lg) 0 var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-navy);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-gray-300);
  outline: none;
  transition: border-color 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group label {
  position: absolute;
  top: var(--space-lg);
  left: 0;
  font-size: 1rem;
  color: var(--color-gray-500);
  pointer-events: none;
  transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.75rem;
  color: var(--color-gold);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-smooth);
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  justify-self: start;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 968px) {
  .footer-top {
    flex-direction: column;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-tagline {
  color: var(--color-gray-400);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: var(--space-4xl);
}

@media (max-width: 640px) {
  .footer-links {
    flex-wrap: wrap;
    gap: var(--space-xl);
  }
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
}

.footer-col a {
  display: block;
  color: var(--color-gray-400);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  transition: color 0.3s var(--ease-smooth);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
}

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

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-copyright p {
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

.footer-languages {
  display: flex;
  gap: var(--space-sm);
}

.lang-btn {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-400);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-smooth);
}

.lang-btn.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.lang-btn:hover {
  color: var(--color-white);
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ========== INFINITE GALLERY ========== */
.gallery-section {
  overflow: hidden;
  padding: var(--space-4xl) 0;
  background: var(--color-off-white);
}

.container-fluid {
  width: 100%;
  padding: 0;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-5xl);
  margin: var(--space-2xl) 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.gallery-track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  will-change: transform;
  margin-bottom: 20px;
}

.gallery-item {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.4);
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-icon {
  color: var(--color-white);
  width: 32px;
  height: 32px;
  transform: scale(0);
  transition: transform 0.3s var(--ease-bounce);
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-lg);
  }

  .hero-stats {
    gap: var(--space-xl);
  }

  .section-tag::before,
  .section-tag::after {
    display: none;
  }

  .contact-form-wrapper {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

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

/* ========== ANIMATION UTILITIES ========== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
}

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

/* For elements that will be animated by GSAP */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.gsap-fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gsap-fade-right {
  opacity: 0;
  transform: translateX(40px);
}

.gsap-scale {
  opacity: 0;
  transform: scale(0.9);
}
