/* ============================================
   ADAC DWI/DUI LANDING PAGE — DESIGN SYSTEM
   Warm Professional / Clinical Excellence
   ============================================ */

:root {
    /* Deep Royal Blue — Professional Authority */
    --navy-deep: #0b1632;
    --navy: #122046;
    --navy-light: #1a2d5a;

    /* Refined Brass — Muted Elegance */
    --accent: #a8884a;
    --accent-soft: #bfa167;
    --accent-glow: rgba(168, 136, 74, 0.12);

    /* Surfaces — Refined Warm Neutrals */
    --bg: #f8f7f4;
    --bg-warm: #f0ede6;
    --bg-card: #ffffff;
    --bg-dark: #0a0f1a;

    /* Text */
    --text: #1e293b;
    --text-light: #64748b;
    --text-on-dark: #e2e8f0;

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 7rem);
    --inner-max: 1200px;

    /* Radii */
    --radius: 10px;
    --radius-lg: 16px;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============ UTILITY ============ */
.section-inner {
    max-width: var(--inner-max);
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section {
    padding: var(--section-pad) 0;
}

.section-warm {
    background: var(--bg-warm);
}

.section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.section-title em {
    font-style: italic;
    color: var(--accent);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 750px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-soft);
    border-color: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 136, 64, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-card {
    background: var(--navy);
    color: #fff;
    width: 100%;
    border-color: var(--navy);
}

.btn-card:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
}

.btn-urgent {
    background: #8b5e34;
    color: #fff;
    width: 100%;
    border-color: #8b5e34;
}

.btn-urgent:hover {
    background: #a06b3c;
    border-color: #a06b3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 94, 52, 0.35);
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}

.top-bar-inner {
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-left a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.top-left a:hover {
    color: var(--accent-soft);
}

.medicare-badge {
    background: rgba(194, 136, 64, 0.15);
    color: var(--accent-soft);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
}

/* ============ NAVBAR ============ */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 100%;
    transition: box-shadow 0.3s;
}

#navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.logo-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 1.3;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: var(--radius) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-soft) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--navy-deep);
    transition: all 0.3s;
}

/* ============ HERO ============ */
#hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 136, 64, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    background: rgba(194, 136, 64, 0.15);
    color: var(--accent-soft);
    border: 1px solid rgba(194, 136, 64, 0.25);
    margin-bottom: 1.5rem;
}

#hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

#hero h1 em {
    color: var(--accent-soft);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-sub strong {
    color: #fff;
    font-weight: 600;
}

.hero-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.highlight-item svg {
    color: var(--accent-soft);
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem 0;
}

.trust-inner {
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-icon {
    color: var(--accent);
}

.trust-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* ============ SERVICES GRID ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-glow);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ PRICING ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px rgba(194, 136, 64, 0.12);
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-urgent {
    border: 2px solid #8b5e34;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
}

.urgent-badge {
    background: #8b5e34;
}

.pricing-tier {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1;
    margin-bottom: 1rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text);
}

.pricing-features li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-note {
    font-size: 0.78rem;
    color: #92600a;
    background: #fef3cd;
    border: 1px solid #f0d78c;
    border-radius: 6px;
    padding: 0.65rem 0.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* ============ PROCESS ============ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ CREDENTIALS ============ */
.credentials-lead {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cred-item {
    background: var(--bg-card);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.cred-item strong {
    display: block;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.cred-item span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.drg-quote {
    border-left: 3px solid var(--accent);
    padding: 1.5rem 0 1.5rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.8;
    margin: 0;
}

.drg-quote cite {
    display: block;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============ CTA SECTION ============ */
.section-cta {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
    position: relative;
}

.section-cta .section-title em {
    color: var(--accent-soft);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.contact-card svg {
    color: var(--accent-soft);
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    transition: color 0.2s;
    display: block;
    word-break: break-all;
    line-height: 1.5;
}

.contact-card a:hover {
    color: var(--accent-soft);
}

/* ============ FOOTER ============ */
footer {
    background: var(--navy-deep);
    padding: 3rem 0 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-mark {
    width: 36px;
    height: 36px;
    font-size: 0.6rem;
    background: var(--navy-light);
}

.footer-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--accent-soft);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-soft);
}

.footer-copy {
    font-size: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .top-left {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1.5rem 2rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        gap: 0.75rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .trust-inner {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============ FORM STYLING ============ */
.form-container {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: #fdfdfd;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-submit {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-container {
        padding: 1.5rem;
    }
}