/* ============================================================
   ROOT VARIABLES & THEME
   ============================================================ */
:root {
  --primary: #e8281a;
  --secondary: #f6a623;
  --dark: #1a1a1a;
  --green: #2d6a4f;
  --cream: #fff8f0;
  --cream2: #fef0dc;
  --light: #f9f5f0;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);

  /* Light theme */
  --body-bg: #f5f0eb;
  --body-text: #2c3e50;
  --card-bg: #ffffff;
  --card-border: #e5e5e5;
  --nav-bg: rgba(245, 240, 235, 0.95);
  --topbar-bg: #e8e0d8;
  --topbar-text: #555555;
  --footer-bg: #f5f0eb;
  --footer-text: #2c3e50;
  --input-bg: #ffffff;
  --input-border: #e5e5e5;
  --input-text: #2c3e50;
  --heading-color: #1a1a1a;
  --text-muted: #777777;
  --border-color: #e5e5e5;
}

/* Dark theme */
[data-theme="dark"] {
  --body-bg: linear-gradient(135deg, var(--green), #1a4a35);
  --body-text: #e8f5ee;
  --card-bg: #166344e8;
  --card-border: rgba(255, 255, 255, 0.10);
  --nav-bg: rgba(10, 25, 18, 0.95);
  --topbar-bg: #07110c;
  --topbar-text: #aabdb3;
  --footer-bg: linear-gradient(135deg, var(--green), #1a4a35);
  --footer-text: #e8f5ee;
  --input-bg: rgba(255, 255, 255, 0.08);
  --input-border: rgba(255, 255, 255, 0.15);
  --input-text: #e8f5ee;
  --heading-color: #eaf7f0;
  --text-muted: rgba(232, 245, 238, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   BASE STYLES
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--body-text);
  background: var(--body-bg);
  background-attachment: fixed;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
  position: relative;
  min-height: 100vh;
}

/* Background patterns */
[data-theme="dark"] body::before,
[data-theme="light"] body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] body::before {
  opacity: 0.06;
  background: repeating-linear-gradient(45deg, #ffffff 0, #ffffff 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}

[data-theme="light"] body::before {
  opacity: 0.02;
  background: repeating-linear-gradient(45deg, #000000 0, #000000 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
#topbar {
  background: var(--topbar-bg);
  padding: 8px 0;
  font-size: 0.82rem;
  transition: background 0.5s ease;
  position: relative;
  z-index: 1;
}

#topbar span {
  color: var(--topbar-text);
  margin-right: 16px;
}

#topbar span i {
  color: var(--secondary);
  margin-right: 5px;
}

#topbar .tsoc a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--topbar-text);
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}

#topbar .tsoc a:hover {
  background: var(--primary);
  color: #fff;
}

.ttag {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ============================================================
   NAVBAR (TÜM STİLLER TEK YERDE)
   ============================================================ */
#nav {
  transition: 0.35s;
  padding: 10px 0;
  z-index: 1030;
  border-bottom: 1px solid var(--card-border);
  top: 0;
  z-index: 990;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] #nav {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

#nav.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] #nav.scrolled {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
}

.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.35);
}

.bname {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.bname span {
  color: var(--primary);
}

.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--body-text);
  padding: 10px 16px !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffac00;
}

#navSearchBtn {
  border: none;
  background: transparent;
  color: var(--body-text);
  font-size: 1.05rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}

#navSearchBtn:hover {
  background: var(--card-border);
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(232, 40, 26, 0.28);
  transition: 0.3s;
  margin-left: 6px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 40, 26, 0.35);
  color: #fff !important;
}

/* Dropdown - Desktop */
@media (min-width: 992px) {
  .nav-item.dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
    padding: 10px;
    background: var(--card-bg);
    min-width: 240px;
    margin-top: 0 !important;
    padding-top: 12px;
    transform: translateY(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  [data-theme="dark"] .dropdown-menu {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  }

  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item.dropdown > .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
  }

  .nav-item.dropdown > .dropdown-toggle::after {
    vertical-align: 1px;
    margin-left: 6px;
    transition: transform 0.3s;
  }

  .nav-item.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-item {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--body-text);
    padding: 10px 14px;
    border-radius: 9px;
    transition: 0.25s;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background: var(--primary);
    color: #fff;
    transform: translateX(4px);
  }

  /* Submenu */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: -8px;
    left: 100%;
    margin-left: 5px;
    min-width: 220px;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
  }

  .dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .dropdown-submenu > .dropdown-toggle::after {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: transform 0.3s;
  }

  .dropdown-submenu:hover > .dropdown-toggle::after {
    transform: translateY(-50%) rotate(0deg);
  }

  .dropdown-submenu > .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 8px;
    height: 100%;
    background: transparent;
  }

  .dropdown-submenu .dropdown-item {
    padding-right: 30px;
  }
}

