/* ===== Piano Tuner of South Florida - Master Stylesheet ===== */

/* --- CSS Variables --- */
:root {
    --gold: #d4af37;
    --gold-light: #f0d060;
    --black: #0a0a0a;
    --dark: #111;
    --dark-surface: #1a1a1a;
    --text: #e0e0e0;
    --text-muted: #aaa;
    --white: #fff;
    --font-main: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

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

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

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding: 12px 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo span { color: var(--white); font-weight: 400; }

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav a {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

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

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

/* --- Hero Section (Homepage) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 96px 24px 48px;
    position: relative;
    background-image: url('images/stock-keyboard-overhead.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gold { color: #d4af37; }

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.85));
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero h1 .gold { color: var(--gold); }

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hero .tagline {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* --- Sections --- */
section { padding: 28px 0; }

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.section-header h2 .gold { color: var(--gold); }

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto;
    border-radius: 2px;
}

/* --- Page Hero (Subpages) --- */
.page-hero {
    padding: 88px 0 24px;
    text-align: center;
    position: relative;
    background-color: var(--dark);
}

.page-hero h1 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.page-hero h1 .gold { color: var(--gold); }

.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* --- Content Blocks --- */
.content-block {
    padding: 20px 0;
}

.content-block h2 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 12px;
}

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

.content-block p {
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.8;
}

.content-block ul {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.content-block ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text);
}

.content-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* --- Content Image --- */
.content-image {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.service-card {
    background: var(--dark-surface);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

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

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

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

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* --- About Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212,175,55,0.2);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
}

.about-text h2 .gold { color: var(--gold); }

.about-text p {
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 16px;
}

.stat { text-align: center; }

.stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Entertainer Section --- */
.entertainer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.entertainer-text h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
}

.entertainer-text h2 .gold { color: var(--gold); }

.entertainer-text p {
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.8;
}

/* --- Video Section --- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    border: 2px solid rgba(212,175,55,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.lite-youtube {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #000;
    background-size: cover;
    background-position: center;
}

.lite-youtube .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 68px; height: 48px;
    background: rgba(0,0,0,0.7);
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.lite-youtube:hover .play-btn { background: #f00; }

.lite-youtube .play-btn::after {
    content: '';
    display: block;
    width: 0; height: 0;
    margin: 12px 0 0 22px;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}

.video-section {
    margin: 20px 0;
}

/* --- Testimonial --- */
.testimonial {
    background: var(--dark-surface);
    border-left: 4px solid var(--gold);
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
}

.testimonial p {
    font-style: italic;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.testimonial .author {
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
}

/* --- FAQ Accordion --- */
.faq-section { margin-top: 20px; }

.faq-item {
    background: var(--dark-surface);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-question .arrow {
    transition: transform 0.3s;
    color: var(--gold);
}

.faq-item.active .faq-question .arrow { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    margin: 20px 0;
}

.cta-banner h2 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-banner p {
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form label {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    margin-top: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-surface);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

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

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

.contact-info-card {
    background: var(--dark-surface);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 28px;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.info-item .icon { font-size: 1.3rem; }

.info-item .label {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-item .value { color: var(--text); }

/* --- Footer --- */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(212,175,55,0.15);
    padding: 36px 0 20px;
}

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

.footer-brand .logo {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

footer h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

footer ul { list-style: none; }

footer ul li { margin-bottom: 6px; }

footer ul a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(212,175,55,0.1);
    padding-top: 16px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- Star Rating --- */
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 8px 0;
    font-size: 0.8rem;
    color: #aaa;
    position: relative;
    z-index: 1;
}

.breadcrumb a { color: #d4af37; }

/* --- Button Sizes --- */
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }

/* --- Fade In Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Homepage Custom Elements --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding: 12px 0;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

#navbar.scrolled {
    background: rgba(10,10,10,0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom-color: rgba(212,175,55,0.4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-services {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-service-card {
    background: var(--dark-surface);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: transform 0.3s, border-color 0.3s;
}

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

.hero-service-icon {
    color: var(--gold);
    margin-bottom: 12px;
}

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

.hero-service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.trust-bar {
    background: var(--dark-surface);
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding: 28px 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    color: var(--gold);
}

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.section-subtitle::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-header .section-subtitle,
.area-content .section-subtitle {
    justify-content: center;
}

.service-icon {
    color: var(--gold);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight {
    background: var(--dark-surface);
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    line-height: 1.7;
}

.gold-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(212,175,55,0), var(--gold) 50%, rgba(212,175,55,0));
    margin: 16px 0;
}

.about-stat { text-align: center; }
.about-stat .number { font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.about-stat .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
}

.entertainer-image {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212,175,55,0.2);
}

.entertainer-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

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

.area-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.area-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--dark-surface);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.3s;
}

.area-badge:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.area-county-label {
    width: 100%;
    text-align: center;
    color: var(--gold);
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.area-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.review-card {
    background: var(--dark-surface);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.review-stars {
    color: var(--gold);
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-source {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-cta {
    text-align: center;
    margin-top: 28px;
}

.reviews-cta a {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.3s;
}

.reviews-cta a:hover { gap: 12px; }

.contact-info {
    background: var(--dark-surface);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 32px 28px;
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h4 {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-method p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    padding: 14px 24px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

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

footer .nav-logo {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
    color: var(--white);
    text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
        border-bottom: 1px solid rgba(212,175,55,0.2);
    }

    nav ul.active { display: flex; }

    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
        border-bottom: 1px solid rgba(212,175,55,0.2);
    }

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

    .hero h1 { font-size: 2rem; }
    .hero { padding: 80px 20px 40px; }
    .page-hero { padding: 72px 0 20px; }
    .page-hero h1 { font-size: 1.8rem; }

    .hero-services { flex-direction: column; align-items: center; }
    .hero-service-card { max-width: 100%; }

    .trust-items { flex-direction: column; gap: 16px; }

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

    .about-grid,
    .entertainer-content,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-stats { justify-content: center; }

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