#preloader,
.hamburger {
  flex-direction: column;
}
#navbar,
.mobile-menu {
  top: 0;
  left: 0;
  right: 0;
}
#hero,
.about-img-wrap,
.form-group,
.nav-links a,
.overview-img-wrap,
section {
  position: relative;
}
#hero,
#preloader {
  background: var(--navy);
}
.hero-h1,
.hero-stat-num,
.mobile-menu a,
.nav-logo,
.preloader-logo,
.section-h2 {
  font-family: "Cormorant Garamond", serif;
}
.about-grid,
.hero-card,
.hero-content,
.overview-grid {
  grid-template-columns: 1fr 1fr;
}
.contact-info-label,
.cta-eyebrow,
.hero-eyebrow,
.hero-scroll,
.hero-stat-label,
.nav-links a,
.preloader-text,
.section-label {
  text-transform: uppercase;
}
.footer-social-btn,
a {
  text-decoration: none;
}
.form-group label,
.hamburger span,
.hero-h1 em,
.wave-divider svg,
img {
  display: block;
}
body,
html,
img {
  max-width: 100%;
}
:root {
  /* ===== Marka Renk Paleti — MY Otel Danışmanlık ===== */
  /* Ana palet: #d7b46a (altın) · #343a40 (antrasit) · #ededed (açık gri) */
  --navy: #2c3136;        /* En koyu antrasit (hero/preloader zemini) */
  --navy-mid: #343a40;    /* Ana koyu ton (palet) */
  --navy-light: #424954;  /* Açık antrasit (degrade/kart vurguları) */
  --gold: #d7b46a;        /* Ana altın aksan (palet) */
  --gold-light: #e3c889;  /* Açık altın (hover/parlama) */
  --gold-pale: #f2e6c8;   /* Soluk altın (ince arka plan tonu) */
  --teal: #b08a4a;        /* İkincil bronz aksan — açık zeminde okunur */
  --teal-light: #cda55f;  /* Açık bronz — koyu zemin/degradeler için */
  --cream: #ededed;       /* Açık gri arka plan (palet) */
  --white: #ffffff;
  --text-dark: #343a40;   /* Ana metin rengi (palet) */
  --text-mid: #5a6169;    /* İkincil metin (orta gri) */
  --text-light: #8a9099;  /* Pasif metin (açık gri) */
  --shadow-sm: 0 4px 24px rgba(52, 58, 64, 0.08);
  --shadow-md: 0 8px 48px rgba(52, 58, 64, 0.14);
  --shadow-lg: 0 24px 80px rgba(52, 58, 64, 0.22);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}
