/* ===== Av. Aysel Altaş — Ana Stil Dosyası ===== */

:root {
  --navy: #17233b;
  --navy-2: #1f3155;
  --gold: #b6913c;
  --gold-light: #d8b768;
  --cream: #f7f4ee;
  --ink: #2a2f38;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e7e2d8;
  --shadow: 0 20px 45px rgba(23, 35, 59, 0.10);
  --radius: 10px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
}

p { margin: 0 0 16px; color: var(--muted); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section.alt-bg { background: var(--cream); }

.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-lead {
  max-width: 680px;
  font-size: 17px;
}

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader-mark {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 32px;
  letter-spacing: 4px;
  animation: pulse 1.2s ease-in-out infinite;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
  text-transform: uppercase;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.section .btn-outline { border-color: var(--navy); color: var(--navy); }
.section .btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-text {
  background: none;
  border: none;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  padding: 4px 0;
  font-size: 15px;
}
.btn-text:hover { color: var(--navy); }
.btn-sm { padding: 8px 16px; font-size: 12px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(23, 35, 59, .96);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 15px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.brand-text small {
  font-family: var(--font-body);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-phone {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-slider, .hero-slide {
  position: absolute; inset: 0;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: kenburns 22s ease-in-out infinite;
}
.hero-slide.is-active { opacity: 1; }
@keyframes kenburns {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,22,38,.92) 0%, rgba(23,35,59,.78) 45%, rgba(23,35,59,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  max-width: 780px;
}
.hero-eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold-light); }
.hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-down {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 20px;
}
.scroll-down span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold-light);
  border-radius: 3px;
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { top: 22px; opacity: 0; }
  100% { top: 22px; opacity: 0; }
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-media-frame {
  height: 460px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: right center;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong {
  display: block;
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 30px;
}
.about-badge span { font-size: 12px; color: rgba(255,255,255,.75); }
.about-text h2 { font-size: clamp(26px, 3vw, 36px); }
.about-points { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.about-points li {
  padding-left: 30px;
  position: relative;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.about-points li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== Practice areas ===== */
.practice-intro { text-align: center; padding-bottom: 40px; }
.practice-intro .section-lead { margin: 0 auto; }
.practice-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}
.practice-grid.reverse { grid-template-columns: 0.8fr 1.2fr; }
.practice-heading { position: sticky; top: 120px; }
.practice-icon {
  display: inline-flex;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.practice-heading h2 { font-size: clamp(24px, 3vw, 32px); }
.practice-list { display: flex; flex-direction: column; gap: 12px; }
.practice-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  transition: border-color .2s ease;
}
.alt-bg .practice-list details { background: var(--white); }
.practice-list details[open] { border-color: var(--gold); }
.practice-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.practice-list summary::-webkit-details-marker { display: none; }
.practice-list summary::after {
  content: '+';
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
}
.practice-list details[open] summary::after { content: '–'; }
.practice-list summary span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.practice-list details p {
  margin: 14px 0 0;
  font-size: 14.5px;
}

/* ===== Articles ===== */
.article-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.article-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.article-date {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-card h3 {
  font-size: 21px;
  margin: 10px 0 14px;
}
.article-excerpt { font-size: 14.5px; margin-bottom: 18px; }

/* ===== Standalone article page ===== */
.article-page { padding: 160px 0 100px; background: var(--cream); min-height: 60vh; }
.article-page-container { max-width: 760px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 30px;
}
.back-link:hover { color: var(--navy); }
.article-page-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 56px;
  box-shadow: var(--shadow);
}
.article-page-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.article-page-toolbar .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.article-page-toolbar .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.article-full-head { margin-bottom: 24px; }
.article-full-head h1 { font-size: clamp(24px, 3.2vw, 34px); margin: 10px 0 6px; }
.article-author { color: var(--muted); font-size: 13px; font-style: italic; }
.article-full-body p { color: var(--ink); font-size: 15.5px; }
.article-nav-links {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: right;
}
.article-nav-links a { color: var(--gold); font-weight: 600; font-size: 14.5px; }
.article-nav-links a:hover { color: var(--navy); }

/* ===== Contact ===== */
.contact { background: var(--navy); }
.contact h2, .contact .section-eyebrow { color: var(--white); }
.contact .section-eyebrow { color: var(--gold-light); }
.contact .section-lead { color: rgba(255,255,255,.75); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-list { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.contact-list span { color: rgba(255,255,255,.72); font-size: 14.5px; }
.contact-list a:hover { color: var(--gold-light); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.site-footer { background: #101929; padding: 40px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-text { color: var(--white); font-size: 16px; }
.footer-note, .footer-copy { color: rgba(255,255,255,.55); font-size: 13px; margin: 0; }
.footer-note a:hover, .footer-copy a:hover { color: var(--gold-light); }

/* ===== Mobile call FAB ===== */
.mobile-call-fab {
  display: none;
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  z-index: 900;
  transition: bottom .3s ease;
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  z-index: 950;
  transition: transform .25s ease, bottom .3s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }

/* ===== Cookie consent banner ===== */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.3);
  transform: translateY(120%);
  transition: transform .5s ease;
}
.cookie-consent.is-visible { transform: translateY(0); }
.cookie-consent p {
  margin: 0;
  font-size: 13.5px;
  max-width: 720px;
  color: rgba(255,255,255,.82);
  text-align: center;
}
.cookie-consent a { color: var(--gold-light); text-decoration: underline; }
.cookie-consent .btn { flex-shrink: 0; }

body.cookie-open .whatsapp-fab { bottom: 110px; }

/* ===== Reveal animation ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid, .practice-grid, .practice-grid.reverse, .contact-grid {
    grid-template-columns: 1fr;
  }
  .practice-heading { position: static; }
  .about-media-frame { height: 340px; }
  .article-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: var(--navy-2);
    padding: 100px 30px;
    transition: right .35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .main-nav.is-open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 26px; }
  .nav-toggle { display: flex; }
  .mobile-call-fab { display: flex; bottom: 90px; }
  body.cookie-open .mobile-call-fab { bottom: 190px; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-badge { right: 0; bottom: -18px; padding: 16px 20px; }
  .article-page-panel { padding: 32px 24px; }
  .cookie-consent { flex-direction: column; padding: 18px 20px; gap: 14px; }
  .cookie-consent .btn { width: 100%; justify-content: center; }
  body.cookie-open .whatsapp-fab { bottom: 150px; }
  body.cookie-open .mobile-call-fab { bottom: 230px; }
}

/* ===== Print styles ===== */
@media print {
  .site-header, .site-footer, .mobile-call-fab, .whatsapp-fab, .cookie-consent, .preloader,
  .back-link, .article-page-toolbar, .article-nav-links { display: none !important; }
  .article-page { padding: 0; background: var(--white); }
  .article-page-panel { box-shadow: none; border: none; padding: 0; }
  body { background: var(--white); }
}
