/* ============================================
   EMAR Hukuk Bürosu
   Premium Avukat Web Sitesi
   Tema: Koyu & Bordo — Ultra Premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════ */
:root {
  --bg-1: #0a0a12;
  --bg-2: #111120;
  --bg-3: #181830;
  --bg-card: rgba(20, 20, 40, 0.6);
  --bg-glass: rgba(255,255,255,0.02);
  --bg-light: #fafafa;
  --bg-light-2: #f0f0f5;
  --bg-white: #ffffff;

  --accent: #7a1518;
  --accent-hover: #9b1c1f;
  --accent-soft: rgba(122,21,24,0.12);
  --accent-glow: rgba(122,21,24,0.25);
  --gold: #b89d5a;
  --gold-light: #d4b970;
  --gold-soft: rgba(184,157,90,0.12);

  --text-white: #f0eff4;
  --text-light: #c0bdd0;
  --text-muted: #8a87a0;
  --text-dark: #1a1a2a;
  --text-dark-2: #4a4a5a;
  --text-dark-muted: #7a7a8a;

  --border-dark: rgba(255,255,255,0.06);
  --border-light: rgba(0,0,0,0.06);

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1140px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 50px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 40px rgba(122,21,24,0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ═══════════════════════════════════════
   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);
  background: var(--bg-1);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration:none; color:inherit; }
ul, ol { list-style:none; }
img { max-width:100%; height:auto; display:block; }
button { cursor:pointer; border:none; outline:none; font-family:var(--font-body); background:none; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-white);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-family: var(--font-display); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

.text-dark h1,.text-dark h2,.text-dark h3,.text-dark h4 { color: var(--text-dark); }
.text-dark p { color: var(--text-dark-2); }

/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* Section Headers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title { margin-bottom: 16px; }

.section-desc {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .section-tag::before { display:none; }
.text-center .section-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(10,10,18,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.brand-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1));
}

.brand-text { display: flex; flex-direction: column; gap: 1px; }

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

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.3px;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

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

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-phone svg { width: 15px; height: 15px; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1.5px solid transparent;
  transition: all 0.35s var(--ease);
}

.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122,21,24,0.35);
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.15);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,157,90,0.3);
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-white {
  background: white;
  color: var(--text-dark);
  border-color: white;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to right, rgba(10, 10, 18, 0.75) 0%, rgba(10, 10, 18, 0.45) 50%, rgba(10, 10, 18, 0.75) 100%), url('../assets/images/hero-bg-office.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-inner-minimal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
}

.hero-content-minimal {
  max-width: 800px;
  text-align: left;
}

.hero-content-minimal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 2px;
  color: white;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-content-minimal h1 span {
  display: block;
}

.hero-content-minimal h1 .highlight {
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 3px;
}

.hero-desc-minimal {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 48px;
  opacity: 0.9;
}

.hero-cta-minimal {
  display: inline-block;
}

.cta-link {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: white;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s;
}

.cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: white;
  transition: width 0.3s var(--ease);
}

.cta-link:hover {
  color: var(--gold);
}

.cta-link:hover::after {
  background: var(--gold);
  width: 70%;
}

.cta-link svg {
  transition: transform 0.3s var(--ease);
}

.cta-link:hover svg {
  transform: translateX(6px);
  color: var(--gold);
}
  background: linear-gradient(180deg, transparent 50%, var(--bg-1) 100%);
}

/* Floating Stats */
.hero-stat {
  position: absolute;
  background: rgba(20,20,40,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 5s ease-in-out infinite;
}

.hero-stat:nth-child(2) {
  bottom: 100px;
  left: -40px;
  animation-delay: 0s;
}

.hero-stat:nth-child(3) {
  top: 80px;
  right: -30px;
  animation-delay: 1.5s;
}

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

.hero-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-icon svg { width: 20px; height: 20px; color: var(--gold); }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.trust-item {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
  transition: background 0.3s var(--ease);
}

.trust-item:last-child { border-right: none; }

.trust-item:hover { background: var(--bg-glass); }

.trust-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  display: block;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122,21,24,0.25);
  box-shadow: var(--shadow-glow);
  background: rgba(20, 20, 40, 0.85);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.35s var(--ease);
}