a {
  color: inherit;
}
ul {
  list-style: none;
}
#navbar,
#preloader,
#scrollTop,
.mobile-menu {
  position: fixed;
}
#preloader {
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: 0.8s 0.3s forwards fadeInUp;
}
.blog-card-link:hover,
.footer-logo-text span,
.framework-header .section-label,
.mobile-menu a:hover,
.nav-logo span,
.preloader-logo span,
.why-header .section-label {
  color: var(--gold);
}
.preloader-track {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--teal-light));
  border-radius: 2px;
  animation: 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards preload;
}
.preloader-text {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
  animation: 0.8s 0.5s forwards fadeInUp;
  opacity: 0;
}
.hero-content,
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
}
@keyframes preload {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#navbar {
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(52, 58, 64, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}
.nav-container {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.hamburger,
.mobile-menu,
.modules-header .section-label::before,
.newsletter-box .section-label::before,
.related-header .section-label::before,
.services-header .section-label::before,
.testimonials-header .section-label::before {
  display: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.featured-post .blog-card-link:hover,
.mobile-menu a,
.module-card:hover .module-h3,
.nav-links a:hover,
.section-h2.light,
.service-card:hover .service-h3 {
  color: var(--white);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 20px rgba(215, 180, 106, 0.35);
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(215, 180, 106, 0.5) !important;
}
.hamburger {
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
  bottom: 0;
  background: rgba(52, 58, 64, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&amp;q=80");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s;
}
.hero-bg.loaded {
  transform: scale(1);
}
.hero-overlay {
  background: linear-gradient(
    125deg,
    rgba(52, 58, 64, 0.92) 0,
    rgba(52, 58, 64, 0.7) 50%,
    rgba(30, 127, 142, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 4rem;
  display: grid;
  align-items: center;
  gap: 4rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: 0.8s 0.6s forwards fadeInUp;
}
.hero-eyebrow i {
  font-size: 1rem;
}
.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: 0.9s 0.8s forwards fadeInUp;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: 0.9s 1s forwards fadeInUp;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: 0.9s 1.2s forwards fadeInUp;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-primary {
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  letter-spacing: 0.02em;
}
.btn-primary:hover,
.still-questions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.5);
}
.btn-secondary {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.featured-post .blog-card-link,
.footer-copy-main a:hover,
.hero-stat-num,
.section-h2.gold em,
.service-card:hover .service-link {
  color: var(--gold-light);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.8);
}
.hero-right {
  opacity: 0;
  animation: 1s 0.9s forwards fadeInRight;
}
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}
.hero-stat:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
}
.hero-stat-num {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}
.hero-stat-icon {
  font-size: 1.4rem;
  color: var(--teal-light);
  margin-bottom: 0.6rem;
}
.section-wrap,
.testimonials-header .section-sub {
  margin: 0 auto;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  letter-spacing: 0.15em;
  z-index: 2;
  animation: 1s 1.5s forwards fadeInUp;
  opacity: 0;
  cursor: pointer;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: 2s infinite scrollPulse;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.section-wrap {
  max-width: 1280px;
  padding: 0 2rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--teal);
}
.section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-h2 em {
  font-style: italic;
  color: var(--teal);
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}
.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}
#about,
#overview,
#testimonials {
  padding: 7rem 0;
  background: var(--cream);
}
.about-grid,
.overview-grid {
  display: grid;
  gap: 5rem;
  align-items: center;
}
.about-img,
.overview-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img,
.overview-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.about-img:hover img,
.overview-img:hover img {
  transform: scale(1.04);
}
.about-img-badge,
.overview-img-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.about-img-badge i,
.overview-img-badge i {
  color: var(--gold);
  font-size: 1.2rem;
}
.about-deco,
.overview-deco {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  opacity: 0.15;
}
.about-deco-2,
.overview-deco-2 {
  position: absolute;
  bottom: 4rem;
  left: -3rem;
  width: 120px;
  height: 120px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  opacity: 0.12;
}
.about-intro,
.overview-intro {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.about-text,
.overview-text {
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.counters,
.exec-counters,
.sales-counters,
.scale-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--navy);
  border-radius: 20px;
}
.counter-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.5rem auto;
}
#contact,
#modules,
#services {
  padding: 7rem 0;
  background: var(--white);
}
.modules-header,
.services-header,
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.modules-header .section-label,
.newsletter-box .section-label,
.related-header .section-label,
.services-header .section-label,
.testimonials-header .section-label {
  justify-content: center;
}
.modules-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.module-card,
.service-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(52, 58, 64, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.module-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.blog-card:hover,
.module-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.module-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}
.module-card > *,
.service-card > * {
  position: relative;
  z-index: 1;
}
.module-icon,
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(30, 127, 142, 0.12)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--teal);
  transition: var(--transition);
}
.module-card:hover .module-icon,
.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}
.module-num,
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(52, 58, 64, 0.09);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  transition: color 0.4s;
}
.framework-h4,
.module-h3,
.service-h3,
.testimonial-quote,
.why-h4 {
  font-family: "DM Serif Display", serif;
}
.module-card:hover .module-num,
.service-card:hover .service-num {
  color: rgba(255, 255, 255, 0.05);
}
.module-h3,
.service-h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.4s;
}
.module-p,
.service-p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}
.module-card:hover .module-p,
.service-card:hover .service-p {
  color: rgba(255, 255, 255, 0.55);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.service-link i {
  transition: transform 0.3s;
}
.blog-card-link:hover i,
.service-card:hover .service-link i {
  transform: translateX(4px);
}
#framework,
#why {
  padding: 7rem 0;
  background: var(--navy);
  overflow: hidden;
}
.framework-deco,
.why-deco {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(30, 127, 142, 0.12) 0,
    transparent 70%
  );
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.framework-header,
.why-header {
  margin-bottom: 4rem;
}
.blog-hero-content .section-label::before,
.framework-header .section-label::before,
.why-header .section-label::before {
  background: var(--gold);
}
.framework-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.framework-item,
.why-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
}
.framework-item:hover,
.why-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-5px);
}
.framework-icon,
.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15),
    rgba(30, 127, 142, 0.15)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.framework-item:hover .framework-icon,
