@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600&display=swap');

:root {
  --bg-white: #ffffff;
  --bg-offwhite: #f9fafb;
  --bg-dark: #0f0f11;

  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --text-light: #777777;
  --text-white: #ffffff;

  --accent-orange: #f25c05;
  --accent-orange-light: rgba(242, 92, 5, 0.05);

  --border-light: #e8e8e8;
  --border-dark: #222222;

  --font-main: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Specs */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: #2b2b2b;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-orange);
}

/* Dropdown Menu */
.dropdown-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 300px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1010;
}

.dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.dropdown-link:hover {
  background: var(--bg-offwhite);
}

.dropdown-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dropdown-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* HERO SECTION (DARK BACKGROUND FOR HOME HERO) */
.hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  background: var(--bg-white);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-dark {
  background: #0d0e11;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.hero-dark .hero-title {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-dark .hero-subtitle {
  color: #d1d5db;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image-box {
  width: 100%;
  max-width: 480px;
  max-height: 580px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  background: var(--bg-offwhite);
  margin: 0 auto;
}

.hero-dark .hero-image-box {
  border-color: #22252e;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background: #15171e;
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: cover;
  display: block;
}

.btn-orange {
  background: var(--accent-orange);
  color: #ffffff;
}

.btn-orange:hover {
  background: #d84f00;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-white {
  background: #ffffff;
  color: var(--text-dark);
}

.btn-white:hover {
  background: #e5e5e5;
  color: var(--text-dark);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--text-dark);
}


/* LOGO CAROUSEL (LUXURY MONOCHROME STRIP) */
.logo-carousel-section {
  padding: 3.2rem 0;
  background: #08080a;
  border-top: 1px solid #1a1a22;
  border-bottom: 1px solid #1a1a22;
  overflow: hidden;
}

.logo-carousel-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666673;
  margin-bottom: 2.2rem;
}

.logo-carousel-track-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  animation: logoScroll 32s linear infinite;
  white-space: nowrap;
}

.logo-carousel-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  opacity: 0.6;
  filter: brightness(0.85);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #d8d8e0;
}

.logo-item svg {
  height: 100%;
  width: auto;
  max-width: 170px;
  display: block;
}

.logo-item img {
  height: 100%;
  width: auto;
  max-width: 170px;
  display: block;
  filter: brightness(0) invert(0.85);
  transition: filter 0.35s ease;
}

.logo-item:hover {
  opacity: 1;
  filter: brightness(1.2);
  transform: scale(1.05);
  color: #ffffff;
}

.logo-item:hover img {
  filter: brightness(0) invert(1);
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-carousel-section {
    padding: 2.4rem 0;
  }
  .logo-carousel-track {
    gap: 2.8rem;
  }
  .logo-item {
    height: 32px;
  }
  .logo-item svg,
  .logo-item img {
    max-width: 120px;
  }
}

/* BENİ ANLATANLAR (TESTIMONIALS) */
.testimonials-section {
  background: #ffffff;
  padding: 6.5rem 0;
}

.testimonial-carousel-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
}

.testimonial-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 0.5rem;
}


.testimonial-card {
  background: #f9f8f5;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border-color: #d8d8d8;
}

.testimonial-quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent-orange);
  font-family: serif;
  margin-bottom: 0.8rem;
}

.testimonial-text {
  font-size: 1.02rem;
  color: #333333;
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 400;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
}

