/* ===================================================
   KUNCAN HUKUK & DANIŞMANLIK
   Professional Law Firm Website — Turkish
   =================================================== */

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

:root {
  --navy:       #0c1b2e;
  --navy-mid:   #122340;
  --navy-light: #1a3358;
  --gold:       #c9a96e;
  --gold-dark:  #a8854a;
  --gold-light: #e8d5b0;
  --white:      #ffffff;
  --off-white:  #f5f2ee;
  --light-bg:   #f9f7f4;
  --text:       #2a2a2a;
  --text-mid:   #4a4a5a;
  --text-light: #7a7a8a;
  --border:     #e0dbd4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
  --font-deco:  'Cinzel', serif;

  --transition: 0.3s ease;
  --radius:     4px;
  --shadow:     0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 50px rgba(0,0,0,0.14);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
.section-eyebrow {
  font-family: var(--font-deco);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}
.section-desc.light { color: rgba(255,255,255,0.7); }

.section-header.centered { text-align: center; margin-bottom: 60px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* === SECTION === */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light-bg); }

/* ===================================================
   NAVIGATION
   =================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(12, 27, 46, 0.98);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--font-deco);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--navy) !important;
}


.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 1003;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================
   HERO
   =================================================== */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(12,27,46,0.92) 0%, rgba(18,35,64,0.85) 50%, rgba(12,27,46,0.92) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 60px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 120px 24px 60px;
}

.hero-eyebrow {
  font-family: var(--font-deco);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,169,110,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
  z-index: 2;
}
.hero-scroll i { font-size: 0.85rem; }

/* ===================================================
   ABOUT
   =================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  border-radius: 2px;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/5;
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,169,110,0.3);
  z-index: 1;
  pointer-events: none;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
}

.about-placeholder {
  color: var(--gold);
  opacity: 0.15;
  font-size: 8rem;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.about-text {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-features li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===================================================
   SERVICES
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--navy-mid);
  padding: 44px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}
.service-card:hover {
  background: var(--navy-light);
  transform: translateY(-4px);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--navy); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,169,110,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

.service-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: gap var(--transition);
}
.service-link:hover { gap: 14px; }

/* ===================================================
   WHY US
   =================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 36px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201,169,110,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-item p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

.why-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0 20px 20px;
}

.why-bg-shape {
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  width: 70%;
  background: var(--light-bg);
  border-radius: 2px;
  z-index: -1;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.why-card:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.why-card-1 { margin-right: 40px; }
.why-card-3 { margin-right: 40px; }

.why-card i {
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
}
.why-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.why-card span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===================================================
   TEAM
   =================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-photo {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-initials {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.6;
  z-index: 1;
  position: relative;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,27,46,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }

.team-social {
  display: flex;
  gap: 12px;
}
.team-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.team-social a:hover { background: var(--gold); color: var(--navy); }

.team-info {
  padding: 24px;
}
.team-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  display: block;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-slider { overflow: hidden; position: relative; }

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 80px;
  text-align: center;
}

.testimonial-quote {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 28px;
  opacity: 0.6;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-initials {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}
.testimonial-author span {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-map {
  margin-top: 60px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}
.contact-details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,169,110,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-details strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-details span {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* FORM */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #2e7d32;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.1rem; flex-shrink: 0; }

/* ===================================================
   FOOTER
   =================================================== */
#footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 20px 0 28px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-deco);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
.yasal-uyari-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  text-decoration: underline;
  font-family: inherit;
  opacity: 0.8;
  transition: opacity .2s;
}
.yasal-uyari-btn:hover { opacity: 1; }

/* Legal Modal */
.legal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.legal-modal-overlay.active { display: flex; }
.legal-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.legal-modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.legal-modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
  padding: 0 4px;
  transition: color .2s;
}
.legal-modal-close:hover { color: var(--navy); }
.legal-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #374151;
}
.legal-modal-body p { margin-bottom: 14px; }
.legal-modal-body p:last-child { margin-bottom: 0; }

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   LANGUAGE TOGGLE
   =================================================== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-deco);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  transition: all var(--transition);
}
.lang-toggle:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.lang-active {
  color: var(--gold);
  font-weight: 600;
}
.lang-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
}
.lang-other {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.lang-toggle:hover .lang-other { color: rgba(255,255,255,0.8); }

/* ===================================================
   WHATSAPP FLOAT BUTTON
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(-8px); }

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(0);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

/* Stat icon variant (no number) */
.stat-icon {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}

/* ===================================================
   LAWYER PROFILE SECTION
   =================================================== */
.lawyer-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

/* Photo */
.lawyer-photo-wrap {
  position: relative;
}

.lawyer-photo-frame {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy);
  position: relative;
}
.lawyer-photo-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,169,110,0.3);
  z-index: 1;
  pointer-events: none;
}

