/* ===== TRENLE TURKIYE - GECE TRENI + PENCERE ISIGI ===== */

:root {
  --bg-primary: #1a1d23;
  --bg-secondary: #22262e;
  --bg-card: #2a2e38;
  --bg-card-hover: #323744;
  --text-primary: #e8e4df;
  --text-secondary: #b0a99f;
  --text-muted: #7a7570;
  --amber: #d4a54a;
  --amber-light: #e8c36a;
  --amber-glow: rgba(212, 165, 74, 0.15);
  --amber-glow-strong: rgba(212, 165, 74, 0.3);
  --rail-line: #3a3f4a;
  --rail-line-light: #4a5060;
  --border-card: #3a3f4a;
  --lacivert: #1e2a3a;
  --lacivert-light: #253448;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1140px;
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-light); }
a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--amber);
  color: var(--bg-primary);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--lacivert);
  border-bottom: 2px solid var(--rail-line);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  gap: 16px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--amber);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color var(--transition), text-shadow var(--transition);
}
.site-logo:hover {
  color: var(--amber-light);
  text-shadow: 0 0 18px var(--amber-glow-strong);
}
.site-logo:hover span {
  color: var(--text-primary);
}

.site-logo span {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.85em;
  transition: color var(--transition);
}

/* ===== NAV ===== */
.main-nav { display: flex; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rail-line);
  color: var(--text-primary);
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  position: relative;
  transition: border-color var(--transition);
}
.nav-toggle .hamburger,
.nav-toggle .cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}
.nav-toggle .cross {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .cross {
  opacity: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-menu a {
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--amber);
  background: var(--amber-glow);
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lacivert);
    flex-direction: column;
    padding: 0 24px;
    border-bottom: 2px solid var(--rail-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-menu.open {
    max-height: 400px;
    padding: 12px 24px 20px;
  }
  .nav-menu a { padding: 10px 14px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--lacivert) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
}
.hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 32px;
  position: relative;
}

.hero-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--bg-primary);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.hero-cta:hover {
  background: var(--amber-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* ===== RAIL DIVIDER ===== */
.rail-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
}
.rail-divider::before,
.rail-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--rail-line) 0px,
    var(--rail-line) 20px,
    transparent 20px,
    transparent 28px
  );
}
.rail-divider .rail-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--amber-glow-strong);
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-title .accent {
  color: var(--amber);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.8;
}

/* ===== NEDEN TREN - SPLIT LAYOUT ===== */
.neden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

@media (max-width: 700px) {
  .neden-grid { grid-template-columns: 1fr; }
}

.neden-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.neden-card:hover {
  transform: translateY(-3px);
  border-color: var(--amber);
}

.neden-card h3 {
  font-family: var(--font-heading);
  color: var(--amber);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.neden-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== ROTA MANTIGI - HORIZONTAL PANELS ===== */
.rota-panels {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.rota-panel {
  min-width: 300px;
  flex: 1;
  background: linear-gradient(135deg, var(--lacivert) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-card);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px;
  scroll-snap-align: start;
}

.rota-panel h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.rota-panel p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

/* ===== MEVSIM & KONFOR ===== */
.mevsim-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

@media (max-width: 700px) {
  .mevsim-wrap { grid-template-columns: 1fr; }
}

.mevsim-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.mevsim-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.mevsim-sidebar h4 {
  color: var(--amber);
  font-family: var(--font-heading);
  margin-bottom: 12px;
}
.mevsim-sidebar ul {
  list-style: none;
  padding: 0;
}
.mevsim-sidebar li {
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--rail-line);
  font-size: 0.93rem;
}
.mevsim-sidebar li:last-child { border: none; }
.mevsim-sidebar li strong {
  color: var(--text-primary);
}

/* ===== KONAKLAMA ===== */
.konaklama-content {
  max-width: 760px;
  margin-top: 24px;
}
.konaklama-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

/* ===== YEREL DENEYIM ===== */
.deneyim-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 700px) {
  .deneyim-blocks { grid-template-columns: 1fr; }
}

.deneyim-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.deneyim-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}
.deneyim-block h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.deneyim-block p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

