/* ============================================
   HAMLE - Ultra Premium Website Styles
   Mat/Kumlu Renk Paleti + Islam Sanatı Estetiği
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Mat/Kumlu Ana Palet */
  --bg-deep: #0A0908;
  --bg-primary: #0F0D0B;
  --bg-secondary: #1A1714;
  --bg-tertiary: #231F1B;
  --bg-card: #1E1B17;

  /* Kumlu Altın Tonları */
  --sand: #C9A96E;
  --sand-light: #D4B896;
  --sand-muted: #A68B5B;
  --sand-dark: #8B7355;
  --sand-glow: rgba(201, 169, 110, 0.15);

  /* Metin Renkleri */
  --cream: #E8DCC8;
  --cream-muted: #C4B8A4;
  --warm-gray: #8B8178;
  --warm-gray-dark: #5C554D;

  /* Accent Renkler */
  --navy: #1B263B;
  --navy-light: #415A77;
  --gold-warm: #E09F3E;
  --teal: #006D77;
  --teal-soft: #83C5BE;
  --coral: #E29578;
  --crimson: #D90429;
  --silver: #8D99AE;

  /* Bordür & Glow */
  --border: rgba(201, 169, 110, 0.1);
  --border-hover: rgba(201, 169, 110, 0.25);
  --glow-sand: 0 0 40px rgba(201, 169, 110, 0.08);

  /* Tipografi */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-arabic: 'Amiri', 'Noto Naskh Arabic', serif;

  /* Spacing */
  --section-padding: clamp(80px, 12vh, 160px);
  --container-max: 1200px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

::selection {
  background: rgba(201, 169, 110, 0.3);
  color: var(--cream);
}

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

a {
  color: var(--sand);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sand-light);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(15, 13, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 109, 119, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 3px;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sand);
  transition: width 0.4s var(--ease-out-expo);
}

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

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

/* Mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* --- Mode Toggle (Day/Night) --- */
.mode-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--warm-gray);
  transition: all 0.3s ease;
  margin-left: 16px;
  flex-shrink: 0;
}

.mode-toggle:hover {
  border-color: var(--border-hover);
  color: var(--sand);
  background: var(--sand-glow);
}

/* In dark mode (default): show moon icon, hide sun */
.mode-icon-sun { display: none; }
.mode-icon-moon { display: block; }

/* In light mode: show sun icon, hide moon */
[data-mode="light"] .mode-icon-sun { display: block; }
[data-mode="light"] .mode-icon-moon { display: none; }

/* Smooth mode transition */
.mode-transitioning,
.mode-transitioning *,
.mode-transitioning *::before,
.mode-transitioning *::after {
  transition: background-color 0.4s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* --- Light Mode Overrides --- */
[data-mode="light"] {
  --bg-deep: #F5F0E8;
  --bg-primary: #EDE8DF;
  --bg-secondary: #E5E0D6;
  --bg-tertiary: #DDD8CE;
  --bg-card: #E8E3DA;

  --cream: #1A1510;
  --cream-muted: #3D362C;

  --warm-gray: #6B6358;
  --warm-gray-dark: #8B8378;

  --border: rgba(139, 115, 85, 0.15);
  --border-hover: rgba(139, 115, 85, 0.3);
  --glow-sand: 0 0 40px rgba(139, 115, 85, 0.1);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Aurora/Gradient mesh background */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-aurora .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.hero-aurora .orb-1 {
  width: 50vmax;
  height: 50vmax;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.4), transparent);
  top: -20%;
  right: -10%;
  animation: drift-1 20s ease-in-out infinite;
}

.hero-aurora .orb-2 {
  width: 40vmax;
  height: 40vmax;
  background: radial-gradient(circle, rgba(0, 109, 119, 0.15), transparent);
  bottom: -15%;
  left: -10%;
  animation: drift-2 25s ease-in-out infinite;
}

.hero-aurora .orb-3 {
  width: 35vmax;
  height: 35vmax;
  background: radial-gradient(circle, rgba(226, 149, 120, 0.08), transparent);
  top: 30%;
  left: 40%;
  animation: drift-3 18s ease-in-out infinite;
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-5vw, 3vh) scale(1.1); }
  66% { transform: translate(3vw, -5vh) scale(0.95); }
}

@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4vw, -4vh) scale(1.05); }
  66% { transform: translate(-3vw, 2vh) scale(0.9); }
}

