/* ==========================================================================
   Auto Kale Adıyaman Oto Ekspertiz - Birebir Canlı Tasarım Sistemi
   www.adiyamanotoekspertiz.com.tr ile 1:1 Uyumlu
   ========================================================================== */

:root {
  --yellow: #fad000;
  --yellow-deep: #e0ba00;
  --yellow-light: #fff8d6;
  --ink: #17181c;
  --ink-soft: #33353b;
  --gray: #6b7280;
  --gray-light: #9aa0a8;
  --line: #e7e7e2;
  --bg: #ffffff;
  --bg-soft: #f7f7f4;
  --radius-card: 20px;
  --radius-btn: 10px;
  --shadow-card: 0 20px 50px -20px rgba(23,24,28,0.18);
  --shadow-hover: 0 24px 60px -15px rgba(250, 208, 0, 0.35);
  --font-head: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease, background 0.25s ease;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- HEADER (Modern & Sleek Glassmorphism) ---------- */
header.site {
  background: rgba(18, 20, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.site.scrolled {
  background: rgba(18, 20, 26, 0.98);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05);
}

header.site .wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

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

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.main-nav > .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

nav.main-nav a {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #e2e8f0;
  position: relative;
  padding: 8px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.22s ease;
}

nav.main-nav > .nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.main-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

nav.main-nav a.active {
  color: #ffffff;
  background: rgba(250, 208, 0, 0.14);
  border: 1px solid rgba(250, 208, 0, 0.3);
}

nav.main-nav a::after {
  display: none !important;
}

.dropdown-caret {
  width: 9px;
  height: 9px;
  flex: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .dropdown-caret {
  transform: rotate(180deg);
  color: var(--yellow);
}

/* ---------- MEGA DROPDOWN MENU ---------- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--yellow);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 14px 16px;
  width: 580px;
  max-width: 95vw;
  z-index: 200;
}

/* Hover Bridge: mouse hiçbir zaman bağlantıdan menüye geçerken hover kaybetmez */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 26px;
  background: transparent;
  pointer-events: auto;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
}

.dm-header-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.dm-header-badge {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2.5px 7px;
  border-radius: 5px;
  background: rgba(234, 179, 8, 0.14);
  color: #92400e;
  border: 1px solid rgba(234, 179, 8, 0.28);
}

.dropdown-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px 8px;
}

.dm-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  text-decoration: none;
  transition: all 0.18s ease;
  position: relative;
}

.dm-item:hover {
  background: #f8fafc;
  transform: translateX(3px);
}

.dm-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.2s ease;
}

.dm-item:hover .dm-dot {
  background: var(--yellow);
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(250, 208, 0, 0.7);
}

.dm-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.dm-title {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  transition: color 0.18s ease;
}

.dm-item:hover .dm-title {
  color: #0f172a;
}

.dm-tagline {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.3;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s ease;
}

.dm-item:hover .dm-tagline {
  color: #64748b;
}

.dm-arrow {
  flex: none;
  opacity: 0;
  transform: translateX(-4px);
  color: var(--yellow-deep);
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
}

.dm-arrow svg {
  width: 13px;
  height: 13px;
}

.dm-item:hover .dm-arrow {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-menu-footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dm-footer-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
}

.dm-footer-icon {
  font-size: 13px;
  color: var(--yellow);
}

.dm-footer-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff !important;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dm-footer-btn svg {
  width: 11px;
  height: 11px;
  transition: transform 0.2s ease;
}

.dm-footer-btn:hover {
  background: var(--yellow);
  color: var(--ink) !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(250, 208, 0, 0.35);
}

.dm-footer-btn:hover svg {
  transform: translateX(2px);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-call {
  line-height: 1.3;
  text-align: left;
  padding: 8px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.35);
  transition: all 0.2s ease;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 179, 8, 0.5);
  background: linear-gradient(135deg, #fde047 0%, #eab308 100%);
}

.btn-call svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.btn-call span {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.75;
}