.service-icon svg { width: 24px; height: 24px; color: var(--accent-hover); transition: color 0.3s; }

.service-card:hover .service-icon {
  background: var(--accent);
  transform: scale(1.08);
}

.service-card:hover .service-icon svg { color: white; }

.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }

.service-card p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}

.service-link svg { width: 14px; height: 14px; }
.service-card:hover .service-link { gap: 12px; }

/* Light service cards */
.text-dark .service-card {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.text-dark .service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

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

.about-img {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-frame svg { width: 80px; height: 80px; color: rgba(184,157,90,0.15); }

.about-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold-soft);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-text { margin-bottom: 16px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 36px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-feat svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════
   WHY US CARDS
   ═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 44px 24px 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}

.why-icon svg { width: 26px; height: 26px; color: var(--accent); transition: color 0.3s; }

.why-card:hover .why-icon {
  background: var(--accent);
  transform: scale(1.1);
}

.why-card:hover .why-icon svg { color: white; }

.why-card h4 { color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: 0.85rem; color: var(--text-dark-2); }

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-container { max-width: 780px; margin: 0 auto; }

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

.faq-question {
  width: 100%;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.faq-question:hover { color: var(--gold); }

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 26px;
}

.faq-answer p { font-size: 0.92rem; line-height: 1.85; }

/* Light FAQ */
.text-dark .faq-item { border-color: var(--border-light); }
.text-dark .faq-question { color: var(--text-dark); }
.text-dark .faq-question:hover { color: var(--accent); }

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

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}

.contact-card:hover {
  border-color: rgba(122,21,24,0.3);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg { width: 20px; height: 20px; color: var(--accent-hover); }

.contact-card h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 500;
  line-height: 1.6;
}

.contact-card a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form h3 { margin-bottom: 28px; font-size: 1.3rem; }

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--text-white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--bg-2); color: var(--text-white); }

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
}

.form-check a { color: var(--gold); text-decoration: underline; }

/* Light form */
.text-dark .contact-form {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

.text-dark .form-group input,
.text-dark .form-group textarea,
.text-dark .form-group select {
  background: var(--bg-light);
  border-color: var(--border-light);
  color: var(--text-dark);
}

.text-dark .contact-card {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.text-dark .contact-card h4 { color: var(--accent); }
.text-dark .contact-card p, .text-dark .contact-card a { color: var(--text-dark); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-about p { font-size: 0.88rem; margin: 16px 0; }

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

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.footer-social a svg { width: 16px; height: 16px; color: var(--text-muted); }

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

.footer-social a:hover svg { color: white; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-col p {
  font-size: 0.88rem;
  padding: 3px 0;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s var(--ease);
}

.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.45); }
.whatsapp-fab svg { width: 28px; height: 28px; color: white; }

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(17,17,32,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-dark);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p { font-size: 0.82rem; flex: 1; min-width: 200px; }
.cookie-inner p a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }

/* ═══════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════ */
.breadcrumb-section {
  padding: 100px 0 0;
  background: var(--bg-2);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 20px 0;
}

.breadcrumb-list a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list .sep { color: var(--text-muted); font-size: 0.7rem; }
.breadcrumb-list .current { color: var(--gold); font-weight: 500; }

/* ═══════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════ */
.page-hero {
  padding: 30px 0 70px;
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-3) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
}

.page-hero h1 { position: relative; z-index: 1; margin-bottom: 14px; }
.page-hero p { position: relative; z-index: 1; max-width: 560px; font-size: 1.02rem; }
.page-hero.text-center p { margin: 0 auto; }

/* ═══════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-img svg { width: 40px; height: 40px; color: rgba(184,157,90,0.2); }

.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body { padding: 24px; }

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-meta svg { width: 12px; height: 12px; }

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.blog-card:hover h3 { color: var(--gold); }

.blog-card p {
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .read-more svg { width: 14px; height: 14px; transition: transform 0.3s; }
.blog-card:hover .read-more svg { transform: translateX(4px); }

/* ═══════════════════════════════════════
   ARTICLE CONTENT
   ═══════════════════════════════════════ */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-body h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--text-dark); }
