/*
Theme Name: Vasquez Law Office
Theme URI: https://ashleyvasquezlaw.com
Author: Ashley R. Vasquez Law Office
Description: A professional custom theme for the Law Office of Ashley R. Vasquez — Criminal Law & Family Law.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: vasquez-law
*/

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #7B9E87;
    --gold-light: #A3C4AD;
    --gold-dark: #5C7A65;
    --navy: #4E6B7A;
    --navy-dark: #3B5564;
    --navy-light: #627F8E;
    --white: #FFFFFF;
    --off-white: #F5F7F6;
    --light-gray: #E2E8E5;
    --medium-gray: #6B7280;
    --dark-gray: #374151;
    --text-dark: #2D3748;
    --text-light: #9CA3AF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(123,158,135,0.2);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

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

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

ul, ol {
    list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.section-padding {
    padding: 100px 0;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    line-height: 1.8;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 24px 0;
    border-radius: 2px;
}

.gold-line--center {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

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

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

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

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

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.top-bar__contact {
    display: flex;
    gap: 28px;
}

.top-bar__contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.top-bar__contact a:hover {
    color: var(--gold-light);
}

.top-bar__contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.top-bar__hours {
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.top-bar__social {
    display: flex;
    gap: 10px;
}

.top-bar__social a {
    display: flex;
    align-items: center;
    color: var(--gold-light);
    transition: var(--transition);
}

.top-bar__social a:hover {
    color: var(--white);
}

.top-bar__social i {
    font-size: 14px;
}

.top-bar__social .avvo-mark {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
}

/* ===== HEADER / NAV ===== */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    height: 130px;
}

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

.site-logo img {
    height: 115px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.3px;
    border-radius: 4px;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

.nav-cta {
    margin-left: 12px;
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
    opacity: 0.95;
    color: var(--white) !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,134,11,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    color: var(--white);
}

.hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(184,134,11,0.3);
    border-radius: 4px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero__title span {
    display: block;
    color: var(--gold-light);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__phones {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.hero__phones .btn-outline {
    flex: 1;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.85rem;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat h3 {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.hero__stat p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(184,134,11,0.3);
    border-radius: 8px;
    z-index: -1;
}

.hero__image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top center;
}

.hero__image-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    box-shadow: var(--shadow-gold);
    z-index: 3;
}

.hero__image-accent span:first-child {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.hero__image-accent span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===== PRACTICE AREAS ===== */
.practice-areas {
    background: var(--off-white);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.practice-card {
    background: var(--white);
    border-radius: 8px;
    padding: 44px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.practice-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: var(--transition);
}

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

.practice-card:hover::after {
    opacity: 1;
}

.practice-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.practice-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.practice-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.practice-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.practice-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.practice-card__link:hover {
    gap: 10px;
    color: var(--gold-dark);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-container {
    position: relative;
}

.about__image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top center;
}

.about__image-border {
    position: absolute;
    top: 24px;
    left: -24px;
    right: 24px;
    bottom: -24px;
    border: 3px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.5;
}

.about__credentials {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--off-white);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
}

.credential svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.about__text p {
    color: var(--medium-gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.highlight-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== SERVICE AREAS ===== */
.service-areas {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184,134,11,0.05), transparent);
}

.service-areas .section-title {
    color: var(--white);
}

.service-areas .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.areas-grid {
    display: grid;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.area-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    flex: 0 1 calc(20% - 20px);
    min-width: 200px;
}

.area-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(184,134,11,0.3);
}

.area-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: rgba(184,134,11,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184,134,11,0.25);
}

.area-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold-light);
}

.area-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    border-color: rgba(184,134,11,0.2);
    box-shadow: var(--shadow-md);
}

.why-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold-light);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    position: relative;
}

.cta-banner .cta-phones {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    position: relative;
}

.cta-banner .cta-phones a {
    color: var(--white);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
}

.cta-banner .cta-phones a:hover {
    border-bottom-color: var(--white);
}

.cta-banner .btn {
    position: relative;
}

.cta-banner .btn-white {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    font-size: 1rem;
    padding: 18px 44px;
}

.cta-banner .btn-white:hover {
    background: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: 8px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    border-color: rgba(184,134,11,0.15);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial-card__quote {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-card__quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(184,134,11,0.15);
    position: absolute;
    top: -24px;
    left: -8px;
    line-height: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card__author-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-card__author-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== ENDORSEMENTS ===== */
.endorsements {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.endorsements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184,134,11,0.04), transparent);
}

.endorsements .section-title {
    color: var(--white);
}

.endorsements .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.endorsements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.endorsement-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 36px 28px;
    transition: var(--transition);
}

.endorsement-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(184,134,11,0.3);
}

.endorsement-card__quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 24px;
}

.endorsement-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.endorsement-card__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.endorsement-card__author h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.endorsement-card__author p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
    .endorsements__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GOOGLE MAP ===== */
.contact-map {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.contact-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--light-gray);
}

.contact-info-card:last-child {
    border-bottom: none;
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-info-card a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: var(--off-white);
    border-radius: 8px;
    padding: 44px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.6);
    padding: 70px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer__brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.8;
}

.footer__social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--gold-light);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__social i {
    font-size: 18px;
}

.footer__social .avvo-mark {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 19px;
    line-height: 1;
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer__col a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer__col a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer__bottom {
    margin-top: 50px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer__payment {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__payment a {
    color: var(--gold-light);
    font-weight: 600;
}

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

.footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__designed-by {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__designed-by a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-light);
    font-weight: 600;
}

.footer__designed-by a:hover {
    color: var(--gold);
}

.lawthentics-logo {
    height: 18px;
    width: auto;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero__subtitle {
        margin: 0 auto 40px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image {
        max-width: 450px;
        margin: 0 auto;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__image-container {
        max-width: 450px;
        margin: 0 auto;
    }

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

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 16px;
        width: 100%;
        text-align: left;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 8px;
        text-align: center !important;
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero__image-wrapper img {
        height: 400px;
    }

    .hero__stats {
        gap: 24px;
    }

    .section-padding {
        padding: 70px 0;
    }

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

    .practice-grid--mobile-2col {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ===== PAGE TEMPLATES ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 16px;
}

.page-content h3 {
    font-size: 1.3rem;
    margin: 32px 0 12px;
}

.page-content p {
    color: var(--medium-gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.9;
}

.page-content ul {
    margin: 16px 0 24px 24px;
    list-style: none;
}

.page-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* WordPress classes */
.wp-block-image img {
    border-radius: 8px;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 24px;
}

.alignright {
    float: right;
    margin-left: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}
