/* ==========================================================================
   KÜBRA TURSUN BOUTIQUE - ŞANLIURFA
   Tasarım Konsepti: Haute Couture 24K Varak Altın & Velvet Obsidian VIP
   Şanlıurfa VIP Lüks Moda & Gösteriş Standartları
   ========================================================================== */

:root {
  /* 24K Saf Varak Altını & Haute Couture Obsidian Tonlar */
  --primary: #C5933A;
  --primary-dark: #8F5E12;
  --primary-light: #FFDF78;
  --primary-soft: #FDF7EC;
  --primary-border: rgba(197, 147, 58, 0.40);

  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-glow: 0 10px 30px rgba(197, 147, 58, 0.40);
  --gold-card-glow: 0 12px 35px rgba(197, 147, 58, 0.22);

  --accent-terracotta: #B64E28;
  --secondary: #D4AF37;
  --secondary-light: #FFF9E6;
  --secondary-dark: #997300;

  --dark: #0D0704;
  --dark-soft: #20130B;
  --muted: #6B5548;
  --light: #FFFDFC;
  --light-gray: #FAF5EE;
  --card-bg: #FFFFFF;

  --shadow-sm: 0 4px 15px rgba(197, 147, 58, 0.14);
  --shadow-md: 0 12px 35px -6px rgba(197, 147, 58, 0.25);
  --shadow-lg: 0 25px 50px -10px rgba(13, 7, 4, 0.22);
  --shadow-hover: 0 25px 55px -4px rgba(197, 147, 58, 0.45);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-gray);
  color: var(--dark-soft);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Çatı Ekosistem Barı */
.network-bar {
  background: #080402;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(197, 147, 58, 0.38);
}

.network-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.network-links {
  display: flex;
  gap: 1.2rem;
}

.network-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: var(--transition);
}

.network-links a:hover, .network-links a.active {
  color: #FFDF78;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 223, 120, 0.5);
}

/* Tipografi & Başlıklar */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 800;
  line-height: 1.25;
  word-break: break-word;
}

.gold-text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #FFF9EB 0%, #FDF1D6 100%);
  color: #8F5E12;
  border: 1.5px solid rgba(197, 147, 58, 0.5);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(197, 147, 58, 0.18);
}

.badge-tag svg {
  width: 18px;
  height: 18px;
  fill: #C5933A;
  filter: drop-shadow(0 2px 4px rgba(197, 147, 58, 0.4));
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 400;
}

/* VIP Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 70%, #F5D77F 100%);
  color: #0D0704;
  box-shadow: 0 10px 25px rgba(179, 135, 40, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  border: 1px solid #D4AF37;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(179, 135, 40, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #CF9E45 0%, #FFFDE0 30%, #C49432 70%, #FFE599 100%);
}

.btn-secondary {
  background: #FFFFFF;
  color: #8F5E12;
  border: 1.5px solid rgba(197, 147, 58, 0.5);
  box-shadow: 0 4px 15px rgba(197, 147, 58, 0.12);
}

.btn-secondary:hover {
  border-color: #C5933A;
  background: #FDF7EC;
  color: #120D08;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 147, 58, 0.25);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

/* Üst Bar (Top Bar) */
.top-bar {
  background: linear-gradient(90deg, #100804 0%, #201208 50%, #100804 100%);
  color: #FFFDF9;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 2px solid #C5933A;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-info-item svg {
  width: 15px;
  height: 15px;
  fill: var(--primary-light);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-link {
  color: #F8EFEA;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-link:hover {
  color: var(--primary-light);
}

/* Header & Navigasyon */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 250, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--primary-border);
  box-shadow: 0 4px 20px rgba(28, 17, 12, 0.04);
  transition: var(--transition);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.brand-logo span {
  color: var(--primary-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--dark-soft);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-dark);
}

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

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Hero Bölümü */
.hero-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: radial-gradient(circle at 10% 20%, #FCE0D2 0%, #FFFCFA 70%);
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.shape-1 {
  width: 450px;
  height: 450px;
  background: #FAC7B0;
  top: -100px;
  right: -80px;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: #FBD0B8;
  bottom: -60px;
  left: 5%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(182, 78, 40, 0.22);
  border-radius: 4px;
  z-index: -1;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--primary-border);
}