.btn-call span b {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  margin-top: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(250, 208, 0, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline.on-dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline.on-dark:hover {
  border-color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: #ffffff;
  align-items: center;
  justify-content: center;
}

.nav-close {
  display: none;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(520px, 82vh, 720px);
  overflow: hidden;
  background: var(--ink);
}

.slides-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}

.slide.active .bg {
  transform: scale(1);
}

.slide .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,18,22,.88) 0%, rgba(17,18,22,.58) 38%, rgba(17,18,22,.16) 62%, rgba(17,18,22,.38) 100%),
    linear-gradient(0deg, rgba(17,18,22,.5) 0%, rgba(17,18,22,0) 32%);
}

.slide .content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}

.slide .content-inner {
  max-width: 600px;
}

.slide .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
}

.slide .kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.slide h2 {
  font-family: var(--font-head);
  color: #ffffff;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(22px);
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.slide p {
  color: #e6e9ec;
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(22px);
}

.slide .cta-row {
  display: flex;
  gap: 14px;
  opacity: 0;
  transform: translateY(22px);
}

.slide.active .kicker {
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
  opacity: 1;
  transform: translateY(0);
}

.slide.active h2 {
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.slide.active p {
  transition: opacity 0.8s ease 0.65s, transform 0.8s ease 0.65s;
  opacity: 1;
  transform: translateY(0);
}

.slide.active .cta-row {
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
  opacity: 1;
  transform: translateY(0);
}

.slider-dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-dots button.active {
  background: var(--yellow);
  transform: scale(1.25);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 18, 22, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 24px;
  line-height: 1;
}

.slider-arrow:hover {
  background: rgba(17, 18, 22, 0.65);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 6;
  width: 0%;
}

/* ---------- AVANTAJLARIMIZ ---------- */
.advantages {
  padding: 96px 0 100px;
  background: #ffffff;
}

.adv-head {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.adv-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.adv-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.4px;
}

.adv-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  margin: 20px auto 0;
}

.adv-head p {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray);
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: stretch;
}

.adv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}

.adv-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.adv-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.adv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 18px 20px;
  transition: background 0.35s ease-in-out;
}

.adv-card-top h3 {
  font-family: var(--font-head);
  font-size: 18.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.35s ease-in-out;
}

.adv-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: color 0.35s ease-in-out;
}

.adv-icon svg {
  width: 26px;
  height: 26px;
}

.adv-card:hover .adv-card-top {
  background: var(--ink);
}

.adv-card:hover .adv-card-top h3,
.adv-card:hover .adv-icon {
  color: var(--yellow);
}

.adv-card p {
  margin-top: 14px;
  padding: 0 2px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gray);
}

.adv-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.adv-media.in-view {
  opacity: 1;
  transform: translateY(0);
}

.adv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 45%;
  display: block;
  min-height: 340px;
}

/* ---------- PAKETLERİMİZ ---------- */
.packages {
  padding: 96px 0 110px;
  background: var(--bg-soft);
}

.pkg-head {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.pkg-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pkg-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.4px;
}

.pkg-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  margin: 20px auto 0;
}

.pkg-head p {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray);
}

.pkg-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.pkg-tab {
  position: relative;
  flex: 1 1 0;
  min-width: 150px;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 10px 26px -16px rgba(23, 24, 28, 0.14);
}

.pkg-tab:hover {
  transform: translateY(-2px);
}

.pkg-tab.active {
  border-color: var(--yellow);
  box-shadow: 0 14px 30px -14px rgba(250, 208, 0, 0.55);
}

.pkg-tab .pkg-tab-price {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--gray);
}

.pkg-tab.active .pkg-tab-price {
  color: var(--yellow-deep);
}

.pkg-tab-star {
  position: absolute;
  top: -11px;
  right: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 6px 14px -6px rgba(250, 208, 0, 0.7);
  white-space: nowrap;
}

.pkg-panel {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 44px 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  min-height: 420px;
}

.pkg-panel-left h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 10px;
}

.pkg-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-bottom: 28px;
}

.pkg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.pkg-checklist li svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--yellow-deep);
}

.pkg-price-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.pkg-price-big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
}

.pkg-price-big span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-left: 4px;
}

.pkg-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pkg-cta-btn:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(250, 208, 0, 0.55);
}

.pkg-panel-right {
  min-height: 1px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
}

.pkg-panel-right img {
  max-height: 440px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: 96px 0 100px;
  background: #ebede8;
}

.rev-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.rev-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rev-top h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.4px;
  max-width: 600px;
}

.rev-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 22px;
  flex: none;
  box-shadow: 0 10px 26px -16px rgba(23, 24, 28, 0.14);
}

