/* ============================================================
   CIS — Comprehensive Investigative Solutions
   Design System: Prussian Navy · Parchment · Gold-Amber
   ============================================================ */

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

:root {
    --prussian:       #1A2744;
    --prussian-mid:   #243660;
    --prussian-light: #2E4275;
    --navy-deep:      #0F1926;
    --steel:          #6B7A8D;
    --steel-light:    #A8B2BE;
    --parchment:      #F7F6F2;
    --parchment-dark: #ECEAE4;
    --white:          #FFFFFF;
    --gold:           #C9A84C;
    --gold-light:     #DDB96A;
    --gold-dark:      #A8863A;
    --text-dark:      #1A2744;
    --text-muted:     #4A5568;
    --text-light:     #F7F6F2;
    --text-dim:       #A8B2BE;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #0b111a;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── SITE BORDER WRAPPER ── */
.site-wrap {
    max-width: 1500px;
    margin: 0 auto;
    background: var(--prussian);
    border-left:  3px solid rgba(201,168,76,0.35);
    border-right: 3px solid rgba(201,168,76,0.35);
    position: relative;
    min-height: 100vh;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 64px; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(15, 25, 38, 0.97);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    backdrop-filter: blur(12px);
    transition: background 0.3s;
}
.nav-container,
.nav-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 64px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo img,
.nav-brand img,
.nav-brand .logo {
    height: 52px; width: auto;
    filter: brightness(0) invert(1);
}
.nav-brand { display: flex; align-items: center; }
.nav-menu {
    display: flex; list-style: none; align-items: center; gap: 0.25rem;
}
.nav-menu > li { position: relative; }

.nav-link {
    display: block; padding: 0.5rem 0.9rem;
    color: rgba(247,246,242,0.85);
    font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: color 0.25s;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-link-cta {
    background: var(--gold); color: var(--prussian) !important;
    padding: 0.5rem 1.2rem; border-radius: 2px;
    font-weight: 700; margin-left: 0.5rem;
    transition: background 0.25s, transform 0.2s;
}
.nav-link-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Dropdown */
.nav-dropdown > .nav-link { display: flex; align-items: center; gap: 0.35rem; }
.nav-dropdown > .nav-link .fa-chevron-down { font-size: 0.65rem; transition: transform 0.25s; }
.nav-dropdown:hover > .nav-link .fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: calc(100% + 1px); left: 0;
    background: var(--prussian);
    border: 1px solid rgba(201,168,76,0.15);
    border-top: 2px solid var(--gold);
    min-width: 220px; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.25s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
    display: block; padding: 0.7rem 1.2rem;
    color: rgba(247,246,242,0.8);
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
    background: rgba(201,168,76,0.08);
    color: var(--gold);
    padding-left: 1.5rem;
}

/* Mobile hamburger */
.nav-toggle {
    display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 4px;
}
.bar { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }

/* ── HERO — FULL HEIGHT (home) ── */
.hero {
    height: 100vh; min-height: 650px;
    position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    padding-top: 72px; /* offset for fixed navbar so content stays in visible area */
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('/private-investigator-fort-lauderdale.jpg') center/cover no-repeat;
    z-index: 1;
    animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.03); } to { transform: scale(1.1); } }

.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(160deg, rgba(15,25,38,0.90) 0%, rgba(26,39,68,0.82) 100%);
}
.hero-content {
    position: relative; z-index: 3;
    max-width: 840px; padding: 0 24px;
}
.hero-eyebrow {
    display: inline-block; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4); padding: 0.4rem 1.2rem;
    border-radius: 2px; margin-bottom: 1.6rem;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1.4rem; color: var(--white);
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
    font-size: 1.15rem; color: rgba(247,246,242,0.82);
    max-width: 620px; margin: 0 auto 2.8rem; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── HERO — INNER PAGES (banner) ── */
