/* =========================================
   MOVE2MAX - Main Stylesheet
   ========================================= */

/* --- CSS Variables --- */
:root {
  --dark:       #080808;
  --dark-2:     #0F0F0F;
  --dark-3:     #1A1A1A;
  --red:        #D42B2B;
  --red-light:  #FF3333;
  --red-2:      #B71C1C;
  --silver:     #E0E0E0;
  --gradient:   linear-gradient(135deg, #D42B2B, #FF3333);
  --gradient-r: linear-gradient(135deg, #FF3333, #D42B2B);
  --text:       #FFFFFF;
  --text-muted: #9090A8;
  --text-dim:   #6060780;
  --glass:      rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --card-bg:    #0F0F0F;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-red:    0 0 40px rgba(212, 43, 43, 0.35);
  --shadow-red-2:  0 0 40px rgba(255, 51, 51, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Loading Screen --- */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.loading-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(72px, 15vw, 120px);
  letter-spacing: 8px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.loading-d {
  color: var(--red);
  animation: loadPulse 1s ease-in-out infinite alternate;
}

.loading-amp {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loadPulse 1s ease-in-out infinite alternate 0.2s;
}

.loading-p {
  color: var(--red-2);
  animation: loadPulse 1s ease-in-out infinite alternate 0.4s;
}

@keyframes loadPulse {
  from { opacity: 0.5; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}

.loading-bar-container {
  width: 260px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.05s linear;
}

.loading-text {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

#navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.logo-dream { color: var(--red); }
.logo-amp   { color: var(--text-muted); font-size: 22px; margin: 0 1px; }
.logo-play  { color: var(--red-2); }

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(212, 43, 43, 0.6);
}

.hero-logo-img {
  height: 180px;
  width: auto;
  max-width: 80vw;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  animation: heroPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212, 43, 43, 0.5)) drop-shadow(0 0 40px rgba(212, 43, 43, 0.2));
}

@keyframes heroPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 43, 43, 0.5)) drop-shadow(0 0 40px rgba(212, 43, 43, 0.2)); }
  50%       { filter: drop-shadow(0 0 30px rgba(212, 43, 43, 0.8)) drop-shadow(0 0 60px rgba(212, 43, 43, 0.4)); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--glass);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
  opacity: 0.92;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  display: block;
}

/* --- Hero Section --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 120px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--red-2);
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 24px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(212, 43, 43, 0.5));
}

.hero-subtitle {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  min-height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--red);
  animation: blink 1s step-end infinite;
  font-weight: 300;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-description {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 48px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212, 43, 43, 0.5);
  opacity: 0.95;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--glass);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(212, 43, 43, 0.2);
}

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

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

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

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Hero Services Preview Bar */
.hero-services-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
}

.hero-service-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  gap: 6px;
  cursor: default;
  transition: background 0.25s;
}

.hero-service-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero-service-icon {
  font-size: 22px;
  line-height: 1;
}

.hero-service-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-align: center;
  white-space: nowrap;
}

.hero-service-divider {
  width: 1px;
  background: var(--glass-border);
  margin: 14px 0;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Section Common --- */
section {
  padding: 100px 0;
}

#hero {
  padding: 0;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(212, 43, 43, 0.15);
  border: 1px solid rgba(212, 43, 43, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- About Section --- */
#about {
  background: var(--dark-2);
}

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

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

.about-image-container {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  position: relative;
}

.about-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  font-size: 80px;
  opacity: 0.7;
}

#about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(212, 43, 43, 0.5);
}

.about-badge-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 48px;
  line-height: 1;
  display: block;
}

.about-badge-text {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-top: 4px;
  white-space: nowrap;
}

.about-content .section-tag {
  display: inline-flex;
}

.about-description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat-item {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.about-stat-item:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.about-stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Services Section --- */
#services {
  background: var(--dark);
}

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

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  z-index: -1;
  border-radius: calc(var(--radius) + 2px);
  opacity: 0;
  transition: opacity var(--transition);
}

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

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

.service-card:hover::after {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 43, 43, 0.18) 0%, rgba(212, 43, 43, 0.06) 100%);
  border: 1px solid rgba(212, 43, 43, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(212, 43, 43, 0.28) 0%, rgba(212, 43, 43, 0.12) 100%);
  border-color: rgba(212, 43, 43, 0.7);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(212, 43, 43, 0.45));
}

