@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #1a2b48;
    --primary-light: #2a3b5a;
    --accent: #c6a059;
    --accent-light: #e0c080;
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --sidebar-width: 320px;
    --header-height: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    position: relative;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
table { width: 100%; border-collapse: collapse; margin-bottom: 25px; }

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

a { text-decoration: none; transition: all 0.3s ease; }

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    transform: translateY(-40px); /* Hide top bar */
}

.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-link { color: var(--white); margin-left: 15px; opacity: 0.8; }
.social-link:hover { color: var(--accent); opacity: 1; }

.header-main {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span { 
    color: var(--accent); 
    font-weight: 300;
}

.logo-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .logo-desc { display: none; }
}

/* Desktop Nav */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu > li > a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 0;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

.nav-menu > li:hover > a::after { width: 100%; }

/* Mega Dropdown */
.has-mega { position: static; }

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.4s;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.has-mega:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Accordion (Desktop) */
.header-accordion-wrap {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.header-acc-item {
    flex: 1;
    background: #fcfcfc;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.header-acc-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.header-acc-trigger {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    transition: 0.3s;
}

.header-acc-trigger:hover { background: #fdfaf3; color: var(--accent); }

.header-acc-trigger i {
    font-size: 0.8rem;
    transition: 0.3s;
}

.header-acc-item.active .header-acc-trigger i { transform: rotate(90deg); }

.header-acc-body {
    display: none;
    padding: 10px 20px 25px;
    background: var(--white);
}

.header-acc-item.active .header-acc-body { display: block; }

/* Sub Accordion Level 2 */
.header-acc-sub {
    margin-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
}

.header-acc-sub-trigger {
    padding: 12px 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: 0.2s;
}

.header-acc-sub-trigger:hover { color: var(--accent); }

.header-acc-sub-body {
    display: none;
    padding: 10px 15px;
}

.header-acc-sub.active .header-acc-sub-body { display: block; }
.header-acc-sub.active .header-acc-sub-trigger { color: var(--accent); font-weight: 700; }

.header-acc-sub-body ul { list-style: none; }
.header-acc-sub-body li { margin-bottom: 8px; }
.header-acc-sub-body a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: 0.2s;
}

.header-acc-sub-body a:hover { color: var(--primary); padding-left: 5px; }

/* Header Right */
.header-phone {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* --- Mobile Menu Overlay --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.open { right: 0; }

.mobile-menu-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.close-mobile {
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--primary);
}

.mobile-menu-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
}

.mobile-nav-list { list-style: none; }
.mobile-nav-list > li { margin-bottom: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; }
.mobile-nav-list > li > a { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

.sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
}

.mobile-accordion { margin-top: 10px; }
.mobile-acc-item { border-bottom: 1px solid #eee; }
.mobile-acc-header {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
}
.mobile-acc-body { display: none; padding: 10px 0 15px 15px; }
.mobile-acc-item.active .mobile-acc-body { display: block; }
.mobile-acc-item.active .mobile-acc-header { color: var(--accent); }
.mobile-acc-item.active .mobile-acc-header i { transform: rotate(180deg); }

.mobile-acc-body ul { list-style: none; }
.mobile-acc-body li { margin-bottom: 8px; }
.mobile-acc-body a { color: var(--text-muted); font-size: 0.9rem; }

.mobile-contacts { padding: 30px; border-top: 1px solid var(--border); }
.btn-phone {
    display: block;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
}

/* --- Layout & Main Content --- */
main.container { padding-top: 180px; margin-top: 0; padding-bottom: 80px; }

.layout-wrapper { display: flex; gap: 50px; }
.layout-wrapper.full-width { display: block; max-width: 1200px; margin: 0 auto; }
.layout-wrapper.full-width .content-block { text-align: center; margin-bottom: 60px; }
.layout-wrapper.full-width .content-block p { max-width: 900px; margin-left: auto; margin-right: auto; text-align: center; }
.layout-wrapper.full-width h2, .layout-wrapper.full-width h3 { text-align: center; margin-bottom: 30px; }
.layout-wrapper.full-width ul { display: inline-block; text-align: left; }
.sidebar { 
    width: var(--sidebar-width); 
    flex-shrink: 0; 
    z-index: 10;
}

.sidebar-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    width: var(--sidebar-width);
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    padding-right: 15px;
    z-index: 100;
}