/* Dropdown - Mobile */
@media (max-width: 991.98px) {
  #navmenu {
    background: var(--card-bg);
    border-radius: 14px;
    margin-top: 14px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  [data-theme="dark"] #navmenu {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 10px !important;
    border-bottom: 1px solid var(--card-border);
  }

  .navbar-nav .nav-item:last-child > .nav-link {
    border-bottom: none;
  }

  .dropdown-menu {
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.02);
    margin: 4px 0 8px 0 !important;
    padding: 4px 4px 4px 14px;
    min-width: 100%;
    display: none;
  }

  [data-theme="dark"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.05);
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-item {
    padding: 9px 12px;
    color: var(--body-text);
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    transform: none;
  }

  .nav-item.dropdown > .dropdown-toggle::after {
    transition: transform 0.3s;
  }

  .nav-item.dropdown > .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }

  #navSearchBtn {
    margin-bottom: 6px;
  }

  .d-flex.align-items-center.gap-1 {
    flex-direction: column;
    align-items: stretch !important;
  }

  /* Submenu mobile */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    position: static !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.03);
    margin: 4px 0 8px 0 !important;
    padding: 4px 4px 4px 20px;
    min-width: 100%;
    display: none !important;
  }

  [data-theme="dark"] .dropdown-submenu > .dropdown-menu {
    background: rgba(255, 255, 255, 0.05);
  }

  .dropdown-submenu > .dropdown-menu.show {
    display: block !important;
  }

  .dropdown-submenu > .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .dropdown-submenu > .dropdown-toggle::after {
    margin-left: auto;
    transition: transform 0.3s;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    content: "";
    display: inline-block;
    vertical-align: 0.255em;
  }

  .dropdown-submenu > .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .dropdown-submenu .dropdown-item {
    padding: 9px 12px;
    font-size: 0.85rem;
    border-bottom: none !important;
    color: var(--body-text);
  }

  .dropdown-submenu .dropdown-menu .dropdown-item {
    padding-left: 30px;
    font-size: 0.82rem;
  }

  .dropdown-submenu .dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
  }
}

@media (max-width: 575.98px) {
  .navbar-nav .nav-link {
    font-size: 0.86rem;
  }

  .dropdown-item {
    font-size: 0.82rem;
  }

  .dropdown-submenu > .dropdown-menu {
    padding-left: 15px;
  }

  .dropdown-submenu .dropdown-menu .dropdown-item {
    padding-left: 25px;
    font-size: 0.80rem;
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}

.slbl {
  font-family: "Dancing Script", cursive;
  font-size: 1.35rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.stitle {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.stitle span {
  color: var(--primary);
}

.sline {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 12px;
}

.sline.lft {
  margin-left: 0;
}

.sdesc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  transition: color 0.5s ease;
}

.btn-red {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232, 40, 26, 0.45);
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: transparent;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hbgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
  white-space: nowrap;
}

[data-theme="dark"] .hbgtxt {
  color: rgba(255, 255, 255, 0.04);
}

.hs {
  position: absolute;
  border-radius: 50%;
}

.hs1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 40, 26, 0.07), transparent 70%);
  top: -90px;
  right: -80px;
  animation: fsh 8s ease-in-out infinite;
}

.hs2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(246, 166, 35, 0.09), transparent 70%);
  bottom: -50px;
  left: 8%;
  animation: fsh 10s ease-in-out infinite reverse;
}

@keyframes fsh {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-28px); }
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.hbadge .hbi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
}

.hbadge span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.htitle {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.htitle .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.htitle .hl::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(232, 40, 26, 0.14);
  border-radius: 4px;
  z-index: -1;
}

