/* === Angel City Legal — Stylesheet === */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #1a365d;
    --navy-light: #2c5282;
    --navy-dark: #142850;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-dark: #b8913e;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #059669;
    --error: #dc2626;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--navy);
}

a { color: var(--navy); text-decoration: none; }

img { max-width: 100%; height: auto; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-full { width: 100%; }

/* === Header === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo { display: flex; align-items: center; }

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav { display: flex; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.header-actions { display: flex; align-items: center; gap: 16px; }

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.header-phone:hover { color: var(--gold-light); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* === Hero === */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 64px 0 56px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.hero-content { text-align: left; }

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero-contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-phone-link,
.hero-email-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.hero-phone-link:hover,
.hero-email-link:hover { color: var(--gold-light); }

/* Hero Form */
.hero-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
}

.hero-form-title {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

.hero-form .form-group { margin-bottom: 12px; }

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--gray-800);
    transition: border-color var(--transition);
    background: var(--white);
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26,54,93,0.1);
}

.hero-form textarea { resize: vertical; }

.hero-form .btn { margin-top: 4px; }

/* === Section shared === */
section { padding: 80px 0; }

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* === Services === */
.services { background: var(--gray-50); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card--coming-soon { opacity: 0.75; }

.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,54,93,0.08);
    border-radius: var(--radius);
    margin-bottom: 16px;
    color: var(--navy);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* RA Service */
.ra-service {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    color: var(--white);
}

.ra-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.ra-lead {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.ra-content > p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }

.ra-list {
    list-style: none;
    margin-bottom: 28px;
}

.ra-list li {
    padding: 6px 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.ra-list li::before {
    content: "\2713\0020";
    color: var(--gold);
    font-weight: 700;
}

.ra-pricing {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ra-price-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ra-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
}

.ra-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

/* === Why Us === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.why-card { text-align: center; padding: 24px; }

.why-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,168,83,0.12);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--gold-dark);
}

.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: var(--gray-600); font-size: 0.925rem; }

/* Founder's Note */
.founder-note {
    max-width: 760px;
    margin: 48px auto 0;
}

.founder-note blockquote {
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
    background: var(--gray-50);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.founder-note p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

.founder-note cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

/* === Service Area === */
.service-area { background: var(--gray-50); }

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.area-zone {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.area-zone h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.city-list {
    list-style: none;
    columns: 2;
    gap: 8px;
}

.city-list li {
    padding: 3px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.area-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
}

/* === Pricing === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all var(--transition);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-dark);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.price-header h3 { font-size: 1.5rem; margin-bottom: 4px; }

.price-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.price-tiers { margin-bottom: 20px; }

.price-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.tier-label { font-size: 0.9rem; color: var(--gray-600); }

.tier-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.price-features {
    list-style: none;
}

.price-features li {
    position: relative;
    padding: 4px 0 4px 24px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.price-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 700;
}

.pricing-extras {
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.volume-discount { margin-bottom: 20px; }
.volume-discount h4 { font-size: 1.1rem; margin-bottom: 8px; }
.volume-discount p { color: var(--gray-600); font-size: 0.95rem; }

/* === How It Works === */
.how-it-works { background: var(--gray-50); }

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 0 16px;
}

.step-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--gray-600); }

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--gray-300);
    margin-top: 26px;
    flex-shrink: 0;
}

/* === Trust Signals === */
.trust-signals { background: var(--navy); color: var(--white); }
.trust-signals .section-title { color: var(--white); }

.badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    max-width: 160px;
}

.badge-item svg { color: var(--gold); }
.badge-item span { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* === FAQ === */
.faq { background: var(--gray-50); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 8px;
    background: var(--white);
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-800);
    transition: background var(--transition);
}

.faq-item summary:hover { background: var(--gray-50); }

.faq-item summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-500);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--navy-light); text-decoration: underline; }

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-800);
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26,54,93,0.1);
}

.form-group textarea { resize: vertical; }

.form-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #ecfdf5;
    color: var(--success);
    border: 1px solid #a7f3d0;
}

.form-message.error {
    display: block;
    background: #fef2f2;
    color: var(--error);
    border: 1px solid #fecaca;
}

.contact-info { padding-top: 8px; }

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
}

.contact-link:hover { color: var(--gold-dark); }

/* === Footer === */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-brand p { font-size: 0.85rem; margin-bottom: 4px; }

.footer-links h5 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 6px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-legal { margin-top: 4px; color: rgba(255,255,255,0.4); }

/* === Responsive === */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    section { padding: 56px 0; }

    .nav { display: none; }
    .nav.open {
        display: flex;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
    }
    .nav.open .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .nav.open .nav-link {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .mobile-menu-btn { display: flex; }

    .header-phone span { display: none; }

    .hero { padding: 40px 0 48px; }
    .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-content { text-align: center; }
    .hero-title { font-size: 1.75rem; }
    .trust-bar { justify-content: center; }
    .hero-contact-info { justify-content: center; }

    .form-row { grid-template-columns: 1fr; }

    .steps { flex-direction: column; align-items: center; }
    .step { max-width: 100%; }
    .step-connector {
        width: 2px;
        height: 24px;
        margin: 8px 0;
    }

    .trust-bar { gap: 16px; }
    .trust-item { font-size: 0.8rem; }

    .pricing-grid { grid-template-columns: 1fr; }

    .ra-service { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .trust-bar { flex-direction: column; align-items: center; gap: 12px; }
    .city-list { columns: 1; }
    .badges-grid { gap: 24px; }
}