.service-icon-emoji {
  color: initial;
  filter: none;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Team Section --- */
#team {
  background: var(--dark-2);
}

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

.team-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: rgba(212, 43, 43, 0.4);
}

.team-photo-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-family: 'Bebas Neue', cursive;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.team-card:hover .team-photo {
  transform: scale(1.08);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.7);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 12px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  transition: transform var(--transition);
  text-decoration: none;
}

.team-social a:hover {
  transform: scale(1.15);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--red-light);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Gallery Section --- */
#gallery {
  background: var(--dark);
}

.gallery-grid {
  columns: 3;
  gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 43, 43, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 32px;
  color: white;
}

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

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

.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  background: var(--glass);
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius);
  columns: unset;
}

.gallery-placeholder-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.gallery-placeholder p {
  color: var(--text-muted);
  font-size: 16px;
}

/* --- Pricing Section --- */
#pricing {
  background: var(--dark-2);
}

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

.pricing-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.pricing-card.featured {
  background: var(--dark);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  box-shadow: 0 0 60px rgba(212, 43, 43, 0.25);
  transform: translateY(-12px);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  z-index: -1;
  border-radius: calc(var(--radius-lg) + 2px);
}

.pricing-card.featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 0 80px rgba(212, 43, 43, 0.4);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--gradient);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-amount {
  font-family: 'Bebas Neue', cursive;
  font-size: 56px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-feature::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
  display: block;
  cursor: pointer;
}

.pricing-cta-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text);
}

.pricing-cta-outline:hover {
  border-color: var(--red);
  background: rgba(212, 43, 43, 0.1);
}

.pricing-cta-filled {
  background: var(--gradient);
  border: none;
  color: var(--text);
}

.pricing-cta-filled:hover {
  box-shadow: 0 8px 32px rgba(212, 43, 43, 0.5);
  transform: translateY(-2px);
}

/* --- Testimonials Section --- */
#testimonials {
  background: var(--dark);
}

.testimonials-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  flex: 0 0 calc(50% - 12px);
  position: relative;
}

.testimonial-quote {
  font-size: 48px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}

.testimonial-stars i {
  font-size: 12px;
  color: var(--silver);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--gradient);
  width: 28px;
  border-radius: 4px;
}

/* --- Performances Section --- */
#performances {
  background: var(--dark-2);
}

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

/* Workshop Section */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.workshop-card {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.workshop-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.workshop-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.workshop-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.workshop-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.workshop-card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.workshop-card-meta span {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.workshop-card-meta i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 14px;
}

.workshop-card-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: auto;
}

.workshop-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--gradient);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.workshop-buy-btn:hover {
  opacity: 0.85;
}

/* Admin toggle */
.toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-primary);
}

.toggle-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Club Performances Section */
.club-perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.club-perf-card {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 20px;
}

.club-perf-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.club-perf-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 20px;
}

.club-perf-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px;
  padding: 10px 20px;
  background: #ff0000;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  width: fit-content;
}

.club-perf-yt-btn:hover {
  opacity: 0.85;
}

.perf-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.perf-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: rgba(212, 43, 43, 0.4);
}

.perf-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark-3);
}

.perf-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.perf-card:hover .perf-card-photo img {
  transform: scale(1.06);
}

.perf-card-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-3), #1f1f1f);
  font-size: 56px;
  font-family: 'Bebas Neue', cursive;
  color: rgba(255,255,255,0.15);
  letter-spacing: 4px;
}

.perf-card-club-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.perf-card-club-badge img {
  height: 18px;
  width: 18px;
  object-fit: contain;
  border-radius: 2px;
}