/* ===== ORNEK HAT FIKIRLERI - TICKET CARDS ===== */
.hat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.hat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hat-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.hat-card-body {
  padding: 24px;
}
.hat-card-body h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.hat-card-tag {
  display: inline-block;
  background: var(--amber-glow);
  color: var(--amber);
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.hat-card-body p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== INTERACTIVE: SURE SECICI ===== */
.interactive-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px;
}
.interactive-box h3 {
  font-family: var(--font-heading);
  color: var(--amber);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.selector-group {
  margin-bottom: 24px;
}
.selector-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.selector-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.selector-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--rail-line);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.selector-btn:hover {
  border-color: var(--amber);
  color: var(--text-primary);
}
.selector-btn.active {
  background: var(--amber-glow);
  border-color: var(--amber);
  color: var(--amber);
}
.selector-btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.suggestion-output {
  background: var(--bg-secondary);
  border: 1px solid var(--rail-line);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  min-height: 60px;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 32px;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--rail-line);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 20px 40px 20px 0;
  font-size: 1.02rem;
  font-family: var(--font-body);
  cursor: pointer;
  position: relative;
  line-height: 1.5;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--amber); }
.faq-question:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
  border-radius: 4px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--amber);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-answer > * {
  overflow: hidden;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--lacivert);
  border-top: 2px solid var(--rail-line);
  padding: 48px 0 24px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.footer-about .footer-logo {
  font-family: var(--font-heading);
  color: var(--amber);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.footer-links ul {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber); }

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--rail-line);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--lacivert);
  border-top: 2px solid var(--amber);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.cookie-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.cookie-text a { color: var(--amber); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.cookie-btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
.cookie-btn--accept {
  background: var(--amber);
  color: var(--bg-primary);
}
.cookie-btn--accept:hover { background: var(--amber-light); }
.cookie-btn--reject {
  background: transparent;
  border: 1px solid var(--rail-line);
  color: var(--text-secondary);
}
.cookie-btn--reject:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.cookie-btn--settings {
  background: transparent;
  border: 1px solid var(--rail-line);
  color: var(--text-secondary);
}
.cookie-btn--settings:hover { border-color: var(--text-secondary); color: var(--text-primary); }

/* Cookie settings panel */
.cookie-settings-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease;
  margin-top: 0;
  padding-top: 0;
}
.cookie-settings-panel.visible {
  max-height: 300px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rail-line);
}

.cookie-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--rail-line);
}
.cookie-setting:last-child { border: none; }

.cookie-setting-label {
  color: var(--text-primary);
  font-size: 0.9rem;
}
.cookie-setting-label small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--rail-line);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-toggle .slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--text-primary);
  border-radius: 50%;
  transition: transform var(--transition);
}
.cookie-toggle input:checked + .slider { background: var(--amber); }
.cookie-toggle input:checked + .slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }
.cookie-toggle input:focus-visible + .slider {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.cookie-save-btn {
  margin-top: 12px;
}

/* ===== TECH PAGES ===== */
.page-hero {
  background: linear-gradient(180deg, var(--lacivert) 0%, var(--bg-primary) 100%);
  padding: 60px 0 40px;
  border-bottom: 2px solid var(--rail-line);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--text-primary);
}
.page-hero p {
  color: var(--text-secondary);
  margin-top: 8px;
}

.page-content {
  padding: 48px 0 60px;
  max-width: 800px;
}
.page-content h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.3rem;
  margin: 32px 0 12px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.page-content ul {
  color: var(--text-secondary);
  margin-bottom: 14px;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.page-content a { text-decoration: underline; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.contact-info-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--rail-line);
  color: var(--text-secondary);
  font-size: 0.93rem;
}
.contact-info-item:last-child { border: none; }
.contact-info-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.form-group label .required {
  color: var(--amber);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--rail-line);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--amber);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.form-checkbox label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-submit {
  background: var(--amber);
  color: var(--bg-primary);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
}
.form-submit:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-submit:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.form-result {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-result.success {
  display: block;
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #27ae60;
}
.form-result.error {
  display: block;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: #e74c3c;
}

/* ===== SITEMAP PAGE ===== */
.sitemap-list {
  list-style: none;
  padding: 0;
}
.sitemap-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rail-line);
}
.sitemap-list a {
  color: var(--amber);
  font-size: 0.95rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTENT WITH IMAGE ===== */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.content-with-image--left .content-with-image__img { order: -1; }
@media (max-width: 700px) {
  .content-with-image { grid-template-columns: 1fr; }
  .content-with-image--left .content-with-image__img { order: 0; }
}
.content-with-image__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  object-fit: cover;
}
.content-with-image__text p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ===== INLINE IMAGE (within text flow) ===== */
.inline-image {
  margin: 20px 0;
}
.inline-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  object-fit: cover;
}

/* ===== DENEYIM BLOCK IMAGE ===== */
.deneyim-block__img {
  margin-bottom: 14px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.deneyim-block__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== HAT CARD IMAGE (real img) ===== */
.hat-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