.hdesc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 30px;
  transition: color 0.5s ease;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: 0.3s;
  cursor: pointer;
}

.btn-play .pico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  transition: 0.3s;
  flex-shrink: 0;
}

.btn-play:hover .pico {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.btn-play:hover {
  color: var(--primary);
}

.hstats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hstat .snum {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--heading-color);
  display: block;
  line-height: 1;
  transition: color 0.5s ease;
}

.hstat .snum em {
  color: var(--primary);
  font-style: normal;
}

.hstat small {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.5s ease;
}

.sdiv {
  width: 1px;
  background: var(--border-color);
  height: 38px;
  align-self: center;
}

.hcircle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--card-bg), rgba(255, 255, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 76px rgba(232, 40, 26, 0.14);
  border: 2px solid var(--card-border);
  transition: background 0.5s ease, border-color 0.5s ease;
}

.hcircle img {
  width: 95%;
  height: 95%;
  object-fit: fill;
  border-radius: 50%;
}

.fcard {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 11px;
  padding: 10px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.fcard.fc1 { top: 190px; left: -15px; animation: fltc 4s ease-in-out infinite; }
.fcard.fc2 { bottom: 85px; right: -25px; animation: fltc 4s ease-in-out infinite 1.5s; }
.fcard.fc3 { top: 32%; right: -45px; animation: fltc 4s ease-in-out infinite 0.8s; }

@keyframes fltc {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.fcoi {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.fcoi.r { background: rgba(232, 40, 26, 0.11); color: var(--primary); }
.fcoi.y { background: rgba(246, 166, 35, 0.14); color: var(--secondary); }
.fcoi.g { background: rgb(68, 118, 75); color: #05ff46; }

.fcnum {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--heading-color);
  display: block;
  line-height: 1;
  transition: color 0.5s ease;
}

.fcsm {
  font-size: 0.66rem;
  color: var(--text-muted);
  transition: color 0.5s ease;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.mqsec {
  background: linear-gradient(135deg, #0c8a3c 0%, #057d21 80%);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .mqsec {
  background: linear-gradient(199deg, #7f5307 0%, #7f1b08 100%);
}

.mqtrack {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  animation: mqrun 22s linear infinite;
}

@keyframes mqrun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}

.mqitem i:first-child {
  color: #ffd700;
  font-size: 0.75rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
  animation: ayPulse 2s ease-in-out infinite;
}

@keyframes ayPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.mqitem i:last-child {
  color: #ffd700;
  font-size: 0.55rem;
  opacity: 0.6;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.2));
  animation: yildizDon 3s linear infinite;
}

@keyframes yildizDon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .mqitem i:first-child { font-size: 0.6rem; }
  .mqitem i:last-child { font-size: 0.45rem; }
}

/* ============================================================
   CATEGORY
   ============================================================ */
#category {
  background: transparent;
}

.catcard {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 15px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.catcard:hover,
.catcard.active {
  transform: translateY(-7px);
  box-shadow: 0 14px 38px rgba(232, 40, 26, 0.14);
  border-color: var(--primary);
}

.catimg {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  transition: 0.4s;
}

.catcard:hover .catimg {
  transform: scale(1.1) rotate(-4deg);
}

.catnm {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 3px;
  transition: color 0.5s ease;
}

.catct {
  font-size: 0.73rem;
  color: var(--text-muted);
  transition: color 0.5s ease;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: transparent;
}

.astack {
  position: relative;
}

.amain {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.amain img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.asm {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid var(--card-bg);
  box-shadow: var(--shadow);
  transition: border-color 0.5s ease;
}

.asm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aexp {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.4);
}

.aexp .anum {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.aexp small {
  font-size: 0.7rem;
  opacity: 0.9;
}

.fti {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}

.ftico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: 0.3s;
}

.ftico.r { background: rgba(232, 40, 26, 0.1); color: var(--primary); }
.ftico.y { background: rgba(246, 166, 35, 0.11); color: var(--secondary); }
.ftico.g { background: rgba(45, 106, 79, 0.1); color: var(--green); }

.fti:hover .ftico {
  transform: scale(1.1);
}

.fti h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
  transition: color 0.5s ease;
}

.fti p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  transition: color 0.5s ease;
}