.rev-badge .g-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: #4285F4;
}

.rev-badge .g-logo span:nth-child(2) { color: #EA4335; }
.rev-badge .g-logo span:nth-child(3) { color: #FBBC05; }
.rev-badge .g-logo span:nth-child(4) { color: #4285F4; }
.rev-badge .g-logo span:nth-child(5) { color: #34A853; }
.rev-badge .g-logo span:nth-child(6) { color: #EA4335; }

.rev-badge-stars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rev-badge-stars .stars {
  color: var(--yellow-deep);
  font-size: 13px;
  letter-spacing: 1px;
}

.rev-badge-stars small {
  font-size: 11.5px;
  color: var(--gray);
  font-weight: 600;
}

.rev-panel {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 44px 48px;
  box-shadow: var(--shadow-card);
}

.rev-quote {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: #2b2d35;
  margin-bottom: 30px;
  transition: opacity 0.15s ease;
}

.rev-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.rev-person-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rev-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  flex: none;
}

.rev-person-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}

.rev-person-role {
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 2px;
}

.rev-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rev-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  color: var(--ink);
  background: #ffffff;
  font-size: 18px;
}

.rev-arrow:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.rev-counter {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--gray);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 20px 0 110px;
  background: #ffffff;
}

.faq-head {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.4px;
}

.faq-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  margin: 20px auto 0;
}

.faq-head p {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray);
}

.faq-body {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: stretch;
}

.faq-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-soft);
  min-height: 480px;
  height: 100%;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 4px 14px rgba(18, 20, 26, 0.12);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 18px;
  cursor: pointer;
  user-select: none;
}

.faq-q h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  transition: color 0.25s ease;
}

.faq-item.active .faq-q h3 {
  color: #ffffff;
}

.faq-icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  position: relative;
  transition: background 0.25s ease;
}

.faq-item.active .faq-icon {
  background: var(--yellow);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: opacity 0.2s ease;
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 18px 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #64748b;
}

.faq-item.active .faq-a-inner {
  color: #cbd5e1;
}

/* İç Sayfalarda Daha Zarif ve İnce SSS Tasarımı */
.article-content .faq-list,
.service-content-body .faq-list {
  gap: 8px;
  margin-top: 16px !important;
  margin-bottom: 28px !important;
}

.article-content .faq-item,
.service-content-body .faq-item {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.article-content .faq-item.active,
.service-content-body .faq-item.active {
  background: var(--ink);
  border-color: var(--ink);
}

.article-content .faq-q,
.service-content-body .faq-q {
  padding: 11px 15px;
}

.article-content .faq-q h3,
.service-content-body .faq-q h3 {
  font-size: 14px;
  font-weight: 600;
}

.article-content .faq-icon,
.service-content-body .faq-icon {
  width: 22px;
  height: 22px;
}

.article-content .faq-icon::before,
.service-content-body .faq-icon::before {
  width: 9px;
  height: 1.5px;
}

.article-content .faq-icon::after,
.service-content-body .faq-icon::after {
  width: 1.5px;
  height: 9px;
}

.article-content .faq-a-inner,
.service-content-body .faq-a-inner {
  padding: 0 15px 12px;
  font-size: 13.3px;
  line-height: 1.6;
}

/* ---------- BLOG ---------- */
.blog {
  padding: 70px 0 110px;
  background: var(--yellow);
}

.blog-head {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.blog-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.4px;
}

.blog-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  background: var(--ink);
  border-radius: 3px;
  margin: 20px auto 0;
}