@keyframes drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4vw, -3vh) scale(1.15); }
}

/* Islamic geometric pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A96E' stroke-width='0.5'%3E%3Crect x='16' y='16' width='48' height='48' /%3E%3Crect x='16' y='16' width='48' height='48' transform='rotate(45 40 40)' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 1;
}

/* Particle Canvas */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: clamp(6px, 2vw, 12px);
  line-height: 1;
  opacity: 0;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}

.hero-slogan {
  font-family: var(--font-arabic);
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--sand);
  letter-spacing: 3px;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  margin-top: clamp(60px, 18vh, 180px);
}

.hero-subtitle {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--warm-gray);
  max-width: 500px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-gray-dark);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal-soft), var(--sand), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section Base Styles --- */
.section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.section-dark {
  background: var(--bg-primary);
}

.section-darker {
  background: var(--bg-deep);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--teal), var(--sand-muted));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--cream-muted);
  line-height: 1.9;
  max-width: 680px;
}

/* Geometric section divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
}

.section-divider .line {
  width: 60px;
  height: 1px;
  background: var(--border);
}

.section-divider .star {
  width: 20px;
  height: 20px;
  opacity: 0.3;
}

/* --- Biz Kimiz Section --- */
.bizkimiz {
  background: var(--bg-primary);
}

.bizkimiz-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.bizkimiz-visual {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

.bizkimiz-card {
  position: absolute;
  width: 280px;
  height: 180px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 24px;
  transition: all 0.7s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bizkimiz-card:nth-child(1) {
  top: 10%;
  left: 5%;
  transform: rotate(-4deg);
}

.bizkimiz-card:nth-child(2) {
  top: 30%;
  right: 5%;
  transform: rotate(3deg);
}

.bizkimiz-card:nth-child(3) {
  bottom: 10%;
  left: 15%;
  transform: rotate(-2deg);
}

.bizkimiz-card:hover {
  border-color: var(--border-hover);
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 0 30px rgba(0, 109, 119, 0.08), var(--glow-sand);
}

/* Subtle accent border per card */
.bizkimiz-card:nth-child(1) { border-left: 2px solid rgba(0, 109, 119, 0.2); }
.bizkimiz-card:nth-child(2) { border-left: 2px solid rgba(226, 149, 120, 0.2); }
.bizkimiz-card:nth-child(3) { border-left: 2px solid rgba(224, 159, 62, 0.2); }

.bizkimiz-card .card-icon {
  font-size: 24px;
}

.bizkimiz-card .card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}

.bizkimiz-card .card-desc {
  font-size: 13px;
  color: var(--warm-gray);
}

/* --- Vizyon & Misyon Section --- */
.vizyon {
  background: var(--bg-deep);
}

.vizyon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.vizyon-item {
  position: relative;
  padding: clamp(40px, 5vw, 64px);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  overflow: hidden;
}

.vizyon-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--sand-muted), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vizyon-item:hover::before {
  opacity: 1;
}

/* Subtle corner accent */
.vizyon-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at bottom right, rgba(0, 109, 119, 0.06), transparent 70%);
  pointer-events: none;
}

.vizyon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 109, 119, 0.1);
  border: 1px solid rgba(0, 109, 119, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--teal-soft);
  font-size: 20px;
  transition: all 0.4s ease;
}

.vizyon-item:hover .vizyon-icon {
  background: rgba(0, 109, 119, 0.15);
  border-color: rgba(131, 197, 190, 0.3);
}

.vizyon-item h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.vizyon-item p {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.8;
}

/* --- Neler Yapiyoruz (Display Cards) --- */
.neler-yapiyoruz {
  background: var(--bg-primary);
}

/* --- Sticky Features (Neler Yapiyoruz) --- */
.sticky-features {
  background: var(--bg-primary);
  height: 300vh;
  position: relative;
}

.sticky-features-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  gap: clamp(40px, 6vw, 100px);
  overflow: hidden;
}

.sf-sidebar {
  display: flex;
  flex-direction: column;
}

.sf-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  --sf-progress: 0;
}

.sf-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--border);
}

.sf-steps::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  margin-left: -0.5px;
  background: linear-gradient(to bottom, var(--teal), var(--coral), var(--crimson), var(--gold-warm));
  transform-origin: top;
  transform: scaleY(var(--sf-progress, 0));
  transition: transform 0.4s ease;
  z-index: 1;
}

