@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playball&display=swap');

:root {
  /* Branding Colors */
  --bg-primary: #030d27;
  --bg-secondary: #08122c;
  --bg-tertiary: #0c1836;
  
  --accent: #a39683;
  --accent-glow: #e5c158;
  --accent-light: #d4c7bf;
  --accent-rgb: 163, 150, 131;
  
  --text-primary: #f8f9fa;
  --text-secondary: #c2d4e0;
  --text-muted: #8eb0c3;
  
  --glass-bg: rgba(3, 13, 39, 0.75);
  --glass-card: rgba(12, 24, 54, 0.6);
  --border-color: rgba(194, 212, 224, 0.12);
  --border-glow: rgba(163, 150, 131, 0.3);
  
  /* Font Family */
  --font-headers: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Box Shadow */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 25px rgba(163, 150, 131, 0.25);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(12, 24, 54, 0.8) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(163, 150, 131, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headers);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  transition: var(--transition-normal);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  text-decoration: none;
  transition: var(--transition-fast);
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 3.5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(229, 193, 88, 0.3));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-icon {
  transform: scale(1.08) rotate(90deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-headers);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-highlight {
  color: var(--accent-glow);
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.8px;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.95;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
}

.nav-link {
  font-family: var(--font-headers);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(163, 150, 131, 0.05);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--accent-glow);
  background: rgba(163, 150, 131, 0.08);
}

.nav-link.active::after {
  transform: scaleX(1);
  background-color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(163, 150, 131, 0.3);
}

.btn-primary:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-accent {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-accent:hover {
  background-color: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.4rem 0.8rem;
  font-family: var(--font-headers);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: none;
  flex-direction: column;
  min-width: 80px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.lang-dropdown.show {
  display: flex;
}

.lang-opt {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.6rem 1rem;
  font-family: var(--font-headers);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
  width: 100%;
}

.lang-opt:hover {
  background-color: rgba(163, 150, 131, 0.15);
  color: var(--text-primary);
}

.lang-opt.active {
  color: var(--accent);
  font-weight: 700;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1010;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  left: 0;
  transition: var(--transition-fast);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.active span {
  background-color: var(--accent);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(163, 150, 131, 0.1);
  border: 1px solid rgba(163, 150, 131, 0.25);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headers);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-badge svg {
  stroke: var(--accent);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 1.2s ease;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

.hero-portrait-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.5s ease;
}

.hero-portrait-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(163, 150, 131, 0.15) 0%, transparent 70%);
  z-index: 1;
  border-radius: var(--radius-full);
  filter: blur(20px);
}

.hero-portrait {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}

.hero-portrait:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

/* Sections General */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  position: relative;
  z-index: 2;
}

/* Scattered Background Blurred Images */
.bg-blur-wrapper {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: float-slow 30s infinite ease-in-out;
  overflow: hidden;
}

.bg-blur-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  -webkit-filter: blur(45px) saturate(1.35);
  filter: blur(45px) saturate(1.35);
  opacity: 0.16;
  display: block;
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) scale(1.08) rotate(10deg);
  }
}

.bg-image-hero {
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  animation-delay: 0s;
}

.bg-image-about {
  bottom: -10%;
  left: -5%;
  width: 550px;
  height: 550px;
  animation-delay: -5s;
}

.bg-image-team {
  top: 15%;
  left: -5%;
  width: 500px;
  height: 500px;
  animation-delay: -10s;
}

.bg-image-trainings {
  bottom: -5%;
  right: -5%;
  width: 550px;
  height: 550px;
  animation-delay: -15s;
}

.bg-image-quiz {
  top: 10%;
  left: -10%;
  width: 550px;
  height: 550px;
  animation-delay: -20s;
}