.blog-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-track {
  flex: 1;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.blog-track::-webkit-scrollbar {
  display: none;
}

.blog-card {
  flex: 0 0 calc(33.333% - 15px);
  scroll-snap-align: start;
  background: #22242a;
  border: 1px solid #22242a;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 34px -22px rgba(23, 24, 28, 0.35);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.blog-card-img {
  flex: none;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 220px;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}

.blog-card-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: #ffffff;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-body h3 a,
.blog-card-body h3 a:hover {
  color: var(--yellow);
}

.blog-card-img {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.blog-card-body p {
  margin-top: 10px;
  font-size: 13.3px;
  line-height: 1.6;
  color: #a7a9ae;
}

.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: #ffffff;
  text-decoration: none;
}

.blog-more i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-style: normal;
  font-size: 13px;
  color: #ffffff;
  transform: rotate(325deg) translateY(1px);
  transition: transform 0.4s ease-in-out, color 0.4s ease-in-out, background 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

.blog-more:hover i {
  transform: rotate(360deg) translateY(0);
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.blog-arrow {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-size: 18px;
}

.blog-arrow:hover {
  background: var(--ink);
  color: var(--yellow);
}

.blog-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.blog-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(23, 24, 28, 0.28);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.blog-dot.active {
  background: var(--ink);
  width: 22px;
  border-radius: 5px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ink);
  color: #c7c8cd;
}

.footer-top {
  padding: 76px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 17px;
  color: #ffffff;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: #9a9ca3;
  margin: 0 0 20px;
  max-width: 320px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-phone svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

.footer-phone:hover {
  color: var(--yellow);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-3px);
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-menu a {
  color: #c7c8cd;
  text-decoration: none;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.footer-menu a::before {
  content: "\00BB";
  color: var(--yellow);
  font-weight: 700;
}

.footer-menu a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-post {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.footer-post-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
}

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

.footer-post-title {
  font-size: 13.5px;
  line-height: 1.5;
  color: #e2e3e6;
  transition: 0.2s ease;
}

.footer-post:hover .footer-post-title {
  color: var(--yellow);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-tags span {
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #c7c8cd;
  transition: 0.2s ease;
}

.footer-tags span:hover {
  background: var(--yellow);
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 13px;
  color: #8a8c93;
  text-align: center;
}

/* ---------- RESERVATION MODAL ---------- */
.modal-overlay,
.res-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 18, 22, 0.7);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open,
.res-modal.open {
  display: flex;
}

.res-modal-backdrop {
  position: absolute;
  inset: 0;
}

.modal-box,
.res-modal-dialog {
  background: #ffffff;
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  border: none;
  z-index: 5;
}

.res-head {
  text-align: left;
  max-width: 640px;
  margin-bottom: 24px;
}

.res-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.res-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--yellow-deep);
  display: inline-block;
}

.res-head h2 {
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.res-head p {
  color: var(--gray);
  font-size: 14px;
}

.res-form {
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.res-form .full {
  grid-column: 1 / -1;
}

.res-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.res-form input,
.res-form select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  color: var(--ink);
}

.res-form input:focus,
.res-form select:focus {
  outline: none;
  border-color: var(--yellow);
}

.res-btn-submit,
.res-submit {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 11px;
  border: none;
  background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.35);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.res-btn-submit:hover,
.res-submit:hover {
  background: linear-gradient(135deg, #fde047 0%, #eab308 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 179, 8, 0.5);
  color: var(--ink);
}

.res-msg {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px;
}

.res-msg-ok {
  background: #e7f8ec;
  color: #0a6b2f;
}

.res-msg-ok a {
  color: #0a6b2f;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
}

.res-msg-error {
  background: #fdecec;
  color: #a32323;
}

/* ---------- STICKY MOBILE BAR ---------- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--ink);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}

.sticky-mobile-bar .row {
  display: flex;
}

.sticky-mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

.sticky-mobile-bar a.wa {
  background: #25D366;
}

.sticky-mobile-bar a.call {
  background: var(--yellow);
  color: var(--ink);
}

.sticky-mobile-bar svg {
  width: 18px;
  height: 18px;
}

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */
@media (max-width: 1100px) {
  nav.main-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  nav.main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 82%;
    max-width: 340px;
    background: var(--ink);
    padding: 100px 26px 30px;
    gap: 2px;
    z-index: 200;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }
  nav.main-nav.mobile-open .nav-item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  nav.main-nav.mobile-open .nav-item > a {
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: space-between;
  }
  nav.main-nav.mobile-open .nav-item.open .dropdown-caret {
    transform: rotate(180deg);
  }
  nav.main-nav.mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 2px 0 10px 12px;
  }
  nav.main-nav.mobile-open .dropdown-menu.open {
    display: grid;
  }
  nav.main-nav.mobile-open .dropdown-menu a {
    color: #c7c8cd !important;
    padding: 11px 0;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 90;
  }
  .nav-overlay.open {
    display: block;
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    position: absolute;
    top: 22px;
    right: 22px;
    cursor: pointer;
  }
  .btn-call {
    display: none;
  }
  .adv-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .adv-media img {
    min-height: 260px;
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 900px) {
  .pkg-tabs {
    flex-direction: column;
  }
  .pkg-panel {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }
  .pkg-panel-right {
    display: none;
  }
  .pkg-checklist {
    grid-template-columns: 1fr;
  }
  .faq-body {
    grid-template-columns: 1fr;
  }
  .faq-image img {
    min-height: 260px;
  }
  .blog-card {
    flex: 0 0 100%;
    flex-direction: column;
  }
  .blog-card-img {
    flex: none;
    height: 200px;
  }
  .blog-card-img img {
    min-height: 200px;
  }
  .blog-arrow {
    display: none;
  }
  .blog {
    padding: 10px 0 70px;
  }
}

@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: block;
  }
  body {
    padding-bottom: 54px;
  }
  .res-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 760px) {
  .hero-slider {
    height: 560px;
  }
  .slide h2 {
    font-size: 29px;
  }
  .slide .content {
    padding: 0 22px;
  }
  .slide .content-inner {
    max-width: 100%;
  }
  .slider-arrow {
    display: none;
  }
  .adv-head h2 {
    font-size: 28px;
  }
  .rev-top h2,
  .faq-head h2 {
    font-size: 26px;
  }
  .rev-quote {
    font-size: 16px;
  }
  .reviews {
    padding: 64px 0 60px;
  }
  .faq {
    padding: 10px 0 70px;
  }
}