.lawyer-photo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  /* When you have a real photo, replace this div with:
     <img src="images/simal-kuncan.jpg" alt="Av. Şimal Kuncan" style="width:100%;height:100%;object-fit:cover;" />
  */
}

.lawyer-photo-placeholder {
  color: var(--gold);
  opacity: 0.12;
  font-size: 10rem;
}

.lawyer-photo-tag {
  position: absolute;
  bottom: -20px;
  left: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 24px;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.lawyer-tag-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.lawyer-tag-bar {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Bio */
.lawyer-bio-wrap {
  padding-top: 8px;
}

.lawyer-subtitle {
  font-family: var(--font-deco);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
  display: block;
}

.lawyer-bio-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.lawyer-bio-text p {
  color: var(--text-mid);
  margin-bottom: 14px;
}

.lawyer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  padding: 24px;
  background: var(--light-bg);
  border-left: 3px solid var(--gold);
  border-radius: 0 2px 2px 0;
}
.lawyer-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.lawyer-meta-item i { color: var(--gold); font-size: 1rem; width: 20px; text-align: center; }

.lawyer-focus { margin-bottom: 32px; }
.lawyer-focus-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.lawyer-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lawyer-focus-tags span {
  padding: 6px 16px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.78rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.lawyer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lawyer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: all var(--transition);
}
.lawyer-social-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--light-bg);
}
.lawyer-social-btn i { color: var(--gold); }

/* ===================================================
   SON YAZILAR — HOMEPAGE PREVIEW
   =================================================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.article-category {
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-deco);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
}

.article-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-date {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}
.article-body h3 a { transition: color var(--transition); }
.article-body h3 a:hover { color: var(--gold-dark); }

.article-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: gap var(--transition);
  margin-top: auto;
}
.article-link:hover { gap: 14px; color: var(--navy); }

.articles-footer { text-align: center; }

/* ===================================================
   BLOG / YAZILAR PAGE
   =================================================== */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(12,27,46,0.95) 0%, rgba(18,35,64,0.9) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--light-bg), transparent);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--gold); }

.page-hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* Blog Layout */
#main-content { background: var(--light-bg); padding: 72px 0 100px; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* Blog Cards */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateX(4px);
}

.blog-card-cat {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-deco);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
}

.blog-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.blog-card-body h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy);
}
.blog-card-body h2 a { transition: color var(--transition); }
.blog-card-body h2 a:hover { color: var(--gold-dark); }

.blog-card-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.blog-card-meta {
  display: flex;
  gap: 20px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.blog-card-meta span { display: flex; align-items: center; gap: 6px; }
.blog-card-meta i { color: var(--gold); }

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
}
.blog-empty i { font-size: 2.5rem; color: var(--gold); opacity: 0.4; margin-bottom: 16px; display: block; }
.hidden { display: none; }

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
}
.sidebar-widget h3 {
  font-family: var(--font-deco);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: all var(--transition);
}
.sidebar-cats a:hover { background: var(--light-bg); color: var(--navy); }
.sidebar-cats a em {
  background: var(--off-white);
  color: var(--text-light);
  font-style: normal;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 100px;
}

.sidebar-cta {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  text-align: center;
}
.sidebar-cta h3 { color: var(--gold-light) !important; border-bottom-color: rgba(255,255,255,0.1) !important; }
.sidebar-cta-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 12px;
}
.sidebar-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.sidebar-widget .footer-contact li {
  color: var(--text-mid);
}
.sidebar-widget .footer-contact li a {
  color: var(--navy);
}
.sidebar-widget .footer-contact li a:hover {
  color: var(--gold-dark);
}
.sidebar-popular {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-popular li a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: color var(--transition);
}
.sidebar-popular li a:hover span { color: var(--gold-dark); }
.sidebar-popular li a span { font-size: 0.875rem; color: var(--navy); font-weight: 500; line-height: 1.3; }
.sidebar-popular li a small { font-size: 0.72rem; color: var(--gold-dark); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .why-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .lawyer-grid { grid-template-columns: 1fr; gap: 56px; }
  .lawyer-photo-wrap { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0c1b2e;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1002;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; padding: 14px 32px; color: rgba(255,255,255,0.9); }
  .nav-links a:hover { color: var(--gold); }
  .nav-links .nav-cta { background: var(--gold) !important; color: var(--navy) !important; border-radius: 6px; }
  .nav-hamburger { display: flex; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
  .whatsapp-tooltip { display: none; }

  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonial-card { padding: 0 20px; }
  .testimonial-text { font-size: 1.1rem; }

  .blog-card { flex-direction: column; }
  .blog-card-cat { writing-mode: horizontal-tb; padding: 8px 20px; min-width: auto; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-hero { padding: 110px 0 60px; }
}

@media (max-width: 480px) {
  .about-badge { right: 0; bottom: -16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.75rem; }
}
