/* ============================================
   ÇETİN TÜRKOĞLU HUKUK BÜROSU - Ana Stil Dosyası
   Modern, SEO Uyumlu Avukatlık Web Sitesi
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Renkler - Koyu Arka Plan & Bakır Accent (Prestijli Hukuk Teması) */
  --primary: #1b1b1b;
  --primary-light: #262626;
  --primary-dark: #111111;
  --accent: #B87333;
  --accent-light: #D4915A;
  --accent-dark: #8F5A24;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #e8e4dc;
  --medium-gray: #8a8a8a;
  --dark-gray: #2d2d2d;
  --text-primary: #1a1a1a;
  --text-secondary: #565656;
  --text-light: #7a7a8a;
  --success: #2d7a50;
  --error: #b83225;

  /* Tipografi */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.accent-text {
  color: var(--accent);
}

.bg-light {
  background-color: var(--off-white);
}

.bg-dark {
  background-color: var(--primary);
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

/* Primary Button - Gradient + Glow */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.1) 30%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.1) 70%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(184, 115, 51, 0.4),
    0 0 20px rgba(184, 115, 51, 0.2);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.35);
}

.btn-primary .btn-icon {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* Secondary Button - Glass Morphism */
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent, rgba(145,0,0,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(184, 115, 51, 0.5);
  color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 50px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 27, 45, 0.3);
}

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

.btn-accent-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(27, 27, 27, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.logo-desc {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../Gemini_Generated_Image_wsgweawsgweawsgw.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 27, 27, 0.85) 0%, rgba(27, 27, 27, 0.65) 50%, rgba(27, 27, 27, 0.85) 100%);
  z-index: 1;
}

.hero-decoration {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(184, 115, 51, 0.1);
  border-radius: 50%;
}

.hero-decoration:nth-child(2) {
  top: auto;
  bottom: -300px;
  right: auto;
  left: -200px;
  width: 500px;
  height: 500px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--accent);
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* Hero Right - Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-pattern {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pattern-icon {
  font-size: 7rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(184, 115, 51, 0.3));
}

.hero-pattern-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-pattern-lines span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 115, 51, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: patternPulse 4s ease-in-out infinite;
}

.hero-pattern-lines span:nth-child(1) {
  width: 160px;
  height: 160px;
  border-color: rgba(184, 115, 51, 0.2);
  animation-delay: 0s;
}

.hero-pattern-lines span:nth-child(2) {
  width: 240px;
  height: 240px;
  border-color: rgba(184, 115, 51, 0.15);
  animation-delay: 0.5s;
}

.hero-pattern-lines span:nth-child(3) {
  width: 320px;
  height: 320px;
  border-color: rgba(184, 115, 51, 0.1);
  animation-delay: 1s;
}

.hero-pattern-lines span:nth-child(4) {
  width: 400px;
  height: 400px;
  border-color: rgba(184, 115, 51, 0.06);
  animation-delay: 1.5s;
}

.hero-pattern-lines span:nth-child(5) {
  width: 480px;
  height: 480px;
  border-color: rgba(184, 115, 51, 0.03);
  animation-delay: 2s;
}

@keyframes patternPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.6;
  }
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(184, 115, 51, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 27, 45, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0 4px 4px 0;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(15, 27, 45, 0.12), 0 0 0 1px rgba(184, 115, 51, 0.15);
  border-color: rgba(184, 115, 51, 0.25);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.1) 0%, rgba(184, 115, 51, 0.05) 100%);
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.3);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link:hover {
  color: var(--primary);
  gap: 10px;
}

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

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-main .placeholder-icon {
  font-size: 5rem;
  opacity: 0.3;
}

.about-image-main .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.about-feature-icon {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(145,0,0,0.08) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.cta-phone a {
  color: var(--accent);
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(184, 115, 51, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 2px 12px rgba(15, 27, 45, 0.04);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(184, 115, 51, 0.12);
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(15, 27, 45, 0.1), 0 0 0 1px rgba(184, 115, 51, 0.15);
  transform: translateY(-6px);
  border-color: rgba(184, 115, 51, 0.2);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== BLOG / ARTICLES ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184, 115, 51, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(15, 27, 45, 0.04);
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(15, 27, 45, 0.12), 0 0 0 1px rgba(184, 115, 51, 0.15);
  border-color: rgba(184, 115, 51, 0.2);
}

.article-image {
  height: 220px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image .placeholder-text {
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
}

.article-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-body {
  padding: 28px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.article-card:hover .article-title {
  color: var(--accent-dark);
}

.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.article-read-more:hover {
  color: var(--primary);
  gap: 10px;
}

/* Blog Detail / Makale Detay */
.article-detail-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 160px 0 80px;
  text-align: center;
}

.article-detail-category {
  display: inline-block;
  background: rgba(145,0,0,0.15);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.3;
}

.article-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.article-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  padding: 60px 0;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-primary);
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
  list-style: disc;
  color: var(--text-secondary);
}

.article-content ol li {
  list-style: decimal;
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 20px 28px;
  background: var(--off-white);
  margin: 28px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-article-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
}

.sidebar-article-item:last-child {
  border-bottom: none;
}

.sidebar-article-item h4 {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 4px;
  transition: color var(--transition-fast);
}

.sidebar-article-item:hover h4 {
  color: var(--accent-dark);
}

.sidebar-article-item span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border: 1px solid var(--light-gray);
}