@media (max-width: 640px) {
  .modal-box {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .modal-box .res-head {
    margin-bottom: 20px;
  }
  .modal-box .res-head h2 {
    font-size: 19px !important;
  }
  .modal-box .res-head p {
    font-size: 13px;
  }
  .modal-box .res-eyebrow {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .modal-close {
    width: 28px;
    height: 28px;
    top: 12px;
    right: 12px;
  }
  .modal-box .res-form label {
    font-size: 12.5px;
  }
  .modal-box .res-form input,
  .modal-box .res-form select {
    padding: 10px 12px;
    font-size: 13.5px;
  }
  .modal-box .res-submit {
    padding: 13px;
  }
}

@media (max-width: 620px) {
  .pkg-head h2 {
    font-size: 28px;
  }
  .packages {
    padding: 64px 0 70px;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  header.site .wrap {
    gap: 10px;
  }
  .logo-img {
    height: 32px;
  }
  .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
  }
  .adv-cards {
    grid-template-columns: 1fr;
  }
  .advantages {
    padding: 64px 0 70px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-desc {
    max-width: none;
  }
}

/* ================================================================
   INNER PAGES STYLES (Hakkımızda, Hizmetler, Paketler, Blog, İletişim)
   ================================================================ */

/* ---------- PAGE HERO BANNER ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #17181c 0%, #23252d 100%);
  padding: 60px 0 65px;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 208, 0, 0.12) 0%, rgba(250, 208, 0, 0) 70%);
  pointer-events: none;
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #9aa0a8;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #d8d9dd;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--yellow);
}
.breadcrumb-sep {
  opacity: 0.5;
  font-size: 11px;
}
.breadcrumb-current {
  color: var(--yellow);
  font-weight: 600;
}
.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.page-hero-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--yellow);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 16px;
  line-height: 1.65;
  color: #c7c8cd;
  max-width: 760px;
  margin-bottom: 24px;
}
.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- INNER CONTENT LAYOUT ---------- */
.inner-section {
  padding: 80px 0 90px;
  background: #ffffff;
}
.inner-section.bg-soft {
  background: var(--bg-soft);
}
.inner-grid-2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ---------- SERVICE SIDEBAR ---------- */
.service-sidebar {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px -15px rgba(23, 24, 28, 0.08);
}
.sidebar-box-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-nav-list,
.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-nav-link,
.sidebar-services-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  transition: all 0.2s ease;
}
.service-nav-link:hover,
.sidebar-services-list a:hover {
  background: var(--ink);
  color: #ffffff;
  padding-left: 18px;
}
.service-nav-link.active,
.sidebar-services-list a.active {
  background: var(--ink);
  color: var(--yellow);
  font-weight: 700;
  box-shadow: 0 4px 14px -4px rgba(23, 24, 28, 0.3);
}
.service-nav-link svg,
.sidebar-services-list a svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform 0.2s ease;
  flex: none;
}
.service-nav-link:hover svg,
.service-nav-link.active svg,
.sidebar-services-list a:hover svg,
.sidebar-services-list a.active svg {
  opacity: 1;
  transform: translateX(3px);
}

.sidebar-cta-card,
.sidebar-contact-card {
  background: linear-gradient(135deg, #17181c 0%, #292b34 100%);
  border-radius: 18px;
  padding: 28px 24px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px -20px rgba(23, 24, 28, 0.35);
}
.sidebar-cta-card::before,
.sidebar-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}
.sidebar-contact-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.sidebar-cta-card h3,
.sidebar-contact-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.sidebar-cta-card p,
.sidebar-contact-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #c7c8cd;
  margin-bottom: 20px;
}
.sidebar-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border-radius: 10px;
  margin-bottom: 10px;
  width: 100%;
  transition: transform 0.2s ease, background 0.2s ease;
}
.sidebar-phone-btn:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
}
.sidebar-res-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sidebar-res-btn:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-block {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ---------- SERVICE CONTENT BODY & ARTICLE CONTENT ---------- */
.service-content-body,
.article-content {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
}
.service-main-img,
.service-main-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 16px 40px -20px rgba(23, 24, 28, 0.2);
  border: 1px solid var(--line);
}
.service-main-img img,
.service-main-image img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
}
.service-content-body h2,
.article-content h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin: 36px 0 16px;
  line-height: 1.3;
}
.service-content-body h3,
.article-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
}
.service-content-body p,
.article-content p {
  margin-bottom: 20px;
}
.service-content-body ul,
.article-content ul,
.service-content-body ol,
.article-content ol {
  margin: 20px 0 24px 24px;
}
.service-content-body li,
.article-content li {
  margin-bottom: 10px;
}
.service-callout {
  background: #fffbeb;
  border-left: 4px solid var(--yellow-deep);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #78350f;
}
.service-callout strong {
  color: #451a03;
  display: block;
  margin-bottom: 6px;
  font-size: 15.5px;
}

