/* ========================================
   PREMIUM PT WEBSITE - DESIGN SYSTEM
   Black, White, Red & Gold Palette
   70% Black | 20% White | 8% Red | 2% Gold
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   Premium Dark Theme with Red & Gold Accents
   ======================================== */
:root {
  /* Dark Mode Colors (Default) - 70% Black & Dark Gray */
  --bg-primary: #0A0A0A;
  --bg-secondary: #121212;
  --bg-card: #1A1A1A;
  --bg-card-hover: #252525;

  /* 8% Red - Primary Accent */
  --accent-primary: #DC2626;
  --accent-primary-rgb: 220, 38, 38;
  --accent-secondary: #991B1B;
  --accent-tertiary: #7F1D1D;

  /* 2% Gold/Orange - Highlight Accent */
  --accent-highlight: #F59E0B;
  --accent-gold: #FFD700;
  --accent-gold-rgb: 255, 215, 0;

  /* 20% White/Gray - Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: #9CA3AF;

  --border-color: rgba(220, 38, 38, 0.2);
  --border-accent: rgba(220, 38, 38, 0.4);

  --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.3);
  --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.7);
  --shadow-button: 0 8px 30px rgba(220, 38, 38, 0.35);

  --gradient-hero: linear-gradient(135deg, #0A0A0A 0%, #121212 40%, #1A1A1A 70%, #0A0A0A 100%);
  --gradient-accent: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
  --gradient-card: linear-gradient(145deg, rgba(220, 38, 38, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
  --gradient-premium: linear-gradient(135deg, #991B1B 0%, #DC2626 50%, #F59E0B 100%);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Orbitron', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;

  /* Transitions - Smoother for premium feel */
  --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.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;

  /* Glassmorphism */
  --glass-bg: rgba(10, 10, 10, 0.9);
  --glass-border: rgba(220, 38, 38, 0.15);
  --glass-blur: blur(20px);
}

/* Light Mode Variables - Inverted for readability */
[data-theme="light"] {
  --bg-primary: #F9FAFB;
  --bg-secondary: #F3F4F6;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F9FAFB;

  --accent-primary: #DC2626;
  --accent-primary-rgb: 220, 38, 38;
  --accent-secondary: #B91C1C;
  --accent-highlight: #D97706;

  --text-primary: #111827;
  --text-secondary: rgba(17, 24, 39, 0.8);
  --text-muted: #6B7280;

  --border-color: rgba(220, 38, 38, 0.15);
  --border-accent: rgba(220, 38, 38, 0.3);

  --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.15);
  --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.08);
  --shadow-button: 0 8px 30px rgba(220, 38, 38, 0.2);

  --gradient-hero: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 50%, #F9FAFB 100%);
  --gradient-card: linear-gradient(145deg, rgba(220, 38, 38, 0.03) 0%, rgba(220, 38, 38, 0.06) 100%);

  --glass-bg: rgba(249, 250, 251, 0.9);
  --glass-border: rgba(220, 38, 38, 0.1);
}


/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.text-accent {
  color: var(--accent-primary);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-premium);
  color: #fff;
  box-shadow: var(--shadow-button);
  border: 1px solid rgba(139, 46, 46, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--accent-primary-rgb), 0.5);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
  background: var(--gradient-premium);
  color: #fff;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

[data-theme="light"] .header.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

/* ========================================
   PREMIUM SECTION TRANSITIONS
   Smooth dividers between sections
   ======================================== */

/* Section Dividers - Gradient Lines */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(var(--accent-primary-rgb), 0.3) 20%,
      rgba(var(--accent-primary-rgb), 0.6) 50%,
      rgba(var(--accent-primary-rgb), 0.3) 80%,
      transparent 100%);
  opacity: 0.8;
}

.hero::before,
.bio-hero::before {
  background-image: none;
}

/* Section Reveal Animation */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero,
.bio-hero {
  opacity: 1;
  transform: none;
}

/* Floating Glow Background Effect */
.section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--accent-primary-rgb), 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(var(--accent-primary-rgb), 0.1) 0%, transparent 70%);
}

/* Smooth Content Fade In */
.section-content-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-content-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation for Children */
.section.visible>.container>*:nth-child(1) {
  transition-delay: 0.1s;
}

.section.visible>.container>*:nth-child(2) {
  transition-delay: 0.2s;
}

.section.visible>.container>*:nth-child(3) {
  transition-delay: 0.3s;
}

.section.visible>.container>*:nth-child(4) {
  transition-delay: 0.4s;
}