/* ============================================================
   MENU (DERS KARTLARI) - TEK BLOK
   ============================================================ */
#menu {
  background: transparent;
}

.filtbtn {
  border: 2px solid var(--border-color);
  background: var(--card-bg);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--body-text);
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  font-family: "Poppins", sans-serif;
}

.filtbtn.active,
.filtbtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 18px rgba(232, 40, 26, 0.24);
}

.mwrap {
  transition: 0.35s;
}

.mcard {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s, background 0.5s ease, border-color 0.5s ease;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}

[data-theme="dark"] .mcard {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
}

.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

[data-theme="dark"] .mcard:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.mimg {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: var(--cream2);
  transition: background 0.5s ease;
}

[data-theme="dark"] .mimg {
  background: rgba(255, 255, 255, 0.05);
}

.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.mcard:hover .mimg img {
  transform: scale(1.09);
}

.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}

.mbdg.new { background: var(--green); }
.mbdg.hot { background: var(--secondary); color: var(--dark); }

.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .mhrt {
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.3);
}

.mhrt:hover {
  color: var(--primary);
  transform: scale(1.18);
}

.mbody {
  padding: 18px;
}

.mcat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.mtit {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.mdesc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 13px;
  line-height: 1.5;
  transition: color 0.5s ease;
}

.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mprice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.mprice small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 5px;
  transition: color 0.5s ease;
}

.mstars {
  font-size: 0.73rem;
  color: var(--secondary);
}

.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(232, 40, 26, 0.28);
}

.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

@media (max-width: 767px) {
  .mimg { height: 180px; }
  .mtit { font-size: 0.95rem; }
  .mdesc { font-size: 0.75rem; }
  .mprice { font-size: 1.1rem; }
}

@media (max-width: 575px) {
  .mimg { height: 160px; }
  .filtbtn { font-size: 0.75rem; padding: 6px 14px; }
  .mbody { padding: 14px; }
}

/* ============================================================
   3D GALLERY
   ============================================================ */
.gallery-3d-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background: transparent;
  perspective: 1000px;
}

.container-3d {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.container-3d .box {
  position: relative;
  width: 220px;
  height: 280px;
  transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.15));
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  flex-shrink: 0;
}

.container-3d .box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: 0.4s;
}

.box-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: 0.4s;
  transform: translateY(20px);
}

.box-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.container-3d .box:hover .box-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop 3D effect */
@media (min-width: 1200px) {
  .container-3d { gap: 10px; }
  .container-3d .box:nth-child(n+6) { margin-top: 15px; }
  
  .container-3d:hover .box:not(:hover) {
    transform: perspective(500px) rotateY(15deg) scale(0.92);
    opacity: 0.7;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.4));
  }
  
  .container-3d .box:hover~.box {
    transform: perspective(500px) rotateY(-15deg) scale(0.92);
    opacity: 0.7;
  }
  
  .container-3d .box:hover {
    transform: perspective(500px) rotateY(0deg) scale(1.25);
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.15));
  }
  
  .container-3d .box:hover img { transform: scale(1.05); }
}

