/* ═══════════════════════════════════════════════
   MEZUNSEPETI.COM - CPANEL UYUMLU STİL DOSYASI
   ═══════════════════════════════════════════════ */

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

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8960C;
  --dark: #0A0A0F;
  --dark-card: #12121A;
  --dark-surface: #1A1A25;
  --dark-border: #2A2A3A;
  --white: #ffffff;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.relative { position: relative; }
.text-center { text-align: center; }

/* ─── GOLD GRADIENT TEXT ─── */
.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── GLASS ─── */
.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
}
.glass-gold {
  background: rgba(212,175,55,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2);
}

/* ─── SECTION DIVIDER ─── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

/* ─── PARTICLE BG ─── */
.particle-bg {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212,175,55,0.04) 0%, transparent 50%);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700; font-size: 16px;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}
.btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 600; font-size: 16px;
  border-radius: 50px; cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-glass:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* Shine effect */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(30deg);
  transition: all 0.6s; opacity: 0;
}
.btn-shine:hover::after { opacity: 1; left: 100%; }

/* ─── SECTION COMMON ─── */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-header p {
  margin-top: 20px;
  color: var(--gray-400);
  font-size: 18px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-badge-sm {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.section-header.small h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s ease;
}
#navbar.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(212,175,55,0.08);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 900; font-size: 18px;
  box-shadow: 0 4px 15px rgba(212,175,55,0.25);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--gray-300);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  border-radius: 50px;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 4px 20px rgba(212,175,55,0.3) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(18,18,26,0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--dark-border);
    padding: 16px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(42,42,58,0.5);
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    display: block !important;
    width: 100%;
  }
  .hamburger { display: flex; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,15,0.8), rgba(10,10,15,0.55), var(--dark));
}
.hero-overlay-side {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,15,0.5), transparent, rgba(10,10,15,0.5));
}

/* Particles */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,175,55,0.3);
  animation: float 6s ease-in-out infinite;
}
.p1 { width: 8px; height: 8px; top: 25%; left: 25%; animation-delay: 0s; }
.p2 { width: 12px; height: 12px; top: 33%; right: 25%; animation-delay: 1s; background: rgba(212,175,55,0.2); }
.p3 { width: 6px; height: 6px; bottom: 33%; left: 33%; animation-delay: 2s; background: rgba(212,175,55,0.4); }
.p4 { width: 10px; height: 10px; top: 50%; right: 33%; animation-delay: 3s; background: rgba(212,175,55,0.25); }
.p5 { width: 8px; height: 8px; bottom: 25%; right: 20%; animation-delay: 1.5s; background: rgba(240,208,96,0.3); }
.p6 { width: 5px; height: 5px; top: 15%; left: 60%; animation-delay: 4s; background: rgba(212,175,55,0.35); }
.p7 { width: 7px; height: 7px; bottom: 40%; left: 15%; animation-delay: 2.5s; background: rgba(240,208,96,0.2); }
.p8 { width: 9px; height: 9px; top: 60%; right: 10%; animation-delay: 0.5s; background: rgba(212,175,55,0.15); }

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-15px) translateX(8px); }
  50% { transform: translateY(-25px) translateX(-5px); }
  75% { transform: translateY(-10px) translateX(12px); }
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold);
  font-size: 14px; font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(20px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-content h1 { font-family: var(--font-heading); }
.hero-content .line1 {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
}
.hero-content .line2 {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 8px;
}
.hero-desc {
  margin-top: 32px;
  font-size: 18px;
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.hero-buttons {
  margin-top: 40px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 16px;
}
.hero-trust {
  margin-top: 64px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 40px;
}
.trust-item { text-align: center; padding: 0 16px; }
.trust-num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold);
}
.trust-label {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-mouse {
  width: 24px; height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(212,175,55,0.4);
  display: flex; justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px; height: 10px;
  background: rgba(212,175,55,0.6);
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.2);
}
.service-image {
  position: relative; height: 240px; overflow: hidden;
}
.service-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.08); }
.service-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark-card), rgba(18,18,26,0.3), transparent);
}
.service-emoji {
  position: absolute; top: 16px; left: 16px;
  font-size: 32px;
}
.service-content { padding: 24px 32px 32px; }
.service-content h3 {
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.service-content p {
  color: var(--gray-400); line-height: 1.7; margin-bottom: 20px;
  font-size: 15px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px; font-weight: 500;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.2);
}

/* ═══════════════════════════════════════════
   UNIVERSITIES SCROLL
   ═══════════════════════════════════════════ */
.universities-section {
  padding: 80px 0;
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}
.universities-section::before,
.universities-section::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}
.universities-section::before { top: 0; }
.universities-section::after { bottom: 0; }