/* Premium Card Reveal Animation */
.service-card,
.package-card,
.transformation-card {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

.service-card.revealed,
.package-card.revealed,
.transformation-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-card:nth-child(1) {
  transition-delay: 0.05s;
}

.service-card:nth-child(2) {
  transition-delay: 0.15s;
}

.service-card:nth-child(3) {
  transition-delay: 0.25s;
}

/* Parallax Subtle Effect on Scroll */
.parallax-bg {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth Background Transitions Between Sections */
.services,
.about,
.programs,
.transformation-gallery {
  position: relative;
  overflow: hidden;
}

/* ALL sections have same base background for smooth transitions */
.section {
  background: var(--bg-primary);
}

/* Subtle alternating section backgrounds with soft gradients */
.services {
  background: linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(18, 18, 18, 0.5) 50%,
      var(--bg-primary) 100%);
}

.about {
  background: linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(15, 15, 15, 0.8) 30%,
      rgba(15, 15, 15, 0.8) 70%,
      var(--bg-primary) 100%);
}

.transformation-gallery {
  background: linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(18, 18, 18, 0.3) 50%,
      var(--bg-primary) 100%);
}

/* Light theme soft gradients */
[data-theme="light"] .services {
  background: linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(243, 244, 246, 0.7) 50%,
      var(--bg-primary) 100%);
}

[data-theme="light"] .about {
  background: linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(240, 240, 240, 0.8) 30%,
      rgba(240, 240, 240, 0.8) 70%,
      var(--bg-primary) 100%);
}

[data-theme="light"] .transformation-gallery {
  background: linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(245, 245, 245, 0.5) 50%,
      var(--bg-primary) 100%);
}