.article-body h3 { font-size: 1.2rem; margin: 30px 0 12px; color: var(--text-dark); }
.article-body p { margin-bottom: 16px; font-size: 1rem; line-height: 1.9; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 16px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; font-size: 1rem; line-height: 1.7; color: var(--text-dark-2); }

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-light-2);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body blockquote p { font-style: italic; color: var(--text-dark); margin: 0; }

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light-2);
  border-radius: var(--radius-lg);
  margin-top: 40px;
  border: 1px solid var(--border-light);
}

.article-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.article-author h4 { color: var(--text-dark); font-size: 0.95rem; margin-bottom: 2px; }
.article-author p { font-size: 0.82rem; margin: 0; }

/* ═══════════════════════════════════════
   LEGAL CONTENT
   ═══════════════════════════════════════ */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-body h2 { font-size: 1.4rem; margin: 36px 0 14px; color: var(--text-dark); }
.legal-body h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--text-dark); }
.legal-body p { margin-bottom: 14px; font-size: 0.92rem; line-height: 1.85; }
.legal-body ul { padding-left: 24px; list-style: disc; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; font-size: 0.92rem; color: var(--text-dark-2); line-height: 1.7; }

.legal-body table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.legal-body th, .legal-body td { border: 1px solid var(--border-light); padding: 12px 16px; font-size: 0.88rem; text-align: left; }
.legal-body th { background: var(--bg-light-2); font-weight: 600; color: var(--text-dark); }
.legal-body td { color: var(--text-dark-2); }

/* ═══════════════════════════════════════
   MAP
   ═══════════════════════════════════════ */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  height: 400px;
}

.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════
   ABOUT CHECKLIST
   ═══════════════════════════════════════ */
.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg { width: 14px; height: 14px; color: var(--gold); }

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

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  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='%23ffffff' 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");
}

.cta-section h2 { color: white; position: relative; z-index: 1; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); position: relative; z-index: 1; max-width: 500px; margin: 0 auto 32px; }
.cta-section .cta-btns { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   PRACTICE AREA PAGE LAYOUT
   ═══════════════════════════════════════ */
.practice-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.practice-sidebar { position: sticky; top: 100px; }

.sidebar-nav {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-nav h4 { 
  font-size: 0.78rem; 
  text-transform: uppercase; 
  letter-spacing: 1.5px; 
  color: var(--text-dark-muted); 
  margin-bottom: 16px; 
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-dark-2);
  border-radius: var(--radius);
  transition: all 0.2s;
  margin-bottom: 4px;
}

.sidebar-nav a:hover { background: var(--bg-light); color: var(--accent); }
.sidebar-nav a.active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.sidebar-nav a svg { width: 16px; height: 16px; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--accent), #4a0a0c);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  color: white;
}

.sidebar-cta h4 { color: white; margin-bottom: 10px; font-size: 1rem; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 18px; }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }
.reveal.d6 { transition-delay: 0.6s; }
.reveal.d7 { transition-delay: 0.7s; }

/* ═══════════════════════════════════════
   BACKGROUNDS
   ═══════════════════════════════════════ */
.bg-dark { background: var(--bg-1); }
.bg-dark-2 { background: var(--bg-2); }
.bg-light { background: var(--bg-light); }
.bg-white { background: var(--bg-white); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--border-dark); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { order: -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-layout { grid-template-columns: 1fr; }
  .practice-sidebar { position: static; }
}

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

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,18,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; text-align: center; padding: 10px; }
  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-lg); }
  .trust-item { padding: 24px 16px; }
  .trust-num { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-features, .about-checklist { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }

  .contact-form { padding: 28px 20px; }
  .cookie-inner { flex-direction: column; text-align: center; }

  .cta-section .cta-btns { flex-direction: column; align-items: center; }

  .whatsapp-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-num { font-size: 1.7rem; }
  .trust-label { font-size: 0.72rem; }
  .breadcrumb-list { font-size: 0.75rem; }
}

/* ═══════════════════════════════════════
   PRINT
   ═══════════════════════════════════════ */
@media print {
  .navbar, .whatsapp-fab, .cookie-banner, .footer, .cta-section { display: none; }
  body { background: white; color: black; }
  .section { padding: 20px 0; }
}
