/* =============================================
   AVENORA VİZE - KURUMSAL WEB SİTESİ CSS
   ============================================= */

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

/* ---------- CSS Variables ---------- */
:root {
  /* Ana renkler */
  --navy: #0a1f3d;
  --navy-light: #132d54;
  --navy-dark: #061428;
  --royal-blue: #1a3a6b;
  --gold: #c8a850;
  --gold-light: #dfc373;
  --gold-dark: #a88a35;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef1f6;
  --medium-gray: #9ba3b0;
  --dark-gray: #4a5568;
  --text-dark: #1a202c;
  --text-body: #3d4656;

  /* Almanya bayrak renkleri */
  --de-black: #000000;
  --de-red: #dd0000;
  --de-gold: #ffcc00;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 31, 61, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 31, 61, 0.15);
  --shadow-xl: 0 30px 80px rgba(10, 31, 61, 0.2);
  --shadow-gold: 0 8px 30px rgba(200, 168, 80, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ---------- German Flag Accent Strip ---------- */
.de-flag-strip {
  height: 4px;
  background: linear-gradient(to right, var(--de-black) 33.3%, var(--de-red) 33.3%, var(--de-red) 66.6%, var(--de-gold) 66.6%);
  position: relative;
  z-index: 999;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  transition: var(--transition-normal);
}

.navbar.scrolled .nav-logo-text {
  color: var(--navy);
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  transition: var(--transition-normal) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.navbar.scrolled .hamburger span {
  background: var(--navy);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../assets/images/real-hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(26, 58, 107, 0.5) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy-dark), transparent);
  z-index: 2;
}

/* Page Hero (For Inner Pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--royal-blue) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at right top, rgba(200, 168, 80, 0.15), transparent 50%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}


/* Decorative elements */
.hero-decor {
  position: absolute;
  z-index: 1;
}

.hero-decor-1 {
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 80, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero-decor-2 {
  bottom: 20%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 58, 107, 0.15) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

.hero-decor-3 {
  top: 20%;
  left: 15%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
  animation: pulse-line 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.1; height: 120px; }
  50% { opacity: 0.4; height: 160px; }
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 80, 0.12);
  border: 1px solid rgba(200, 168, 80, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 8px 30px rgba(200, 168, 80, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200, 168, 80, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn svg {
  width: 20px;
  height: 20px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { opacity: 1; top: 8px; transform: translateX(-50%); }
  100% { opacity: 0; top: 22px; transform: translateX(-50%); }
}

/* =============================================
   SECTION ANIMATIONS (Reveal on Scroll)
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered reveal for cards */
.stagger-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */
section {
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 3px;
}

/* =============================================
   SCROLL INTRO SECTION (Section 2)
   ============================================= */
.scroll-intro {
  padding: 160px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.scroll-intro::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 80, 0.06) 0%, transparent 70%);
}

.scroll-intro .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.scroll-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.scroll-intro-title .gold {
  color: var(--gold);
}

.scroll-intro-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  animation: bounce-arrow 2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 16px;
  height: 16px;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =============================================
   MODELIMIZ SECTION (Section 3)
   ============================================= */
.model-section {
  padding: var(--section-padding);
  background: var(--white);
}

.model-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.9;
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.model-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.model-card:hover::before {
  transform: scaleX(1);
}

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

.model-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200, 168, 80, 0.1), rgba(200, 168, 80, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 1.5rem;
}

.model-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.model-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* =============================================
   SÜREÇ / PROCESS SECTION (Section 4)
   ============================================= */
.process-section {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--light-gray));
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-dark);
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
}

.process-step:hover .process-number {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.process-content {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.process-step:hover .process-content {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 168, 80, 0.2);
}

.process-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* =============================================
   İŞ FIRSATLARI SECTION (Jobs Section)
   ============================================= */
.jobs-section {
  padding: var(--section-padding);
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.job-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 168, 80, 0.4);
}

.job-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(200, 168, 80, 0.15), rgba(200, 168, 80, 0.05));
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

.job-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.job-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}

.job-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 0;
  background: rgba(18, 140, 126, 0.1);
  color: #128c7e;
  border: 1px solid rgba(18, 140, 126, 0.2);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.job-btn:hover {
  background: #128c7e;
  color: var(--white);
  border-color: #128c7e;
  transform: translateY(-2px);
}

.job-btn svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   KİMLER İÇİN UYGUN SECTION (Section 5)
   ============================================= */
.target-section {
  padding: var(--section-padding);
  background: var(--white);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.target-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  transition: var(--transition-normal);
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 168, 80, 0.3);
  background: var(--white);
}

.target-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.target-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.target-card p {
  font-size: 0.88rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* =============================================
   NEDEN AVENORA VİZE SECTION (Section 6)
   ============================================= */
.why-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--royal-blue) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 80, 0.06), transparent 70%);
}