/* Tablet & Mobile */
@media (max-width: 1199px) {
  .container-3d {
    gap: 15px;
    justify-content: center;
  }
  
  .container-3d .box {
    width: 200px;
    height: 250px;
    flex: 0 0 calc(33.33% - 15px);
    max-width: 220px;
  }
  
  .container-3d .box:nth-child(n+6) { margin-top: 12px; }
  
  .container-3d:hover .box:not(:hover),
  .container-3d .box:hover~.box {
    transform: scale(0.95);
    opacity: 0.85;
  }
  
  .container-3d .box:hover {
    transform: scale(1.12);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 767px) {
  .gallery-3d-wrapper { padding: 15px 0; }
  .container-3d { gap: 12px; max-width: 550px; }
  .container-3d .box {
    width: 160px;
    height: 200px;
    flex: 0 0 calc(33.33% - 12px);
    max-width: 180px;
  }
  .container-3d .box:nth-child(n+6) { margin-top: 10px; }
  .box-overlay span { font-size: 0.75rem; }
  .container-3d .box { -webkit-box-reflect: none; }
}

@media (max-width: 575px) {
  .container-3d { gap: 10px; max-width: 400px; }
  .container-3d .box {
    width: calc(50% - 10px);
    height: 180px;
    min-width: 130px;
    max-width: 200px;
    flex: 0 0 calc(50% - 10px);
  }
  .container-3d .box:nth-child(n+6) { margin-top: 8px; }
  .box-overlay span { font-size: 0.7rem; }
  .container-3d:hover .box:not(:hover),
  .container-3d .box:hover~.box {
    transform: scale(0.95);
    opacity: 0.9;
  }
  .container-3d .box:hover { transform: scale(1.08); }
}

@media (max-width: 400px) {
  .container-3d { gap: 8px; max-width: 320px; }
  .container-3d .box {
    width: calc(50% - 8px);
    height: 150px;
    min-width: 100px;
    flex: 0 0 calc(50% - 8px);
  }
  .container-3d .box:nth-child(n+6) { margin-top: 6px; }
  .box-overlay span { font-size: 0.6rem; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

#lightbox-caption {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
  position: fixed;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-lightbox:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 767px) {
  .close-lightbox { top: 20px; right: 20px; font-size: 30px; width: 40px; height: 40px; }
  #lightbox-img { max-height: 70vh; }
  #lightbox-caption { font-size: 0.95rem; margin-top: 15px; }
}

@media (max-width: 575px) {
  .close-lightbox { top: 15px; right: 15px; font-size: 26px; width: 36px; height: 36px; }
  #lightbox-img { max-height: 60vh; }
  #lightbox-caption { font-size: 0.85rem; margin-top: 12px; }
}

/* ============================================================
   HISTORY (TIMELINE)
   ============================================================ */
#history {
  background: transparent;
}

.timeline {
  position: relative;
  padding: 18px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  top: 0;
  bottom: 0;
}

.tli {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  margin-bottom: 50px;
  align-items: start;
}

.tl-left {
  padding-right: 32px;
  text-align: right;
}

.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.tl-right {
  padding-left: 32px;
  text-align: left;
}

.tli:nth-child(odd) .tl-right { visibility: hidden; }
.tli:nth-child(even) .tl-left { visibility: hidden; }

.tldot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--card-bg);
  box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.3);
  flex-shrink: 0;
  transition: border-color 0.5s ease;
}

.tlyear {
  font-family: "Dancing Script", cursive;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 3px;
}

.tl-left h5,
.tl-right h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: "Playfair Display", serif;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.tl-left p,
.tl-right p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  transition: color 0.5s ease;
}

@media (max-width: 767px) {
  .timeline::before { left: 16px; }
  .tli { grid-template-columns: 32px 1fr; gap: 0; }
  .tl-left { display: none; }
  .tl-right { display: block !important; visibility: visible !important; padding-left: 18px; text-align: left; }
  .tl-center { padding-top: 5px; }
  .tli:nth-child(even) .tl-left { display: none; }
  .tli:nth-child(odd) .tl-right { visibility: visible !important; }
}

/* ============================================================
   CHEFS
   ============================================================ */
#chefs {
  background: transparent;
}

.chcard {
  border-radius: 18px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.chcard:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}

.chimg {
  position: relative;
  overflow: hidden;
  height: 268px;
  background: var(--card-border);
}

.chimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s;
}

.chcard:hover .chimg img {
  transform: scale(1.05);
}

.chsoc {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  transition: 0.4s;
  padding: 10px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.chcard:hover .chsoc {
  bottom: 0;
}

.chsoc a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: 0.3s;
}

.chsoc a:hover {
  background: var(--primary);
}

.chbody {
  padding: 18px;
  text-align: center;
}

.chnm {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.chrole {
  font-size: 0.78rem;
  color: #ff7d00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.chexp {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 5px;
  transition: color 0.5s ease;
}

/* ============================================================
   İLETİŞİM (TEMİZ VE MOBİL UYUMLU)
   ============================================================ */

#iletisimegec {
    background: transparent;
    padding: 80px 0 60px 0;
}

/* ============================================================
   İLETİŞİM KARTI - SOL
   ============================================================ */

.ctdark {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 38px 30px;
    height: 100%;
    transition: background 0.5s ease, border-color 0.5s ease;
}