.page-banner {
    padding: 120px 0 64px;
    background: var(--gold);
    background-image: none !important;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--gold-dark);
}
.banner-overlay { display: none; }   /* hide old photo overlay */

.banner-content { position: relative; z-index: 1; }
.page-banner h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--prussian);
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: none;
}
.page-banner p {
    font-size: 1.05rem;
    color: rgba(15,25,38,0.75);
    max-width: 580px;
    margin: 0 auto;
    font-weight: 500;
}

/* ── BUTTONS ── */
.btn-gold {
    display: inline-block; background: var(--gold); color: var(--prussian);
    padding: 1rem 2.4rem; border-radius: 2px;
    font-weight: 700; font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase;
    transition: all 0.3s; box-shadow: 0 6px 24px rgba(201,168,76,0.3);
    border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,0.4); }

.btn-ghost {
    display: inline-block; background: transparent; color: var(--white);
    padding: 1rem 2.4rem; border-radius: 2px;
    font-weight: 600; font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ghost-dark {
    display: inline-block; background: transparent; color: var(--prussian);
    padding: 0.9rem 2rem; border-radius: 2px;
    font-weight: 700; font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase;
    border: 2px solid var(--prussian);
    transition: all 0.3s;
}
.btn-ghost-dark:hover { background: var(--prussian); color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--prussian-mid);
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 1rem 0;
}
.trust-bar-inner {
    display: flex; justify-content: center; align-items: center;
    gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.8rem; font-weight: 500;
    color: rgba(247,246,242,0.72); letter-spacing: 0.5px; text-transform: uppercase;
}
.trust-item i { color: var(--gold); font-size: 0.9rem; }

/* ── SECTION SHARED ── */
section { padding: 5rem 0; }

.section-label {
    display: block; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.8rem;
}

/* DARK section (prussian bg) */
.section-dark { background: var(--prussian); padding: 5rem 0; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--text-dim); }

/* DEEP section (darkest) */
.section-deep { background: var(--navy-deep); padding: 5rem 0; }
.section-deep .section-title { color: var(--white); }
.section-deep .section-sub { color: var(--text-dim); }

/* LIGHT section (parchment) */
.section-light { background: var(--parchment); padding: 5rem 0; }
.section-light .section-label { color: var(--gold-dark); }
.section-light .section-title { color: var(--text-dark); }
.section-light .section-sub { color: var(--text-muted); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ── ABOUT INTRO ── */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; margin-bottom: 5rem;
}
.about-img-wrap { position: relative; }
.about-img-wrap::before {
    content: ''; position: absolute; inset: -10px 10px 10px -10px;
    border: 2px solid rgba(201,168,76,0.3); border-radius: 3px; z-index: 0;
}
.about-img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 3px; position: relative; z-index: 1;
    background: var(--prussian-mid);
}
.about-text h3 { font-size: 1.9rem; color: var(--white); margin-bottom: 1.2rem; }
.about-text h3 em { color: var(--gold); font-style: normal; }
.about-text p { color: var(--text-dim); line-height: 1.8; margin-bottom: 1.2rem; }