.scroll-wrapper {
  position: relative; margin-top: 32px; overflow: hidden;
}
.scroll-fade-left,
.scroll-fade-right {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 10;
  pointer-events: none;
}
.scroll-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--dark-surface), transparent);
}
.scroll-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--dark-surface), transparent);
}
.scroll-track {
  overflow: hidden; padding: 8px 0;
}
.scroll-track + .scroll-track { margin-top: 8px; }
.scroll-content {
  display: flex; gap: 12px;
  width: max-content;
  animation: scrollTrack 35s linear infinite;
}
.scroll-content.reverse {
  animation: scrollTrack 40s linear infinite reverse;
}
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.uni-tag {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dark-border);
  font-size: 13px; font-weight: 500;
  color: var(--gray-300);
  white-space: nowrap;
  transition: border-color 0.3s;
}
.uni-tag:hover { border-color: rgba(212,175,55,0.3); }

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.stats-section { position: relative; }
.stats-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--dark), var(--dark-surface), var(--dark));
}
.stats-section::before,
.stats-section::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
  z-index: 1;
}
.stats-section::before { top: 0; }
.stats-section::after { bottom: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
.stat-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dark-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
}
.stat-icon {
  font-size: 36px; margin-bottom: 16px;
  transition: transform 0.3s;
}
.stat-card:hover .stat-icon { transform: scale(1.25); }
.stat-value {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.stat-label {
  margin-top: 12px;
  color: var(--gray-400);
  font-size: 15px; font-weight: 500;
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-filters {
  display: flex; justify-content: center;
  gap: 12px; margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none; cursor: pointer;
  font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.filter-btn:hover { color: var(--gold); border-color: rgba(212,175,55,0.3); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.15);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, var(--dark), rgba(10,10,15,0.4), transparent);
  transform: translateY(8px);
  opacity: 0.7;
  transition: all 0.4s;
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}
.gallery-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(212,175,55,0.2);
  color: var(--gold);
  font-size: 12px; font-weight: 500;
  margin-bottom: 8px;
}
.gallery-overlay h4 {
  font-size: 16px; font-weight: 700; color: var(--white);
}
.gallery-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: rotate(0deg);
  transition: all 0.3s;
  color: var(--gold);
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: rotate(90deg);
}
.gallery-item.hidden {
  display: none;
}

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
.process-section { background: var(--dark-surface); }
.process-grid {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0;
}
.process-card {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dark-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
}
.process-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 900; font-size: 18px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}
.process-icon { font-size: 36px; margin-bottom: 16px; }
.process-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.process-card p { color: var(--gray-400); font-size: 14px; line-height: 1.7; }
.process-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 12px;
  color: rgba(212,175,55,0.4);
}
@media (max-width: 900px) {
  .process-grid {
    flex-direction: column; gap: 16px;
  }
  .process-arrow { transform: rotate(90deg); padding: 8px 0; }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonial-wrapper { max-width: 800px; margin: 0 auto; }
.testimonial-card {
  position: relative;
  border-radius: 24px;
  padding: 40px 48px;
  background: rgba(212,175,55,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.15);
}
.testimonial-quote-icon {
  position: absolute; top: -24px; left: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.testimonial-stars {
  display: flex; gap: 4px; margin-bottom: 24px; margin-top: 8px;
}
.testimonial-stars svg {
  width: 20px; height: 20px; color: var(--gold);
}
.testimonial-text {
  font-size: 18px;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 32px;
  min-height: 80px;
  transition: opacity 0.4s;
}
.testimonial-author {
  display: flex; align-items: center; gap: 16px;
}
.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 700; font-size: 18px;
}
.testimonial-name {
  font-weight: 700; font-size: 17px;
}
.testimonial-role {
  color: rgba(212,175,55,0.7);
  font-size: 13px; margin-top: 2px;
}
.testimonial-dots {
  display: flex; justify-content: center;
  gap: 12px; margin-top: 32px;
}
.testimonial-dots button {
  border: none; cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
  background: var(--gray-600);
  width: 12px; height: 12px;
}
.testimonial-dots button.active {
  background: var(--gold);
  width: 40px;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 16px 0 24px;
}
.contact-info > p {
  color: var(--gray-400);
  font-size: 17px; line-height: 1.7;
  margin-bottom: 40px;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dark-border);
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(212,175,55,0.3); }
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-card-label {
  display: block;
  color: var(--gray-400);
  font-size: 13px;
}
.contact-card-value {
  display: block;
  font-weight: 500;
  margin-top: 2px;
}

/* Form */
.contact-form {
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--dark-border);
}
.contact-form h3 {
  font-size: 24px; font-weight: 700; margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px; font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-group textarea { resize: none; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.btn-text { display: inline-flex; align-items: center; gap: 8px; }
.btn-loading { display: inline-flex; align-items: center; gap: 8px; }
.spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-message {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
}
.form-message.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.form-message.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}
.footer-cta {
  background: linear-gradient(to right,
    rgba(212,175,55,0.08),
    rgba(212,175,55,0.04),
    rgba(212,175,55,0.08)
  );
  padding: 64px 0;
}
.footer-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-cta p {
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.footer-cta-buttons {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 16px;
}
.footer-main { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
.footer-brand p {
  color: var(--gray-400);
  font-size: 14px; line-height: 1.7;
  margin-top: 16px;
}
.social-links {
  display: flex; gap: 12px; margin-top: 24px;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-weight: 700; font-size: 12px;
  transition: all 0.3s;
}
.social-links a:hover { color: var(--gold); border-color: rgba(212,175,55,0.3); }

.footer-links h4 {
  font-weight: 700; margin-bottom: 20px; font-size: 15px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links li {
  font-size: 14px; color: var(--gray-400);
}
.footer-links a {
  font-size: 14px; color: var(--gray-400);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--dark-border);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { color: var(--gray-500); font-size: 14px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: var(--gray-500); font-size: 14px;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(212,175,55,0.15);
}
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  font-size: 36px; color: var(--white);
  background: none; border: none; cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}
.lightbox-close:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate="scale"] {
  transform: scale(0.85);
}
[data-animate="slide-left"] {
  transform: translateX(-50px);
}
[data-animate="slide-right"] {
  transform: translateX(50px);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