/* Custom scrollbar */
.sidebar-inner::-webkit-scrollbar { width: 4px; }
.sidebar-inner::-webkit-scrollbar-track { background: #f1f1f1; }
.sidebar-inner::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }
.sidebar-inner { scrollbar-width: thin; scrollbar-color: var(--accent) #f1f1f1; }

.sidebar-inner.is-fixed-js {
    position: fixed !important;
    top: 150px;
    z-index: 1000;
}

.main-content { 
    flex: 1; 
    min-width: 0; /* Prevent flex items from overflowing */
}
.main-content { flex-grow: 1; }

.section-center { text-align: center; margin-bottom: 40px; }
.text-center { text-align: center; }
.lead-text-center { text-align: center; font-size: 1.2rem; line-height: 1.6; color: var(--text-muted); max-width: 800px; margin: 0 auto 40px; }

.home-hero { text-align: center; padding-bottom: 60px; }

/* Breadcrumbs */
.breadcrumbs { 
    margin-bottom: 15px; 
    font-size: 0.9rem; 
    color: var(--primary); 
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: none;
    padding: 0;
    border-radius: 0;
    margin-top: 15px;
    font-weight: 500;
}
.bc-sep { color: var(--accent); font-weight: bold; }
.breadcrumbs a { 
    color: var(--text-dark); 
    text-decoration: none;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.breadcrumbs span { opacity: 0.5; }
.breadcrumbs .active { color: var(--primary); font-weight: 700; }

.hero-header { 
    margin-bottom: 45px; 
    border-bottom: 2px solid var(--accent); 
    padding: 100px 0 60px; 
    background: #f4f6f9;
    text-align: center;
    border-radius: 0 0 30px 30px;
}
.hero-header h1 { 
    font-size: 2.8rem; 
    line-height: 1.2; 
    font-family: 'Playfair Display', serif; 
    color: var(--primary) !important; 
    margin: 0;
}
.hero-badge { color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; display: block; margin-bottom: 15px; }

/* Sidebar Elements */
.sidebar-nav-title {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 3px solid var(--accent);
    padding-bottom: 12px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 800;
}
.sidebar-block { background: var(--bg-light); padding: 25px; border-radius: 8px; margin-bottom: 30px; border: 1px solid var(--border); }
.sidebar-title { font-size: 1.1rem; margin-bottom: 20px; border-left: 3px solid var(--accent); padding-left: 15px; color: var(--primary); }
.sidebar-subtitle { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: var(--accent); margin: 20px 0 15px; letter-spacing: 1px; }
.sidebar-list { list-style: none; }
.sidebar-list li { margin-bottom: 12px; }
.sidebar-list a { color: var(--text-dark); font-size: 0.9rem; transition: 0.2s; display: block; line-height: 1.4; }
.sidebar-list a:hover, .sidebar-list a.active { color: var(--accent); font-weight: 600; padding-left: 5px; }

.scrollable-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}
.scrollable-list::-webkit-scrollbar { width: 4px; }
.scrollable-list::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* Content Blocks */
.content-block { margin-bottom: 50px; }
.content-block h2 { font-size: 1.8rem; margin-bottom: 25px; font-family: 'Playfair Display', serif; color: var(--primary); position: relative; padding-bottom: 15px; }
.content-block h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--accent); }
.content-block p { font-size: 1.05rem; margin-bottom: 20px; color: #444; line-height: 1.7; }
.content-block ul, .content-block ol { margin-left: 25px; margin-bottom: 25px; }
.content-block li { margin-bottom: 12px; color: #444; }

.block-highlight { background: #fdfaf3; padding: 40px; border-radius: 8px; border-left: 5px solid var(--accent); margin: 30px 0; }
.block-accent { background: var(--primary); color: var(--white); padding: 40px; border-radius: 8px; margin: 30px 0; }
.block-accent h2, .block-accent p, .block-accent li { color: var(--white) !important; }
.block-accent h2::after { background: var(--accent-light); }

/* Pricing */
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 20px; box-shadow: var(--shadow); }
.pricing-table th, .pricing-table td { padding: 18px 25px; text-align: left; border-bottom: 1px solid var(--border); }
.pricing-table th { background: var(--bg-light); color: var(--primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }
.price-col { color: var(--accent); font-weight: 800; text-align: right; }

/* Case Cards */
.case-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 35px; margin-bottom: 25px; transition: 0.3s; }
.case-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.case-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.case-title { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.case-result { background: #e7f5ed; color: #2e7d32; padding: 6px 15px; border-radius: 5px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; }

/* Sidebar Lead Form */
.lead-form-sidebar {
    background: var(--primary);
    padding: 30px;
    border-radius: 12px;
    color: var(--white);
    margin-top: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
}
.lead-form-sidebar h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.lead-form-sidebar p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 20px; line-height: 1.4; }
.lead-form-sidebar input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: var(--white);
    margin-bottom: 15px;
    font-family: inherit;
}
.lead-form-sidebar input:focus { border-color: var(--accent); outline: none; background: rgba(255,255,255,0.15); }
.btn-submit-sidebar {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.btn-submit-sidebar:hover { background: var(--accent-light); transform: scale(1.02); }

/* Trust Section */
.trust-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin: 40px 0;
    padding: 40px;
    background: #fdfaf3;
    border-radius: 15px;
    border: 1px solid #eee;
}
.trust-item { text-align: center; }
.trust-num { 
    display: block; 
    font-size: 4rem; 
    font-weight: 800; 
    color: var(--primary); 
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}
.trust-item p { 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 700; 
    color: var(--accent);
    font-size: 0.9rem;
}

/* Reviews */
/* Review Slider */
.review-grid {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.review-grid::-webkit-scrollbar { height: 6px; }
.review-grid::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

.review-card {
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: start;
    flex-shrink: 0;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

@media (max-width: 600px) {
    .review-card { min-width: 280px; max-width: 280px; padding: 20px; }
}

.review-card:hover { transform: translateY(-5px); border-color: var(--accent); background: #fff; box-shadow: var(--shadow); }
.review-text { font-style: italic; color: var(--text-dark); margin-bottom: 20px; font-size: 0.95rem; }
.review-author { font-weight: 700; color: var(--primary); display: block; margin-bottom: 5px; }
.review-platform { font-size: 0.8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; }

/* Lead Form */
.lead-form {
    background: var(--primary);
    padding: 60px;
    border-radius: 15px;
    color: var(--white) !important;
    margin-top: 50px;
}
.lead-form h2, .lead-form h3, .lead-form h4, .lead-form p, .lead-form label { 
    color: var(--white) !important; 
}
.lead-form p { opacity: 0.8; margin-bottom: 35px; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.lead-form input, .lead-form textarea {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.lead-form textarea { grid-column: span 2; }
.btn-submit {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}
.btn-submit:hover { background: var(--accent-light); transform: translateY(-2px); }

/* --- FAQ Accordion --- */
.faq-section {
    margin-top: 60px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: 0.3s;
}
.faq-item:hover {
    border-color: var(--accent);
}
.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    user-select: none;
}
.faq-question i {
    font-size: 0.8rem;
    color: var(--accent);
    transition: 0.3s;
}
.faq-item.active .faq-question {
    background: #fdfaf3;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fdfaf3;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.faq-item.active .faq-answer {
    padding: 15px 25px 25px;
    max-height: 500px;
}

/* --- 404 Page --- */
.error-404-wrap {
    text-align: center;
    padding: 100px 0;
}
.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.error-msg {
    font-size: 1.5rem;
    margin: 20px 0 40px;
    color: var(--primary);
}
.btn-back-home {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 700;
}

/* Footer */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 25px; }
.footer-logo span { color: var(--accent); }
.footer-col p { font-size: 0.9rem; opacity: 0.7; line-height: 1.8; }

.footer-col h4 { color: var(--white); margin-bottom: 30px; font-size: 1.1rem; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 30px; height: 2px; background: var(--accent); }

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--white); opacity: 0.7; font-size: 0.9rem; }
.footer-col a:hover { opacity: 1; color: var(--accent); }

.contact-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.contact-item i { color: var(--accent); font-size: 1.2rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Floating CTA */
.cta-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(198, 160, 89, 0.4);
    z-index: 1500;
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .cta-fixed {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 18px;
    }
}

/* Advocate Horizontal Slider */
.advocate-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.advocate-grid::-webkit-scrollbar { height: 6px; }
.advocate-grid::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

.advocate-card {
    min-width: 300px;
    max-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}
.advocate-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.advocate-img { width: 100%; height: 350px; object-fit: cover; }
.advocate-info { padding: 20px; text-align: center; }
.advocate-info h4 { margin-bottom: 8px; font-size: 1.1rem; color: var(--primary); }
.advocate-exp { display: block; color: var(--accent); font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; text-transform: uppercase; }
.advocate-spec { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* --- Responsive --- */
@media (max-width: 1200px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-header h1 { font-size: 2.2rem; }
}

@media (max-width: 900px) {
    .layout-wrapper { flex-direction: column; gap: 30px; }
    .sidebar { width: 100%; order: 2; }
    .sidebar-inner { position: relative; top: 0; max-height: none; overflow: visible; padding-right: 0; }
    .main-content { order: 1; width: 100%; }
    main.container { padding-top: 150px; }
    .container { padding: 0 15px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    
    .trust-grid { flex-direction: column; gap: 40px; padding: 30px 20px; }
    .trust-num { font-size: 3rem; }
    
    .header-phone { font-size: 1rem; }
    .logo { font-size: 18px; }
}

@media (max-width: 600px) {
    .hide-mobile { display: none !important; }
    .top-bar-flex { justify-content: center; }
    .header-main-flex { gap: 10px; padding: 10px 0; }
    .hero-header { padding: 30px 0; margin-bottom: 30px; }
    .hero-header h1 { font-size: 1.5rem; }
    .header-phone { display: none; } 
    main.container { padding-top: 140px; }
    .content-block { margin-bottom: 35px; }
    .content-block p { font-size: 1rem; }
    .container { padding: 0 15px; } /* Smaller padding for phones */
}
