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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #1a2a4a;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: #444; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-light { background: #f5f7fa; }
.section-navy { background: #1a2a4a; color: #fff; }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.85); }

/* TOP BAR */
.top-bar { background: #0f1e38; color: #fff; padding: 8px 0; font-size: 13px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar a { color: #fff; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.top-bar a:hover { color: #e8a020; }
.trust-badge { color: #e8a020; font-weight: 600; white-space: nowrap; }

/* NAVIGATION */
.main-nav { background: #1a2a4a; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; max-width: 1180px; margin: 0 auto; height: 70px; }
.nav-logo img { height: 50px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 8px 14px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; white-space: nowrap; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: #e8a020; }
.nav-cta-btn { background: #e8a020; color: #fff !important; padding: 10px 18px !important; border-radius: 4px; font-weight: 700 !important; transition: background 0.2s !important; }
.nav-cta-btn:hover { background: #c98010 !important; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 280px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); border-top: 3px solid #e8a020; z-index: 200; }
.dropdown-menu li a { display: block; padding: 12px 20px; color: #1a2a4a; font-size: 14px; font-weight: 600; border-bottom: 1px solid #f0f0f0; transition: background 0.2s, color 0.2s; }
.dropdown-menu li a:hover { background: #f5f7fa; color: #e8a020; }
.nav-menu > li:hover .dropdown-menu { display: block; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* HERO */
.hero { position: relative; background: linear-gradient(135deg, #0f1e38 0%, #1a2a4a 50%, #2a3f6a 100%); min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('/assets/images/hero-attorney.webp') center right / contain no-repeat; opacity: 0.2; }
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 60px 20px 60px 40px; }
.hero-badge { display: inline-block; background: #e8a020; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; text-transform: uppercase; white-space: nowrap; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* HOME HERO */
.hero-home { min-height: 580px; }
.hero-home .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 60px 20px; position: relative; z-index: 2; }
.hero-home .hero-text-col { padding-left: 20px; }
.hero-home .hero-image-col { display: flex; justify-content: flex-end; align-items: flex-end; }
.hero-home .hero-image-col img { max-height: 500px; object-fit: contain; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4)); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 4px; font-weight: 700; font-size: 14px; letter-spacing: 0.3px; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; text-transform: uppercase; }
.btn-primary { background: #e8a020; color: #fff; border-color: #e8a020; }
.btn-primary:hover { background: #c98010; border-color: #c98010; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #1a2a4a; }
.btn-navy { background: #1a2a4a; color: #fff; border-color: #1a2a4a; }
.btn-navy:hover { background: #0f1e38; border-color: #0f1e38; }

/* CALL BAR */
.call-bar { background: #e8a020; padding: 22px 0; }
.call-bar-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.call-bar p { color: #fff; font-size: 1.3rem; font-weight: 700; margin: 0; }
.call-bar-phone { display: flex; align-items: center; gap: 10px; background: #1a2a4a; color: #fff; padding: 10px 24px; border-radius: 40px; font-size: 1.2rem; font-weight: 800; transition: background 0.2s; }
.call-bar-phone:hover { background: #0f1e38; }
.call-icon-circle { width: 38px; height: 38px; background: #e8a020; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 8px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-top: 4px solid #e8a020; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.service-card-icon { width: 56px; height: 56px; background: #1a2a4a; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 24px; color: #e8a020; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: #1a2a4a; }
.service-card p { font-size: 0.95rem; color: #555; margin-bottom: 18px; }
.service-card .learn-more { color: #e8a020; font-weight: 700; font-size: 14px; }
.service-card .learn-more:hover { text-decoration: underline; }

/* WHY CHOOSE US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.why-item { text-align: center; padding: 28px 20px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.why-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.why-item h4 { color: #e8a020; margin-bottom: 10px; }
.why-item p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* BREADCRUMBS */
.breadcrumbs { background: #f5f7fa; padding: 12px 0; font-size: 13px; color: #666; }
.breadcrumbs a { color: #1a2a4a; }
.breadcrumbs a:hover { color: #e8a020; }
.breadcrumbs .sep { color: #e8a020; margin: 0 6px; }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 50px; }
.eyebrow { display: inline-block; color: #e8a020; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 640px; margin: 0 auto; color: #555; }
.divider { width: 60px; height: 4px; background: #e8a020; margin: 16px auto 0; border-radius: 2px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.stat-box { background: #1a2a4a; color: #fff; padding: 20px; border-radius: 8px; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: #e8a020; display: block; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 46px; height: 46px; min-width: 46px; background: #e8a020; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; }
.contact-info-item h4 { margin-bottom: 4px; color: #1a2a4a; }
.contact-info-item p, .contact-info-item a { color: #555; margin: 0; }
.contact-info-item a:hover { color: #e8a020; }

/* FORM */
.contact-form { background: #f5f7fa; padding: 36px; border-radius: 8px; }
.contact-form h3 { margin-bottom: 24px; color: #1a2a4a; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: #333; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px; font-size: 15px; font-family: inherit; background: #fff; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #1a2a4a; }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; }
.consent-group input[type="checkbox"] { margin-top: 3px; min-width: 16px; }
.consent-group label { font-size: 10px; color: #666; line-height: 1.5; }
.form-submit-btn { width: 100%; padding: 14px; background: #e8a020; color: #fff; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s; }
.form-submit-btn:hover { background: #c98010; }
.form-success { display: none; background: #d4edda; color: #155724; padding: 16px; border-radius: 4px; margin-top: 16px; font-weight: 600; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.blog-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, #1a2a4a, #2a3f6a); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 24px; }
.blog-meta { font-size: 12px; color: #e8a020; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 12px; color: #1a2a4a; line-height: 1.4; }
.blog-card-body p { font-size: 0.9rem; color: #666; margin-bottom: 16px; }
.blog-read-more { color: #e8a020; font-weight: 700; font-size: 13px; }
.blog-read-more:hover { text-decoration: underline; }

/* BLOG POST */
.blog-post-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.blog-post-content h2 { font-size: 1.5rem; margin: 28px 0 12px; }
.blog-post-content h3 { font-size: 1.2rem; margin: 22px 0 10px; }
.blog-post-content p { margin-bottom: 16px; color: #444; }
.blog-post-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.blog-post-content ul li { margin-bottom: 8px; color: #444; }
.blog-post-content strong { color: #1a2a4a; }
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: #f5f7fa; border-radius: 8px; padding: 28px; margin-bottom: 28px; border-top: 4px solid #e8a020; }
.sidebar-widget h4 { margin-bottom: 16px; color: #1a2a4a; }
.sidebar-widget ul li { margin-bottom: 10px; }
.sidebar-widget ul li a { color: #555; font-size: 14px; transition: color 0.2s; }
.sidebar-widget ul li a:hover { color: #e8a020; }
.sidebar-cta { background: #1a2a4a; color: #fff; border-radius: 8px; padding: 28px; text-align: center; }
.sidebar-cta h4 { color: #e8a020; margin-bottom: 12px; }
.sidebar-cta p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 18px; }

/* FAQ */
.faq-list { margin-top: 30px; }
.faq-item { border-bottom: 1px solid #e0e0e0; padding: 20px 0; }
.faq-question { font-weight: 700; color: #1a2a4a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: #e8a020; }
.faq-answer { margin-top: 12px; color: #555; font-size: 0.95rem; display: none; }
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-item.open .faq-answer { display: block; }

/* TABS */
.tabs-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tab-btn { padding: 10px 20px; background: #f5f7fa; border: 2px solid #ddd; border-radius: 4px; font-weight: 700; font-size: 14px; cursor: pointer; color: #1a2a4a; transition: all 0.2s; }
.tab-btn.active, .tab-btn:hover { background: #1a2a4a; color: #fff; border-color: #1a2a4a; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* MAP */
.map-embed { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* FOOTER */
.footer { background: #0f1e38; color: #fff; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 50px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: #e8a020; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #e8a020; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-item a:hover { color: #e8a020; }
.footer-contact-icon { color: #e8a020; font-size: 16px; margin-top: 2px; min-width: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #e8a020; }
.footer-compliance { color: rgba(255,255,255,0.4); font-size: 11px; margin-top: 8px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .blog-post-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .hero-home .hero-inner { grid-template-columns: 1fr; }
    .hero-home .hero-image-col { display: none; }
}
@media (max-width: 768px) {
    .top-bar .container { flex-direction: column; text-align: center; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #1a2a4a; padding: 16px 0; box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a { padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-hamburger { display: flex; }
    .dropdown-menu { position: static; box-shadow: none; border-top: none; background: rgba(0,0,0,0.2); display: none; }
    .dropdown-menu li a { color: rgba(255,255,255,0.8); padding-left: 40px; }
    .nav-menu > li.open .dropdown-menu { display: block; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 420px; }
    .hero-content { padding: 40px 20px; }
    .section { padding: 50px 0; }
    .tabs-nav { flex-direction: column; }
    .tab-btn { width: 100%; box-sizing: border-box; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .call-bar-inner { flex-direction: column; gap: 12px; }
    .about-stats { grid-template-columns: 1fr; }
}