.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.framework-h4,
.why-h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.framework-p,
.why-p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.testimonial-card {
  min-width: calc(33.33% - 1rem);
  background: var(--white);
  border-radius: 24px;
  padding: 4.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(52, 58, 64, 0.06);
  transition: var(--transition);
  flex-shrink: 0;
  width: 25%;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}
.faq-question i,
.testimonial-stars i {
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  font-style: italic;
}
.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.client-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}
.client-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.1rem;
}
.client-title {
  font-size: 0.75rem;
  color: var(--text-light);
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(52, 58, 64, 0.15);
  cursor: pointer;
  transition: 0.3s;
}
.btn-glow,
.contact-info-icon,
.t-next,
.t-prev {
  transition: var(--transition);
}
.t-dot.active {
  width: 28px;
  background: var(--teal);
}
.t-next,
.t-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid rgba(52, 58, 64, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  margin-right: 3%;
  margin-left: 3%;
}
.cta-deco-1,
.cta-deco-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-eyebrow,
.cta-h2 em {
  color: var(--gold-light);
}
.footer-body,
.footer-bottom-bar,
.footer-newsletter {
  z-index: 1;
  position: relative;
}
.article-tag:hover,
.page-link.active,
.page-link:hover,
.t-next:hover,
.t-prev:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.t-prev {
  left: -1.5rem;
}
.t-next {
  right: -1.5rem;
}
#cta {
  padding: 7rem 0;
  background: linear-gradient(
    135deg,
    var(--navy) 0,
    var(--navy-mid) 60%,
    var(--navy-light) 100%
  );
  text-align: center;
  overflow: hidden;
}
.cta-deco-1 {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0,
    transparent 70%
  );
}
.cta-deco-2 {
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(30, 127, 142, 0.1) 0,
    transparent 70%
  );
}
.cta-inner,
footer {
  position: relative;
}
.cta-inner {
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.cta-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.cta-h2 em {
  font-style: italic;
}
.cta-p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.05rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.35),
    0 8px 30px rgba(201, 168, 76, 0.3);
  animation: 3s ease-in-out infinite glow;
  letter-spacing: 0.02em;
}
.btn-glow:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.5),
    0 16px 40px rgba(201, 168, 76, 0.4);
}
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.35),
      0 8px 30px rgba(201, 168, 76, 0.3);
  }
  50% {
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.5),
      0 8px 30px rgba(201, 168, 76, 0.4);
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(30, 127, 142, 0.08),
    rgba(201, 168, 76, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}
