/* ============================================
   VIVI-Q TELEPROMPTING - MAIN STYLESHEET
   Clean, Professional, SEO-Optimized
   ============================================ */

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

:root {
    --navy: #1a2744;
    --navy-dark: #111c36;
    --gold: #c9a84c;
    --gold-light: #e2c06e;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #efefef;
    --text: #222222;
    --text-light: #555555;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    background: #ffffff;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    background: var(--navy-dark);
    border-radius: 8px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 130px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links a {
    color: var(--navy-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.nav-links .nav-cta {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.nav-links .nav-cta:hover {
    background: var(--gold-light);
    color: var(--navy-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #2a3f6f 100%);
    padding: 7rem 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-brand {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* About page — hero-straddling images */
.about-hero-images {
    background: transparent;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    margin-top: -160px;
}

.about-hero-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-hero-img-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    display: block;
    border: 3px solid #ffffff;
}

.why-choose-section {
    padding-top: 10rem !important;
}
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

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

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-outline-small {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold-light);
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.section-intro a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
    background: var(--off-white);
    text-align: center;
}

.features h2 {
    text-align: center;
}

.features .section-intro {
    margin: 0 auto 3rem;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   REMOTE SECTION
   ============================================ */
.remote-section {
    background: var(--white);
    text-align: center;
}

.remote-content {
    max-width: 700px;
    margin: 0 auto;
}

.remote-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.remote-content a:not(.btn) {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* ============================================
   TRUSTED SECTION
   ============================================ */
.trusted-section {
    background: var(--navy-dark);
    text-align: center;
}

.trusted-section h2 {
    color: var(--white);
}

.trusted-section .section-intro {
    color: rgba(255,255,255,0.75);
    margin: 0 auto 2.5rem;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trusted-logos span {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-band h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: var(--navy-dark);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.cta-band .btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

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

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

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

.footer-links-col ul li {
    margin-bottom: 0.6rem;
}

.footer-links-col ul a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact-col p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact-col a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-col a:hover {
    color: var(--gold-light);
}

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

/* ============================================
   INNER PAGE HERO (used on subpages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #2a3f6f 100%);
    padding: 4rem 0 180px;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
        width: 100%;
    }

    .nav-links.open {
        display: flex;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   EQUIPMENT PAGE
   ============================================ */
.equipment-section {
    background: var(--off-white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-4px);
}

.equipment-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.equipment-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    padding: 1rem 1.25rem 0.5rem;
}

.equipment-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 1.25rem 1.25rem;
    line-height: 1.6;
}

.why-section {
    background: var(--navy-dark);
}

.why-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ============================================
   MUSIC PAGE
   ============================================ */
.music-hero-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.music-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-dark {
    background: var(--navy-dark);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.how-card {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 8px;
}

.how-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.how-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.how-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.music-options-section {
    background: var(--off-white);
}

.music-options-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.music-options-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--light-gray);
}

.music-options-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.tom-petty-story {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tom-petty-story img {
    width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.tom-petty-story p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.why-music-section {
    background: var(--navy-dark);
}

.why-music-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.aftershock-feature,
.stephen-feature {
    text-align: center;
    margin-top: 3rem;
}

.aftershock-feature img,
.stephen-feature img {
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.caption {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

.venues-section {
    background: var(--off-white);
}

.venues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.venues-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.venues-list {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

/* ============================================
   CLIENTS & CREDITS PAGE
   ============================================ */
.clients-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
}

.clients-intro a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.clients-col h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.lyric-note {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-body);
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.clients-list span {
    background: var(--off-white);
    border: 1px solid var(--border, #e0dcd5);
    color: var(--text);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.clients-list span:hover {
    background: var(--navy-dark);
    color: white;
    border-color: var(--navy-dark);
}

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

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-intro-text h2 {
    margin-bottom: 1rem;
}

.about-intro-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-intro-text a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.about-intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-intro-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.why-choose-section {
    background: white;
}

.why-grid-large {
    grid-template-columns: repeat(3, 1fr);
    background: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
}

.why-grid-large .why-card {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 0;
}

.why-grid-large .why-card h3 {
    color: var(--navy-dark);
}

.why-grid-large .why-card p {
    color: var(--text-light);
}

.team-section {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.team-member img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    padding: 1.25rem 1.5rem 0.25rem;
}

.team-member h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 1.5rem 0.75rem;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.contact-item address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-social a {
    color: var(--navy-dark);
    transition: color 0.3s;
}

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

.contact-form-col h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-heading);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: white;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   SEO PAGES
   ============================================ */
.seo-intro-section .section-intro {
    max-width: 820px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.seo-card-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.seo-card-link:hover {
    color: var(--gold-light);
}

/* FAQ section */
.faq-section { background: #f8f9fb; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Why LA section (reusable 3-card grid) */
.why-la-section { background: white; }

.why-la-section .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: #f8f9fb;
    border-radius: 8px;
    padding: 2rem;
    border-top: 3px solid var(--gold);
}

.why-card h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Presidential feature image */
.presidential-feature-image {
    text-align: center;
    margin: 2rem 0 0;
}

.presidential-feature-image img {
    max-width: 700px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Steps grid (How It Works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.step-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* How it works section bg */
.how-it-works-section { background: #f8f9fb; }

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    .how-grid,
    .why-grid,
    .venues-grid,
    .clients-grid,
    .about-intro-grid,
    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .why-grid-large {
        grid-template-columns: 1fr;
    }
    .tom-petty-story {
        flex-direction: column;
    }
    .tom-petty-story img {
        width: 100%;
    }
    .about-intro-images {
        grid-template-columns: 1fr;
    }
    .why-la-section .why-grid,
    .steps-grid,
    .seo-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   BLOG STYLES
   =========================================== */

.blog-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}
.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.blog-hero .blog-meta {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}
.blog-body {
    padding: 64px 0 96px;
}
.blog-article {
    max-width: 780px;
    margin: 0 auto;
}
.blog-article h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.75rem 0 1rem;
    line-height: 1.3;
}
.blog-article h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2rem 0 0.75rem;
}
.blog-article p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.35rem;
}
.blog-article ul,
.blog-article ol {
    padding-left: 1.6rem;
    margin-bottom: 1.35rem;
}
.blog-article li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.blog-article a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}
.blog-article a:hover {
    text-decoration: underline;
}
.blog-callout {
    background: #f4f6ff;
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 2rem 0;
}
.blog-callout p {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}
.blog-faq { margin: 1rem 0; }
.blog-faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.4rem 0;
}
.blog-faq-item:last-child { border-bottom: none; }
.blog-faq-item h3 {
    font-size: 1.05rem;
    margin: 0 0 0.6rem;
    color: var(--navy);
}
.blog-faq-item p { margin: 0; font-size: 1rem; }
.blog-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 12px;
    padding: 44px 40px;
    text-align: center;
    margin: 3.5rem 0 0;
}
.blog-cta h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.7rem;
    margin: 0 0 0.75rem;
}
.blog-cta p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}
.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 2.5rem;
}
.blog-card {
    background: var(--white);
    border: 1px solid #e2e6ef;
    border-radius: 12px;
    padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
}
.blog-card:hover {
    box-shadow: 0 10px 32px rgba(26,39,68,0.12);
    transform: translateY(-2px);
}
.blog-card-date {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--navy);
    margin: 0 0 12px;
}
.blog-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0 0 18px;
}
.blog-card-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 600px) {
    .blog-hero { padding: 60px 0 40px; }
    .blog-body { padding: 40px 0 64px; }
    .blog-cta { padding: 32px 24px; }
    .blog-cta h2 { font-size: 1.4rem; }
}