.sf-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}

.sf-step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--warm-gray-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.sf-step-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--warm-gray-dark);
  transition: all 0.4s ease;
  white-space: nowrap;
}

.sf-step.active .sf-step-num {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--bg-deep);
}

.sf-step.active .sf-step-label {
  color: var(--cream);
  font-weight: 600;
}

.sf-step.active[data-index="0"] .sf-step-num { background: var(--teal); border-color: var(--teal); }
.sf-step.active[data-index="1"] .sf-step-num { background: var(--coral); border-color: var(--coral); }
.sf-step.active[data-index="2"] .sf-step-num { background: var(--crimson); border-color: var(--crimson); color: #fff; }
.sf-step.active[data-index="3"] .sf-step-num { background: var(--gold-warm); border-color: var(--gold-warm); }

.sf-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.sf-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
}

.sf-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s 0s;
}

.sf-big-num {
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 900;
  color: rgba(201, 169, 110, 0.04);
  line-height: 0.85;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.sf-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
}

.sf-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
  position: relative;
}

.sf-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand-muted);
  position: relative;
}

.sf-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand-muted);
  vertical-align: middle;
  margin-right: 10px;
}

.sf-panel[data-index="0"] .sf-tag { color: var(--teal-soft); }
.sf-panel[data-index="0"] .sf-tag::before { background: var(--teal); }
.sf-panel[data-index="1"] .sf-tag { color: var(--coral); }
.sf-panel[data-index="1"] .sf-tag::before { background: var(--coral); }
.sf-panel[data-index="2"] .sf-tag { color: var(--crimson); }
.sf-panel[data-index="2"] .sf-tag::before { background: var(--crimson); }
.sf-panel[data-index="3"] .sf-tag { color: var(--gold-warm); }
.sf-panel[data-index="3"] .sf-tag::before { background: var(--gold-warm); }

@media (max-width: 768px) {
  .sticky-features {
    height: auto;
    padding: 80px 0;
  }

  .sticky-features-pin {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .sf-sidebar {
    display: none;
  }

  .sf-content {
    height: auto;
    flex-direction: column;
    gap: 80px;
  }

  .sf-panel {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    transition: none;
  }

  .sf-big-num {
    font-size: 100px;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-bottom: -20px;
  }

  .sf-title {
    font-size: clamp(28px, 8vw, 44px);
  }
}

/* --- Video Section (Button Carousel) --- */
.video-section {
  background: var(--bg-deep);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.video-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.video-nav {
  display: flex;
  gap: 12px;
}

.video-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-nav-btn:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--bg-deep);
}

.video-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.video-nav-btn:disabled:hover {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--cream);
}

.video-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(20px, 4vw, 48px);
}

.video-scroll-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card {
  position: relative;
  width: clamp(300px, 40vw, 480px);
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.4s var(--ease-out-expo);
}

.video-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.video-card .play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-deep);
  margin-left: 3px;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--sand);
}

.video-card .video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10, 9, 8, 0.9));
}

.video-card .video-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.video-card .video-info span {
  font-size: 12px;
  color: var(--warm-gray);
}

/* --- Hocalar Ne Dedi (Timeline) --- */
.hocalar {
  background: var(--bg-primary);
}

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

.timeline-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border);
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, var(--sand), var(--sand-muted));
  border-radius: 2px;
  transition: height 0.1s linear;
}

.timeline-item {
  position: relative;
  padding: 0 0 64px 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--warm-gray-dark);
  transition: all 0.4s ease;
  z-index: 2;
  transform: translateX(-1px);
}

.timeline-item.active .timeline-dot {
  border-color: var(--sand);
  background: var(--sand);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.timeline-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}

.timeline-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  color: var(--teal-soft);
  font-family: var(--font-display);
}

.timeline-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--sand);
}

.timeline-author-info {
  display: flex;
  flex-direction: column;
}

.timeline-author-info .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}

.timeline-author-info .title {
  font-size: 12px;
  color: var(--warm-gray);
}

/* --- Marquee / Infinite Scroll --- */
.marquee-section {
  background: var(--bg-secondary);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.marquee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--teal) 30%, var(--sand-muted) 50%, var(--coral) 70%, transparent 90%);
  opacity: 0.4;
}

.marquee {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--warm-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand-muted);
}