.stats { display: flex; gap: 1rem; margin-top: 2rem; }
.stat {
    flex: 1; text-align: center; padding: 1.2rem 0.8rem;
    background: var(--prussian-mid);
    border: 1px solid rgba(201,168,76,0.2); border-radius: 3px;
}
.stat-number { font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card {
    background: var(--prussian-mid); padding: 2rem; border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid var(--gold);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.team-role {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.team-name { font-size: 1.3rem; color: var(--white); margin-bottom: 1rem; }
.team-bio { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }

.service-img { height: 220px; overflow: hidden; flex-shrink: 0; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img img { transform: scale(1.05); }

.service-body {
    padding: 1.6rem 1.5rem 1.4rem;
    background: var(--white);
    display: flex; flex-direction: column; flex: 1;
    border-top: 3px solid var(--gold);
}
.service-body h3 { font-size: 1.1rem; color: var(--prussian); margin-bottom: 0.6rem; font-weight: 700; }
.service-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.service-link {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: 0.85rem; font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: color 0.2s;
}
.service-link:hover { color: var(--prussian); }

/* service-card-body is an alias used on the services sub-pages */
.service-card-body {
    padding: 1.6rem 1.5rem 1.4rem;
    background: var(--white);
    display: flex; flex-direction: column; flex: 1;
    border-top: 3px solid var(--gold);
}
.service-card-body h2 { font-size: 1.1rem; color: var(--prussian); margin-bottom: 0.6rem; font-weight: 700; }
.service-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.service-card .btn-outline {
    display: inline-block; margin-top: 1.1rem;
    font-size: 0.85rem; font-weight: 700;
    color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.08em;
    transition: color 0.2s;
}
.service-card .btn-outline:hover { color: var(--prussian); }

/* ── SERVICE CARDS (light bg) ── */
.service-card-light {
    background: var(--white); border-radius: 3px; overflow: hidden;
    border: 1px solid var(--parchment-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(26,39,68,0.08);
}
.service-card-light:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,39,68,0.15); }
.service-card-light .service-body h3 { color: var(--text-dark); }
.service-card-light .service-body p { color: var(--text-muted); }
.service-card-light .service-icon-wrap { background: var(--prussian); }
.service-card-light .service-icon-wrap i { color: var(--gold); }

/* ── WHY CHOOSE CIS (icon list) ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card {
    padding: 2rem; border-radius: 3px;
    border: 1px solid rgba(201,168,76,0.15);
    background: rgba(36,54,96,0.4);
}
.why-card-light {
    background: var(--white); padding: 2rem; border-radius: 3px;
    border: 1px solid var(--parchment-dark);
    box-shadow: 0 4px 16px rgba(26,39,68,0.07);
}
.why-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.why-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }
.why-card-light h3 { color: var(--text-dark); margin-bottom: 0.6rem; font-size: 1rem; }
.why-card-light p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band {
    background: var(--prussian-mid);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 4rem 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: var(--text-dim); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-band-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--prussian-mid); position: relative; }
.contact-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-intro { color: var(--text-dim); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; }
.contact-icon-wrap {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3); border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
}
.contact-icon-wrap i { font-size: 1rem; color: var(--gold); }
.contact-detail-label {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem;
}
.contact-detail-value, .contact-detail-value a {
    color: rgba(247,246,242,0.8); font-size: 0.95rem; line-height: 1.5;
    transition: color 0.2s;
}
.contact-detail-value a:hover { color: var(--gold); }

/* ── FORM ── */
.form-box {
    background: var(--prussian); padding: 2.5rem; border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.form-box-title {
    font-size: 1.1rem; font-weight: 700; color: var(--white);
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; color: rgba(247,246,242,0.65);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 3px;
    font-size: 0.95rem; color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--prussian); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--gold);
    background: rgba(201,168,76,0.05);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-privacy {
    text-align: center; color: rgba(255,255,255,0.38); font-size: 0.78rem; margin-top: 0.5rem;
}
.form-privacy i { color: var(--gold); margin-right: 0.3rem; }

/* ── FOOTER ── */
.footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
    height: 48px; margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}
.footer-tagline { color: rgba(247,246,242,0.45); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
    color: rgba(247,246,242,0.5); font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 0.6rem;
    margin-bottom: 0.7rem;
}
.footer-contact-item i { color: var(--gold); font-size: 0.85rem; width: 14px; margin-top: 3px; }
.footer-contact-item a, .footer-contact-item span {
    color: rgba(247,246,242,0.5); font-size: 0.88rem; line-height: 1.5;
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--gold); }

/* Licensing block */
.footer-licensing {
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1.2rem 0; margin-bottom: 1.2rem;
    text-align: center;
}
.footer-licensing p {
    color: rgba(247,246,242,0.35); font-size: 0.75rem; line-height: 1.8;
}
.footer-licensing strong { color: rgba(247,246,242,0.5); font-weight: 600; }

.footer-bottom {
    padding: 1.2rem 0; text-align: center;
    color: rgba(247,246,242,0.25); font-size: 0.78rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    background: var(--prussian-mid);
    padding: 0.6rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb a { color: var(--text-dim); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(247,246,242,0.4); margin: 0 0.4rem; }
.breadcrumb .current { color: var(--gold); }

/* ── CITY / ATTORNEY PAGE specific ── */
.content-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.content-body h2 { font-size: 1.6rem; color: var(--white); margin-bottom: 1rem; }
.content-body h3 { font-size: 1.15rem; color: var(--gold); margin: 1.5rem 0 0.6rem; }
.content-body p { color: var(--text-dim); line-height: 1.8; margin-bottom: 1rem; }
.content-body ul { list-style: none; padding: 0; }
.content-body ul li {
    color: var(--text-dim); font-size: 0.95rem; line-height: 1.7;
    padding: 0.4rem 0 0.4rem 1.4rem; position: relative;
}
.content-body ul li::before { content: '—'; color: var(--gold); position: absolute; left: 0; }

/* Sidebar box */
.sidebar-box {
    background: var(--prussian-mid); padding: 2rem; border-radius: 3px;
    border: 1px solid rgba(201,168,76,0.2); position: sticky; top: 100px;
}
.sidebar-box h3 { font-size: 1rem; color: var(--white); margin-bottom: 1.5rem; }
.sidebar-cta-list { list-style: none; }
.sidebar-cta-list li { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 0.7rem 0; }
.sidebar-cta-list li:last-child { border-bottom: none; }
.sidebar-cta-list li a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.sidebar-cta-list li a:hover { color: var(--gold); }
.sidebar-cta-list li a i { color: var(--gold); font-size: 0.8rem; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
    background: var(--prussian-mid); border-radius: 3px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { height: 180px; background: var(--prussian); }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.blog-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ── THANK YOU ── */
.thankyou-section {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: var(--prussian); padding: 8rem 0 4rem;
}
.thankyou-box { max-width: 600px; text-align: center; padding: 0 24px; }
.thankyou-icon { font-size: 3.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.thankyou-box h1 { font-size: 2.2rem; color: var(--white); margin-bottom: 1rem; }
.thankyou-box p { color: var(--text-dim); line-height: 1.8; margin-bottom: 1.2rem; }
.thankyou-phone { font-size: 1.4rem; font-weight: 700; color: var(--gold); }

/* ── CONTENT TWO-COL LAYOUT ── */
.content-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: 3rem;
    align-items: start;
    width: 100%;
}
.content-main h2 { font-size: 1.7rem; color: var(--prussian); margin: 2rem 0 0.75rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 1.15rem; color: var(--prussian); margin: 1.5rem 0 0.5rem; }
.content-main p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.check-list { list-style: none; margin: 0 0 1.5rem; }
.check-list li {
    position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem;
    color: var(--text-muted); line-height: 1.6;
}
.check-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--gold); font-weight: 700;
}
.check-list a { color: var(--prussian-mid); text-decoration: underline; }

/* ── ASIDE / SIDEBAR ── */
.content-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.aside-card {
    background: var(--prussian);
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--text-light);
}
.aside-card h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.75rem; }
.aside-card h4 { font-size: 0.9rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.aside-card p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.7; }
.aside-card ul { list-style: none; }
.aside-card ul li { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0.4rem 0; }
.aside-card ul li a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.2s; }
.aside-card ul li a:hover { color: var(--gold); }
.aside-phone { margin-top: 0.75rem; text-align: center; }
.aside-phone a { color: var(--gold); font-size: 1.1rem; font-weight: 700; }