/* Checklist Grid */
.checklist-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  margin: 32px 0;
}
.checklist-box-head {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.checklist-item svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: #10b981;
  margin-top: 2px;
}

/* Feature Cards 3-Col */
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}
.feature-mini-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -16px rgba(23, 24, 28, 0.12);
}
.feature-mini-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-soft);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--ink);
}
.feature-mini-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature-mini-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray);
  margin-bottom: 0;
}

/* CTA Banner Strip */
.cta-banner-strip {
  background: linear-gradient(135deg, #17181c 0%, #20222a 100%);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 48px 0 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-banner-strip::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(250, 208, 0, 0.15) 0%, rgba(250, 208, 0, 0) 70%);
  pointer-events: none;
}
.cta-banner-strip h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-banner-strip p {
  color: #c7c8cd;
  font-size: 14.5px;
  max-width: 480px;
  margin-bottom: 0;
}
.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

/* ---------- PACKAGES PAGE GRID & CARDS ---------- */
.packages-page-section {
  padding: 80px 0 90px;
  background: var(--bg-soft);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.pkg-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -15px rgba(23, 24, 28, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -18px rgba(23, 24, 28, 0.16);
}
.pkg-card.pkg-featured {
  border: 2px solid var(--yellow);
  background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
  box-shadow: 0 18px 45px -15px rgba(250, 208, 0, 0.35);
}
.pkg-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 6px 16px -4px rgba(250, 208, 0, 0.7);
}
.pkg-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pkg-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.pkg-price {
  margin-top: 8px;
}
.pkg-amount {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
}
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.pkg-features li svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex: none;
  margin-top: 2px;
}

/* ---------- COMPARISON TABLE ---------- */
.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px -20px rgba(23, 24, 28, 0.1);
  background: #ffffff;
  margin: 40px 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare-table th,