/* Animated Section Headers */
.section-header {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.section-header.revealed h2::after {
  transform: translateX(-50%) scaleX(1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent-primary);
}

.logo span {
  color: var(--text-primary);
}

/* Yuvarlak Logo Stili */
.logo-img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

/* Tablet için logo boyutu */
@media (max-width: 1024px) {
  .logo-img {
    height: 55px;
    width: 55px;
  }
}

/* Mobil için logo boyutu */
@media (max-width: 768px) {
  .logo-img {
    height: 45px;
    width: 45px;
  }

  .logo-img:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Küçük mobil için logo boyutu */
@media (max-width: 480px) {
  .logo-img {
    height: 40px;
    width: 40px;
  }
}


.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Theme Toggle Button */
.theme-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  fill: var(--text-primary);
  transition: all var(--transition-normal);
}

.theme-toggle .sun-icon {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

.theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-actions {
    margin-top: 30px;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(var(--accent-primary-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(var(--accent-primary-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.3);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero h1 {
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.hero-image .img-main {
  position: relative;
  z-index: 1;
}

.hero-image .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.hero-image:hover .img-hover {
  opacity: 1;
}

.hero-image:hover .img-main {
  opacity: 0;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.8;
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--accent-primary);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Floating Elements */
.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card:nth-child(1) {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-float-card:nth-child(2) {
  bottom: 20%;
  left: -10%;
  animation-delay: 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.float-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(var(--accent-primary-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.float-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-primary);
}

.float-card-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.float-card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image {
    max-width: 350px;
  }

  .hero-float-card {
    display: none;
  }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  background: var(--bg-secondary);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-primary);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--accent-primary);
  transition: fill var(--transition-normal);
}

.service-card:hover .service-icon svg {
  fill: #fff;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.service-features {
  text-align: left;
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: 700;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(var(--accent-primary-rgb), 0.3) 100%);
  pointer-events: none;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient-premium);
  color: #fff;
  padding: 25px 35px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-button);
}

.about-experience-number {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-content>p {
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  padding: 30px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.about-certifications {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.certification-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.certification-badge:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

@media (max-width: 1024px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-experience {
    bottom: -20px;
    right: 20px;
  }
}

/* ========================================
   PROGRAMS/PACKAGES SECTION
   ======================================== */
.programs {
  background: var(--bg-secondary);
}

.package-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.package-filter-btn {
  padding: 15px 30px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.package-filter-btn:hover,
.package-filter-btn.active {
  background: var(--gradient-premium);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: var(--shadow-button);
}

.package-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.package-card.popular {
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.package-card.popular::before {
  content: 'EN POPÜLER';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-premium);
  color: #fff;
  padding: 8px 25px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.package-card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.package-duration {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.package-name {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.package-price {
  margin-bottom: 30px;
}

.package-price-amount {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.package-price-currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.package-price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.package-features {
  text-align: left;
  margin-bottom: 30px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-primary);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .package-card.popular {
    transform: scale(1);
  }
}

/* ========================================
   TRANSFORMATIONS SECTION
   ======================================== */
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.transformation-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.transformation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.transformation-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.transformation-images::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.transformation-images::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 1.5rem;
  color: #000;
}

.transformation-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.transformation-info {
  padding: 25px;
}

.transformation-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.transformation-stats {
  display: flex;
  gap: 20px;
}

.transformation-stat {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.transformation-stat span {
  color: var(--accent-primary);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .transformations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .transformations-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--bg-secondary);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--accent-primary);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-content {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-primary);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  margin-bottom: 25px;
}

.contact-info>p {
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.contact-method:hover {
  border-color: var(--accent-primary);
  transform: translateX(10px);
}

.contact-method-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-primary);
}

.contact-method-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-method-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--text-primary);
  transition: fill var(--transition-normal);
}

.social-link:hover svg {
  fill: #000;
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.contact-form h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23CCFF00'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

@media (max-width: 1024px) {
  .contact .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-secondary);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 45px;
}

.footer-brand p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--accent-primary);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: fill var(--transition-normal);
}

.scroll-top:hover svg {
  fill: #fff;
}

/* ========================================
   LOADING ANIMATION
   ======================================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border-color);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ======================================== */

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {

  /* Base Typography */
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* Container */
  .container {
    padding: 0 15px;
  }

  /* Section padding */
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Header */
  .header {
    padding: 15px 0;
  }

  .logo {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  /* Mobile Navigation */
  .nav {
    max-width: 100%;
    padding: 70px 25px 30px;
  }

  .nav-link {
    font-size: 1rem;
    padding: 12px 0;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 20px;
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-actions .theme-toggle {
    width: 45px;
    height: 45px;
  }

  /* Buttons */
  .btn {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero .container {
    gap: 30px;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 0.75rem;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  .hero-image {
    max-width: 280px;
  }

  /* Services */
  .service-card {
    padding: 25px 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .service-features li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  /* About */
  .about .container {
    gap: 40px;
  }

  .about-experience {
    padding: 15px 25px;
    bottom: -15px;
    right: 10px;
  }

  .about-experience-number {
    font-size: 2rem;
  }

  .about-experience-text {
    font-size: 0.7rem;
  }

  .about-content h2 {
    margin-bottom: 20px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    margin: 25px 0;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .about-certifications {
    gap: 10px;
  }

  .certification-badge {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  /* Packages */
  .package-card {
    padding: 30px 25px;
  }

  .package-price-amount {
    font-size: 2.5rem;
  }

  .package-features li {
    padding: 10px 0;
    font-size: 0.9rem;
  }

  /* Transformations */
  .transformation-info {
    padding: 20px;
  }

  .transformation-stats {
    flex-direction: column;
    gap: 10px;
  }

  /* Contact */
  .contact .container {
    gap: 40px;
  }

  .contact-info h2 {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

  .contact-info>p {
    margin-bottom: 25px;
    font-size: 0.9rem;
  }

  .contact-methods {
    gap: 15px;
  }

  .contact-method {
    padding: 15px;
    gap: 15px;
  }

  .contact-method-icon {
    width: 45px;
    height: 45px;
  }

  .contact-method-icon svg {
    width: 22px;
    height: 22px;
  }

  .contact-method-value {
    font-size: 0.95rem;
  }

  .social-links {
    margin-top: 25px;
    gap: 10px;
    justify-content: center;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .form-textarea {
    min-height: 120px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 25px;
  }

  .footer-grid {
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .footer-legal {
    gap: 20px;
  }

  .footer-legal a {
    font-size: 0.8rem;
  }

  /* Floating buttons */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .scroll-top {
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .scroll-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Small devices (phones landscape, tablets portrait) */
@media (max-width: 768px) {

  /* Typography adjustments */
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  /* Hero */
  .hero {
    padding-top: 100px;
  }

  .hero .container {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* About stats grid */
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 15px;
  }

  .about-stat-number {
    font-size: 1.8rem;
  }

  .about-stat-label {
    font-size: 0.7rem;
  }

  /* Mobile menu close button area */
  .nav::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
  }

  /* Make the mobile menu more touch-friendly */
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 15px 0;
  }
}

/* Medium devices (tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero .container {
    gap: 40px;
  }

  .hero-stat-number {
    font-size: 2.5rem;
  }

  .about .container {
    gap: 50px;
  }

  .about-stats {
    gap: 20px;
    padding: 25px;
  }

  .contact .container {
    gap: 50px;
  }
}

/* Mobile menu overlay fix */
@media (max-width: 1024px) {
  .nav {
    background: var(--bg-primary);
  }

  /* Add close button styling */
  .nav.active {
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(0);
    }
  }

  /* Mobile hamburger adjustments */
  .mobile-menu-toggle {
    z-index: 1001;
    position: relative;
  }

  /* Ensure nav has a close possibility by tapping outside */
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 30px;
  }

  .nav {
    padding-top: 20px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }

  .package-card:hover {
    transform: none;
  }

  .transformation-card:hover {
    transform: none;
  }

  .contact-method:hover {
    transform: none;
  }

  .social-link:hover {
    transform: none;
  }

  /* Increase tap targets */
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn {
    min-height: 48px;
  }
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages {
  background: var(--bg-secondary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.package-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.package-card.featured {
  border-color: var(--accent-primary);
  background: linear-gradient(145deg, rgba(var(--accent-primary-rgb), 0.08) 0%, var(--bg-card) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-premium);
  color: #fff;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-header {
  text-align: center;
  margin-bottom: 20px;
}

.package-header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.package-duration {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-price {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.package-features {
  list-style: none;
  margin-bottom: 25px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Responsive packages */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .package-card {
    padding: 30px 20px;
  }

  .package-price {
    font-size: 2rem;
  }
}