/* Alternating accent dots */
.marquee-item:nth-child(8n+1) .dot { background: var(--teal-soft); }
.marquee-item:nth-child(8n+2) .dot { background: var(--gold-warm); }
.marquee-item:nth-child(8n+3) .dot { background: var(--coral); }
.marquee-item:nth-child(8n+4) .dot { background: var(--sand); }
.marquee-item:nth-child(8n+5) .dot { background: var(--teal-soft); }
.marquee-item:nth-child(8n+6) .dot { background: var(--gold-warm); }
.marquee-item:nth-child(8n+7) .dot { background: var(--coral); }
.marquee-item:nth-child(8n+8) .dot { background: var(--sand); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Sosyal Medya --- */
.sosyal-medya {
  background: var(--bg-deep);
}

.sosyal-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.sosyal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

.sosyal-icon svg {
  width: 32px;
  height: 32px;
  color: var(--warm-gray);
  transition: color 0.4s ease, transform 0.4s ease;
}

.sosyal-icon:hover svg {
  transform: translateY(-3px);
}

.sosyal-icon[data-platform="youtube"]:hover svg  { color: #FF0000; }
.sosyal-icon[data-platform="instagram"]:hover svg { color: #E1306C; }
.sosyal-icon[data-platform="tiktok"]:hover svg    { color: #00F2EA; }
.sosyal-icon[data-platform="x"]:hover svg         { color: #FFFFFF; }

/* --- Footer --- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--sand-muted), var(--coral), transparent);
  opacity: 0.3;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--warm-gray-dark);
}

/* --- Text Shimmer (21st.dev / Motion Primitives style) --- */
.text-shimmer {
  display: inline-block;
  background: linear-gradient(
    110deg,
    var(--cream) 30%,
    var(--teal-soft) 45%,
    var(--sand) 55%,
    var(--cream) 70%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Animated Testimonials (Aceternity Stacked Cards Style) --- */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: 420px;
}

.testimonial-image-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
}

.testimonial-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  transform-origin: center bottom;
  will-change: transform, opacity;
  opacity: 0;
}

.testimonial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 12px;
  background:
    linear-gradient(transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 2;
}

.testimonial-image-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.6);
}

.testimonial-image-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.6);
}

.testimonial-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  color: var(--sand);
  opacity: 0.15;
  background: var(--bg-card);
  user-select: none;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.testimonial-text-block {
  flex: 1;
}

.testimonial-quote-area {
  min-height: 120px;
  margin-bottom: 32px;
}

.testimonial-quote-area .word {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--cream-muted);
  line-height: 1.7;
  font-style: italic;
  opacity: 0;
  transform: translateY(5px);
  filter: blur(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
  margin-right: 5px;
}

.testimonial-quote-area .word.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.testimonial-author-area {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-author-area.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-author-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.testimonial-author-title {
  font-size: 14px;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}

.testimonial-nav {
  display: flex;
  gap: 16px;
  padding-top: 24px;
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  border-color: var(--sand-muted);
  background: var(--bg-tertiary);
}

#testimonial-prev:hover svg {
  transform: rotate(12deg);
}

#testimonial-next:hover svg {
  transform: rotate(-12deg);
}

.testimonial-nav-btn svg {
  transition: transform 0.3s ease;
}

.testimonial-nav-btn:active {
  transform: scale(0.92);
}

@media (max-width: 768px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-image-wrap {
    max-width: 200px;
    margin-bottom: 24px;
  }

  .testimonial-content {
    min-height: auto;
  }

  .testimonial-nav {
    justify-content: center;
  }
}

/* --- Gooey Text --- */
.gooey-text-wrapper {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: url(#gooey-filter);
}

.gooey-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-soft), var(--sand), var(--gold-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
  text-align: center;
}