.testimonial-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.testimonial-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-author-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* RÖPORTAJLAR SECTION */
.roportajlar-section {
  background: #ffffff;
  padding: 6.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.roportaj-hero-card {
  background: #f7f6f2;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width: 992px) {
  .roportaj-hero-card {
    grid-template-columns: 1fr;
  }
}

.roportaj-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

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

.roportaj-content {
  padding: 3.5rem 3rem;
}

/* YOUTUBE VIDEO GRID FOR MEDYA PAGE (REFINED & ELEGANT 3-COLUMN) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.video-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  border-color: #d5d5d5;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  background: #0d0e11;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-body {
  padding: 1.35rem 1.25rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.video-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.video-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: auto;
}



/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 9999px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-black {
  background: var(--bg-dark);
  color: var(--text-white);
}

.btn-black:hover {
  background: #2a2a2e;
  color: var(--text-white);
  transform: translateY(-1px);
}

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

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--text-white);
}

/* Statement Section */
.statement-section {
  background: #ffffff;
  color: var(--text-dark);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.statement-title {
  color: var(--text-dark);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 880px;
  margin: 0 auto 1.4rem auto;
}

.statement-quote {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto;
}

/* Feature Cards Grid */
.section-padding {
  padding: 4.2rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* Responsive Grid Helper Classes for Clean Mobile Stacking */
.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.4rem 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-color: var(--text-dark);
}

.feature-card-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.feature-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.feature-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

.feature-card-link {
  margin-top: auto;
  padding-top: 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.feature-card:hover .feature-card-link {
  color: var(--accent-orange);
}

/* Pre-Footer Newsletter / CTA Section */
.footer-cta {
  background: #f7f6f2;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.footer-cta-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.footer-cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.95rem 1.4rem;
  border-radius: 9999px;
  border: 1px solid var(--border-light);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  background: #ffffff;
}

.newsletter-input:focus {
  border-color: var(--text-dark);
}

/* Rich Main Footer */
.footer-main {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 1.2rem;
  max-width: 380px;
}

.footer-col-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  color: #999999;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: #888888;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

@media (max-width: 992px) {
  .section-padding {
    padding: 3rem 0;
  }
  .statement-section {
    padding: 2.5rem 0;
  }
  .roportajlar-section, .testimonials-section {
    padding: 2.8rem 0 !important;
  }
  .hero-grid, .cards-grid, .footer-cta-grid, .footer-grid, .grid-2-col, .grid-3-col {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .feature-card {
    grid-column: span 1 !important;
    padding: 2rem 1.5rem;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    background: var(--bg-offwhite);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: var(--text-dark);
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
  }
  .mobile-toggle:hover, .mobile-toggle:active {
    background: #ebe9e2;
    border-color: #d0d0d0;
    transform: scale(0.96);
  }
  .mobile-toggle svg {
    display: block;
    width: 22px;
    height: 22px;
    stroke: var(--text-dark);
  }
  .newsletter-form {
    flex-direction: column;
  }
  .hero-image-box {
    max-width: 100%;
    max-height: 420px;
  }
  .header {
    height: 70px;
  }
  .logo-img {
    height: 42px;
  }
  .page-hero {
    padding-top: calc(70px + 2rem) !important;
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: 92%;
    padding: 0;
  }
  .hero-title {
    font-size: 1.85rem !important;
  }
  .statement-title {
    font-size: 1.45rem !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .mobile-drawer {
    width: min(320px, 86vw);
  }
}

@media (min-width: 993px) {
  .mobile-toggle {
    display: none;
  }
}

/* Header Scrolled */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.98);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(-340px);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
}

.drawer-close:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0;
  margin: 0;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.drawer-link:hover, .drawer-link.active {
  color: var(--accent-orange);
}.drawer-submenu {
  list-style: none !important;
  padding: 0.4rem 0 0.2rem 1rem !important;
  margin: 0.3rem 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  border-left: 2px solid var(--border-light) !important;
}

.drawer-submenu li {
  list-style: none !important;
}

.drawer-sublink {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.15s ease !important;
  display: block !important;
}

.drawer-sublink:hover {
  color: var(--accent-orange) !important;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.drawer-contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.drawer-email {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none !important;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.drawer-socials {
  display: flex;
  gap: 1.2rem;
}

.drawer-socials a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

.drawer-socials a:hover {
  color: var(--accent-orange);
}

}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Inner Page Hero (Header çakışmasını önlemek için) */
.page-hero {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 3.5rem;
  background: var(--bg-offwhite);
  border-bottom: 1px solid var(--border-light);
}

.page-hero-label {
  display: inline-block;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}


/* RICH FOOTER STYLES */
.footer-cta {
  background: #f7f6f2;
  border-top: 1px solid var(--border-light);
  padding: 5.5rem 0;
}

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

.footer-cta-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.footer-cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.95rem 1.4rem;
  border-radius: 9999px;
  border: 1px solid var(--border-light);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  background: #ffffff;
}

.footer-main {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 5.5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-brand p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 1.2rem;
  max-width: 380px;
}

.footer-col-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  list-style: none;
}

.footer-links a {
  color: #999999;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
  font-size: 0.88rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: #888888;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.full-interview-block {
  scroll-margin-top: 100px;
}

/* ==========================================================================
   INTERVIEW MODAL SYSTEM (LUXURY EDITORIAL READER)
   ========================================================================== */
.interview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.interview-modal.open {
  opacity: 1;
  visibility: visible;
}

.interview-modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 960px;
  max-height: 88vh;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.interview-modal.open .interview-modal-container {
  transform: translateY(0);
}

.interview-modal-header {
  padding: 1.2rem 2.2rem;
  background: #f9fafb;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.interview-modal-badge {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
}

.interview-modal-close {
  background: #eef0f2;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.2s ease;
}

.interview-modal-close:hover {
  background: #111;
  color: #fff;
}

.interview-modal-body {
  padding: 2.2rem 2.5rem;
  overflow-y: auto;
  line-height: 1.75;
  color: #222222;
}

.interview-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .interview-modal-grid {
    grid-template-columns: 1fr;
  }
}

.interview-modal-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  display: block;
  cursor: pointer;
}

.interview-modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 0.8rem;
}

.interview-modal-subhead {
  font-size: 1.05rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #eee;
}

.interview-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: #111;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--accent-orange);
  padding-left: 0.8rem;
}

.interview-answer {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.interview-section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Form Alert & Feedback Styles */
.form-alert {
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  animation: fadeInDown 0.3s ease;
}

.form-alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.form-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-alert-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .full-interview-block {
    padding: 1.8rem 1.2rem !important;
    border-radius: 16px !important;
  }
  .interview-modal-body {
    padding: 1.5rem 1.2rem !important;
  }
  .interview-modal-title {
    font-size: 1.4rem !important;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .testimonial-card {
    padding: 2rem 1.4rem !important;
  }
  .page-hero h1 {
    font-size: 2rem !important;
  }
}