.ctdark h4 {
    color: var(--heading-color);
    font-size: 1.4rem;
    margin-bottom: 7px;
    transition: color 0.5s ease;
}

.ctdark .ctsub {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 26px;
    transition: color 0.5s ease;
}

.ctitem {
    display: flex;
    gap: 13px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.cticon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(232, 40, 26, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.ctinfo strong {
    display: block;
    color: var(--text-muted);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1px;
    font-family: "Poppins", sans-serif;
    transition: color 0.5s ease;
}

.ctinfo span {
    color: var(--heading-color);
    font-size: 0.87rem;
    transition: color 0.5s ease;
}

.ctsocrow {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.ctsocrow a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.ctsocrow a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

[data-theme="dark"] .ctsocrow a {
    background: rgba(255, 255, 255, 0.09);
}

[data-theme="dark"] .ctsocrow a:hover {
    background: var(--primary);
    color: #fff;
}


/* ============================================================
   İLETİŞİM FORMU - SAĞ
   ============================================================ */

.contact-form-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 35px;

    overflow: visible;

    transition:
        background 0.5s ease,
        border-color 0.5s ease;
}

.contact-form-card .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.contact-form-card .col-12,
.contact-form-card .col-sm-6 {
    box-sizing: border-box;
}

.flbl {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
    transition: color 0.5s ease;
}

.fctrl {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 12px 16px;

    border: 1px solid var(--card-border);
    border-radius: 10px;

    background: var(--input-bg);
    color: var(--input-text);

    font-size: 0.9rem;
    line-height: 1.4;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

    outline: none;
    box-sizing: border-box;
}

.fctrl:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.15);
}

.fctrl::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

select.fctrl {
    appearance: none;
    -webkit-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 14px center;

    cursor: pointer;
}

select.fctrl option {
    background: var(--card-bg);
    color: var(--heading-color);
}

textarea.fctrl {
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    resize: vertical;
}

.contact-form-card .btn-red {
    max-width: 100%;
}

.sucmsg {
    display: none;
    margin-top: 18px;
    padding: 16px 20px;

    background: rgba(52, 211, 153, 0.15);
    border: 1px solid #34d399;
    border-radius: 12px;

    color: #34d399;
    font-size: 0.9rem;

    align-items: center;
    gap: 12px;

    animation: fadeInUp 0.5s ease;
}

.sucmsg i {
    font-size: 1.4rem;
}

.sucmsg p {
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   İLETİŞİM RESPONSIVE
   ============================================================ */

/* ------------------------------------------------------------
   TABLET
   768px - 991px
   ------------------------------------------------------------ */

@media (min-width: 768px) and (max-width: 991.98px) {

    #iletisimegec {
        padding: 65px 0 50px 0;
    }

    .ctdark {
        padding: 30px 25px;
    }

    .contact-form-card {
        padding: 28px 22px;
    }
}


/* ------------------------------------------------------------
   MOBİL
   767px ve altı
   ------------------------------------------------------------ */