.compare-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: var(--bg-soft);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}
.compare-table th.feature-col {
  text-align: left;
  min-width: 240px;
  padding-left: 24px;
}
.compare-table th.featured-col {
  background: var(--ink);
  color: var(--yellow);
  position: relative;
}
.compare-table th .pkg-th-price {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-top: 4px;
  color: var(--yellow-deep);
}
.compare-table th.featured-col .pkg-th-price {
  color: var(--yellow);
}
.compare-table td.feature-name {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  padding-left: 24px;
}
.compare-table td.featured-col {
  background: rgba(250, 208, 0, 0.05);
}
.check-yes {
  color: #10b981;
  font-weight: bold;
}
.check-no {
  color: #d1d5db;
  font-size: 16px;
}

/* ---------- BLOG GRID & SINGLE ---------- */
.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}
.blog-item-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(23, 24, 28, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px -18px rgba(23, 24, 28, 0.16);
}
.blog-item-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--ink);
}
.blog-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-item-card:hover .blog-item-thumb img {
  transform: scale(1.06);
}
.blog-item-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
}
.blog-item-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-item-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.blog-item-card:hover .blog-item-title {
  color: var(--yellow-deep);
}
.blog-item-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 20px;
  flex: 1;
}
.blog-item-link {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}
.blog-item-link:hover {
  gap: 10px;
  color: var(--yellow-deep);
}

/* Blog Single Article */
.article-header {
  margin-bottom: 30px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.article-meta strong {
  color: var(--ink);
}
.article-body {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}
.article-body h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin: 36px 0 16px;
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
}
.article-body p {
  margin-bottom: 20px;
}
.article-body ul,
.article-body ol {
  margin: 20px 0 24px 24px;
}
.article-body li {
  margin-bottom: 10px;
}

/* ---------- CONTACT PAGE STYLES ---------- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 30px -15px rgba(23, 24, 28, 0.08);
}
.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-info-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0;
}
.contact-info-card a {
  color: var(--ink);
  font-weight: 700;
  transition: color 0.2s ease;
}
.contact-info-card a:hover {
  color: var(--yellow-deep);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px -20px rgba(23, 24, 28, 0.15);
  height: 100%;
  min-height: 480px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

/* Footer Post Items in Footer */
.footer-post-item {
  display: block;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
}
.footer-post-item:hover {
  transform: translateX(4px);
}
.footer-post-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #d8d9dd;
  line-height: 1.4;
  margin-bottom: 4px;
}
.footer-post-item:hover .footer-post-title {
  color: var(--yellow);
}
.footer-post-date {
  font-size: 11px;
  color: #71717a;
}

/* Responsive navigation & inner pages */
@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  nav.main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #12141a;
    flex-direction: column;
    align-items: stretch;
    padding: 60px 20px 30px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
  }

  nav.main-nav.mobile-open {
    right: 0;
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 8px;
    display: none;
    background: #1a1d24;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown-menu.open {
    display: block;
  }

  .dropdown-menu-grid {
    grid-template-columns: 1fr;
  }

  .dm-item {
    padding: 8px 10px;
  }

  .dm-title {
    color: #e2e8f0;
  }

  .dm-tagline {
    color: #94a3b8;
  }

  .dm-dot {
    background: rgba(250, 208, 0, 0.4);
  }

  .dm-item:hover .dm-dot {
    background: var(--yellow);
  }

  .dm-item:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .dm-header-title {
    color: #94a3b8;
  }

  .dropdown-menu-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .dropdown-menu-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .dm-footer-info {
    color: #94a3b8;
  }

  .inner-grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-sidebar {
    position: static;
  }
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .blog-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid-3 {
    grid-template-columns: 1fr;
  }
  .cta-banner-strip {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .cta-banner-strip p {
    max-width: none;
  }
}
@media (max-width: 680px) {
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid-3 {
    grid-template-columns: 1fr;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 44px 0 48px;
  }
  .page-hero h1 {
    font-size: 26px;
  }
  .inner-section {
    padding: 50px 0 60px;
  }
}

@media (max-width: 600px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-main-grid > div {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }
  .page-hero h1 {
    font-size: 23px !important;
  }
  .page-hero p {
    font-size: 13.5px !important;
  }
  .service-callout {
    padding: 16px 18px;
    font-size: 13.5px;
  }
  .pkg-panel {
    padding: 24px 18px !important;
  }
  .pkg-title {
    font-size: 20px;
  }
  .pkg-price-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .pkg-price-row .pkg-cta-btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .res-btn-submit,
  .res-submit {
    padding: 12px 16px;
    font-size: 14px;
  }
}
