/* ═══════════════════════════════════════════════════════════════════ */
/* ADVOKAT TEODORA ANGELOVA - MASTER STYLESHEET                        */
/* Complete CSS for ALL pages: homepage, blog, services, blog posts    */
/* ═══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #1a2744;
  --navy-light: #243358;
  --navy-dark: #111a2e;
  --gold: #b8924a;
  --gold-light: #d4ae72;
  --gold-pale: #f5edd8;
  --cream: #faf7f2;
  --cream-dark: #f0ebe1;
  --text: #1a2744;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --border: rgba(26,39,68,0.1);
  --border-gold: rgba(184,146,74,0.3);
  --shadow: 0 4px 40px rgba(26,39,68,0.08);
  --shadow-lg: 0 20px 60px rgba(26,39,68,0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* HEADER */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,146,74,0.2);
  transition: var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-img { width: 24px; height: 24px; flex-shrink: 0; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; line-height: 1.2; }
.logo-title { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 300; color: var(--gold-light); letter-spacing: 0.18em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 0.25rem; }
nav a {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 400;
  color: rgba(255,255,255,0.75); text-decoration: none;
  padding: 0.4rem 0.75rem; border-radius: 4px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--transition);
}
nav a:hover { color: var(--gold-light); }

.btn-nav {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  color: var(--navy); background: var(--gold);
  padding: 0.55rem 1.25rem; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); border: none; cursor: pointer; white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark); z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); text-decoration: none; padding: 0.5rem 1rem; transition: var(--transition); }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); cursor: pointer; font-size: 2rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }

/* HERO */
.hero { min-height: 100vh; background: var(--navy-dark); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,146,74,0.06) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,39,68,0.8) 0%, transparent 60%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(184,146,74,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(184,146,74,0.5) 1px, transparent 1px); background-size: 60px 60px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; padding: 5rem 0; }
.hero-label { display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-sans); font-size: 0.68rem; font-weight: 400; color: var(--gold-light); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.hero-content h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; color: var(--white); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-desc { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 480px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; color: var(--navy); background: var(--gold); padding: 0.95rem 1.75rem; border-radius: 3px; text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,146,74,0.3); }

.btn-secondary { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; color: var(--white); background: transparent; padding: 0.95rem 1.75rem; border-radius: 3px; text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: var(--transition); border: 1px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: var(--gold-light); color: var(--gold-light); }

.hero-stats { display: flex; gap: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; color: var(--gold-light); line-height: 1; }
.stat-label { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.5rem; }

.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-frame { position: relative; width: 100%; max-width: 500px; aspect-ratio: 1; }
.hero-image-placeholder { width: 100%; height: 100%; border-radius: 3px; overflow: hidden; position: relative; border: 1px solid rgba(184,146,74,0.2); }
.hero-image-placeholder picture, .hero-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); padding: 1rem 1.5rem; border-radius: 3px; display: flex; align-items: center; gap: 0.75rem; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.badge-num { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--navy-dark); line-height: 1.2; white-space: nowrap; }
.badge-text { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; color: var(--navy-dark); letter-spacing: 0.1em; text-transform: uppercase; }

