/* Modern 2025 Video Production Landing Page */
/* Built for maximum conversions and visual impact */

:root {
    /* Brand Colors */
    --primary: #FF6B35;
    --primary-dark: #E65A2B;
    --primary-light: #FF8555;
    --secondary: #0A0E27;
    --accent: #FFD23F;

    /* Neutrals */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10,14,39,0) 0%, rgba(10,14,39,0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: var(--shadow-lg);
}

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

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

.nav-logo a {
    display: block;
    line-height: 0;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    min-width: 240px;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: var(--shadow-2xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.dropdown-item:hover::before {
    transform: translateX(100%);
}

.dropdown-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--white);
    padding-left: 20px;
}

.dropdown-item.active {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--secondary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,107,53,0.1) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

/* Removed - suffixes handled in HTML via data-suffix */

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.btn-primary-large,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary-large {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.btn-secondary-large {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary-large:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.trust-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.client-logo {
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    min-width: 100px;
}

.client-logo img {
    display: block;
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
    filter: brightness(1.1);
}

.client-logo span {
    white-space: nowrap;
    font-size: 11px !important;
    letter-spacing: 1px !important;
}

.client-logo:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.2);
}

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

.client-logo:hover span {
    color: var(--white) !important;
}

/* Hero Video */
.hero-video {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 16/9;
}

.video-player {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

.video-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    color: var(--gray-300);
}

.video-badge {
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.3);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.video-title {
    font-size: 14px;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeIn 1s ease-out 1s backwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 20% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Client Logos Section */
.client-logos-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.logos-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.client-logos-section .trust-badges {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-logos-section .client-logo {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    min-width: auto;
}

.client-logos-section .client-logo img {
    display: block;
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%) brightness(0.5);
}

.client-logos-section .client-logo:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.client-logos-section .client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-title.left {
    text-align: left;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Showreel Section */
.showreel {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.showreel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.showreel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.showreel-item.featured {
    grid-column: span 2;
}

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

.showreel-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.showreel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.showreel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.play-icon {
    margin-bottom: 16px;
    transition: var(--transition);
}

.showreel-item:hover .play-icon {
    transform: scale(1.1);
}

.showreel-info {
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.showreel-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.showreel-info p {
    font-size: 16px;
    color: var(--gray-300);
}

.showreel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--white);
}

.meta-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-views {
    font-size: 14px;
    color: var(--gray-600);
}

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

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 12px;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-card.premium {
    background: var(--gradient-dark);
    color: var(--white);
    border-color: var(--secondary);
}

.service-card.premium::before {
    background: var(--gradient-primary);
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card.premium .service-icon {
    background: rgba(255,107,53,0.1);
}

.service-icon svg {
    color: var(--primary);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card.premium p {
    color: var(--gray-300);
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    font-size: 14px;
}

.service-card.premium .service-list li {
    color: var(--gray-300);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.service-card.premium .service-price {
    border-top-color: rgba(255,255,255,0.1);
}

/* Google Reviews Section */
.google-reviews-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.rating-stars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stars-display {
    display: flex;
    gap: 4px;
    font-size: 28px;
}

.star.filled {
    color: #FBBC04;
}

.star.half {
    background: linear-gradient(90deg, #FBBC04 50%, #E0E0E0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 18px;
    color: var(--gray-700);
}

.rating-text strong {
    font-size: 24px;
    color: var(--gray-900);
    font-weight: 700;
}

.review-count {
    font-size: 14px;
    color: var(--gray-600);
}

.write-review-btn {
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    white-space: nowrap;
}

.write-review-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.review-date {
    font-size: 13px;
    color: var(--gray-600);
}

.review-stars {
    color: #FBBC04;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
}

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

.view-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.view-all-reviews:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.view-all-reviews svg {
    transition: var(--transition);
}

.view-all-reviews:hover svg {
    transform: translateX(4px);
}

/* Why Us Section */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.why-us-intro {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.testimonial-carousel {
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-900);
    margin-bottom: 32px;
    font-style: italic;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-company {
    font-size: 14px;
    color: var(--gray-600);
}

/* Quote Section */
.quote-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.quote-intro {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-badge span {
    font-weight: 500;
    color: var(--gray-700);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-method-card:hover {
    border-color: var(--primary);
    background: var(--white);
}

.contact-method-card svg {
    color: var(--primary);
    flex-shrink: 0;
}

.method-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method-card a {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.contact-method-card a:hover {
    color: var(--primary);
}

.quote-form {
    position: sticky;
    top: 100px;
}

.form-wrapper {
    background: var(--gray-50);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--gray-300);
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 40px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 48px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-column p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-500);
    font-size: 14px;
}

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

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

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.9);
    transition: var(--transition);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--primary);
}

.video-modal-player {
    width: 100%;
    height: 100%;
}

.video-modal-player iframe {
    width: 100%;
    height: 100%;
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    gap: 12px;
}

.mobile-cta.active {
    transform: translateY(0);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.mobile-cta-btn svg {
    flex-shrink: 0;
}

.mobile-cta-quote {
    background: var(--gradient-primary);
    color: var(--white);
}

.mobile-cta-quote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-cta-call {
    background: #22c55e;
    color: var(--white);
}

.mobile-cta-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #16a34a;
}

/* Responsive Design */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .showreel-item.featured {
        grid-column: span 1;
    }

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

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: none;
    }

    .nav-phone span {
        display: none;
    }

    .nav-cta {
        font-size: 12px;
        padding: 10px 16px;
    }

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

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 18px 32px;
        font-size: 16px;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .why-us-intro {
        font-size: 16px;
        line-height: 1.7;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-icon {
        font-size: 32px;
    }

    .feature-content h4 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .benefit-badge {
        padding: 14px 18px;
        font-size: 14px;
        line-height: 1.5;
    }

    .benefit-badge strong {
        font-size: 15px;
    }

    .quote-intro {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-method-card {
        padding: 20px;
    }

    .contact-method-card a {
        font-size: 18px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .footer-brand {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .footer-brand p {
        font-size: 14px;
        margin-bottom: 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .mobile-cta.active {
        transform: translateY(0);
    }

    .mobile-cta {
        padding: 14px 16px;
        gap: 10px;
    }

    .mobile-cta-btn {
        padding: 16px 14px;
        font-size: 16px;
        border-radius: 14px;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .client-logo {
        padding: 10px 16px;
        min-height: 50px;
        min-width: 85px;
    }

    .client-logo img {
        max-width: 85px;
        max-height: 35px;
    }

    .client-logo span {
        font-size: 11px !important;
        letter-spacing: 0.8px !important;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-rating-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .stars-display {
        font-size: 24px;
    }

    .rating-text {
        font-size: 16px;
    }

    .rating-text strong {
        font-size: 20px;
    }

    .write-review-btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .view-all-reviews {
        width: 100%;
        justify-content: center;
    }

    .client-logos-section {
        padding: 40px 0;
    }

    .logos-label {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .client-logos-section .trust-badges {
        gap: 24px;
    }

    .client-logos-section .client-logo img {
        max-width: 85px;
        max-height: 35px;
    }
}

/* Print Styles */
@media print {
    .nav,
    .mobile-cta,
    .scroll-indicator,
    .video-modal {
        display: none;
    }
}