#article-body,
.contact-form,
.social-link {
  background: var(--cream);
}
.contact-info-item:hover .contact-info-icon {
  background: var(--teal);
  color: var(--white);
}
.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.footer-nl-tag,
.form-group label {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-info-val {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.form-submit,
.social-link {
  font-size: 0.95rem;
  align-items: center;
  display: flex;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
  border: 1px solid rgba(52, 58, 64, 0.07);
}
.form-group input,
.form-group select,
.form-group textarea,
.form-submit {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 58, 64, 0.2);
}
.contact-form {
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(52, 58, 64, 0.06);
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1.5px solid rgba(52, 58, 64, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: 0;
  appearance: none;
}
.form-group textarea {
  resize: none;
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 127, 142, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-submit {
  padding: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  justify-content: center;
  gap: 0.6rem;
  letter-spacing: 0.02em;
}
.footer-orb-1,
.footer-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.footer-bg-text,
.footer-nl-title {
  font-family: "Cormorant Garamond", serif;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(52, 58, 64, 0.3);
}
.form-submit i {
  font-size: 0.9rem;
}
footer {
  background: #25292e; /* Footer — en koyu antrasit */
  overflow: hidden;
}
.footer-bg-text {
  position: absolute;
  bottom: -0.05em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.08em;
  line-height: 1;
}
.footer-orb-1 {
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0,
    transparent 70%
  );
}
.footer-orb-2 {
  bottom: 0;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(30, 127, 142, 0.08) 0,
    transparent 70%
  );
}
.footer-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding: 3.5rem 0;
}
.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nl-tag {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.footer-nl-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-nl-btn,
.footer-nl-input {
  font-family: "DM Sans", sans-serif;
}
.footer-nl-title em {
  font-style: italic;
  color: var(--gold-light);
}
.footer-nl-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.footer-nl-input {
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 0.88rem;
  color: var(--white);
  outline: 0;
  width: 260px;
  transition: border-color 0.3s, background 0.3s;
}
.footer-logo-icon,
.footer-nl-btn {
  font-size: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.footer-nl-btn,
.footer-social-btn {
  transition: var(--transition);
  cursor: pointer;
}
.footer-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-nl-input:focus {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.footer-nl-btn {
  padding: 1rem 1.6rem;
  border: none;
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.footer-nl-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.footer-body {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
}
.footer-badge,
.footer-social-btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
}
.footer-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-brand-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
  max-width: 270px;
  margin-bottom: 2rem;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: center;
  font-size: 1rem;
}
.footer-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}
#blog-newsletter,
#related-posts {
  padding: 5rem 0;
  border-top: 1px solid rgba(52, 58, 64, 0.06);
}
.footer-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}
.footer-contact-item,
.footer-nav-list li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
}
.footer-badge i {
  color: var(--gold);
  font-size: 0.65rem;
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-category,
.author-title,
.footer-contact-text strong,
.related-card-meta {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  max-width: 40px;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-nav-list li a {
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}
.comment:last-child,
.footer-contact-item:last-child,
.footer-nav-list li:last-child a {
  border-bottom: none;
}
.footer-nav-list li a i {
  font-size: 0.55rem;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.3s;
}
.footer-nav-list li a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-nav-list li a:hover i {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact-item {
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
}
.footer-contact-icon {
  width: 30px;
  height: 30px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.footer-contact-text strong {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.1rem;
  font-weight: 600;
}
.footer-bottom-bar {
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy-main {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-copy-main a {
  color: var(--gold);
  transition: color 0.3s;
}
.footer-bottom-links {
  display: flex;
  gap: 1.8rem;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
#scrollTop,
.article-tag,
.blog-card,
.comment-submit,
.related-card {
  transition: var(--transition);
}
.featured-post .blog-card-excerpt,
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-made-by {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-made-by i {
  color: var(--gold);
  font-size: 0.65rem;
  animation: 2s infinite heartbeat;
}
@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
#scrollTop {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#scrollTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(201, 168, 76, 0.5);
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-right,
  .t-next,
  .t-prev {
    display: none;
  }
  .about-img img {
    height: 380px;
  }
  .about-img-badge {
    left: 1rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .counters,
  .footer-body,
  .form-row,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-h1 {
    font-size: 2.4rem;
  }
  .testimonial-card {
    min-width: calc(85% - 0.75rem);
  }
  .footer-body {
    gap: 2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .footer-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nl-form {
    width: 100%;
  }
  .footer-nl-input {
    flex: 1;
    width: auto;
    min-width: 0;
  }
  .footer-bottom-links {
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .counters {
    gap: 1rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
}
#faq-hero,
#privacy-hero,
#terms-hero {
  padding: 10rem 0 4rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.terms-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1589829085413-56de8ae18c73?w=1800&amp;q=80");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.1;
}
.blog-hero-content,
.faq-hero-content,
.privacy-hero-content,
.terms-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.blog-hero-content h1,
.privacy-hero-content h1,
.terms-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.blog-hero-content p,
.faq-hero-content p,
.privacy-hero-content p,
.terms-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
}
#blog-posts,
#faq-content,
#privacy-content,
#terms-content {
  padding: 5rem 0 7rem;
  background: var(--cream);
}
.privacy-container,
.terms-container {
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 3.5rem;
}
.article-content h2,
.privacy-container h2,
.terms-container h2 {
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.article-content h2:first-of-type,
.privacy-container h2:first-of-type,
.terms-container h2:first-of-type {
  margin-top: 0;
}
.article-content h3,
.privacy-container h3,
.terms-container h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 1.8rem 0 0.8rem;
}
.privacy-container p,
.terms-container p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.privacy-container ol,
.privacy-container ul,
.terms-container ol,
.terms-container ul {
  margin: 1.2rem 0 1.2rem 2rem;
  color: var(--text-mid);
}
.article-content li,
.privacy-container li,
.terms-container li {
  margin-bottom: 0.5rem;
}
.privacy-container .last-updated,
.terms-container .last-updated {
  font-style: italic;
  color: var(--teal);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(52, 58, 64, 0.1);
  font-size: 0.9rem;
}
#article-hero {
  padding: 10rem 0 3rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1543269865-cbf427effbad?w=1800&amp;q=80");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.15;
}
.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.article-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.article-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.article-meta i {
  color: var(--gold);
  margin-right: 0.3rem;
}
.article-meta-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-meta-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
#article-body {
  padding: 4rem 0 5rem;
}
.article-container {
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.article-featured-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.article-content {
  padding: 3rem;
}
.article-content p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
  line-height: 1.9;
}
.article-content blockquote {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 1rem 2rem;
  margin: 2rem 0;
  background: var(--cream);
  border-radius: 0 20px 20px 0;
}
.article-content ol,
.article-content ul {
  margin: 1.5rem 0;
  padding-left: 1.8rem;
  color: var(--text-mid);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2.5rem 0 1.5rem;
}
.article-tag {
  background: var(--cream);
  border: 1px solid rgba(52, 58, 64, 0.1);
  border-radius: 30px;
  padding: 0.3rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-mid);
}
.author-bio {
  display: flex;
  gap: 2rem;
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0 2rem;
  align-items: center;
}
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
#blog-newsletter,
.comment {
  border-bottom: 1px solid rgba(52, 58, 64, 0.06);
}
.author-info h4 {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.author-title {
  font-size: 0.8rem;
  color: var(--teal);
  margin-bottom: 0.8rem;
}
.author-bio-text,
.comment-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}
.blog-card-title,
.related-card-title {
  font-family: "DM Serif Display", serif;
  line-height: 1.3;
}
.comments-section {
  margin-top: 4rem;
  border-top: 1px solid rgba(52, 58, 64, 0.1);
  padding-top: 3rem;
}
.comments-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.comment {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-content {
  flex: 1;
}
.comment-author {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.comment-date {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.form-group,
.form-row {
  margin-bottom: 1rem;
}
.comment-form {
  margin-top: 2.5rem;
}
.comment-form h4 {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border: 1px solid rgba(52, 58, 64, 0.1);
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: 0;
  transition: var(--transition);
}
.faq-hero-content h1,
.newsletter-box h2,
.related-header h2 {
  font-family: "Cormorant Garamond", serif;
}
.comment-submit {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.comment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(52, 58, 64, 0.3);
}
#related-posts {
  background: var(--white);
}
.related-header {
  text-align: center;
  margin-bottom: 3rem;
}
.related-header h2 {
  font-size: 2.4rem;
  color: var(--navy);
}
.blog-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.related-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(52, 58, 64, 0.06);
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.related-card-img {
  height: 180px;
  overflow: hidden;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.blog-card:hover .blog-card-img img,
.related-card:hover .related-card-img img {
  transform: scale(1.05);
}
.related-card-content {
  padding: 1.5rem;
}
.related-card-meta {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.related-card-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
}
.related-card-link i {
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.related-card-link:hover i {
  transform: translateX(3px);
}
#blog-hero {
  padding: 10rem 0 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=1800&amp;q=80");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.1;
}
.blog-hero-content .section-label {
  color: var(--gold);
  justify-content: center;
}
.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(52, 58, 64, 0.06);
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.blog-card-content {
  padding: 2rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta,
.blog-meta-date {
  align-items: center;
  display: flex;
}
.blog-meta {
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.blog-meta i {
  color: var(--teal);
  font-size: 0.6rem;
}
.blog-meta-date {
  gap: 0.3rem;
}
.blog-meta-category {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gold-pale);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  color: var(--navy);
}
.blog-card-link,
.still-questions .btn-primary {
  display: inline-flex;
  transition: var(--transition);
}
.blog-card-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.blog-card-link {
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-top: auto;
}
.blog-card-link i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}
.featured-post {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  border: none;
}
.featured-post .blog-card-img {
  height: 100%;
}
.featured-post .blog-card-content {
  background: var(--navy);
  color: var(--white);
  padding: 3rem;
}
.featured-post .blog-card-title {
  color: var(--white);
  font-size: 1.8rem;
}
.featured-post .blog-meta-category {
  background: var(--gold);
  color: var(--navy);
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 4rem;
}
.faq-question,
.page-link {
  display: flex;
  align-items: center;
}
.page-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(52, 58, 64, 0.1);
  justify-content: center;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.page-link.next {
  width: auto;
  padding: 0 1.2rem;
  gap: 0.5rem;
}
#blog-newsletter {
  background: var(--white);
}
.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-box h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.newsletter-box p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.4rem;
  background: var(--cream);
  border: 1px solid rgba(52, 58, 64, 0.1);
  border-right: none;
  border-radius: 12px 0 0 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: 0;
}
.newsletter-btn {
  padding: 1rem 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 0 12px 12px 0;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.faq-hero-bg,
.privacy-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.1;
}
.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.privacy-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&amp;q=80");
}
.faq-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1800&amp;q=80");
}
.faq-hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.faq-category h2,
.faq-question {
  font-family: "DM Serif Display", serif;
  color: var(--navy);
}
.faq-container {
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 3rem;
}
.faq-item:hover,
.still-questions {
  background: var(--cream);
}
.faq-category {
  margin-bottom: 2.5rem;
}
.faq-category h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(52, 58, 64, 0.1);
  padding-bottom: 0.5rem;
}
.faq-item {
  margin-bottom: 1.8rem;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 12px;
}
.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  gap: 0.75rem;
}
.faq-answer {
  color: var(--text-mid);
  line-height: 1.8;
  margin-left: 2rem;
}
.faq-answer a {
  color: var(--teal);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.faq-answer a:hover {
  border-bottom-color: var(--teal);
}
.still-questions {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
}
.still-questions p {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.still-questions .btn-primary {
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  border: none;
  cursor: pointer;
}
.counter-item {
  text-align: center;
}
.counter-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.counter-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body,
html {
  overflow-x: hidden;
}
/* =====================================================================
   DİL DEĞİŞTİRME (TR / EN) BUTONU
   Not: Bu yalnızca görsel bir taslak bileşendir. Gerçek bir dil/çeviri
   alt yapısı çalıştırmaz; tıklandığında sadece aktif sekmeyi değiştirir.
   ===================================================================== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(215, 180, 106, 0.45); /* altın çerçeve */
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* nav-links içinde <li> olarak durduğu için liste işareti/çizgisi olmasın */
.nav-links .lang-switch {
  list-style: none;
}
.lang-opt {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 13px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.lang-opt:hover {
  color: var(--gold-light);
}
.lang-opt.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); /* koyu metin — altın zemin üzerinde okunur */
}
/* Mobil menü içindeki kopya için ortalanmış konum */
.mobile-menu .lang-switch {
  margin: 1.2rem auto 0;
}

/* ===== Navbar yerleşim ince ayarı =====
   Dil butonu eklendiği için öğeler arası boşluk hafif azaltıldı; logo ve
   "Bize Ulaşın" butonunun tek satırda kalması garanti altına alındı. */
.nav-logo {
  white-space: nowrap;
}
.nav-cta {
  white-space: nowrap;
}
.nav-links {
  gap: 1.7rem;
}