/* TRUST BAR */
.trust-bar { background: var(--white); padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-sans); font-size: 0.82rem; font-weight: 400; color: var(--text-muted); }
.trust-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* SECTION LABELS */
.section-label { display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; color: var(--navy); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-subtitle { font-size: 1.05rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; max-width: 640px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ABOUT */
.about { background: var(--cream); padding: 6rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-placeholder { position: relative; z-index: 2; border-radius: 3px; overflow: hidden; border: 1px solid var(--border-gold); }
.about-image-placeholder picture, .about-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.about-accent { position: absolute; top: 30px; left: -30px; width: 100%; height: 100%; background: var(--gold-pale); border-radius: 3px; z-index: 1; }
.about-quote { font-family: var(--font-serif); font-size: 1.4rem; font-style: italic; font-weight: 400; color: var(--gold); line-height: 1.5; padding: 1.25rem 0 1.25rem 1.5rem; border-left: 2px solid var(--gold); margin: 1.5rem 0; }
.about-text { font-size: 0.98rem; font-weight: 300; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.25rem; }
.about-credentials { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.credential { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; font-weight: 400; color: var(--navy); margin-bottom: 0.6rem; }
.credential::before { content: ''; display: block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* SERVICES (homepage) */
.services { background: var(--white); padding: 6rem 0; }
.services-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.services-header .section-label { justify-content: center; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--cream); padding: 2.5rem; position: relative; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, transparent 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { background: var(--white); box-shadow: 0 4px 40px rgba(26,39,68,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 400; color: var(--cream-dark); line-height: 1; margin-bottom: 1rem; }
.service-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3; }
.service-desc { font-size: 1rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; flex: 1; }
.service-items { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; }
.service-items li { font-size: 0.92rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.6; }
.service-items li::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 0.45rem; }

/* PROCESS */
.process { background: var(--navy-dark); padding: 6rem 0; position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(184,146,74,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(184,146,74,0.5) 1px, transparent 1px); background-size: 60px 60px; }
.process .container { position: relative; z-index: 1; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.process-step { padding: 2rem 0; border-top: 1px solid rgba(184,146,74,0.2); }
.step-num { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 400; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 1rem; }
.step-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; line-height: 1.3; }
.step-desc { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.8; }

/* BLOG (homepage section) */
.blog { background: var(--cream); padding: 6rem 0; }
.blog-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: 4px; overflow: hidden; border: 1px solid var(--border); text-decoration: none; color: inherit; transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.blog-img { width: 100%; aspect-ratio: 16/5; background: linear-gradient(145deg, var(--cream-dark), var(--navy-light)); border-radius: 4px 4px 0 0; }
.blog-content { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.7rem; font-weight: 500; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.blog-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); line-height: 1.4; margin-bottom: 0.75rem; transition: var(--transition); }
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt { font-size: 0.9rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; flex: 1; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--text-light); }

/* CONTACT */
.contact { background: var(--white); padding: 6rem 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-label { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-detail-value { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--navy); }
.contact-detail-value a { color: inherit; text-decoration: none; }
.contact-detail-value a:hover { color: var(--gold); }

.viber-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; color: var(--white); background: #7360f2; padding: 0.75rem 1.5rem; border-radius: 3px; text-decoration: none; letter-spacing: 0.05em; transition: var(--transition); }
.viber-btn:hover { background: #5d4dcd; transform: translateY(-1px); }

.contact-form form { background: var(--cream); padding: 2.5rem; border-radius: 3px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500; color: var(--navy); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; font-family: var(--font-sans); font-size: 0.9rem; color: var(--navy); background: var(--white); padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 3px; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-submit { width: 100%; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; color: var(--white); background: var(--navy-dark); padding: 1rem; border: none; border-radius: 3px; letter-spacing: 0.1em; text-transform: uppercase; transition: var(--transition); cursor: pointer; }
.form-submit:hover { background: var(--navy); transform: translateY(-1px); }
.form-note { font-size: 0.75rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; margin-top: 1rem; text-align: center; }

/* FOOTER */
footer { background: var(--navy-dark); padding: 4rem 0 2rem; border-top: 1px solid rgba(184,146,74,0.15); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.footer-logo-sub { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 300; color: var(--gold-light); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }
.footer-tagline { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.8; margin-top: 1.25rem; max-width: 280px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500; color: var(--gold-light); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-copy a { color: inherit; text-decoration: none; }
.footer-copy a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 0.6rem; }
.social-link { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); text-decoration: none; }
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

/* BLOG LISTING (blog.html) */
.blog-hero { margin-top: 72px; padding: 5rem 0 3rem; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); border-bottom: 1px solid rgba(184,146,74,0.2); }
.blog-hero h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.blog-hero p { font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 680px; }
.blog-grid-section { background: var(--cream); padding: 5rem 0; }

/* BLOG POST PAGES */
.breadcrumb { margin-top: 72px; padding: 1.5rem 0; background: var(--cream-dark); border-bottom: 1px solid var(--border); }
.breadcrumb-nav, .breadcrumb-inner { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.breadcrumb-nav a, .breadcrumb-inner a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.breadcrumb-nav a:hover, .breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-nav span { color: var(--text-light); }

.article-hero { background: var(--white); padding: 3rem 0 2rem; }
.article-category { display: inline-block; font-size: 0.7rem; font-weight: 500; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold-pale); padding: 0.4rem 1rem; border-radius: 4px; margin-bottom: 1.5rem; }
.article-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.article-meta { display: flex; align-items: center; gap: 1.5rem; font-size: 0.9rem; color: var(--text-muted); padding-bottom: 2rem; border-bottom: 1px solid var(--border); }

.article-content { background: var(--white); max-width: 780px; margin: 0 auto; padding: 3rem 2rem 4rem; }
.article-content h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--navy); margin: 2.5rem 0 1.25rem; line-height: 1.3; }
.article-content h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin: 2rem 0 1rem; }
.article-content p { margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.article-content ul, .article-content ol { margin: 1.5rem 0 1.5rem 1.5rem; }
.article-content li { margin-bottom: 0.75rem; font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.article-content blockquote { margin: 2rem 0; padding: 1.5rem 2rem; background: var(--gold-pale); border-left: 4px solid var(--gold); font-style: italic; font-size: 1.1rem; color: var(--navy); }
.article-content hr { margin: 3rem 0; border: none; border-top: 1px solid var(--border); }

.article-cta { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 3rem; border-radius: 8px; margin: 3rem 0; text-align: center; }
.article-cta h3 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--white); margin-bottom: 1rem; }
.article-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.btn-cta { display: inline-block; padding: 0.9rem 2rem; background: var(--gold); color: var(--navy); font-weight: 500; text-decoration: none; border-radius: 6px; transition: var(--transition); }
.btn-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,146,74,0.3); }

