/* ========================================
   SJR Images - Main Stylesheet
   Compatible with Adobe Dreamweaver
   ======================================== */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent-color: #e0e0e0;
    --border-color: #2a2a2a;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
    --container-max: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    height: 80px;
}

.logo {
    flex-shrink: 0;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.4) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--spacing-md);
    max-width: 800px;
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #e63946;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3.5vw, 2.3rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--spacing-md);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: 2px solid var(--text-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

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

.btn-hero-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Work With Us Button - White fill with red text */
.btn-hero-work {
    background-color: #ffffff;
    color: #e63946;
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hero-work:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #e63946;
    transform: translateY(-2px);
}

/* ========================================
   Section Styles
   ======================================== */
.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    max-width: 700px;
    margin-bottom: var(--spacing-md);
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.about-content {
    max-width: 700px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.about-content .locations {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.about-content .locations strong {
    color: var(--text-primary);
}

/* About Section - New Styling */
.about-heading-bold {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.about-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.about-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.about-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e63946;
    font-size: 1.25rem;
    line-height: 1.4;
}

/* Learn More Button - Round pill shape */
.btn-learn-more {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-learn-more:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.explore-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.explore-link:hover {
    color: var(--text-primary);
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-category {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.gallery-title {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

.gallery-item.hidden {
    display: none;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background-color: var(--bg-primary);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
}

.cta-section .highlight {
    font-style: italic;
}

/* ========================================
   Metro Area Section
   ======================================== */
.metro-area-section {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    background-color: var(--bg-primary);
    border: 1px dashed rgba(230, 57, 70, 0.3);
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
}

.metro-area-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 12px;
}

.metro-area-section .city-links {
    font-size: 1rem;
    color: #e63946;
    line-height: 1.8;
}

.metro-area-section .city-links a {
    color: #e63946;
    text-decoration: none;
    transition: color 0.3s ease;
}

.metro-area-section .city-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.metro-area-section .city-links .separator {
    color: rgba(230, 57, 70, 0.5);
    margin: 0 4px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--border-color);
}

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

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--text-primary);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Services Page
   ======================================== */
.page-header {
    padding-top: 150px;
    padding-bottom: var(--spacing-lg);
    text-align: center;
    background-color: var(--bg-secondary);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.service-detail {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-content {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-content > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

/* Video Placeholder */
.video-placeholder {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    aspect-ratio: 16 / 9;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover img {
    opacity: 0.85;
}

.video-placeholder .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-placeholder:hover .play-button,
.video-placeholder:focus-within .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder .play-button svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.video-placeholder .play-button .play-bg {
    transition: fill 0.2s ease, fill-opacity 0.2s ease;
}

.video-placeholder:hover .play-button .play-bg,
.video-placeholder:focus-within .play-button .play-bg {
    fill: #cc0000;
    fill-opacity: 1;
}

/* Active Video Player (replaces placeholder) */
.commercial-video {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    background-color: #000;
    display: block;
}

.service-detail-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.service-detail-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.service-features {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: "→";
    color: var(--text-muted);
}

/* Combined Service Section with Subsections */
.service-detail-combined {
    padding-bottom: var(--spacing-lg);
}

.service-section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.service-section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-intro {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.service-subsection {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--border-color);
}

.service-subsection:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-subsection:nth-child(odd) .service-detail-content {
    direction: ltr;
}

.service-subsection:nth-child(even) .service-detail-content {
    direction: rtl;
}

.service-subsection:nth-child(even) .service-detail-content > * {
    direction: ltr;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-detail-text h3.subsection-title {
    font-size: 1.75rem;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.contact-item {
    margin-bottom: var(--spacing-md);
}

.contact-item h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    font-size: 1.125rem;
    color: var(--text-primary);
}

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

.contact-form {
    background-color: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: 12px;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail:nth-child(even) .service-detail-content {
        direction: ltr;
    }
    
    .service-subsection:nth-child(even) .service-detail-content {
        direction: ltr;
    }
    
    .service-section-header h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero-title {
        font-size: clamp(1.1rem, 4.5vw, 1.55rem);
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-hero-outline {
        padding: 0.875rem 2rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 200px;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .gallery-filters {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.375rem 0.875rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }



/* ========================================
   Updated Navigation Styling (Wix-Inspired)
   ======================================== */
.nav-link {
    position: relative;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e07c4a, #d4a574);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link.nav-active::before {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.nav-active {
    color: var(--text-primary);
}

/* Different accent colors for different nav items */
.nav-left .nav-link:nth-child(1)::before {
    background: linear-gradient(90deg, #e07c4a, #f4a574);
}

.nav-left .nav-link:nth-child(2)::before {
    background: linear-gradient(90deg, #c4a77d, #d4b98a);
}

.nav-left .nav-link:nth-child(3)::before {
    background: linear-gradient(90deg, #7cb8c4, #8acad6);
}

.nav-right .nav-link:nth-child(1)::before {
    background: linear-gradient(90deg, #a07cc4, #b48ad6);
}

.nav-right .nav-link:nth-child(2)::before {
    background: linear-gradient(90deg, #c47c7c, #d68a8a);
}

/* ========================================
   Documentaries Page Styles
   ======================================== */
.documentary-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.documentary-featured {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

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

.documentary-intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.documentary-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.documentary-section {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.documentary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-lg);
}

.documentary-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.documentary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.documentary-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.documentary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.documentary-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    background: #000;
}

.documentary-video-wrapper {
    position: relative;
}

.documentary-video-wrapper video {
    display: block;
}

.documentary-card:hover .documentary-image img {
    transform: scale(1.05);
}

.documentary-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.coming-soon {
    background: linear-gradient(135deg, #e07c4a, #d4a574);
    color: #fff;
}

.status-badge.in-production {
    background: linear-gradient(135deg, #7cb8c4, #5a9aa6);
    color: #fff;
}

.status-badge.released {
    background: linear-gradient(135deg, #6cc47c, #4aa65a);
    color: #fff;
}

.documentary-content {
    padding: 2rem;
}

.documentary-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.documentary-tagline {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.documentary-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.documentary-expect {
    margin-bottom: 1.5rem;
}

.documentary-expect h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.documentary-expect ul {
    list-style: none;
    padding: 0;
}

.documentary-expect ul li {
    color: var(--text-secondary);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.documentary-expect ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-color, #c5a47e);
}

.documentary-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.meta-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Behind the Scenes Section */
.documentary-bts {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.bts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.bts-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bts-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Updates Section */
.documentary-updates {
    padding: var(--spacing-xl) 0;
}

.updates-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.updates-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.updates-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Button Outline Style - inherits from .btn .btn-outline above */

/* Responsive Documentaries */
@media (max-width: 768px) {
    .documentary-grid {
        grid-template-columns: 1fr;
    }
    
    .documentary-intro h2 {
        font-size: 1.75rem;
    }
    
    .bts-content {
        grid-template-columns: 1fr;
    }
    
    .documentary-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .documentary-image video {
        border-radius: 12px 12px 0 0;
        max-height: 300px;
    }

    .documentary-video-wrapper .documentary-status {
        z-index: 2;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .mobile-nav .nav-link {
        padding: 0.75rem 0;
        border-left: 3px solid transparent;
        padding-left: 1rem;
    }
    
    .mobile-nav .nav-link:hover,
    .mobile-nav .nav-link.nav-active {
        border-left-color: #e07c4a;
        color: var(--text-primary);
    }
}



/* ================================================
   TESTIMONIALS MARQUEE SECTION
   Infinite scrolling testimonials with cinematic feel
   ================================================ */

.testimonial-marquee-section {
    background-color: #ffffff;
    margin-top: 0;
    padding: var(--spacing-md) 0;
    overflow: hidden;
    position: relative;
}

.testimonial-marquee-heading {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666666;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

/* Marquee wrapper with gradient fade effects */
.testimonial-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Left gradient fade */
.testimonial-marquee-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Right gradient fade */
.testimonial-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* The scrolling track - animation moves 50% (half of content = original set) */
.testimonial-marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee-scroll 35s linear infinite;
    width: max-content;
    padding: 1rem 0;
}

/* Pause on hover for accessibility */
.testimonial-marquee-track:hover {
    animation-play-state: paused;
}

/* Keyframes for smooth infinite scroll */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Individual testimonial item */
.testimonial-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    flex-shrink: 0;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: #333333;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* CTA Button container */
.testimonial-marquee-cta {
    text-align: center;
    margin-top: var(--spacing-sm);
}

/* Read More Reviews Button */
.btn-reviews {
    color: #333333;
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.btn-reviews:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
    transform: translateY(-2px);
}

/* ================================================
   TESTIMONIALS MARQUEE - RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 992px) {
    .testimonial-marquee-section {
        padding: var(--spacing-sm) 0;
    }
    
    .testimonial-marquee-heading {
        font-size: 0.85rem;
    }
    
    .testimonial-marquee-track {
        gap: 2rem;
        animation-duration: 30s;
    }
    
    .testimonial-marquee-item {
        padding: 0.75rem 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    /* Smaller gradient fades on tablet */
    .testimonial-marquee-wrapper::before,
    .testimonial-marquee-wrapper::after {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .testimonial-marquee-section {
        padding: var(--spacing-xs) 0 var(--spacing-sm);
    }
    
    .testimonial-marquee-heading {
        font-size: 0.75rem;
        padding: 0 1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .testimonial-marquee-track {
        gap: 1.5rem;
        animation-duration: 25s;
        padding: 0.75rem 0;
    }
    
    .testimonial-marquee-item {
        padding: 0.5rem 1rem;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
    }
    
    /* Smaller gradient fades on mobile */
    .testimonial-marquee-wrapper::before,
    .testimonial-marquee-wrapper::after {
        width: 40px;
    }
    
    .btn-reviews {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}



/* ========================================
   Expanded Footer with Legal & Forms
   ======================================== */
.footer-expanded {
    flex-direction: column;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.footer-main h4 {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.footer-brand .copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
}

.footer-legal,
.footer-forms {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-legal a,
.footer-forms a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.8;
}

.footer-legal a:hover,
.footer-forms a:hover {
    color: var(--text-primary);
}

.footer-social .social-links {
    margin-top: 0;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    .footer-social .social-links {
        justify-content: center;
    }
}

/* ========================================
   Legal Pages Styling
   ======================================== */
.legal-content {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

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

.legal-container h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-container h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-container p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.legal-container ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1rem;
}

.legal-container ul li::before {
    content: "—";
    position: absolute;
    left: -0.5rem;
    color: var(--text-muted);
}

.legal-container strong {
    color: var(--text-primary);
}

.legal-container a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.legal-container a:hover {
    color: var(--accent-color);
}

.legal-contact {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.legal-contact p {
    margin-bottom: 0.25rem;
}



/* ========================================
   Bricks/Masonry Gallery Layout
   ======================================== */
.bricks-gallery {
    columns: 3;
    column-gap: var(--spacing-md);
}

.bricks-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    width: 100%;
}

.bricks-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(0%);
}

.bricks-gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(100%);
}

.bricks-gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.bricks-gallery-item.hidden {
    display: none;
}

@media (max-width: 992px) {
    .bricks-gallery {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .bricks-gallery {
        columns: 1;
    }
}


/* ========================================
   Phase 1 (Weeks 1-2): Apple-Level Typography Overhaul
   Scope: Typography only (sizes, weight, line-height, spacing, letter-spacing)
   ======================================== */

/* Core Typography Scale */
h1,
.hero h1,
.page-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 900px;
}

h2,
.section-title,
.service-detail-text h2,
.service-section-header h2,
.contact-info h2,
.documentary-intro h2,
.updates-box h2,
.about-heading-bold {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 60px;
}

h3,
.subsection-title,
.service-detail-text h3.subsection-title,
.documentary-title,
.metro-area-section h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
}

p + p {
    margin-top: 1.1rem;
}

/* Refine secondary text readability */
.page-subtitle,
.section-intro,
.service-card p,
.service-detail-text p,
.documentary-description,
.documentary-intro p,
.bts-text p,
.updates-box p,
.hero-subtitle,
.hero-description,
.contact-info > p,
.about-content p,
.about-section p {
    opacity: 0.9;
}

/* Hero Hierarchy */
.hero-content {
    max-width: 1000px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3.25rem;
    max-width: 700px;
}

/* Buttons / CTA */
.btn,
.cta-button,
.btn-hero-outline,
.btn-hero-work {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

/* Page header typography */
.page-title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
}

/* Section heading color + spacing hierarchy */
.section-title,
.about-heading-bold,
.service-detail-text h2,
.service-section-header h2,
.contact-info h2,
.documentary-intro h2,
.updates-box h2,
.cta-section h2,
.about-cta h2,
.about-section h2 {
    color: #e63946;
}

.cta-section h2 {
    margin-bottom: 2.5rem;
    line-height: 1.15;
}

/* Index page cards and documentary titles */
.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.documentary-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.documentary-tagline {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.documentary-content {
    padding: 2.4rem;
}

/* Services page detail typography */
.section-intro {
    font-size: 1.2rem;
    line-height: 1.8;
}

.subsection-title {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.service-features li {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact page typography */
.form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.65rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Keep utility/small typography intentionally compact */
.section-label,
.nav-link,
.footer-main h4,
.meta-label,
.copyright,
.contact-item h3,
.gallery-category {
    letter-spacing: 0.1em;
}

.contact-item h3 {
    font-size: 0.95rem;
}

/* Metro area typographic breathing room */
.metro-area-section {
    max-width: 980px;
}

.metro-area-section h3 {
    margin-bottom: 1rem;
}

.metro-area-section .city-links {
    font-size: 1.2rem;
    line-height: 1.9;
}

/* Typography spacing rhythm */
.about-section h2,
.service-detail-text h2,
.service-section-header h2,
.documentary-intro h2,
.contact-info h2 {
    margin-bottom: 2.2rem;
}

.hero-buttons,
.about-cta-buttons,
.testimonial-marquee-cta {
    margin-top: 1.5rem;
}

/* Desktop to tablet scale (80%) */
@media (max-width: 1199px) {
    h1,
    .hero h1,
    .page-title,
    .hero-title {
        font-size: 4rem;
    }

    h2,
    .section-title,
    .service-detail-text h2,
    .service-section-header h2,
    .contact-info h2,
    .documentary-intro h2,
    .updates-box h2,
    .about-heading-bold,
    .about-section h2,
    .about-cta h2,
    .cta-section h2 {
        font-size: 2.8rem;
    }

    h3,
    .subsection-title,
    .service-detail-text h3.subsection-title,
    .documentary-title,
    .metro-area-section h3,
    .service-card h3 {
        font-size: 2rem;
    }

    .documentary-title {
        font-size: 2.4rem;
    }
}

/* Tablet/mobile breakpoint (60%) */
@media (max-width: 767px) {
    h1,
    .hero h1,
    .page-title,
    .hero-title {
        font-size: 3rem;
    }

    h2,
    .section-title,
    .service-detail-text h2,
    .service-section-header h2,
    .contact-info h2,
    .documentary-intro h2,
    .updates-box h2,
    .about-heading-bold,
    .about-section h2,
    .about-cta h2,
    .cta-section h2 {
        font-size: 2.1rem;
        margin-bottom: 1.5rem;
    }

    h3,
    .subsection-title,
    .service-detail-text h3.subsection-title,
    .documentary-title,
    .metro-area-section h3,
    .service-card h3 {
        font-size: 1.6rem;
    }

    p,
    .page-subtitle,
    .section-intro,
    .service-card p,
    .service-detail-text p,
    .documentary-description,
    .documentary-intro p,
    .bts-text p,
    .updates-box p,
    .hero-subtitle,
    .hero-description,
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .btn,
    .cta-button,
    .btn-hero-outline,
    .btn-hero-work {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .documentary-title {
        font-size: 2rem;
    }
}
