/* ============================================
   MARIAN OLEJNIK — VIDEOGRAPHER PORTFOLIO
   Dark cinematic theme with gold accents
   ============================================ */

/* --- CSS Variables --- */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --gold: #b8952a;
    --gold-light: #d4af37;
    --gold-dim: rgba(184, 149, 42, 0.15);
    --white: #f5f5f5;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --gray-dark: #444444;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--dark);
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    display: block;
    max-width: 100%;
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth), background 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-smooth), height 0.4s var(--ease-smooth), border-color 0.3s, opacity 0.3s;
    opacity: 0.5;
}

body:hover .cursor-follower {
    opacity: 1;
}

.cursor.hover {
    width: 48px;
    height: 48px;
    background: rgba(184, 149, 42, 0.15);
    mix-blend-mode: normal;
}

.cursor-follower.hover {
    width: 64px;
    height: 64px;
    border-color: var(--gold-light);
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--dark-3);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: loaderBar 1.8s var(--ease-out-expo) forwards;
}

@keyframes loaderBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    padding: 16px 48px;
}

.nav-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s var(--ease-smooth);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo), color 0.3s;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

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

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

.hero-video-wrapper {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title .reveal-line {
    display: block;
    overflow: hidden;
}

.hero-title .reveal-line span {
    display: inline-block;
    transform: translateY(110%);
    animation: revealLine 1.2s var(--ease-out-expo) forwards;
}

.hero-title .reveal-line:nth-child(2) span {
    animation-delay: 0.15s;
    font-style: italic;
    color: var(--gold-light);
}

@keyframes revealLine {
    to { transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

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

.hero-cta svg {
    transition: transform 0.3s var(--ease-smooth);
}

.hero-cta:hover svg {
    transform: translate(4px, -4px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* --- Marquee Banner --- */
.showreel-banner {
    padding: 24px 0;
    background: var(--dark);
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-inner span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
}

.marquee-dot {
    width: 6px !important;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
}

.section-title em {
    font-style: italic;
    color: var(--gold-light);
}

/* --- Work / Portfolio --- */
.work {
    padding: 120px 48px;
}

.project-featured {
    margin-bottom: 32px;
}

.project-link {
    display: block;
}

.project-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark-2);
}

.project-featured .project-video-wrapper {
    aspect-ratio: 21/9;
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.project-link:hover .project-video {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-link:hover .project-overlay {
    opacity: 1;
}

.project-info {
    transform: translateY(20px);
    transition: transform 0.5s var(--ease-out-expo);
}

.project-link:hover .project-info {
    transform: translateY(0);
}

.project-category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.project-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.project-view svg {
    transition: transform 0.3s var(--ease-smooth);
}

.project-link:hover .project-view svg {
    transform: translate(4px, -4px);
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.project-card .project-video-wrapper {
    aspect-ratio: 16/10;
}

/* Asymmetric Layout */
.project-asymmetric {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.project-wide .project-video-wrapper {
    aspect-ratio: 16/10;
    height: 100%;
}

.project-tall .project-video-wrapper {
    aspect-ratio: 9/12;
    height: 100%;
}

/* --- About --- */
.about {
    padding: 120px 48px;
    background: var(--dark);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.about-video-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-video-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    z-index: -1;
    border-radius: 10px;
    opacity: 0.3;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text-col .section-tag {
    text-align: left;
}

.about-text-col .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.about-description {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--dark-3);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold-light);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 8px;
}

/* --- Services --- */
.services {
    padding: 120px 48px;
}

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

.service-card {
    padding: 48px 32px;
    border-left: 1px solid var(--dark-3);
    transition: background 0.5s ease;
    position: relative;
}

.service-card:last-child {
    border-right: 1px solid var(--dark-3);
}

.service-card:hover {
    background: var(--dark-2);
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark-3);
    font-weight: 700;
    transition: color 0.5s ease;
    display: block;
    margin-bottom: 24px;
}

.service-card:hover .service-number {
    color: var(--gold-dim);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-name {
    color: var(--gold-light);
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray);
    font-weight: 300;
}

.service-line {
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
}

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

/* --- Reel Strip --- */
.reel-strip {
    padding: 40px 0;
    overflow: hidden;
    background: var(--dark);
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
}

.reel-track {
    display: flex;
    gap: 20px;
    animation: reelScroll 30s linear infinite;
    width: max-content;
}

.reel-item {
    width: 320px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes reelScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-340px * 5)); }
}

/* --- Contact --- */
.contact {
    padding: 120px 48px;
}

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

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-title em {
    font-style: italic;
    color: var(--gold-light);
}

.contact-desc {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-light);
    transition: color 0.3s ease;
}

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

.contact-detail-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--dark-3);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

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

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 0.9rem;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s var(--ease-smooth);
    font-weight: 300;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -14px;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease-out-expo);
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease;
    align-self: flex-start;
}

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

.form-submit svg {
    transition: transform 0.3s var(--ease-smooth);
}

.form-submit:hover svg {
    transform: translate(4px, -4px);
}

/* --- Footer --- */
.footer {
    padding: 40px 48px;
    border-top: 1px solid var(--dark-3);
    background: var(--dark);
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gray-light);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--gray);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-3);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-right span {
    font-size: 0.78rem;
    color: var(--gray-dark);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up[data-delay="1"] { transition-delay: 0.15s; }
.reveal-up[data-delay="2"] { transition-delay: 0.3s; }
.reveal-up[data-delay="3"] { transition-delay: 0.45s; }
.reveal-up[data-delay="4"] { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card:nth-child(2) {
        border-right: 1px solid var(--dark-3);
    }

    .project-asymmetric {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor, .cursor-follower {
        display: none;
    }

    .nav {
        padding: 16px 24px;
    }

    .nav.scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 0 16px;
    }

    .work {
        padding: 80px 20px;
    }

    .project-grid,
    .project-asymmetric {
        grid-template-columns: 1fr;
    }

    .project-overlay {
        opacity: 1;
    }

    .project-info {
        transform: translateY(0);
    }

    .about {
        padding: 80px 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-video-frame {
        aspect-ratio: 16/10;
    }

    .about-text-col .section-tag,
    .about-text-col .section-title {
        text-align: center;
    }

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

    .services {
        padding: 80px 20px;
    }

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

    .service-card {
        border-left: none;
        border-bottom: 1px solid var(--dark-3);
        padding: 32px 0;
    }

    .service-card:last-child {
        border-right: none;
    }

    .contact {
        padding: 80px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer {
        padding: 32px 20px;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .reel-item {
        width: 240px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .stat {
        align-items: center;
    }
}

/* Select dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

/* Option styling */
.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}