@media (max-width: 767.98px) {

    #iletisimegec {
        padding: 50px 0 40px 0;
    }

    .ctdark {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .contact-form-card {
        width: 100%;
        padding: 22px 16px;
        margin: 0;
        border-radius: 16px;
    }

    .contact-form-card .row {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form-card .col-12,
    .contact-form-card .col-sm-6 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .contact-form-card .fctrl {
        width: 100%;
        min-width: 0;
        font-size: 16px;
        padding: 12px 14px;
    }

    .contact-form-card textarea {
        min-height: 130px;
    }

    .contact-form-card button,
    .contact-form-card .btn-red {
        width: 100%;
        max-width: 100%;
    }

    .ctitem {
        margin-bottom: 14px;
    }

    .ctdark h4 {
        font-size: 1.3rem;
    }
}


/* ------------------------------------------------------------
   ÇOK KÜÇÜK TELEFON
   575px ve altı
   ------------------------------------------------------------ */

@media (max-width: 575.98px) {

    .ctdark h4 {
        font-size: 1.2rem;
    }

    .cticon {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .ctinfo span {
        font-size: 0.8rem;
        word-break: break-word;
    }

    .ctsocrow a {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .contact-form-card {
        padding: 18px 12px;
    }

    .contact-form-card .fctrl {
        width: 100%;
        font-size: 16px;
        padding: 11px 12px;
    }

    .flbl {
        font-size: 0.75rem;
    }
}


/* ------------------------------------------------------------
   EKSTRA KÜÇÜK TELEFON
   480px ve altı
   ------------------------------------------------------------ */

@media (max-width: 480px) {

    .contact-form-card {
        padding: 16px 10px;
    }

    .contact-form-card .fctrl {
        font-size: 16px;
        padding: 11px 12px;
    }
}
/* ============================================================
   FOOTER'DAKİ CUSTOM ALERT'İ GİZLE (KALDIRILACAK)
   ============================================================ */
.custom-alert {
  display: none !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--footer-bg);
  padding: 68px 0 0;
  transition: background 0.5s ease;
  position: relative;
  z-index: 1;
}

.fnm {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.fnm span {
  color: var(--primary);
}

.fdesc {
  color: var(--footer-text);
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
  transition: color 0.5s ease;
      margin-left: 40px;
}

.fsoc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.fsoc a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  font-size: 0.88rem;
  transition: 0.3s;
}

[data-theme="dark"] .fsoc a {
  background: rgba(255, 255, 255, 0.06);
}

.fsoc a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.ftit {
  color: var(--heading-color);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-family: "Poppins", sans-serif;
  transition: color 0.5s ease;
}

.flinks li {
  list-style: none;
  margin-bottom: 9px;
}

.flinks a {
  color: var(--footer-text);
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}

.flinks a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.flinks a i {
  color: var(--primary);
  font-size: 0.68rem;
}

.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}

.fciico {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(232, 40, 26, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.fciinfo {
  color: var(--footer-text);
  font-size: 0.83rem;
  line-height: 1.6;
  transition: color 0.5s ease;
}

.fciinfo strong {
  color: var(--heading-color);
  display: block;
  font-size: 0.77rem;
  transition: color 0.5s ease;
}

.fbot {
  border-top: 1px solid var(--border-color);
  padding: 18px 0;
  margin-top: 46px;
  transition: border-color 0.5s ease;
}

.fbot p {
  color: var(--footer-text);
  font-size: 0.8rem;
  margin: 0;
  transition: color 0.5s ease;
}

.fbot span {
  color: var(--primary);
}

.fbot a {
  color: var(--footer-text);
  font-size: 0.8rem;
  margin-left: 18px;
  transition: color 0.3s;
}

.fbot a:hover {
  color: var(--secondary);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(232, 40, 26, 0.38);
  opacity: 0;
  transform: translateY(18px);
  transition: 0.4s;
}

#btt.show {
  opacity: 1;
  transform: translateY(0);
}

#btt:hover {
  transform: translateY(-4px) !important;
}

/* ============================================================
   THEME TOGGLE
   ============================================================ */
.theme-toggle-wrapper {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  width: 70px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

[data-theme="light"] .theme-toggle-wrapper {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.theme-toggle-wrapper input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.theme-toggle-wrapper input:checked + .theme-toggle-slider {
  transform: translateX(34px);
  background: #f0e6d8;
  color: #2c3e50;
}

.theme-toggle-wrapper input:checked + .theme-toggle-slider i {
  transform: rotate(180deg);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-msg {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 99999;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   POPUPS
   ============================================================ */
/* Search Overlay */
#searchOv {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 5, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 78px;
}

#searchOv.open {
  display: flex;
  animation: fadeov 0.28s ease;
}

@keyframes fadeov {
  from { opacity: 0; }
  to { opacity: 1; }
}

#searchOv .sovclose {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: 0.3s;
}

#searchOv .sovclose:hover {
  background: var(--primary);
}

.sovbox {
  width: 100%;
  max-width: 680px;
  padding: 0 18px;
}

.sovbox h4 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
}

.sovinput {
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.sovinput input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 17px 24px;
  color: #fff;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  outline: none;
}

.sovinput input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.sovinput button {
  background: var(--primary);
  border: none;
  padding: 0 26px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.sovinput button:hover {
  background: #c01e12;
}

.sovcats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 28px;
}

.sovcat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
}

.sovcat img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.sovcat:hover,
.sovcat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.sovtrend {
  text-align: center;
  margin-top: 26px;
}