.related-posts { padding: 4rem 0; background: var(--cream-dark); border-top: 1px solid var(--border); }
.related-posts h2, .related-posts h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--navy); margin-bottom: 2rem; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.related-card { background: var(--white); padding: 1.75rem; border-radius: 8px; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: var(--transition); display: flex; flex-direction: column; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-category { font-size: 0.7rem; font-weight: 500; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.related-card h3, .related-card h4 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.related-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.related-link { margin-top: 1rem; font-size: 0.8rem; font-weight: 500; color: var(--gold); }

/* SERVICE PAGES */
.services-detail { background: var(--white); padding: 4rem 0; }
.services-detail-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.intro-text p { font-size: 0.95rem; font-weight: 300; color: var(--text-muted); line-height: 1.9; margin-top: 1rem; }
.services-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.services-cards .service-card { padding: 2.5rem; display: block; }
.services-cards .service-card.featured { background: var(--navy-dark); grid-column: span 2; }
.services-cards .service-card.featured::before { transform: scaleX(1); background: linear-gradient(90deg, var(--gold), var(--gold-light) 50%, transparent); }
.services-cards .service-card.featured .card-num { color: rgba(184,146,74,0.2); }
.services-cards .service-card.featured .card-title { color: var(--white); }
.services-cards .service-card.featured .card-desc { color: rgba(255,255,255,0.5); }
.card-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 400; color: var(--cream-dark); line-height: 1; margin-bottom: 1rem; }
.card-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3; }
.card-desc { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.card-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; }
.card-list.single-col { grid-template-columns: 1fr; }
.card-list li { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
.card-list li::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 0.45rem; }
.services-cards .service-card.featured .card-list li { color: rgba(255,255,255,0.55); }
.services-cards .service-card.featured .card-list li::before { background: var(--gold); }