.stat-item h4 {
  font-size: 1.65rem;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.1;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Hero Kartı & Görsel Vitrini */
.hero-visual-card {
  position: relative;
}

.hero-main-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(13, 7, 4, 0.25), 0 0 35px rgba(197, 147, 58, 0.3);
  border: 6px solid #FFFFFF;
  outline: 2px solid #D4AF37;
}

.hero-main-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-img-wrap:hover img {
  transform: scale(1.04);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(13, 7, 4, 0.18), 0 0 20px rgba(197, 147, 58, 0.22);
  border: 1.5px solid rgba(197, 147, 58, 0.5);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 3;
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-badge-1 {
  bottom: 25px;
  left: -25px;
}

.floating-badge-2 {
  top: 35px;
  right: -25px;
  animation-delay: 2s;
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF6E5 0%, #FDE4B0 100%);
  border: 1px solid rgba(197, 147, 58, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(197, 147, 58, 0.2);
}

.badge-icon svg {
  width: 24px;
  height: 24px;
  fill: #8F5E12;
}

.badge-text strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 800;
}

.badge-text span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 4 Temel Sütun (Features) */
.features-section {
  padding-block: 5.5rem;
  background: #FFFFFF;
}

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

.feature-box {
  background: var(--light-gray);
  padding: 2.4rem 2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(197, 147, 58, 0.28);
  box-shadow: 0 8px 25px rgba(197, 147, 58, 0.08);
  transition: var(--transition);
  position: relative;
}

.feature-box:hover {
  background: #FFFFFF;
  border-color: #C5933A;
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.feature-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFF7E8 0%, #FEE8B7 100%);
  border: 1.5px solid rgba(197, 147, 58, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 6px 15px rgba(197, 147, 58, 0.2);
  transition: var(--transition);
}

.feature-icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: #8F5E12;
}

.feature-box:hover .feature-icon-wrap {
  background: var(--gold-gradient);
  box-shadow: 0 8px 25px rgba(197, 147, 58, 0.45);
  transform: scale(1.1) rotate(5deg);
}

.feature-box:hover .feature-icon-wrap svg {
  fill: #0D0704;
}

.feature-box h3 {
  font-size: 1.28rem;
  margin-bottom: 0.65rem;
}

.feature-box p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Kurucu Bölümü */
.about-section {
  padding-block: 6.5rem;
  background: radial-gradient(circle at 90% 10%, #FDF3E6 0%, #FAF5EE 80%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 4rem;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(13, 7, 4, 0.22), 0 0 35px rgba(197, 147, 58, 0.3);
  border: 6px solid #FFFFFF;
  outline: 2px solid #D4AF37;
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
}

.founder-ribbon {
  position: absolute;
  bottom: 25px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius-md);
  border-left: 5px solid #C5933A;
  border: 1px solid rgba(197, 147, 58, 0.35);
  border-left-width: 5px;
  border-left-color: #C5933A;
  box-shadow: 0 10px 30px rgba(13, 7, 4, 0.15);
}

.founder-ribbon h4 {
  font-size: 1.2rem;
  color: var(--dark);
}

.founder-ribbon p {
  font-size: 0.88rem;
  color: #8F5E12;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.about-content h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 1.4rem;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.values-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-block: 1.8rem;
}

.val-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--dark-soft);
  font-size: 0.95rem;
}

.val-item svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-dark);
  flex-shrink: 0;
}

/* Koleksiyon & Ürün Kartları (Programs/Products) */
.programs-section {
  padding-block: 6rem;
  background: #FFFFFF;
}

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

.program-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(197, 147, 58, 0.35);
  box-shadow: 0 10px 30px rgba(13, 7, 4, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(197, 147, 58, 0.35);
  border-color: #C5933A;
}