/* --- Typewriter Cursor --- */
.typewriter-cursor {
  display: inline-block;
  color: var(--sand);
  font-weight: 100;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

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

/* --- Animate on scroll (GSAP handles opacity/transform) --- */
/* .reveal classes are animated by GSAP ScrollTrigger in app.js */

/* --- Selcuklu Yildizi SVG --- */
.seljuk-star {
  display: inline-block;
}

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

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .section {
    padding: clamp(48px, 8vw, 80px) 0;
  }

  .bizkimiz-wrapper {
    grid-template-columns: 1fr;
  }

  .bizkimiz-visual {
    display: none;
  }

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

  .container-scroll-wrapper {
    height: 60rem;
  }

}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mode-toggle {
    position: static;
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-right: 12px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 9, 8, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 998;
    animation: menuFadeIn 0.3s ease;
  }

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

  /* Hamburger stays on top of overlay so it can close */
  .nav-toggle {
    position: relative;
    z-index: 1000;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links.active a {
    font-size: 20px;
    color: var(--cream);
    padding: 12px 32px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-links.active a:active {
    color: var(--sand);
  }

  /* Mode toggle stays on top too */
  .mode-toggle {
    z-index: 1000;
  }

  /* Hero — letter-spacing handled by clamp in base rule */

  .hero-scroll-indicator {
    bottom: 24px;
  }

  .hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
  }

  /* Sections general */
  .section {
    padding: clamp(40px, 6vw, 64px) 0;
  }

  .container {
    padding: 0 20px;
  }

  .section-label {
    padding-left: 36px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  .section-label::before {
    width: 24px;
  }

  .section-title {
    margin-bottom: 16px;
  }

  /* Marquee */
  .marquee {
    gap: 24px;
  }

  .marquee-item {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .marquee-section {
    padding: 20px 0;
  }

  /* Vizyon */
  .vizyon-grid {
    grid-template-columns: 1fr;
  }

  .vizyon-item {
    padding: clamp(28px, 5vw, 40px);
  }

  /* Bento grid — already handled in bento @media above */

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

  /* Video cards */
  .video-card {
    width: clamp(260px, 75vw, 400px);
  }

  .video-carousel {
    padding: 0 20px;
  }

  /* Container scroll */
  .container-scroll-wrapper {
    height: 40rem;
    padding: 16px;
  }

  .container-scroll-card-inner {
    height: clamp(240px, 50vw, 400px);
  }


  /* Gooey text */
  .gooey-text-wrapper {
    height: 72px;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Timeline */
  .timeline {
    padding-left: 32px;
  }

  .timeline-dot {
    left: -32px;
  }
}

/* ── Small phone (≤480px) ── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .section-text {
    font-size: 14px;
  }

  /* Sticky features (Neler Yapıyoruz) */
  .sticky-features {
    padding: 48px 0;
  }

  .sf-content {
    gap: 48px;
  }

  .sf-big-num {
    font-size: 72px;
  }

  .sf-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .sf-desc {
    font-size: 14px;
  }

  .sf-tag {
    font-size: 11px;
  }

  /* Vizyon */
  .vizyon-item h3 {
    font-size: clamp(20px, 5vw, 28px);
  }

  .vizyon-item p {
    font-size: 14px;
  }

  /* Testimonials */
  .testimonial-image-wrap {
    max-width: 180px;
  }

  .testimonial-quote-area {
    font-size: clamp(16px, 4vw, 20px);
  }

  /* Video */
  .video-card {
    width: calc(100vw - 48px);
  }

  .video-info h4 {
    font-size: 14px;
  }

  /* Container scroll */
  .container-scroll-wrapper {
    height: 32rem;
  }

  /* Marquee */
  .marquee {
    gap: 16px;
  }

  .marquee-item {
    font-size: 11px;
    gap: 8px;
  }

  /* Sosyal */
  .sosyal-grid {
    grid-template-columns: 1fr;
  }

  .sosyal-card {
    flex-direction: row;
    padding: 20px 24px;
    text-align: left;
  }

  .sosyal-icon-wrap {
    margin-bottom: 0;
    margin-right: 16px;
    width: 48px;
    height: 48px;
  }

  .sosyal-icon-wrap svg {
    width: 22px;
    height: 22px;
  }

  /* Footer */
  .footer-brand p {
    font-size: 13px;
  }
}

/* --- Container Scroll (3D Perspective Rotation) --- */
.container-scroll-section {
  background: var(--bg-deep);
  padding: 0;
}

.container-scroll-wrapper {
  height: 80rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.container-scroll-inner {
  padding: 40px 0;
  width: 100%;
  position: relative;
}

.container-scroll-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
}

.container-scroll-card {
  max-width: 900px;
  margin: -48px auto 0;
  width: 100%;
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
  transform-origin: center center;
}

.container-scroll-card-inner {
  width: 100%;
  height: clamp(300px, 40vw, 560px);
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-secondary);
}

/* --- Stacked Display Cards (Aceternity Style) --- */

/* --- Utility --- */
.text-sand { color: var(--sand); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--warm-gray); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   MOBILE PERFORMANCE & UX OVERRIDES
   (placed last to properly override base styles)
   ============================================ */

/* ── Mobile Performance (≤768px) ── */
@media (max-width: 768px) {
  /* Reduce aurora orb blur — saves significant GPU */
  .hero-aurora .orb {
    filter: blur(80px);
    opacity: 0.15;
  }

  /* Particle canvas on mobile — full visibility */
  #particle-canvas {
    opacity: 1;
  }

  /* Disable expensive gooey SVG filter */
  .gooey-text-wrapper {
    filter: none !important;
  }

  /* Disable shimmer animation */
  .text-shimmer {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--sand);
  }

  /* Disable blur filter on testimonial words — use simple fade */
  .testimonial-quote-area .word {
    filter: none !important;
  }

  .nav-links.active a::after {
    display: none;
  }

  /* Tighter hero spacing on mobile */
  .hero-slogan {
    margin-top: clamp(40px, 12vh, 100px);
  }

  .hero-content {
    gap: 16px;
  }

  /* Slightly more breathing room in sections */
  .section {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  /* Video carousel — touch devices */
  .video-carousel {
    padding: 0 20px;
  }

  .video-card:hover {
    transform: none;
    box-shadow: none;
  }

  .video-card:hover img {
    transform: none;
  }

  .video-nav-btn {
    width: 40px;
    height: 40px;
  }

  /* Container scroll: auto height (no scrub animation on mobile) */
  .container-scroll-wrapper {
    height: auto !important;
    min-height: 50vh;
  }

  /* Remove hover-only effects on touch devices */
  .vizyon-item:hover::before {
    opacity: 0;
  }

  .bizkimiz-card:hover {
    transform: none;
    box-shadow: none;
  }

  .sosyal-icon:hover svg {
    transform: none;
  }

  .testimonial-nav-btn:hover {
    background: var(--bg-card);
    border-color: var(--border);
  }

  #testimonial-prev:hover svg,
  #testimonial-next:hover svg {
    transform: none;
  }

  .testimonials-layout {
    gap: clamp(24px, 4vw, 40px);
  }

  .testimonial-nav-btn {
    width: 44px;
    height: 44px;
  }

  .mode-toggle {
    width: 36px;
    height: 36px;
  }
}