/* FAQ */
.faq-section { background: var(--cream); padding: 5rem 0; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-cta-box { margin-top: 2.5rem; background: var(--navy-dark); padding: 2rem; border-radius: 2px; }
.faq-cta-box h4 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.faq-cta-box p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); background: var(--white); }
.faq-item:last-child { border-bottom: none; }
.faq-question { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: var(--transition); }
.faq-question:hover { background: var(--cream); }
.faq-question h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--navy); line-height: 1.4; }
.faq-toggle { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 15px; transition: var(--transition); }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.87rem; font-weight: 300; color: var(--text-muted); line-height: 1.85; }
.faq-item.open .faq-answer { max-height: 600px; }

/* CTA Banner */
.cta-banner { background: var(--gold); padding: 4rem 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 3rem; flex-wrap: wrap; }
.cta-text h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 500; color: var(--navy-dark); line-height: 1.2; }
.cta-text p { font-size: 0.92rem; font-weight: 300; color: rgba(26,39,68,0.7); margin-top: 0.5rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-navy { font-size: 0.78rem; font-weight: 500; color: var(--white); background: var(--navy-dark); padding: 0.9rem 2rem; border-radius: 3px; text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-navy:hover { background: var(--navy); transform: translateY(-2px); }
.cta-phone { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy-dark); font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }

/* Related services section */
.related-section { background: var(--white); padding: 5rem 0; }
.related-section .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem; }
.related-section .related-card { background: var(--cream); padding: 2rem; border-radius: 0; box-shadow: none; text-decoration: none; color: inherit; transition: var(--transition); display: block; }
.related-section .related-card:hover { background: var(--navy-dark); transform: none; box-shadow: none; }
.related-section .related-card:hover .related-title { color: var(--white); }
.related-section .related-card:hover .related-desc { color: rgba(255,255,255,0.5); }
.related-section .related-card:hover .related-num { color: rgba(184,146,74,0.2); }
.related-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; color: var(--cream-dark); line-height: 1; margin-bottom: 1rem; transition: var(--transition); }
.related-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; transition: var(--transition); }
.related-desc { font-size: 0.8rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; transition: var(--transition); }
.related-arrow { display: inline-block; color: var(--gold); margin-top: 1rem; font-size: 0.82rem; font-weight: 500; }


/* Custom sections for service detail pages (mediaciya, e-advokat) */
.content-section { padding: 5rem 0; background: var(--white); }
.content-section h2 { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 600; color: var(--navy); margin-bottom: 1.25rem; line-height: 1.2; }
.content-section h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin: 2rem 0 1rem; line-height: 1.3; }
.content-section p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.25rem; }
.content-section ul, .content-section ol { margin: 1.25rem 0 1.25rem 1.5rem; }
.content-section li { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 0.5rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.feature-card { background: var(--cream); padding: 2rem; border-radius: 4px; border: 1px solid var(--border); transition: var(--transition); }
.feature-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.feature-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.highlight-box { background: var(--gold-pale); padding: 2rem; border-radius: 4px; border-left: 4px solid var(--gold); margin: 2rem 0; }
.highlight-box h3 { color: var(--navy); margin-top: 0; }

.contact-cta { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 5rem 0; text-align: center; }
.contact-cta h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.contact-cta p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; }

.btn-submit { 
  width: 100%;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500;
  color: var(--white); background: var(--navy-dark);
  padding: 1rem; border: none; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
}
.btn-submit:hover { background: var(--navy); transform: translateY(-1px); }