.perf-card-sport-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gradient);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.perf-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.perf-card-athlete {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.perf-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.perf-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.perf-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.perf-card-meta i {
  color: var(--red-light);
  font-size: 11px;
}

.perf-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.perf-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.perf-metric-label {
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.perf-metric-values {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.perf-metric-before {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.perf-metric-arrow {
  color: var(--red-light);
  font-size: 10px;
}

.perf-metric-after {
  font-size: 13px;
  font-weight: 700;
  color: #4ade80;
}

.perf-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.perf-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--transition), color var(--transition);
  font-family: inherit;
}

.perf-detail-btn:hover {
  gap: 10px;
  color: var(--red);
}

.perf-card-date {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.perf-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.perf-placeholder i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
  display: block;
}

/* Performance Modal */
.perf-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.perf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.perf-modal-box {
  position: relative;
  z-index: 1;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(212, 43, 43, 0.15);
  animation: modalIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.perf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
}

.perf-modal-close:hover {
  background: rgba(212, 43, 43, 0.3);
  transform: rotate(90deg);
}

.perf-modal-photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.perf-modal-photo-fallback {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--dark-3), #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-family: 'Bebas Neue', cursive;
  color: rgba(255,255,255,0.1);
  letter-spacing: 6px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.perf-modal-body {
  padding: 28px 32px 32px;
}

.perf-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.perf-modal-athlete-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 6px;
}

.perf-modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.perf-modal-tag {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.perf-modal-tag.sport {
  background: var(--gradient);
  color: #fff;
}

.perf-modal-tag.club {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.perf-modal-tag.date {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.perf-modal-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.perf-modal-metrics-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.perf-modal-metrics-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 0 0 10px 0;
  border-bottom: 1px solid var(--glass-border);
}

.perf-modal-metrics-table th:not(:first-child) {
  text-align: center;
}

.perf-modal-metrics-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  vertical-align: middle;
}

.perf-modal-metrics-table td:not(:first-child) {
  text-align: center;
}

.perf-modal-metrics-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.td-before {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.td-after {
  font-weight: 700;
  color: #4ade80;
}

.td-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
}

.perf-modal-notes {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .perf-grid { grid-template-columns: 1fr; }
  .perf-modal-body { padding: 20px; }
  .perf-modal-athlete-name { font-size: 26px; }
}

/* --- Contact Section --- */
#contact {
  background: var(--dark-2);
}

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

.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
}

.contact-map-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.contact-map-iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  pointer-events: none;
}

.contact-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  text-align: center;
  padding: 32px 16px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s;
}

.contact-map-link:hover .contact-map-overlay {
  opacity: 1;
}

.contact-info {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 680px;
}

.contact-info-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 32px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 43, 43, 0.15);
  border: 1px solid rgba(212, 43, 43, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 500;
}

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.contact-hours-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-hours-title i {
  color: var(--red-2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}

.hours-day {
  color: var(--text-muted);
}

.hours-time {
  color: var(--text);
  font-weight: 500;
}

/* --- Contact Form --- */
.contact-form-wrapper {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 16px 8px;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  padding: 12px 16px;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212, 43, 43, 0.15);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-group textarea ~ label {
  top: 20px;
  transform: none;
}

.form-group select ~ label {
  top: -10px;
  font-size: 12px;
  background: var(--dark-3);
  padding: 0 6px;
  color: var(--red-light);
  transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  transform: none;
  font-size: 11px;
  color: var(--red-light);
  letter-spacing: 0.5px;
}

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

/* --- Footer --- */
#footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 0;
}

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

.footer-brand .footer-logo {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gradient);
  border-color: transparent;
  color: var(--text);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--text);
  padding-left: 6px;
}