.program-thumb {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.program-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-thumb img {
  transform: scale(1.06);
}

.program-age-pill {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #120D08 0%, #281D12 100%);
  color: #FFDF78;
  border: 1px solid #D4AF37;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.program-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.program-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.program-perks {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--primary-border);
}

.program-perks li {
  font-size: 0.88rem;
  color: var(--dark-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-perks li svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-dark);
  flex-shrink: 0;
}

/* Showroom & Deneyim */
.campus-section {
  padding-block: 6rem;
  background: #FFFFFF;
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.campus-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.campus-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.feat-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.campus-feat-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.campus-feat-item p {
  font-size: 0.92rem;
  color: var(--muted);
}

.campus-gallery-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.campus-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.campus-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.campus-img-card:hover img {
  transform: scale(1.05);
}

.campus-img-card span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(28, 17, 12, 0.78);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* Instagram Vitrini */
.instagram-section {
  padding-block: 6rem;
  background: radial-gradient(circle at 50% 50%, #FAE9DF 0%, #FAF4F0 80%);
}

.insta-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.insta-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  border: 3px solid #FFFFFF;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(182, 78, 40, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.insta-overlay svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  transform: scale(0.7);
  transition: var(--transition);
}

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

.insta-item:hover .insta-overlay svg {
  transform: scale(1);
}

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

/* Müşteri Yorumları */
.testimonials-section {
  padding-block: 6rem;
  background: #FFFFFF;
}

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

.testimonial-card {
  background: var(--light-gray);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.1rem;
}

.stars-row svg {
  width: 18px;
  height: 18px;
  fill: #D4AF37;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--dark-soft);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.parent-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.parent-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.parent-meta h4 {
  font-size: 1rem;
}

.parent-meta span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Sıkça Sorulan Sorular (FAQ) */
.faq-section {
  padding-block: 6rem;
  background: var(--light-gray);
}

.faq-wrapper {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-dark);
  transition: transform 0.3s ease;
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding-inline: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer p {
  padding-bottom: 1.25rem;
}

/* İletişim & Sipariş Formu */
.contact-section {
  padding-block: 6rem;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: #1C110C;
  color: #FFFFFF;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--primary);
  opacity: 0.18;
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  filter: blur(50px);
}

.contact-info-header h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-info-header p {
  color: #F0D9D0;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  z-index: 2;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(182, 78, 40, 0.2);
  border: 1px solid rgba(182, 78, 40, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-light);
}

.channel-meta span {
  display: block;
  font-size: 0.82rem;
  color: #F0D9D0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-meta strong, .channel-meta a {
  font-size: 1.15rem;
  color: #FFFFFF;
  font-weight: 700;
}

.channel-meta a:hover {
  color: var(--primary-light);
}

/* Form Kartı */
.form-card {
  background: var(--light-gray);
  padding: 2.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--primary-border);
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(182, 78, 40, 0.25);
  background: #FFFFFF;
  color: var(--dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(182, 78, 40, 0.15);
}

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

/* Footer */
.site-footer {
  background: #0A0503;
  color: #FFFDF9;
  padding-top: 5.5rem;
  padding-bottom: 2.2rem;
  border-top: 3px solid #C5933A;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: #E6D2C4;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-block: 1.2rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 147, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFDF78;
  transition: var(--transition);
}

.social-circle svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-circle:hover {
  background: var(--gold-gradient);
  color: #0D0704;
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(197, 147, 58, 0.5);
}

.footer-column h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: #D8C3BB;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  padding-block: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: #D8C3BB;
}

.footer-hours-list li strong {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #A69188;
}

/* Yüzen Butonlar (Floating Actions) */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.fab-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.fab-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-phone {
  background: var(--primary);
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: #1C110C;
  color: #FFFFFF;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-bar {
    max-width: 540px;
    margin-inline: auto;
  }

  .floating-badge-1 {
    left: 10px;
  }

  .floating-badge-2 {
    right: 10px;
  }

  .about-grid, .campus-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .values-checklist {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