.form-message { padding: 1rem; border-radius: 4px; margin-bottom: 1rem; display: none; }
.form-message.success { background: rgba(45, 90, 58, 0.1); color: #2d5a3a; display: block; }
.form-message.error { background: rgba(220, 38, 38, 0.1); color: #dc2626; display: block; }

.honeypot-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.required { color: #dc2626; }

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } .content-section { padding: 3rem 0; } .content-section h2 { font-size: 1.75rem; } }

/* English page (real-estate-lawyer-sofia) - hero variant */
.hero-en { min-height: 70vh; }
.hero-en .hero-content { padding: 3rem 0; }



/* ─────────────────────────────────────────────────────────────────── */
/* ENGLISH PAGE (real-estate-lawyer-sofia) ADDITIONAL CLASSES         */
/* ─────────────────────────────────────────────────────────────────── */

.hero-photo-wrap { position: relative; display: flex; justify-content: center; }
.hero-photo-frame { position: relative; width: 100%; max-width: 500px; aspect-ratio: 1; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; border: 1px solid rgba(184,146,74,0.2); }
.hero-photo-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); padding: 1rem 1.5rem; border-radius: 3px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.badge-line1 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--navy-dark); line-height: 1; }
.badge-line2 { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; color: var(--navy-dark); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.hero-flags { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.flag-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.6); padding: 0.4rem 0.75rem; background: rgba(255,255,255,0.05); border-radius: 3px; border: 1px solid rgba(184,146,74,0.15); }
.flag-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }

.services-intro { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.services-intro .section-label { justify-content: center; }
.service-icon-wrap { width: 60px; height: 60px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1.5rem; }
.service-icon-wrap svg { width: 28px; height: 28px; }
.service-list { list-style: none; padding: 0; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li { font-size: 0.95rem; color: var(--text-muted); padding-left: 1rem; position: relative; line-height: 1.6; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.why { background: var(--cream); padding: 6rem 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-content {}
.why-image-side { position: relative; }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-point { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-point-num { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 500; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 50px; }
.why-point-text {}
.why-point-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.why-point-text p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.why-stat-stack { display: grid; gap: 1.5rem; }
.why-stat { background: var(--white); padding: 2rem; border-radius: 4px; border-left: 3px solid var(--gold); box-shadow: var(--shadow); }
.why-stat-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 500; color: var(--navy); line-height: 1; }
.why-stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

.process-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.process-header .section-label { justify-content: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.testimonials { background: var(--white); padding: 6rem 0; }
.testimonials-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--cream); padding: 2rem; border-radius: 4px; border: 1px solid var(--border); transition: var(--transition); }
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.star { color: var(--gold); font-size: 1rem; }
.testimonial-text { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--navy); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.author-avatar { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; flex-shrink: 0; }
.author-name { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500; color: var(--navy); }
.author-country { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.faq { background: var(--cream); padding: 6rem 0; }
.faq .container > .section-label,
.faq .container > .section-title { text-align: center; }

.contact-form-wrap { background: var(--cream); padding: 2.5rem; border-radius: 4px; border: 1px solid var(--border); }
.form-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.form-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-photo-wrap { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-flags { gap: 0.5rem; }
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-detail-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-cards { grid-template-columns: 1fr; }
  .services-cards .service-card.featured { grid-column: span 1; }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
  .faq-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .related-section .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  nav { display: none; }
  .btn-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 3rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.5rem; }
  .trust-inner { justify-content: center; gap: 1rem; }
  .trust-item { font-size: 0.75rem; }
  .about, .services, .process, .blog, .contact { padding: 4rem 0; }
  .section-title { font-size: 1.75rem; }
  .process-steps { grid-template-columns: 1fr; gap: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form form { padding: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .article-title { font-size: 1.75rem; }
  .article-content { padding: 2rem 1rem; }
  .cta-inner { flex-direction: column; text-align: center; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════════ */
/* PAGE-SPECIFIC STYLES (service pages, e-advokat, mediaciya, EN)    */
/* ═══════════════════════════════════════════════════════════════════ */

/* Feature cards (oblicacionno and others) */
.feature-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 1.5rem; }
.feature-icon svg { width: 48px; height: 48px; }
.feature-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; }
.feature-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

/* Quicknav (veshtno pravo) */
.hero-quicknav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0; }
.quicknav-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(184,146,74,0.15); border-radius: 4px; text-decoration: none; color: inherit; transition: var(--transition); flex: 1; min-width: 200px; }
.quicknav-item:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.quicknav-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.quicknav-icon svg { width: 24px; height: 24px; }
.quicknav-title { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 500; color: var(--white); }
.quicknav-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.quicknav-arrow { color: var(--gold); font-size: 1.2rem; margin-left: auto; }
@media (max-width: 768px) { .hero-quicknav { grid-template-columns: 1fr; } .quicknav-item { min-width: 100%; } }

/* Buttons */
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; border: 1px solid rgba(184,146,74,0.3); color: var(--gold-light); text-decoration: none; border-radius: 3px; font-size: 0.85rem; transition: var(--transition); }
.btn-outline:hover { background: rgba(184,146,74,0.1); border-color: var(--gold); }
.btn-outline-gold { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; border-radius: 3px; font-size: 0.85rem; transition: var(--transition); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); }

/* Pricing (e-advokat) */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
.pricing-card { background: var(--white); padding: 2.5rem; border-radius: 8px; box-shadow: var(--shadow); border-top: 4px solid var(--gold); text-align: center; }
.pricing-card h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.pricing-price { font-size: 3rem; font-weight: 600; color: var(--gold); margin: 1.5rem 0; }
.pricing-price span { font-size: 1.2rem; color: var(--text-muted); }
.pricing-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

/* Content sections (e-advokat, mediaciya) */
.content-section { padding: 4rem 0; }
.content-section h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--navy); margin-bottom: 2rem; }
.content-section h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--navy); margin: 2.5rem 0 1.5rem; }
.content-section p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--text); }
.content-section ul { margin: 1.5rem 0 1.5rem 2rem; }
.content-section li { margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.8; color: var(--text); }