/* ── SECTION INTRO TEXT ── */
.section-intro {
    max-width: 720px; margin: 0 auto 2.5rem;
    color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; text-align: center;
}
.section-light .section-intro { color: var(--text-muted); }

/* ── ATTORNEY PAGE ── */
.attorney-intro { text-align: center; padding: 2rem 0; }

/* ── SERVICE AREAS CARDS ── */
.area-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.area-card {
    background: var(--prussian);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
    display: block;
    color: var(--text-light);
}
.area-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.area-card h2 { font-size: 1.2rem; color: var(--gold); margin-bottom: 0.6rem; }
.area-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

/* ── CONTACT PAGE LAYOUT ── */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
    width: 100%;
}
.contact-info h2 { font-size: 1.5rem; color: var(--prussian); margin-bottom: 1rem; }
.contact-detail { margin-bottom: 1.25rem; }
.contact-detail strong { display: block; color: var(--prussian); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-detail a, .contact-detail p, .contact-detail address { color: var(--text-muted); font-style: normal; line-height: 1.7; }
.contact-detail a { color: var(--prussian-mid); }
.license-block { background: var(--prussian); border-radius: 8px; padding: 1.25rem; margin-top: 2rem; }
.license-block h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.license-block p { color: var(--text-dim); font-size: 0.82rem; line-height: 1.8; }
.contact-form-wrap h2 { font-size: 1.5rem; color: var(--prussian); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-row input, .form-row select, .form-row textarea {
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--parchment-dark);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--gold);
}
.form-row textarea { resize: vertical; }
.form-disclaimer { font-size: 0.78rem; color: var(--steel); text-align: center; margin-top: -0.5rem; }

