/* ══════════════════════════════════════════════════════════
   TEVESSÜM — ana stil dosyası
   Renk paleti: Koyu lacivert + Altın + Kirli beyaz
   ══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #16263a;
  --navy-light: #1e3450;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale:  #f5e9c8;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --text-main:  #1a1a2e;
  --text-sub:   #4a4a6a;
  --text-muted: #8888aa;
  --border:     rgba(201, 168, 76, 0.18);
  --card-bg:    #ffffff;
  --shadow-sm:  0 2px 8px rgba(13, 27, 42, 0.06);
  --shadow-md:  0 8px 32px rgba(13, 27, 42, 0.10);
  --shadow-lg:  0 20px 60px rgba(13, 27, 42, 0.14);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--transition),
              box-shadow 0.4s var(--transition),
              backdrop-filter 0.4s var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.logo-ar {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.logo-divider {
  color: rgba(201,168,76,0.4);
  font-weight: 300;
}
.logo-tr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.025) 40px,
      rgba(201,168,76,0.025) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.025) 40px,
      rgba(201,168,76,0.025) 41px
    );
  animation: patternShift 30s linear infinite;
}

@keyframes patternShift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 82px 82px, -82px 82px; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(22, 38, 58, 0.85) 50%,
    rgba(13, 27, 42, 0.95) 100%
  );
}

/* Floating orbs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero::after {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(30,52,80,0.8), transparent 70%);
  animation: orbFloat 16s ease-in-out infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.2s forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-title-ar {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.35s forwards;
}

.hero-title-sep {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  animation: fadeUp 0.7s var(--transition) 0.45s forwards;
}

.hero-title-tr {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.5s forwards;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.6s forwards;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.75s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.9s forwards;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a8891e 100%);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 1.4s forwards;
  cursor: pointer;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════
   STATS BAND
══════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  flex: 1 1 0%;
  min-width: 150px;
}

.stat-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums; /* Keeps digit widths constant during counter ticks */
}
.stat-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--cream);
}

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

.section-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.tag-light { color: var(--gold-pale); }
.tag-light::before { background: var(--gold-pale); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.about-para {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-sub);
  margin-bottom: 18px;
}
.about-para em { color: var(--text-main); font-style: italic; font-weight: 500; }

.ayah-ref {
  display: inline-block;
  font-size: 0.82em;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 7px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.value-pill {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-sub);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.value-pill:hover {
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ornament */
.about-ornament {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.ornament-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.ornament-ring-1 {
  width: 360px; height: 360px;
  border-color: rgba(201,168,76,0.12);
  animation: spin 60s linear infinite;
}
.ornament-ring-2 {
  width: 280px; height: 280px;
  border-color: rgba(201,168,76,0.2);
  border-style: dashed;
  animation: spin 40s linear infinite reverse;
}
.ornament-ring-3 {
  width: 200px; height: 200px;
  border-color: rgba(201,168,76,0.08);
  animation: spin 80s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ornament-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 50%;
  width: 190px; height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-lg);
}
.ornament-quote-ar {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.ornament-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-sub);
  font-style: italic;
  padding: 0 8px;
}

/* ══════════════════════════════
   SECTIONS AREA
══════════════════════════════ */
.sections-area {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.sections-area::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

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

.section-card {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition), border-color 0.35s;
  cursor: default;
}
.section-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* card accent strips */
.section-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-ilm::before { background: linear-gradient(90deg, #2d5be3, #5b8bee); }
.card-ilm:hover { border-color: rgba(45,91,227,0.25); }

.card-ezgi::before { background: linear-gradient(90deg, #8b2fc9, #b865e8); }
.card-ezgi:hover { border-color: rgba(139,47,201,0.25); }

.card-dergi::before { background: linear-gradient(90deg, #0e8a6e, #1bbf97); }
.card-dergi:hover { border-color: rgba(14,138,110,0.25); }

.card-tefsir::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.card-tefsir:hover { border-color: rgba(201, 168, 76, 0.35); }

.card-more::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.card-more:hover { border-color: var(--border); }

.card-icon-wrap {
  margin-bottom: 20px;
}
.card-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--cream);
}
.card-ilm .card-icon { color: #2d5be3; background: rgba(45,91,227,0.08); }
.card-ezgi .card-icon { color: #8b2fc9; background: rgba(139,47,201,0.08); }
.card-dergi .card-icon { color: #0e8a6e; background: rgba(14,138,110,0.08); }
.card-tefsir .card-icon { color: var(--gold); background: rgba(201,168,76,0.08); }
.card-more .card-icon { color: var(--gold); background: rgba(201,168,76,0.1); }

.card-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-family: 'Inter', monospace;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-sub);
  flex: 1;
}

.card-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap 0.25s, color 0.25s;
  letter-spacing: 0.02em;
}
.card-ilm .card-link:hover { color: #2d5be3; gap: 10px; }
.card-ezgi .card-link:hover { color: #8b2fc9; gap: 10px; }
.card-dergi .card-link:hover { color: #0e8a6e; gap: 10px; }
.card-tefsir .card-link:hover { color: var(--gold); gap: 10px; }

.card-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════
   WHATSAPP GRUBU
══════════════════════════════ */
.whatsapp-invite {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0a1520 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.whatsapp-bg-ornament {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06), transparent),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(18,140,126,0.05), transparent);
  pointer-events: none;
}

.whatsapp-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

.whatsapp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.whatsapp-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}

.whatsapp-action {
  display: flex;
  justify-content: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1bd741 0%, #128c7e 100%);
  color: var(--white);
  padding: 16px 36px;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(18, 140, 126, 0.3);
  transition: all 0.3s var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(18, 140, 126, 0.5);
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

.whatsapp-icon {
  fill: currentColor;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 0.9375rem;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  transition: all 0.25s;
}
.social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--border);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-list a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer-credit {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(201,168,76,0.5) !important;
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
[data-animate="fade-right"] {
  transform: translateX(-28px);
}
[data-animate="fade-left"] {
  transform: translateX(28px);
}
[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-ornament { height: 280px; }
  .ornament-ring-1 { width: 260px; height: 260px; }
  .ornament-ring-2 { width: 200px; height: 200px; }
  .ornament-ring-3 { width: 140px; height: 140px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .cards-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-card { padding: 28px; }
  .hero-actions { gap: 12px; }
  .btn { padding: 12px 24px; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