.sovtrend p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin-bottom: 9px;
}

.sovtrend .ttag {
  display: inline-block;
  margin: 3px;
  background: rgba(246, 166, 35, 0.13);
  border: 1px solid rgba(246, 166, 35, 0.28);
  color: var(--secondary);
  border-radius: 20px;
  padding: 3px 13px;
  font-size: 0.76rem;
  cursor: pointer;
  transition: 0.3s;
}

.sovtrend .ttag:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* Menu Detail Popup */
#menuPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}

#menuPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}

.mpbox {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  max-width: 800px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.mpbox::-webkit-scrollbar {
  width: 3px;
}

.mpbox::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.mpbox .mpimg {
  width: 44%;
  background: var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px 0 0 22px;
  overflow: hidden;
  min-height: 400px;
}

.mpbox .mpimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mpbox .mpbody {
  width: 56%;
  padding: 34px 30px;
}

.mpclose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--card-border);
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
  color: var(--body-text);
}

.mpclose:hover {
  background: var(--primary);
  color: #fff;
}

#mpCat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
}

#mpTitle {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 9px;
  font-family: "Playfair Display", serif;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

#mpStars {
  color: var(--secondary);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

#mpDesc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  transition: color 0.5s ease;
}

#mpPrice {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}

#mpPrice small {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 7px;
}

.mpmeta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mpm {
  text-align: center;
  background: var(--card-border);
  border-radius: 9px;
  padding: 9px 14px;
  transition: background 0.5s ease;
}

.mpmv {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--heading-color);
  transition: color 0.5s ease;
}

.mpml {
  font-size: 0.68rem;
  color: var(--text-muted);
  transition: color 0.5s ease;
}

.mpqty {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.mpqbtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 700;
}

.mpqbtn:hover {
  background: var(--primary);
  color: #fff;
}

.mpqnum {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  min-width: 30px;
  text-align: center;
  transition: color 0.5s ease;
}

.mptags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}

.mptag {
  background: rgba(246, 166, 35, 0.11);
  color: var(--heading-color);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.73rem;
  font-weight: 600;
  transition: color 0.5s ease;
}

.mpaddcart {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.mpaddcart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.38);
}

/* Gallery Popup */
#galPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 18px;
}

#galPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}

.gpbox {
  max-width: 880px;
  width: 100%;
  position: relative;
  text-align: center;
}

.gpbox img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  border-radius: 14px;
}

.gpclose {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gpclose:hover {
  background: var(--primary);
}

.gpcap {
  color: #fff;
  margin-top: 18px;
}

.gpcap h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}

.gpcap p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.gpnav {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 14px;
}

.gpnav button {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px;
  cursor: pointer;
  font-size: 0.83rem;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

.gpnav button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Magnific popup override */
.mfp-bg {
  background: #000 !important;
  opacity: 0.93 !important;
}

.mfp-close {
  color: #fff !important;
}

/* ============================================================
   RESPONSIVE (GENEL)
   ============================================================ */
@media (max-width: 991px) {
  .hcircle { width: 320px; height: 320px; }
  .fcard.fc1, .fcard.fc2, .fcard.fc3 { transform: scale(0.82); transform-origin: center; }
  .asm { display: none; }
  
  .mpbox .mpimg,
  .mpbox .mpbody { width: 100%; }
  .mpbox .mpimg { border-radius: 22px 22px 0 0; min-height: 240px; }
  .mpbox .mpbody { padding: 22px 18px; }
  
  .theme-toggle-wrapper { top: 80px; right: 10px; width: 60px; height: 32px; }
  .theme-toggle-slider { width: 24px; height: 24px; font-size: 12px; }
  .theme-toggle-wrapper input:checked + .theme-toggle-slider { transform: translateX(28px); }
}

@media (max-width: 767px) {
  section { padding: 55px 0; }
  #topbar .top-contact span:last-child { display: none; }
  .hcircle { width: 260px; height: 260px; }
  .fcard.fc1, .fcard.fc2, .fcard.fc3 { display: none !important; }
  .hstats { display: none !important; }
}

@media (max-width: 480px) {
  .hcircle { width: 220px; height: 220px; }
  .htitle { font-size: 2.4rem; }
  .stitle { font-size: 1.8rem; }
}

