/*
Theme Name: Medico Legal Services
Theme URI: https://www.medicolegalservices.in
Author: Medico Legal Services
Description: Professional medico-legal consultancy theme for medicolegalservices.in
Version: 1.0.0
License: GNU General Public License v2
Text Domain: medicolegal
*/

/* ============================================================
   MEDICO LEGAL SERVICES — SHARED STYLESHEET
   Pages: Home, About, Blog, Blog Post, Videos, Contact
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #2D2D2D; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --navy:   #1B2E5A;
  --navy-d: #111D3A;
  --gold:   #C4963A;
  --gold-l: #DFB76A;
  --white:  #FFFFFF;
  --light:  #F4F6FA;
  --muted:  #6B7280;
  --border: #E2E6EE;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(27,46,90,.10);
  --shadow-md: 0 8px 32px rgba(27,46,90,.14);
}

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-tag { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); line-height: 1.25; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.75; }
.divider { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 24px; }
.divider-center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 6px; font-size: .95rem; font-weight: 600; cursor: pointer; border: none; transition: all .25s; white-space: nowrap; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #b5852d; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196,150,58,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-d); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(27,46,90,.30); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ===== TOP BAR ===== */
.topbar { background: var(--navy-d); color: #adb8cc; font-size: .82rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #adb8cc; transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 20px; }

/* ===== HEADER / NAV ===== */
header { background: var(--white); position: sticky; top: 0; z-index: 999; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.logo-text { line-height: 1.2; }
.logo-text strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.logo-text span { font-size: .72rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .92rem; font-weight: 500; color: #374151; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; border: none; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* Mobile nav overlay */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--navy-d); z-index: 998; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); font-weight: 600; }
.mobile-nav a:hover { color: var(--gold-l); }
.mobile-nav.open { display: flex; }
.mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; cursor: pointer; }
.mobile-close svg { width: 28px; height: 28px; fill: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, #0d1b38 0%, #1B2E5A 60%, #1e3a6e 100%); padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-hero::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%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-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: #8ba0be; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-l); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: #8ba0be; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: #b8c4d8; max-width: 560px; line-height: 1.8; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--light); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .88rem; font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* ===== SERVICES ===== */
.services { padding: 90px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 30px; transition: all .3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--border); transition: background .3s; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { background: var(--gold); }
.service-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(27,46,90,.07); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .3s; }
.service-card:hover .service-icon { background: var(--navy); }
.service-icon svg { width: 28px; height: 28px; fill: var(--navy); transition: fill .3s; }
.service-card:hover .service-icon svg { fill: var(--gold); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--muted); line-height: 1.75; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: .85rem; font-weight: 600; color: var(--gold); }
.service-link svg { width: 14px; height: 14px; fill: var(--gold); transition: transform .2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ===== WHY CHOOSE US ===== */
.why { padding: 90px 0; background: var(--light); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-visual { position: relative; }
.why-img-wrap { background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 100%); border-radius: 20px; padding: 48px; text-align: center; }
.why-img-wrap svg { width: 140px; height: 140px; fill: rgba(255,255,255,.12); }
.why-float { position: absolute; bottom: -24px; right: -24px; background: var(--white); border-radius: 14px; padding: 20px 24px; box-shadow: var(--shadow); }
.why-float strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); }
.why-float span { font-size: .8rem; color: var(--muted); }
.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check { width: 40px; height: 40px; border-radius: 10px; background: rgba(27,46,90,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check svg { width: 20px; height: 20px; fill: var(--gold); }
.why-item h4 { font-weight: 600; color: var(--navy); font-size: .97rem; margin-bottom: 4px; }
.why-item p { font-size: .87rem; color: var(--muted); line-height: 1.7; }

/* ===== TEAM ===== */
.team { padding: 90px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; transition: all .3s; }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--navy) 0%, #2a4080 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 4px solid var(--light); }
.team-avatar svg { width: 44px; height: 44px; fill: rgba(255,255,255,.7); }
.team-card.text-center .team-avatar { margin: 0 auto 20px; }
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: .82rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.team-card p { font-size: .88rem; color: var(--muted); line-height: 1.75; }
.team-divider { width: 36px; height: 2px; background: var(--gold); border-radius: 2px; margin: 16px auto; }
.qual-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.qual-item { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--muted); }
.qual-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ===== PROCESS ===== */
.process { padding: 90px 0; background: var(--navy); }
.process-header .section-tag { color: var(--gold-l); }
.process-header .section-title { color: var(--white); }
.process-header .section-sub { color: #8ba0be; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; position: relative; margin-top: 48px; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; width: 80%; height: 1px; background: rgba(255,255,255,.1); z-index: 0; }
.step { text-align: center; padding: 32px 24px; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.06); border: 2px solid rgba(196,150,58,.35); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.step h3 { font-weight: 600; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.step p { font-size: .85rem; color: #8ba0be; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, #0d1b38 0%, #1B2E5A 100%); position: relative; overflow: hidden; }
.cta-banner::after { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; border: 2px solid rgba(196,150,58,.1); pointer-events: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 10px; }
.cta-text p { color: #8ba0be; font-size: 1rem; max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact { padding: 90px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(27,46,90,.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 22px; height: 22px; fill: var(--navy); }
.c-detail strong { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.c-detail span { font-size: .9rem; color: var(--muted); }
.c-detail a { color: var(--muted); transition: color .2s; }
.c-detail a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { background: var(--light); border-radius: 16px; padding: 40px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: .92rem; color: #374151; background: var(--white); outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,46,90,.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 12px; }

/* ===== FOOTER ===== */
footer { background: var(--navy-d); color: #7a8faa; }
.footer-top { padding: 64px 0 40px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { }
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-top: 16px; max-width: 260px; color: #7a8faa; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: #7a8faa; }
.footer-col h4 { font-size: .88rem; font-weight: 600; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; color: #7a8faa; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 16px; height: 16px; fill: #adb8cc; transition: fill .2s; }
.social-btn:hover svg { fill: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: #7a8faa; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== HERO SECTION (Home) ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #0d1b38 0%, #1B2E5A 55%, #1e3a6e 100%); }
.hero::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%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"); }
.hero-accent { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(196,150,58,.12) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,150,58,.15); border: 1px solid rgba(196,150,58,.4); color: var(--gold-l); padding: 6px 14px; border-radius: 20px; font-size: .8rem; font-weight: 500; letter-spacing: .05em; margin-bottom: 28px; }
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); line-height: 1.15; margin-bottom: 22px; }
.hero h1 em { color: var(--gold-l); font-style: normal; }
.hero p { font-size: 1.1rem; color: #b8c4d8; line-height: 1.8; margin-bottom: 36px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-l); line-height: 1; }
.stat-label { font-size: .82rem; color: #8ba0be; margin-top: 4px; letter-spacing: .03em; }

/* ===== BLOG ===== */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 80px 0; align-items: start; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .3s; margin-bottom: 32px; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { height: 220px; background: linear-gradient(135deg, var(--navy) 0%, #2a4080 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-img svg { width: 80px; height: 80px; fill: rgba(255,255,255,.1); }
.blog-card-cat { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.blog-card-body { padding: 28px; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; font-size: .8rem; color: var(--muted); flex-wrap: wrap; }
.blog-meta-item { display: flex; align-items: center; gap: 5px; }
.blog-meta-item svg { width: 14px; height: 14px; fill: var(--gold); }
.blog-card h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); line-height: 1.4; margin-bottom: 12px; }
.blog-card h2 a:hover { color: var(--gold); }
.blog-card p { font-size: .9rem; color: var(--muted); line-height: 1.75; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: .88rem; font-weight: 600; color: var(--gold); }
.blog-read-more svg { width: 14px; height: 14px; fill: var(--gold); transition: transform .2s; }
.blog-card:hover .blog-read-more svg { transform: translateX(4px); }

/* Sidebar */
.sidebar { }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-bottom: 28px; }
.sidebar-widget h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--light); }
.sidebar-links { display: flex; flex-direction: column; gap: 12px; }
.sidebar-links a { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--muted); transition: color .2s; }
.sidebar-links a svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.sidebar-links a:hover { color: var(--navy); }
.sidebar-cta { background: var(--navy); border-radius: 14px; padding: 32px 28px; text-align: center; }
.sidebar-cta h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 12px; border: none; padding: 0; }
.sidebar-cta p { color: #8ba0be; font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.category-list { display: flex; flex-direction: column; gap: 10px; }
.category-list a { display: flex; align-items: center; justify-content: space-between; font-size: .88rem; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--light); transition: color .2s; }
.category-list a:last-child { border: none; }
.category-list a:hover { color: var(--navy); }
.category-list a span { background: var(--light); color: var(--navy); font-size: .75rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; }

/* Blog Post Article */
.blog-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 80px 0; align-items: start; }
.article-header { margin-bottom: 32px; }
.article-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.article-cat { background: rgba(196,150,58,.12); color: var(--gold); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; padding: 4px 12px; border-radius: 20px; }
.article-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); line-height: 1.3; margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--muted); }
.article-meta-item svg { width: 16px; height: 16px; fill: var(--gold); }
.article-body { line-height: 1.85; color: #374151; margin-top: 32px; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin: 36px 0 16px; padding-left: 16px; border-left: 4px solid var(--gold); }
.article-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin: 28px 0 12px; }
.article-body p { margin-bottom: 18px; font-size: .97rem; }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.article-body li { font-size: .95rem; color: #374151; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body blockquote { background: var(--light); border-left: 4px solid var(--gold); padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 24px 0; }
.article-body blockquote p { margin: 0; font-style: italic; color: var(--navy); }
.article-share { display: flex; align-items: center; gap: 16px; padding: 24px 0; border-top: 1px solid var(--border); margin-top: 32px; flex-wrap: wrap; }
.article-share span { font-weight: 600; font-size: .9rem; color: var(--navy); }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 6px; font-size: .82rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--muted); transition: all .2s; }
.share-btn:hover { border-color: var(--gold); color: var(--gold); }
.share-strip { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.share-strip span { font-size: .73rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.share-icon { width: 28px; height: 28px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .2s, opacity .2s; text-decoration: none; flex-shrink: 0; }
.share-icon:hover { transform: translateY(-2px); opacity: .85; }
.share-icon svg { width: 14px; height: 14px; fill: #fff; }
.share-icon.fb { background: #1877f2; }
.share-icon.li { background: #0a66c2; }
.share-icon.wa { background: #25d366; }
.author-box { background: var(--light); border-radius: 14px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; margin-top: 40px; }
.author-box-avatar { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--navy) 0%, #2a4080 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-box-avatar svg { width: 36px; height: 36px; fill: rgba(255,255,255,.7); }
.author-box-info strong { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.author-box-info em { font-size: .8rem; color: var(--gold); font-style: normal; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.author-box-info p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-top: 8px; }

/* Videos */
.videos-section { padding: 80px 0; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.video-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .3s; }
.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.video-thumb { position: relative; background: var(--navy); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-thumb-placeholder { position: relative; width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), #2a4080); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.play-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(196,150,58,.9); display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s; }
.video-card:hover .play-icon { transform: scale(1.1); background: var(--gold); }
.play-icon svg { width: 24px; height: 24px; fill: var(--white); margin-left: 3px; }
.video-thumb-placeholder span { color: rgba(255,255,255,.5); font-size: .8rem; }
.video-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 0; }
.video-cat { font-size: .72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.video-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); line-height: 1.45; margin-bottom: 10px; }
.video-body p { font-size: .88rem; color: #4a5568; line-height: 1.7; margin-bottom: 14px; }
.video-empty { text-align: center; padding: 80px 24px; background: var(--light); border-radius: 16px; grid-column: 1 / -1; }
.video-empty svg { width: 64px; height: 64px; fill: #d1d9e8; margin: 0 auto 20px; }
.video-empty h3 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 8px; }
.video-empty p { color: var(--muted); font-size: .9rem; max-width: 400px; margin: 0 auto 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-layout, .blog-post-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .topbar-right { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .cta-text p { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .trust-inner { gap: 24px; }
  .sidebar { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
}

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; cursor: pointer; font-weight: 600; color: var(--navy); font-size: .95rem; background: var(--white); transition: background .2s; }
.faq-q:hover { background: var(--light); }
.faq-q svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: .9rem; color: var(--muted); line-height: 1.75; background: var(--white); }
.faq-a.open { display: block; }

/* ===== CONSULTATION MODAL ===== */
.consult-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,.55);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(3px);
}
.consult-overlay.open { opacity: 1; visibility: visible; }
.consult-modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 480px;
  padding: 40px 36px 36px; position: relative;
  box-shadow: 0 24px 64px rgba(27,46,90,.22);
  transform: translateY(20px); transition: transform .3s;
  max-height: 90vh; overflow-y: auto;
}
.consult-overlay.open .consult-modal { transform: translateY(0); }
.consult-close {
  position: absolute; top: 16px; right: 18px;
  background: var(--light); border: none; border-radius: 50%;
  width: 34px; height: 34px; font-size: 1.2rem; color: var(--muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; line-height: 1;
}
.consult-close:hover { background: #fee2e2; color: #e53e3e; }
.consult-header { margin-bottom: 24px; }
.consult-header h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--navy); margin: 8px 0 6px; }
.consult-header p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.consult-modal .form-group { margin-bottom: 18px; }
.consult-modal .form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.consult-modal .form-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .9rem; font-family: inherit;
  color: #2d2d2d; background: #fff; transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.consult-modal .form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,150,58,.12); }
.consult-modal textarea.form-input { resize: vertical; min-height: 100px; }
.consult-thanks { text-align: center; padding: 16px 0 8px; }
.consult-thanks svg { display: block; margin: 0 auto 16px; }
.consult-thanks h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.consult-thanks p { color: var(--muted); font-size: .88rem; line-height: 1.65; }