.why-section .section-title {
  color: var(--white);
}

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

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200, 168, 80, 0.15), rgba(200, 168, 80, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.why-card:hover .why-card-icon {
  background: var(--gold);
  color: var(--navy-dark);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS / REVIEWS SECTION
   ============================================= */
.reviews-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

.reviews-stats {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-stats-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.reviews-stats-label {
  font-size: 1rem;
  color: var(--medium-gray);
  margin-top: 4px;
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.reviews-stars svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--light-gray);
  transition: var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.review-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.78rem;
  color: var(--medium-gray);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
}

/* =============================================
   BAŞARI GÖRSELLERİ / GALLERY SECTION (Section 7)
   ============================================= */
.gallery-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  background: var(--off-white);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 31, 61, 0.9), transparent);
  padding: 40px 20px 20px;
  opacity: 0;
  transition: var(--transition-normal);
}

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

.gallery-overlay p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-caption {
  text-align: center;
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--medium-gray);
  font-weight: 500;
  border-top: 1px solid var(--light-gray);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 20, 40, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(20px);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  font-size: 0.9rem;
}

/* =============================================
   SSS / FAQ SECTION
   ============================================= */
.faq-section {
  padding: 80px 0 120px;
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(200, 168, 80, 0.3);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
  transition: var(--transition-normal);
}

.faq-item.active .faq-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.9;
}

/* =============================================
   INSTAGRAM NOTICE SECTION
   ============================================= */
.instagram-notice {
  padding: 64px 0;
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
}

.instagram-notice-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.instagram-notice-text {
  flex: 1;
}

.instagram-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(221, 0, 0, 0.15);
  border-radius: 16px;
  padding: 24px 28px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.instagram-notice-box svg {
  width: 32px;
  height: 32px;
  color: #e1306c;
  min-width: 32px;
  margin-top: 2px;
}

.instagram-notice-box strong {
  font-size: 0.95rem;
  line-height: 1.5;
}

.instagram-notice-screenshot {
  flex-shrink: 0;
  width: 240px;
}

.instagram-notice-screenshot img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

/* =============================================
   İLETİŞİM / CONTACT CTA SECTION (Section 8)
   ============================================= */
.contact-section {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 80, 0.06), transparent 60%);
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.contact-btn {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--white);
  padding: 18px 44px;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-btn:hover {
  background: #22c55e;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

.contact-btn svg {
  width: 24px;
  height: 24px;
}

.contact-phone {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.contact-phone svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
  animation: whatsapp-pulse 2s infinite;
}

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

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

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo-text {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-de-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.flag-dots {
  display: flex;
  gap: 3px;
}

.flag-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.flag-dots span:nth-child(1) { background: var(--de-black); border: 1px solid rgba(255,255,255,0.2); }
.flag-dots span:nth-child(2) { background: var(--de-red); }
.flag-dots span:nth-child(3) { background: var(--de-gold); }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

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

  .nav-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:hover {
    color: var(--gold) !important;
  }

  .nav-cta {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
  }

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

  /* Hero */
  .hero {
    min-height: 100svh;
    padding: 40px 0;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

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

  .btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Scroll Intro */
  .scroll-intro {
    padding: 100px 0;
  }

  /* Model Cards */
  .model-cards {
    grid-template-columns: 1fr;
  }

  /* Process Timeline */
  .process-timeline::before {
    left: 20px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.9rem;
  }

  .process-step {
    gap: 20px;
  }

  .process-content {
    padding: 20px;
  }

  /* Target Grid */
  .target-grid {
    grid-template-columns: 1fr;
  }

  /* Why Cards */
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  /* Instagram Notice */
  .instagram-notice-content {
    flex-direction: column;
    text-align: center;
  }

  .instagram-notice-screenshot {
    width: 200px;
    margin: 0 auto;
  }

  .instagram-notice-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* FAQ */
  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 0.88rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 0.88rem;
  }

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

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

  /* WhatsApp Float */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float-btn {
    width: 54px;
    height: 54px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
}
/* =============================================
   FAQ / SIKÇA SORULAN SORULAR
   ============================================= */
.faq-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 168, 80, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: transparent;
  transition: var(--transition-normal);
  gap: 16px;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 168, 80, 0.1);
  color: var(--gold-dark);
  border-radius: 50%;
  transition: var(--transition-normal);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--white);
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(248, 249, 250, 0.5);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Small Mobile */
@media (max-width: 480px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .scroll-intro-title {
    font-size: 1.6rem;
  }

  .nav-logo img {
    height: 38px;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .reviews-stats-number {
    font-size: 2.5rem;
  }

  .instagram-notice-box {
    padding: 14px 20px;
  }

  .instagram-notice-screenshot {
    width: 180px;
  }
}

/* =============================================
   FINAL WHATSAPP BAR (Bottom of Page)
   ============================================= */
.final-whatsapp-bar {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.final-whatsapp-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.final-whatsapp-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-whatsapp-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.final-whatsapp-text svg {
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

.final-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: #128c7e;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition-normal);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.final-whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.final-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .final-whatsapp-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .final-whatsapp-text {
    font-size: 0.95rem;
    justify-content: center;
  }

  .final-whatsapp-btn {
    padding: 12px 28px;
    font-size: 0.88rem;
  }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }
