/* =========================================
   Psikolog/Danışmanlık Site Template
   Premium Styles — v2.0 (Template)
   ========================================= */

/* ---------- CSS Custom Properties (Temel Varsayılan: theme-warm) ---------- */
:root,
body.theme-warm {
  --bg: #F8F5EF;
  --surface: #FFFFFF;
  --surface-soft: #F1E8DD;
  --text: #2B2520;
  --muted: #746B62;
  --accent: #A97855;
  --accent-dark: #7E553B;
  --sage: #8FA391;
  --line: rgba(43, 37, 32, 0.12);
  --shadow: 0 24px 70px rgba(43, 37, 32, 0.10);
  --shadow-sm: 0 4px 20px rgba(43, 37, 32, 0.06);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-xs: 10px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --nav-height: 80px;
  --max-width: 1200px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Tema: Sage ---------- */
body.theme-sage {
  --bg: #F4F7F2;
  --surface: #FFFFFF;
  --surface-soft: #E5EDE2;
  --text: #202820;
  --muted: #687264;
  --accent: #7C927A;
  --accent-dark: #5C725A;
  --sage: #A8B99F;
  --line: rgba(32, 40, 32, 0.12);
  --shadow: 0 24px 70px rgba(32, 40, 32, 0.10);
  --shadow-sm: 0 4px 20px rgba(32, 40, 32, 0.06);
}

/* ---------- Tema: Blue ---------- */
body.theme-blue {
  --bg: #F4F7FA;
  --surface: #FFFFFF;
  --surface-soft: #E5EDF2;
  --text: #1F2733;
  --muted: #697282;
  --accent: #6C87A8;
  --accent-dark: #4E6A8A;
  --sage: #8EA9B7;
  --line: rgba(31, 39, 51, 0.12);
  --shadow: 0 24px 70px rgba(31, 39, 51, 0.10);
  --shadow-sm: 0 4px 20px rgba(31, 39, 51, 0.06);
}

/* ---------- Tema: Rose ---------- */
body.theme-rose {
  --bg: #FAF4F3;
  --surface: #FFFFFF;
  --surface-soft: #F2E3E0;
  --text: #302424;
  --muted: #756766;
  --accent: #B97972;
  --accent-dark: #9C5F58;
  --sage: #B6A095;
  --line: rgba(48, 36, 36, 0.12);
  --shadow: 0 24px 70px rgba(48, 36, 36, 0.10);
  --shadow-sm: 0 4px 20px rgba(48, 36, 36, 0.06);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  z-index: 10000;
  font-size: 14px;
  font-weight: 500;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 700px;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--surface);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(248, 245, 239, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(43, 37, 32, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--surface);
  background: var(--accent);
  padding: 10px 24px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-xs);
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Bottom Bar ---------- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(248, 245, 239, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 8px 16px;
  padding-bottom: max(8px, env(safe-area-inset-bottom, 8px));
  gap: 8px;
}

.mbb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}

.mbb-whatsapp {
  background: #25D366;
  color: #fff;
}
.mbb-whatsapp:hover {
  background: #1ebe5c;
}
.mbb-call {
  background: var(--accent);
  color: #fff;
}
.mbb-call:hover {
  background: var(--accent-dark);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-height) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(169, 120, 85, 0.10);
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- Hero Visual ---------- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(12px);
}

.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.profile-img[src="assets/images/profile.jpg"] {
  display: block;
}

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  opacity: 0.4;
}

.photo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--surface);
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.hero-mini-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 14px;
  background: rgba(248, 245, 239, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 4px 16px rgba(169, 120, 85, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(169, 120, 85, 0.30);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(169, 120, 85, 0.06);
  transform: translateY(-1px);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 48px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.trust-card:hover {
  background: var(--surface-soft);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(169, 120, 85, 0.10);
  color: var(--accent);
}

.trust-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.trust-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- About ---------- */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}

.about-text p {
  max-width: 520px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-photo-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.about-img[src="assets/images/about.jpg"] {
  display: block;
}

.ap-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  opacity: 0.4;
}

.ap-inner span {
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(169, 120, 85, 0.20);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(169, 120, 85, 0.10);
  color: var(--accent);
}

.service-title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.services-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.services-cta p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
}

/* ---------- Themes Grid ---------- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.theme-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.theme-item:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateX(4px);
}

.theme-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  min-width: 48px;
}

.step-content h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Ethics ---------- */
.ethics-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 auto;
}

.ethics-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(169, 120, 85, 0.06);
  border: 1px solid rgba(169, 120, 85, 0.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--accent-dark);
  line-height: 1.6;
  margin-top: 12px;
}

.ethics-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- CTA Section ---------- */
.section-cta {
  background: var(--surface);
}

.cta-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(180deg, rgba(169, 120, 85, 0.04), transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.cta-title {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(248, 245, 239, 0.5);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

a.contact-value:hover {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-action-btn {
  width: 100%;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-note {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 600px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .service-card:hover,
  .process-step:hover,
  .theme-item:hover {
    transform: none;
  }
}

/* ---------- Focus Visible ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(169, 120, 85, 0.20);
  color: var(--text);
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-desc {
    max-width: 600px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    max-width: 360px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text p {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Tablet hizalama düzeltmeleri */
  .section-label { text-align: center; width: 100%; }
  .section-title { text-align: center; margin-left: auto; margin-right: auto; }
  .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .trust-card { text-align: center; align-items: center; }
  .service-card { text-align: center; align-items: center; }
  .service-icon { margin: 0 auto; }
  .cta-card { text-align: center; }
  .contact-actions { align-items: center; }
  .contact-action-btn { justify-content: center; }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1000;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 28px;
  }

  .nav-link {
    font-size: 18px;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 32px) 0 48px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-card {
    padding: 20px;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-card {
    padding: 16px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 20px;
  }

  /* Themes */
  .themes-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-step {
    padding: 20px;
  }

  /* CTA */
  .cta-card {
    padding: 32px 20px;
  }

  .cta-btns {
    flex-direction: column;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact */
  .contact-actions {
    gap: 10px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Mobile Bottom Bar */
  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }
}

/* ---------- Responsive: Small Mobile ---------- */
@media (max-width: 400px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-desc {
    font-size: 15px;
  }
}

/* ═══ MOBİL BOTTOM SHEET MENU ═══ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.menu-overlay.open { opacity: 1; visibility: visible; pointer-events: all; }

.mobile-menu {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  transform: translateY(110%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, visibility 0.32s ease;
  max-height: 85vh;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: all; }
.mobile-menu-inner {
  background: var(--surface);
  border-radius: 26px 26px 0 0;
  padding: 14px 20px 28px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-drag {
  display: block; width: 36px; height: 4px;
  border-radius: 4px; background: var(--muted);
  opacity: 0.3; margin: 0 auto 10px; cursor: default;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.mobile-menu-title {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  color: var(--text);
}
.mobile-menu-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-soft);
  color: var(--muted);
  cursor: pointer; border: none;
}
.mobile-menu-close:hover { background: var(--line); }

.mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.mobile-menu-links li { margin: 0; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; min-height: 48px;
  padding: 12px 16px;
  font-size: 15px; font-weight: 500;
  color: var(--text);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mobile-nav-link::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 2px solid var(--muted);
  border-top: 2px solid var(--muted);
  transform: rotate(45deg);
  opacity: 0.4;
  flex-shrink: 0;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--surface-soft);
}
.mobile-nav-link.active { color: var(--accent); }

.mobile-menu-cta-wrap { padding-top: 8px; }
.mobile-menu-cta-wrap .btn { width: 100%; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .menu-overlay { transition: none !important; }
}