.footer-contact-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-contact-info i {
  color: var(--red-light);
  margin-top: 2px;
  flex-shrink: 0;
}

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

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-admin-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-admin-link:hover {
  color: var(--text-muted);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(212, 43, 43, 0.5);
  border-color: var(--red);
  transform: scale(1.1);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 24px;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.toast.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.toast i {
  font-size: 18px;
}

.toast.success i { color: #22c55e; }
.toast.error i   { color: #ef4444; }

/* =========================================
   RESPONSIVE — Mobile-First, 4 Breakpoints
   ========================================= */

/* ── Tablet Geniş: ≤1200px ─────────────────────── */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .about-grid {
    gap: 48px;
  }

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

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

/* ── Tablet: ≤1024px ────────────────────────────── */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }

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

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

  .about-grid {
    gap: 40px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-logo-img {
    height: 160px;
    width: auto;
  }
}

/* ── Mobil Geniş: ≤768px ────────────────────────── */
@media (max-width: 768px) {

  /* Genel */
  .container {
    padding: 0 20px;
  }

  section {
    padding: 64px 0;
  }

  /* Navbar */
  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100dvh;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 88px 20px 40px;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 17px;
    padding: 14px 16px;
    width: 100%;
    border-radius: 10px;
    font-weight: 600;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(212, 43, 43, 0.12);
    padding-left: 20px;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  #hero {
    padding: 100px 20px 80px;
    min-height: 100svh;
  }

  .hero-logo-img {
    height: 140px;
    width: auto;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: clamp(18px, 5vw, 26px);
  }

  .hero-desc {
    font-size: 15px;
    max-width: 440px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-services-bar {
    flex-wrap: wrap;
    border-radius: 16px;
    overflow: hidden;
  }

  .hero-service-item {
    flex: 1 1 33%;
    min-width: 80px;
    padding: 12px 8px;
  }

  .hero-service-divider {
    display: none;
  }

  .hero-service-icon {
    font-size: 18px;
  }

  .hero-service-label {
    font-size: 10px;
    white-space: normal;
  }

  /* Section Typography */
  .section-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .section-subtitle {
    font-size: 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .about-image-container {
    height: 280px;
  }

  .about-badge {
    right: 0;
    bottom: -20px;
    padding: 14px 18px;
  }

  .about-badge-number {
    font-size: 28px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-stat-item {
    padding: 16px 12px;
  }

  .about-stat-number {
    font-size: 28px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin-bottom: 18px;
  }

  .service-icon {
    font-size: 24px;
  }

  .service-title {
    font-size: 16px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Gallery */
  .gallery-grid {
    columns: 2;
    gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(100% - 16px);
    padding: 24px 20px;
  }

  .testimonials-carousel {
    gap: 12px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .contact-map-wrapper {
    width: 100%;
  }

  .contact-map-iframe {
    height: 260px;
  }

  .contact-info {
    padding: 28px 24px;
    max-width: 100%;
  }

  .contact-detail {
    gap: 14px;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .contact-hours {
    margin-top: 24px;
    padding-top: 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-social {
    gap: 10px;
  }

  /* Lightbox */
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ── Mobil Küçük: ≤480px ────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 52px 0;
  }

  /* Hero */
  #hero {
    padding: 90px 16px 60px;
  }

  .hero-logo-img {
    height: 120px;
    width: auto;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: clamp(16px, 5.5vw, 22px);
    padding: 0 8px;
  }

  .hero-desc {
    font-size: 14px;
    padding: 0 4px;
  }

  .hero-services-bar {
    border-radius: 12px;
  }

  .hero-service-item {
    flex: 1 1 33%;
    padding: 10px 6px;
  }

  .hero-service-icon {
    font-size: 16px;
  }

  .hero-service-label {
    font-size: 9px;
  }

  /* Section Typography */
  .section-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .section-tag {
    font-size: 11px;
    padding: 5px 14px;
  }

  /* About */
  .about-image-container {
    height: 240px;
    aspect-ratio: unset;
  }

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

  .about-stat-number {
    font-size: 24px;
  }

  .about-stat-label {
    font-size: 12px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 24px 18px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }

  .service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .service-icon {
    font-size: 22px;
  }

  .service-card-body {
    flex: 1;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .team-name {
    font-size: 14px;
  }

  .team-role {
    font-size: 12px;
  }

  .team-bio {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Gallery */
  .gallery-grid {
    columns: 2;
    gap: 8px;
  }

  .gallery-item {
    margin-bottom: 8px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  /* Contact */
  .contact-info {
    padding: 24px 16px;
  }

  .contact-map-iframe {
    height: 220px;
  }

  .contact-detail-value {
    font-size: 14px;
  }

  /* Footer */
  .footer-description {
    font-size: 14px;
  }

  .footer-links ul {
    gap: 8px;
  }

  /* Toast */
  .toast {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: 100%;
    font-size: 14px;
  }

  /* Lightbox */
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ── Mobil XS: ≤375px ───────────────────────────── */
@media (max-width: 375px) {
  .container {
    padding: 0 12px;
  }

  .hero-logo-img {
    height: 100px;
    width: auto;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 22px;
  }

  .nav-links {
    width: 100vw;
    border-left: none;
  }
}