/* ── THANK YOU PAGE ── */
.thankyou-section { padding: 6rem 0; min-height: 60vh; display: flex; align-items: center; }
.thankyou-wrap { max-width: 600px; margin: 0 auto; text-align: center; }
.thankyou-icon { font-size: 3.5rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.thankyou-wrap h1 { font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.thankyou-intro { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 1rem; line-height: 1.8; }
.thankyou-wrap p { color: var(--text-dim); margin-bottom: 1.5rem; }
.thankyou-wrap a { color: var(--gold); }
.thankyou-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ── BLOG PAGE ── */
.blog-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.blog-coming { font-size: 0.8rem; color: var(--steel); font-style: italic; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.blog-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card h2 { font-size: 1rem; color: var(--prussian); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }

/* ── FADE-UP ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-grid, .team-grid, .why-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
    .content-two-col { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .area-cards { grid-template-columns: repeat(2, 1fr); }
    .sidebar-box { position: static; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 72px; left: -100%; width: 100%;
        flex-direction: column; background: var(--prussian);
        border-top: 1px solid rgba(201,168,76,0.2);
        padding: 1rem 0 2rem; gap: 0; transition: left 0.3s;
        overflow-y: auto; max-height: calc(100vh - 72px);
        align-items: stretch;
    }
    .nav-menu.open { left: 0; }
    .nav-link { padding: 0.85rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-link-cta { margin: 1rem 1.5rem 0; text-align: center; }
    .nav-dropdown > .nav-link .fa-chevron-down { margin-left: auto; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        background: rgba(36,54,96,0.5); border: none; border-top: none;
        box-shadow: none; display: none;
    }
    .dropdown-menu.open { display: block; }
    .nav-toggle { display: flex; }

    .about-grid, .contact-grid, .contact-layout { grid-template-columns: 1fr; }
    .area-cards { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .about-img-wrap::before { display: none; }
    .stats { flex-wrap: wrap; }
    .services-grid, .team-grid, .why-grid, .blog-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .trust-bar-inner { gap: 1rem; }
    .cta-band-buttons { flex-direction: column; align-items: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .container { padding: 0 20px; }
    .section-dark, .section-light, .section-deep { padding: 3rem 0; }
    .nav-inner, .nav-container { padding: 0 20px; }
}