/* Highlight / note boxes */
.highlight-box { background: var(--gold-pale); padding: 2rem; border-left: 4px solid var(--gold); margin: 2rem 0; border-radius: 4px; }
.note-box { background: var(--cream-dark); padding: 1.5rem; border-radius: 4px; margin: 2rem 0; font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* Contact CTA section */
.contact-cta { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 4rem 0; text-align: center; color: var(--white); margin-top: 4rem; }
.contact-cta h2 { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 1rem; }
.contact-cta p { font-size: 1.1rem; margin-bottom: 2rem; color: rgba(255,255,255,0.85); }

/* Dark sections */
.dark-section { background: var(--navy-dark); color: var(--white); padding: 5rem 0; }

/* Timeline (veshtno pravo process) */
.timeline-section { padding: 5rem 0; }
.timeline-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.timeline-sticky { position: sticky; top: 100px; }
.timeline-steps { display: flex; flex-direction: column; gap: 0; }
.timeline-step { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.step-left { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.step-dot { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.step-dot-inner { width: 12px; height: 12px; background: var(--gold); border-radius: 50%; }
.step-line { width: 2px; flex: 1; background: var(--border); }
.step-label { font-family: var(--font-serif); font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.step-content { padding-bottom: 1rem; }
.step-detail { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-top: 0.5rem; }
@media (max-width: 1024px) { .timeline-inner { grid-template-columns: 1fr; gap: 2rem; } .timeline-sticky { position: static; } }

/* Risk cards */
.risks { padding: 5rem 0; }
.risks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.risk-card { background: var(--white); padding: 2rem; border-radius: 4px; border: 1px solid var(--border); transition: var(--transition); }
.risk-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.risk-icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 1rem; }
.risk-icon svg { width: 32px; height: 32px; }
.risk-tag { font-size: 0.7rem; font-weight: 500; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.risk-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.risk-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 768px) { .risks-grid { grid-template-columns: 1fr; } }

/* Process (alternative layout for service pages) */
.process-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.process-sticky { position: sticky; top: 100px; }
.process-steps-list { display: flex; flex-direction: column; gap: 2rem; }
@media (max-width: 1024px) { .process-inner { grid-template-columns: 1fr; gap: 2rem; } .process-sticky { position: static; } }

/* Testimonials */
.testimonial-card { background: var(--white); padding: 2rem; border-radius: 4px; border: 1px solid var(--border); }
.stars { color: var(--gold); margin-bottom: 0.75rem; font-size: 1rem; letter-spacing: 0.15em; }
.author-detail { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Footer brand (shared footer) */
.footer-brand { display: flex; flex-direction: column; }

/* Service icon wrap (EN page) */
.service-icon-wrap { width: 60px; height: 60px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1.5rem; }
.service-icon-wrap svg { width: 28px; height: 28px; }

/* Global SVG constraint - prevent unsized SVGs from blowing up */
svg:not([width]):not([class]) { max-width: 48px; max-height: 48px; }

/* ═══════════════════════════════════════════════════════════════════ */
/* SERVICE PAGE HERO FIX - not full-screen, white text               */
/* ═══════════════════════════════════════════════════════════════════ */

/* Service pages use .hero but should NOT be 100vh */
.hero.hero-service { min-height: auto; padding: 8rem 0 4rem; }
.hero.hero-service .hero-inner { align-items: start; }

/* Force white text on ALL h1 inside .hero regardless of wrapper */
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 500; color: var(--white) !important; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold-light) !important; font-weight: 400; }
.hero .hero-label { color: var(--gold-light); }
.hero .hero-desc { color: rgba(255,255,255,0.8); }
.hero p { color: rgba(255,255,255,0.8); }

/* Related services section at bottom needs spacing before footer */
.related-section { padding: 5rem 0; margin-bottom: 0; }
.related-section + footer { margin-top: 0; }

/* Ensure related-card bottom spacing */
.related-card .related-arrow { margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════════════ */
/* TEXT READABILITY ON DARK/LIGHT BACKGROUNDS                        */
/* ═══════════════════════════════════════════════════════════════════ */

/* Process section (navy-dark bg) - all text must be white/light */
.process .section-title { color: var(--white) !important; }
.process .section-title em { color: var(--gold-light) !important; }
.process .section-subtitle { color: rgba(255,255,255,0.7) !important; }
.process .section-label { color: var(--gold) !important; }
.process h3 { color: var(--white) !important; }
.process p { color: rgba(255,255,255,0.7); }
.process .step-label { color: var(--gold) !important; }
.process .step-title { color: var(--white) !important; }
.process .step-desc { color: rgba(255,255,255,0.6) !important; }
.process .step-detail { color: rgba(255,255,255,0.6) !important; }
.process .step-content h3 { color: var(--white) !important; }
.process .step-content p { color: rgba(255,255,255,0.6) !important; }
.process .btn-outline-gold { color: var(--gold) !important; border-color: var(--gold) !important; }
.process .btn-outline-gold:hover { background: var(--gold) !important; color: var(--navy-dark) !important; }

/* Dark section - same treatment */
.dark-section .section-title { color: var(--white) !important; }
.dark-section .section-title em { color: var(--gold-light) !important; }
.dark-section .section-subtitle { color: rgba(255,255,255,0.7) !important; }
.dark-section h3 { color: var(--white) !important; }
.dark-section p { color: rgba(255,255,255,0.7); }

/* Timeline on LIGHT background (nasledstveno) - ensure step text is dark enough */
.timeline-section .step-label { color: var(--gold); }
.timeline-section .step-title { color: var(--navy) !important; }
.timeline-section .step-desc { color: var(--text-muted) !important; }
.timeline-section .step-content h3 { color: var(--navy) !important; }
.timeline-section .step-content p { color: var(--text-muted) !important; }
.timeline-section .section-title { color: var(--navy) !important; }
.timeline-section .section-title em { color: var(--gold) !important; }