/* ── Small Phone Performance (≤480px) ── */
@media (max-width: 480px) {
  /* Particle canvas on small phones — full visibility */
  #particle-canvas {
    opacity: 1;
  }

  /* Hero: larger title, tighter layout */
  .hero-title {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: clamp(4px, 1.5vw, 8px);
  }

  .hero-content {
    gap: 12px;
    padding: 0 16px;
  }

  .hero-slogan {
    margin-top: clamp(24px, 6vh, 48px);
    letter-spacing: 1.5px;
    font-size: clamp(13px, 3.5vw, 16px);
  }

  .hero-subtitle {
    font-size: 12px;
  }

  /* Compact vizyon cards */
  .vizyon-item {
    padding: 24px 20px;
  }

  /* Smaller testimonial stack */
  .testimonial-image-wrap {
    max-width: 160px;
  }

  /* Smaller play button */
  .video-card .play-btn {
    width: 48px;
    height: 48px;
  }

  .video-card .video-info {
    padding: 16px;
  }

  /* Video nav buttons */
  .video-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Tighter social icons */
  .sosyal-icons {
    gap: 20px;
  }

  .sosyal-icon {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sosyal-icon svg {
    width: 28px;
    height: 28px;
  }

  /* Compact footer */
  .footer {
    padding: 40px 0 24px;
  }

  .footer-top {
    margin-bottom: 32px;
  }

  /* Gooey text smaller */
  .gooey-text-wrapper {
    height: 56px;
  }
}

/* ── Landscape Mobile ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    gap: 8px;
    padding: 0 24px;
  }

  .hero-slogan {
    margin-top: clamp(16px, 4vh, 40px);
  }

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

  .section {
    padding: clamp(32px, 6vw, 48px) 0;
  }
}

/* ── Accessibility: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-aurora .orb,
  .marquee,
  .text-shimmer,
  .scroll-line,
  .typewriter-cursor {
    animation: none !important;
  }
}