.sidebar-tag:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* Blog List Filter */
.blog-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  color: var(--text-secondary);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== PRACTICE AREAS PAGE ===== */
.practice-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.practice-area-card {
  display: flex;
  gap: 24px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 115, 51, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 27, 45, 0.04);
}

.practice-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.practice-area-card:hover {
  box-shadow: 0 20px 50px rgba(15, 27, 45, 0.12), 0 0 0 1px rgba(184, 115, 51, 0.15);
  transform: translateY(-6px);
  border-color: rgba(184, 115, 51, 0.2);
}

.practice-area-card:hover::before {
  transform: scaleY(1);
}

.practice-area-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, rgba(145,0,0,0.1) 0%, rgba(145,0,0,0.05) 100%);
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.practice-area-card:hover .practice-area-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.3);
}

.practice-area-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* ===== ABOUT PAGE ===== */
.about-full-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-info-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
}

.about-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-info-card ul li {
  padding: 8px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.about-info-card ul li::before {
  content: '▸';
  color: var(--accent);
  font-weight: bold;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(145,0,0,0.25);
}

.timeline-year {
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-card h4 {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--primary);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--off-white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(145,0,0,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.form-submit-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Map */
.contact-map {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-icon {
  color: var(--accent);
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ===== PAGE HEADER (Inner Pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 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.03'%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");
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-header-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .separator {
  color: rgba(255,255,255,0.3);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-gray);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.pagination a:hover,
.pagination span.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.faq-item {
  border: 1px solid rgba(184, 115, 51, 0.12);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(15, 27, 45, 0.03);
}

.faq-item:hover {
  border-color: rgba(184, 115, 51, 0.3);
  box-shadow: 0 4px 16px rgba(15, 27, 45, 0.06);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  background: var(--white);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ===== HERO ANIMATED SVG SCALES ===== */
.hero-scales-bg {
  display: none;
}

/* Hero Right Scales */
.hero-scales-right {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease 0.5s both;
}

.scales-svg-right {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(184, 115, 51, 0.2));
}

.scales-svg-right .scales-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  opacity: 0.35;
}

.scales-svg-right .scales-base        { animation: drawLine 1.2s ease 0.2s forwards; }
.scales-svg-right .scales-pillar       { animation: drawLine 1.2s ease 0.5s forwards; stroke-dasharray: 300; stroke-dashoffset: 300; }
.scales-svg-right .scales-beam         { animation: drawLine 1.2s ease 0.9s forwards; stroke-dasharray: 300; stroke-dashoffset: 300; }
.scales-svg-right .scales-ornament     { animation: drawLine 1.5s ease 1.1s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-svg-right .scales-chain-left   { animation: drawLine 0.8s ease 1.3s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-svg-right .scales-chain-left2  { animation: drawLine 0.8s ease 1.4s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-svg-right .scales-chain-right  { animation: drawLine 0.8s ease 1.3s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-svg-right .scales-chain-right2 { animation: drawLine 0.8s ease 1.4s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-svg-right .scales-pan-left     { animation: drawLine 1s ease 1.6s forwards; stroke-dasharray: 200; stroke-dashoffset: 200; }
.scales-svg-right .scales-pan-right    { animation: drawLine 1s ease 1.7s forwards; stroke-dasharray: 200; stroke-dashoffset: 200; }
.scales-svg-right .scales-base-detail  { animation: drawLine 1s ease 1.9s forwards; stroke-dasharray: 400; stroke-dashoffset: 400; }

.scales-svg-right {
  animation: scalesSway 6s ease-in-out 3s infinite;
}

.scales-svg {
  width: 100%;
  height: auto;
}

.scales-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.scales-base        { animation: drawLine 1.2s ease 0.2s forwards; }
.scales-pillar       { animation: drawLine 1.2s ease 0.5s forwards; stroke-dasharray: 300; stroke-dashoffset: 300; }
.scales-beam         { animation: drawLine 1.2s ease 0.9s forwards; stroke-dasharray: 300; stroke-dashoffset: 300; }
.scales-ornament     { animation: drawLine 1.5s ease 1.1s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; fill: none; }
.scales-chain-left   { animation: drawLine 0.8s ease 1.3s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-chain-left2  { animation: drawLine 0.8s ease 1.4s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-chain-right  { animation: drawLine 0.8s ease 1.3s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-chain-right2 { animation: drawLine 0.8s ease 1.4s forwards; stroke-dasharray: 100; stroke-dashoffset: 100; }
.scales-pan-left     { animation: drawLine 1s ease 1.6s forwards; stroke-dasharray: 200; stroke-dashoffset: 200; }
.scales-pan-right    { animation: drawLine 1s ease 1.7s forwards; stroke-dasharray: 200; stroke-dashoffset: 200; }
.scales-base-detail  { animation: drawLine 1s ease 1.9s forwards; stroke-dasharray: 400; stroke-dashoffset: 400; fill: none; }

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* After drawing, subtle sway animation */
.scales-svg {
  animation: scalesSway 6s ease-in-out 3s infinite;
}

@keyframes scalesSway {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(0.5deg); }
  75%      { transform: rotate(-0.5deg); }
}

/* ===== HERO FLOATING PARTICLES ===== */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.hero-particles span:nth-child(1)  { left: 5%;  animation-duration: 14s; animation-delay: 0s;   width: 3px; height: 3px; }
.hero-particles span:nth-child(2)  { left: 15%; animation-duration: 18s; animation-delay: 2s;   width: 5px; height: 5px; }
.hero-particles span:nth-child(3)  { left: 25%; animation-duration: 12s; animation-delay: 4s;   width: 3px; height: 3px; }
.hero-particles span:nth-child(4)  { left: 35%; animation-duration: 16s; animation-delay: 1s;   width: 4px; height: 4px; }
.hero-particles span:nth-child(5)  { left: 48%; animation-duration: 20s; animation-delay: 3s;   width: 6px; height: 6px; }
.hero-particles span:nth-child(6)  { left: 58%; animation-duration: 15s; animation-delay: 5s;   width: 3px; height: 3px; }
.hero-particles span:nth-child(7)  { left: 68%; animation-duration: 13s; animation-delay: 0.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(8)  { left: 78%; animation-duration: 17s; animation-delay: 2.5s; width: 5px; height: 5px; }
.hero-particles span:nth-child(9)  { left: 88%; animation-duration: 11s; animation-delay: 1.5s; width: 3px; height: 3px; }
.hero-particles span:nth-child(10) { left: 95%; animation-duration: 19s; animation-delay: 4.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(11) { left: 42%; animation-duration: 22s; animation-delay: 6s;   width: 3px; height: 3px; }
.hero-particles span:nth-child(12) { left: 72%; animation-duration: 14s; animation-delay: 3.5s; width: 5px; height: 5px; }

@keyframes particleFloat {
  0% {
    bottom: -10px;
    opacity: 0;
    transform: translateX(0) scale(0);
  }
  10% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(80px) scale(0.5);
  }
}

/* ===== HERO TEXT ANIMATIONS ===== */
.hero-text-reveal {
  display: inline-block;
  animation: textReveal 1s ease 0.3s both;
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
    filter: blur(0);
  }
}

.hero-badge {
  animation: fadeInUp 0.6s ease 0s both;
}

.hero-fade-in {
  animation: heroFadeIn 0.8s ease both;
}

.hero-fade-in.delay-2 {
  animation-delay: 0.8s;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-scales-right {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .practice-areas-grid {
    grid-template-columns: 1fr;
  }

  .about-full-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .contact-form {
    padding: 28px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .pagination a,
  .pagination span {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-dark);
  transform: translateY(-4px);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
}

/* ===== LUCIDE ICON STYLES ===== */
.service-icon svg,
.practice-area-icon svg,
.contact-info-icon svg,
.about-info-card h3 svg,
.footer-contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
  transition: all 0.4s ease;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.practice-area-icon svg {
  width: 32px;
  height: 32px;
}

.service-card:hover .service-icon svg,
.practice-area-card:hover .practice-area-icon svg {
  stroke: var(--white);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 1.8;
  fill: none;
  transition: all 0.3s ease;
}

.footer-social a:hover svg {
  stroke: var(--white);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 1.8;
  fill: none;
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
}

/* Article card icon meta */
.article-meta svg,
.article-detail-meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-light);
  stroke-width: 1.8;
  fill: none;
  vertical-align: -2px;
}

.article-image .placeholder-icon-svg {
  opacity: 0.2;
}

.article-image .placeholder-icon-svg svg {
  width: 48px;
  height: 48px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

/* Values card icons (hakkimizda) */
.values-grid .service-icon svg {
  width: 28px;
  height: 28px;
}

/* About feature check icons */
.about-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
}

/* CTA section icons */
.cta-buttons svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  vertical-align: -3px;
}

/* Testimonial stars */
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  stroke: var(--accent);
  stroke-width: 0.5;
}