.bg-image-wizard {
  bottom: -5%;
  right: -10%;
  width: 550px;
  height: 550px;
  animation-delay: -25s;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headers);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2.5px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-image-bg {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.3;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  z-index: 2;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-quote {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-light);
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.about-p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--glass-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.pillar-num {
  font-family: var(--font-headers);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.team-card {
  background: var(--glass-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 0.85;
  overflow: hidden;
  background: var(--bg-tertiary);
}

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

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

.team-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.team-section {
  margin-bottom: 1.25rem;
}

.team-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.25rem;
}

.team-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.team-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.team-list li::before {
  content: "•";
  color: var(--accent-glow);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.team-list li.sub-li {
  padding-left: 1.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

.team-list li.sub-li::before {
  content: "◦";
  left: 0.75rem;
  color: var(--accent);
}

/* Trainings Catalog */
.trainings-catalog {
  margin-top: 2rem;
}

.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 350px;
}

.search-input {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 10px rgba(163, 150, 131, 0.15);
}

.search-box svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.filter-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.filter-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.trainings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.training-card {
  background: var(--glass-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.training-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

.training-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.training-card:hover::before {
  height: 100%;
}

.training-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.training-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.training-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.training-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-top: auto;
  transition: var(--transition-fast);
}

.training-more:hover {
  color: var(--text-primary);
}

.training-more svg {
  transition: var(--transition-fast);
}

.training-more:hover svg {
  transform: translateX(5px);
}

/* Modals General */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 13, 39, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 650px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition-normal);
  overflow: hidden;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent);
}

.modal-body {
  padding: 3rem;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.modal-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Interactive Quiz Section */
.quiz-box {
  background: var(--glass-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.quiz-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.quiz-slide {
  display: none;
}

.quiz-slide.active {
  display: block;
}

.quiz-question {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.quiz-option:hover {
  border-color: var(--accent);
  background: rgba(163, 150, 131, 0.05);
}

.quiz-option.selected {
  border-color: var(--accent);
  background: rgba(163, 150, 131, 0.1);
  box-shadow: 0 0 10px rgba(163, 150, 131, 0.1);
}

.quiz-radio {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.quiz-option.selected .quiz-radio {
  border-color: var(--accent);
}

.quiz-option.selected .quiz-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-result {
  display: none;
  text-align: center;
}

.quiz-result.active {
  display: block;
}

.result-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: glowPulse 2s infinite alternate;
}

.result-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.result-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.quiz-recommendations {
  text-align: left;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2rem 0;
}

.rec-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.rec-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
}

/* Belief Transformer Section */
.reframe-box {
  background: var(--glass-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.reframe-step {
  display: none;
}

.reframe-step.active {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 10px rgba(163, 150, 131, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.reframe-loading {
  text-align: center;
  padding: 3rem 0;
}

.reframe-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(163, 150, 131, 0.1);
  border-radius: var(--radius-full);
  border-top-color: var(--accent);
  margin: 0 auto 1.5rem auto;
  animation: spin 1s linear infinite;
}

.reframe-questions-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reframe-question-item {
  display: flex;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.reframe-question-item span {
  color: var(--accent);
  font-weight: bold;
}

.reframe-results {
  text-align: left;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reframe-result-block {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
}

.reframe-result-block.old {
  border-left-color: rgba(255, 255, 255, 0.3);
  opacity: 0.7;
}

.reframe-result-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.reframe-result-text {
  font-size: 1.05rem;
}

.reframe-result-block.old .reframe-result-text {
  text-decoration: line-through;
}

.reframe-result-block.sufi {
  font-style: italic;
}

.reframe-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Teaser / Benden Bize Akademi */
.teaser-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.teaser-box {
  background: linear-gradient(135deg, rgba(12, 24, 54, 0.8) 0%, rgba(163, 150, 131, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.teaser-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(163, 150, 131, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.teaser-badge {
  color: var(--accent);
  font-family: var(--font-headers);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.teaser-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.teaser-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--glass-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image-box {
  width: 100%;
  aspect-ratio: 1.6;
  background: var(--bg-tertiary);
  position: relative;
}

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

.blog-card:hover .blog-img {
  transform: scale(1.03);
}

.blog-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-top: auto;
  transition: var(--transition-fast);
}

.blog-link:hover {
  color: var(--text-primary);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.info-item:hover .info-icon {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.info-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.info-details p, .info-details a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.info-details a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.contact-form-box {
  background: var(--glass-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
}

.contact-alert.success {
  background-color: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
  display: block;
}

.contact-alert.error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  display: block;
}

/* Admin Panel Widget & Modal */
.admin-badge-trigger {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 45px;
  height: 45px;
  background: rgba(12, 24, 54, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  backdrop-filter: blur(5px);
}

.admin-badge-trigger:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}

.admin-dashboard-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  min-height: 450px;
}

.admin-sidebar {
  border-right: 1px solid var(--border-color);
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.admin-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-headers);
  font-weight: 600;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-tab-btn:hover {
  background: rgba(255, 255, 255, 0.03);
}

.admin-tab-btn.active {
  background: rgba(163, 150, 131, 0.12);
  color: var(--accent);
  border-color: rgba(163, 150, 131, 0.2);
}

.admin-content {
  flex-grow: 1;
}

.admin-pane {
  display: none;
}

.admin-pane.active {
  display: block;
}

.submissions-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th, .admin-table td {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-weight: 700;
}

.admin-table td {
  color: var(--text-secondary);
}

.badge-new {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--accent);
  color: var(--bg-primary);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Footer */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.83fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px rgba(163, 150, 131, 0.4);
  }
  to {
    text-shadow: 0 0 25px rgba(163, 150, 131, 0.7);
  }
}

/* Scroll Fade In */
.scroll-animate {
  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);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Queries */
@media (max-width: 1150px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    left: auto;
    width: 320px;
    height: 100vh;
    background: rgba(3, 13, 39, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2.5rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
  }
  
  .nav-link::after {
    bottom: 5px;
    left: 1rem;
    right: auto;
    width: 20px;
    height: 2px;
  }
  
  .header-right {
    gap: 1rem;
  }
  
  .btn-work-with-me {
    display: none;
  }

  header.scrolled .nav-menu {
    top: 0;
    height: 100vh;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-badge, .hero-actions {
    justify-content: center;
  }
  
  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-pillars {
    grid-template-columns: 1fr;
  }
  
  .quiz-box, .reframe-box, .contact-form-box {
    padding: 2rem;
  }
  
  .admin-dashboard-layout {
    grid-template-columns: 1fr;
  }
  
  .admin-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 1.5rem;
    flex-direction: row;
    overflow-x: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CORPORATE GOLDEN ARROW CURSOR STYLES
   ========================================================================== */
*, body, html {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23E5C158" stroke="%230F172A" stroke-width="1.5"><path d="M3 2l16 10-7 2 4 7-3 1-4-7-6 4V2z"/></svg>') 2 2, auto;
}

a, button, .btn, .nav-link, .filter-btn, .lang-btn, select, input, textarea, [role="button"], .mobile-toggle, a *, button *, .btn *, .nav-link *, label {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFD700" stroke="%23FFFFFF" stroke-width="1.5"><path d="M3 2l16 10-7 2 4 7-3 1-4-7-6 4V2z"/></svg>') 2 2, pointer !important;
}

.cursor-particle {
  position: absolute;
  pointer-events: none;
  color: var(--accent);
  line-height: 1;
  z-index: 99999;
  text-shadow: 0 0 5px var(--accent-glow);
  transform: translate(-50%, -50%);
  animation: particle-fade 1.5s forwards cubic-bezier(0.1, 0.4, 0.3, 1);
}

@keyframes particle-fade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.1) rotate(180deg);
  }
}

/* Eye-Catching Sweet Online Broşür Button */
.btn-brochure-sweet {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(253, 230, 138, 0.7) !important;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 9999px !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.btn-brochure-sweet:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.65) !important;
  border-color: #ffffff !important;
}

.admin-badge-trigger {
  display: none !important;
}
