/**
 * Tint Atlanta - Main Stylesheet
 * Extracted from inline styles for better caching and performance
 */

:root {
    --black: #0a0a0a;
    --darker: #111111;
    --dark: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #666666;
    --light-gray: #999999;
    --white: #ffffff;
    --orange: #f68e1e;
    --orange-dark: #d97706;
    --orange-glow: rgba(246, 142, 30, 0.3);
    --gold: #f59e0b;
}

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

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

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

/* Header */
.mobile-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.mobile-banner strong {
    margin: 0 5px;
}

.mobile-banner a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: background 0.3s ease;
}

.mobile-banner a:hover {
    background: rgba(255, 255, 255, 0.3);
}

header,
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-gray);
}

.header-inner,
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo img {
    height: 50px;
    width: auto;
}

nav,
.header-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a,
.header-nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav a:hover,
.header-nav a:hover {
    color: var(--white);
}

.nav-spacer {
    width: 15px;
}

.nav-phone {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1rem !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 0 30px var(--orange-glow);
}

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

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* Hero */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--orange-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(246, 142, 30, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    border: 1px solid var(--dark-gray);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.hero-badge .years {
    color: var(--orange);
    font-weight: 700;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.wfn-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 12px 24px;
    background: rgba(246, 142, 30, 0.1);
    border: 1px solid rgba(246, 142, 30, 0.3);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wfn-badge:hover {
    background: rgba(246, 142, 30, 0.2);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.wfn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--orange);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

.wfn-text strong {
    color: var(--orange);
}

/* Promo Banner CTA */
.promo-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.promo-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");
    opacity: 0.5;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.promo-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.promo-cta {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.promo-cta .btn-primary {
    background: var(--white);
    color: var(--orange-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-cta .btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.promo-cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.promo-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-text h3 {
        font-size: 1.25rem;
    }

    .promo-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Services */
.services {
    padding: 100px 20px;
    background: var(--darker);
}

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

.section-label {
    font-size: 0.85rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, var(--dark) 0%, #1a1a1a 100%);
    border: 1px solid var(--dark-gray);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.92) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    border-color: var(--orange);
    transform: scale(1.03);
}

.service-card[data-service="automotive"] {
    background-image: url('/assets/images/services/automotive-bg.jpg');
}

.service-card[data-service="residential"] {
    background-image: url('/assets/images/services/residential-bg.jpg');
}

.service-card[data-service="commercial"] {
    background-image: url('/assets/images/services/commercial-bg.jpg');
}

.service-card[data-service="security"] {
    background-image: url('/assets/images/services/security-bg.jpg');
}

.service-cta {
    display: inline-block;
    margin-top: 15px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(246, 142, 30, 0.15) 0%, rgba(246, 142, 30, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(246, 142, 30, 0.2);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--orange);
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-color: var(--orange);
    transform: scale(1.05);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.service-tagline {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: none;
}

.service-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--light-gray);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

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

/* Films Section */
.films {
    padding: 100px 20px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.films::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 300px;
    height: 80%;
    background: url('/assets/images/upshift-logo-vertical.jpeg') no-repeat center left;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    filter: invert(1);
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.film-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(145deg, var(--dark) 0%, #1a1a1a 100%);
    border: 1px solid var(--dark-gray);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.film-card.popular {
    border: 2px solid var(--orange);
    z-index: 2;
    box-shadow: 0 15px 50px rgba(246, 142, 30, 0.2);
    background: linear-gradient(145deg, #1c1c1c 0%, var(--dark) 100%);
}

.film-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange) 0%, #ff9f40 100%);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(246, 142, 30, 0.4);
}

.film-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.film-card.popular:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(246, 142, 30, 0.25);
}

.film-card.upshift {
    overflow: hidden;
}

.film-card.upshift::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 120px;
    height: 90%;
    background: url('/assets/images/upshift-logo-vertical.jpeg') no-repeat center left;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
    filter: invert(1);
}

.film-tier {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 5px 12px;
    background: rgba(246, 142, 30, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(246, 142, 30, 0.2);
}

.film-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.film-ir {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.film-ir-label {
    font-size: 0.75rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.film-card p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.film-price {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Paint Protection */
.protection {
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('/assets/images/ppf-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid var(--dark-gray);
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.protection-card {
    background: linear-gradient(145deg, var(--dark) 0%, #1a1a1a 100%);
    border: 1px solid var(--dark-gray);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.protection-card:hover {
    border-color: var(--orange);
}

.protection-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(246, 142, 30, 0.15) 0%, rgba(246, 142, 30, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(246, 142, 30, 0.2);
    transition: all 0.3s ease;
}

.protection-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--orange);
    stroke-width: 1.5;
    fill: none;
}

.protection-card:hover .protection-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-color: var(--orange);
}

.protection-card:hover .protection-icon svg {
    stroke: var(--white);
}

.protection-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.protection-tagline {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.protection-card p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

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

/* Credentials */
.credentials {
    padding: 40px 20px;
    background: var(--black);
    border-top: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
}

.credentials-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.credential:hover {
    color: var(--orange);
}

.credential-icon {
    font-size: 1.2rem;
}

.credential-logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.credential-logo:hover img {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--dark);
    border: 1px solid var(--dark-gray);
    border-radius: 10px;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(246, 142, 30, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.testimonial-text {
    color: var(--light-gray);
    font-size: 0.8rem;
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.4;
}

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

.testimonial-avatar {
    width: 28px;
    height: 28px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
}

.testimonial-info h4 {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.testimonial-info p {
    color: var(--light-gray);
    font-size: 0.7rem;
}

/* Review CTA */
.review-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 30px;
    background: linear-gradient(145deg, var(--dark) 0%, #1a1a1a 100%);
    border: 1px solid var(--dark-gray);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-cta h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.review-cta p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.review-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-google {
    background: var(--white);
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-google:hover {
    background: #f1f1f1;
}

.btn-google svg {
    width: 18px;
    height: 18px;
}

/* Service Areas */
.areas {
    padding: 80px 20px;
    background: var(--darker);
    border-top: 1px solid var(--dark-gray);
}

.areas-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.area-tag {
    background: var(--dark);
    border: 1px solid var(--dark-gray);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.area-tag:hover {
    border-color: var(--orange);
    color: var(--white);
}

.area-tag.primary {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* FAQ */
.faq {
    padding: 100px 20px;
    background: var(--black);
    border-top: 1px solid var(--dark-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--dark-gray);
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--orange);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Social Feed */
.social-feed {
    padding: 60px 20px;
    background: var(--darker);
    border-top: 1px solid var(--dark-gray);
}

.social-header {
    max-width: 1000px;
    margin: 0 auto 20px;
}

.social-profile {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    padding: 10px 15px;
    background: var(--dark);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-profile:hover {
    background: var(--black);
}

.social-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--orange);
}

.social-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
}

.social-info p {
    font-size: 0.75rem;
    color: var(--light-gray);
}

.social-profile .instagram-icon {
    color: var(--orange);
    margin-left: 5px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-item:hover img {
    transform: scale(1.05);
}

.social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.social-item:hover .social-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Legacy gallery styles - keep for lightbox */
.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(246, 142, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid var(--dark-gray);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.instagram-link svg {
    transition: transform 0.3s ease;
}

.instagram-link:hover svg {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--orange);
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
    text-align: center;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn-primary {
    background: var(--white);
    color: var(--orange);
}

.cta .btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

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

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

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: var(--dark);
}

.contact h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: var(--black);
    border: 1px solid var(--dark-gray);
    border-radius: 16px;
    padding: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--dark-gray);
}

.contact-item:first-child {
    padding-top: 0;
}

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

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--orange) !important;
    font-weight: 500;
    font-size: 0.9rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.hours-row span:first-child {
    color: var(--white);
    font-weight: 500;
}

.contact-map {
    min-height: 450px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--dark-gray);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

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

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid var(--dark-gray);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.footer-brand p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-hours {
    color: var(--light-gray);
    font-size: 0.85rem;
}

.footer-hours .day {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 30px;
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: var(--light-gray);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--dark-gray);
        width: 100%;
    }

    nav .btn-primary {
        margin-top: 20px;
        text-align: center;
    }

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

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-value {
        font-size: 2rem;
    }

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

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

    .credentials-grid {
        gap: 40px;
    }

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

/* ============================================================
   Legal / Content Pages (Privacy Policy, SMS Terms, etc.)
   ============================================================ */

.legal-page {
    padding: 120px 20px 80px;
    min-height: 100vh;
    background: var(--black);
}

.legal-page .container {
    max-width: 860px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 8px;
}

.legal-page .effective-date {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--dark-gray);
}

.legal-page h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--orange);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page p {
    color: var(--light-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    color: var(--light-gray);
    line-height: 1.75;
    margin: 0 0 20px 24px;
    padding: 0;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page li strong {
    color: var(--white);
}

.legal-page a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-page a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.legal-page .contact-info {
    background: var(--dark);
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 32px;
}

.legal-page .contact-info p {
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 16px 60px;
    }
    .legal-page h1 {
        font-size: 1.8rem;
    }
    .legal-page h2 {
        font-size: 1.25rem;
    }
}
