/* ===== FONT DEFINITIONS ===== */
@font-face {
    font-family: 'Segment';
    src: url('font/Segment-Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segment';
    src: url('font/Segment-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary-magenta: rgb(175, 1, 113);
    --primary-magenta-hover: rgb(195, 21, 133);
    --dark-bg: #0a0a0a;
    --dark-bg-secondary: #151515;
    --dark-bg-tertiary: #1f1f1f;
    --white: #ffffff;
    --light-gray: #2a2a2a;
    --dark-gray: #e0e0e0;
    --medium-gray: #b0b0b0;
    --border-color: #2a2a2a;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --font-family: 'Segment', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.01em;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--dark-bg);
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

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

/* ===== NAVIGATION STYLES ===== */
.navbar {
    background-color: var(--primary-magenta);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

/* ===== LOGO STYLES ===== */
.nav-logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
    /* Placeholder for logo - replace with actual logo */
    color: var(--white);
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    line-height: 1.2;
}

/* Temporary logo text styling when no image is available */
.logo-img::before {
    content: "24pFilm";
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

/* ===== NAVIGATION MENU ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Mobile Wrapper - nur auf Mobile */
.mobile-menu-wrapper {
    display: contents;
}

.mobile-main-menu {
    display: contents;
}

.mobile-sub-menu {
    display: none;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 70px;
}

.nav-link {
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* Dropdown-Pfeil für Desktop im SVG-Stil */
.dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
}

/* ===== DROPDOWN STYLES ===== */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 80px;
    left: 0;
    background-color: var(--dark-bg-secondary);
    min-width: 220px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

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

/* ===== MEGA MENU STYLES ===== */
.mega-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: var(--dark-bg-secondary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}



.mega-menu-container {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-menu-main {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 30px;
}

.mega-menu-main-link {
    display: block;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    position: relative;
    padding: 20px;
    border-radius: 8px;
}

.mega-menu-main-link:hover {
    background-color: var(--light-gray);
    transform: translateX(10px);
}

.mega-menu-main-link h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-magenta);
    margin-bottom: 8px;
    line-height: 1.2;
}

.mega-menu-main-link p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.4;
}

.main-link-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.main-link-arrow::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23af0171" d="M8.122 24l-4.122-4 8-8-8-8 4.122-4 11.878 12z"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}

.mega-menu-main-link:hover .main-link-arrow {
    transform: translateY(-50%) translateX(10px);
}

.mega-menu-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mega-menu-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    margin-bottom: 8px;
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 15px;
    border-left: 3px solid transparent;
}

.mega-menu-link:hover {
    background-color: var(--light-gray);
    border-left-color: var(--primary-magenta);
    padding-left: 20px;
    color: var(--primary-magenta);
}

.link-arrow {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.link-arrow::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23b0b0b0" d="M8.122 24l-4.122-4 8-8-8-8 4.122-4 11.878 12z"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}

.mega-menu-link:hover .link-arrow {
    transform: translateX(5px);
}

.mega-menu-link:hover .link-arrow::before {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23af0171" d="M8.122 24l-4.122-4 8-8-8-8 4.122-4 11.878 12z"/%3E%3C/svg%3E');
}



/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 6px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 70px; /* Account for fixed navbar */
}

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

.content-section {
    padding: 60px 0;
    background-color: var(--dark-bg-secondary);
}

.content-section h2 {
    color: var(--primary-magenta);
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== MAIN CONTENT STYLES ===== */
.main-content {
    margin-top: 70px;
}

/* Mobile: Kein margin, da hero-section den Abstand selbst handhabt */
@media (max-width: 768px) {
    .main-content {
        margin-top: 0;
    }
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Mobile: Negativer margin um an Navbar anzudocken */
@media (max-width: 768px) {
    .hero-section {
        margin-top: -70px;
        padding-top: 70px;
    }
}

.hero-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 50%; /* Reduzierte Höhe für Desktop, damit Pfeil sichtbar bleibt */
    overflow: hidden;
}

/* Mobile: Portrait Format (höher als breit) */
@media (max-width: 768px) {
    .hero-video-container {
        padding-bottom: 125%; /* 4:5 Aspect Ratio - höher als breit */
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
    z-index: 2;
}

/* Mobile: Sicherstellen dass Text zentriert bleibt */
@media (max-width: 768px) {
    .hero-content {
        top: 45%;
        transform: translate(-50%, -50%);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--dark-gray);
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.scroll-arrow {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    text-decoration: none;
}

/* Mobile: Pfeil höher positionieren */
@media (max-width: 768px) {
    .scroll-arrow {
        bottom: 60px;
    }
}

.scroll-arrow:hover {
    color: var(--primary-magenta);
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

/* Mobile: Weniger Padding oben */
@media (max-width: 768px) {
    .value-proposition {
        padding: 60px 0 100px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 60px;
}

/* ===== USP SECTION ===== */
.usp-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.usp-card {
    background-color: var(--dark-bg-secondary);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.usp-card:hover {
    border-color: var(--primary-magenta);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.2);
}

.usp-icon {
    color: var(--primary-magenta);
    margin-bottom: 20px;
}

.usp-icon svg {
    display: inline-block;
}

.usp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.usp-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-magenta) 0%, rgba(175, 1, 113, 0.8) 100%);
}

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

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-magenta);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-magenta);
    border-color: var(--primary-magenta);
}

.btn-outline:hover {
    background-color: var(--primary-magenta);
    color: var(--white);
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
}

.client-logo:hover img {
    filter: brightness(1);
}

/* ===== REFERENCES SECTION ===== */
.references-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.reference-card {
    background-color: var(--dark-bg-secondary);
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.reference-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-magenta);
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.2);
}

.reference-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.reference-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.reference-card:hover .reference-image img {
    transform: scale(1.1);
}

.reference-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reference-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.reference-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.references-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== SHOWREEL SECTION ===== */
.showreel-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--medium-gray);
    text-align: center;
    max-width: 800px;
    margin: 20px auto 50px;
    line-height: 1.6;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: var(--dark-bg);
    cursor: pointer;
    border-radius: 8px;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    z-index: 2;
}

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

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-overview-card {
    background-color: var(--dark-bg-secondary);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-overview-card:hover {
    border-color: var(--primary-magenta);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.2);
}

.service-overview-icon {
    color: var(--primary-magenta);
    margin-bottom: 20px;
}

.service-overview-icon svg {
    display: inline-block;
}

.service-overview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-overview-text {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== WHY FILM SECTION ===== */
.why-film-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

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

.why-film-text {
    padding-right: 20px;
}

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

.why-film-intro {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.why-film-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-icon {
    background-color: var(--primary-magenta);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.benefit-text strong {
    color: var(--white);
    font-weight: 700;
}

.why-film-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.why-film-image img,
.why-film-image video {
    width: 100%;
    height: auto;
    display: block;
}

.why-film-text .section-cta {
    text-align: left;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-bg-tertiary);
    padding: 60px 0 20px;
    color: var(--medium-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1000px;
}

.footer-column h3.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact a {
    color: var(--primary-magenta);
    transition: color 0.3s ease;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}

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

.footer-social a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal .separator {
    color: var(--border-color);
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: var(--medium-gray);
    padding-top: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-film-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-film-text {
        padding-right: 0;
    }
    
    .why-film-text .section-cta {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    /* Mobile Menu Container */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--dark-bg);
        z-index: 999;
        overflow: hidden;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    /* Mobile Menu Wrapper für Slide-Animation */
    .mobile-menu-wrapper {
        position: relative;
        width: 200%;
        height: 100%;
        display: flex;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-wrapper.submenu-active {
        transform: translateX(-50%);
    }
    
    /* Hauptmenü und Untermenü Panels */
    .mobile-main-menu,
    .mobile-sub-menu {
        width: 50%;
        height: 100%;
        overflow-y: auto;
        padding: 20px 0;
        display: block;
    }
    
    .mobile-sub-menu {
        background-color: var(--dark-bg-secondary);
        display: block;
    }
    
    /* Zurück-Button */
    .mobile-back-button {
        display: flex;
        align-items: center;
        padding: 18px 20px;
        background-color: var(--dark-bg-tertiary);
        color: var(--white);
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 10px;
        transition: background-color 0.3s ease;
    }
    
    .mobile-back-button:hover {
        background-color: var(--light-gray);
    }
    
    .mobile-back-button::before {
        content: '';
        width: 20px;
        height: 20px;
        margin-right: 12px;
        background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23af0171" d="M8.122 24l-4.122-4 8-8-8-8 4.122-4 11.878 12z"/%3E%3C/svg%3E');
        background-size: contain;
        background-repeat: no-repeat;
        transform: rotate(180deg);
    }
    
    /* Nav Items */
    .nav-item {
        width: 100%;
        height: auto;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 20px;
        border-bottom: none;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
    }
    
    .nav-link::after {
        content: '';
        width: 18px;
        height: 18px;
        background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23af0171" d="M8.122 24l-4.122-4 8-8-8-8 4.122-4 11.878 12z"/%3E%3C/svg%3E');
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.3s ease;
        display: block;
    }
    
    .nav-item:not(.dropdown) .nav-link::after {
        display: none;
    }
    
    /* Untermenü verstecken auf Hauptebene */
    .dropdown-content,
    .mega-menu {
        display: none;
    }
    
    /* Untermenü Inhalt */
    .mobile-submenu-content {
        padding: 0;
    }
    
    .mobile-submenu-title {
        padding: 20px;
        background-color: var(--dark-bg-tertiary);
        border-bottom: 2px solid var(--primary-magenta);
        margin-bottom: 20px;
        border-radius: 0;
    }
    
    .mobile-submenu-main-link {
        text-decoration: none;
        display: block;
    }
    
    .mobile-submenu-title h3 {
        font-size: 22px;
        color: var(--primary-magenta);
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }
    
    .mobile-submenu-main-link:hover h3 {
        color: var(--white);
    }
    
    .mobile-submenu-title p {
        font-size: 14px;
        color: var(--medium-gray);
        margin: 0;
    }
    
    .mobile-submenu-section {
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .mobile-submenu-section h4 {
        font-size: 14px;
        color: var(--medium-gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-submenu-link {
        display: block;
        padding: 14px 16px;
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        background-color: var(--dark-bg-tertiary);
        border-radius: 0;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    .mobile-submenu-link:hover,
    .mobile-submenu-link:active {
        background-color: var(--light-gray);
        border-left-color: var(--primary-magenta);
        padding-left: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 120px 0 80px 0;
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px 0;
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .usp-card {
        padding: 30px 20px;
    }
    
    .usp-title {
        font-size: 1.4rem;
    }
    
    .reference-content {
        padding: 20px;
    }
    
    .reference-title {
        font-size: 1.2rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo-placeholder {
        height: 60px;
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-img::before {
        font-size: 20px;
    }
    
    .mega-menu-main-link h3 {
        font-size: 16px;
    }
    
    .mega-menu-main-link p {
        font-size: 13px;
    }
}

/* ===== PAGE HERO SECTION ===== */
.page-hero {
    background: linear-gradient(135deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(175, 1, 113, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero with Video Background */
.page-hero-video {
    background: none;
}

.page-hero-video::before {
    display: none;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg img,
.page-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 24px;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

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

.mission-text .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 500;
}

.mission-text p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Mission Highlight Section with Magenta Background */
.mission-highlight-section {
    background-color: var(--primary-magenta);
    padding: 80px 0;
    text-align: center;
}

.mission-highlight-section .section-title {
    color: var(--white);
    margin-bottom: 30px;
}

.mission-highlight-text {
    font-size: 20px;
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

.mission-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.team-section .section-title {
    margin-bottom: 30px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--dark-bg-tertiary);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.2);
    border-color: var(--primary-magenta);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--dark-bg-tertiary), transparent);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: var(--primary-magenta);
    margin-bottom: 15px;
}
.team-traits li {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.team-traits li {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

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

/* ===== APPROACH SECTION ===== */
.approach-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

/* ===== USP DETAIL SECTIONS ===== */
.usp-detail {
    margin-bottom: 100px;
}

.usp-detail:last-child {
    margin-bottom: 0;
}

.usp-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.usp-detail.reverse .usp-detail-content {
    direction: rtl;
}

.usp-detail.reverse .usp-detail-text {
    direction: ltr;
}

.usp-detail.reverse .usp-detail-image {
    direction: ltr;
}

.usp-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-magenta-hover));
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.usp-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.usp-detail-description {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.usp-detail-quote {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-magenta);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.4;
    padding-left: 20px;
    border-left: 3px solid var(--primary-magenta);
}

.usp-detail-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.usp-detail-image img,
.usp-detail-image video {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefit List */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item-large {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.benefit-item-large:hover {
    border-color: var(--primary-magenta);
}

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

.benefit-item-large strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
}

.benefit-item-large p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-magenta-hover));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

/* Story Box */
.story-box {
    background-color: var(--dark-bg-secondary);
    border-left: 4px solid var(--primary-magenta);
    padding: 30px;
    margin: 30px 0;
}

.story-box h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 15px;
}

.story-text {
    font-size: 16px;
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.story-attribution {
    font-size: 14px;
    color: var(--primary-magenta);
    font-weight: 500;
}

/* Work Style List */
.work-style-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.work-style-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--medium-gray);
    font-size: 16px;
    line-height: 1.6;
}

.work-style-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-magenta);
    font-weight: 700;
    font-size: 18px;
}

.work-style-list strong {
    color: var(--white);
}

/* ===== VIDEO DIVIDER ===== */
.video-divider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.video-divider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-divider-bg img,
.video-divider-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.video-divider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    z-index: 1;
}

/* ===== BEHIND THE SCENES SECTION ===== */
.bts-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

.bts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.bts-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.bts-image:hover {
    transform: translateY(-5px);
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.testimonials-grid {
    column-count: 3;
    column-gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
    break-inside: avoid;
}

.testimonial-card:hover {
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.2);
    border-color: var(--primary-magenta);
}

.quote-icon {
    color: var(--primary-magenta);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

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

/* ===== MEDIA QUERIES - TESTIMONIALS ===== */
@media (max-width: 992px) {
    .testimonials-grid {
        column-count: 1;
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .mission-content,
    .usp-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .usp-detail.reverse .usp-detail-content {
        font-size: 42px;
    }

    .page-subtitle {
        font-size: 20px;
    }

    .mission-content,
    .usp-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .usp-detail.reverse .usp-detail-content {
        direction: ltr;
    }

    .usp-detail-title {
        font-size: 28px;
    }

    .usp-detail-quote {
        font-size: 20px;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px 0;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .mission-section,
    .team-section,
    .approach-section,
    .bts-section {
        padding: 60px 0;
    }

    .usp-detail {
        margin-bottom: 60px;
    }

    .usp-detail-title {
        font-size: 24px;
    }

    .usp-detail-description {
        font-size: 16px;
    }

    .team-grid {
        gap: 30px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.usp-card,
.service-overview-card,
.reference-card,
.client-logo,
.benefit-item,
.team-card,
.usp-detail,
.bts-image,
.mission-content,
.process-step,
.story-box,
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Gestaffelte Animation für mehrere Elemente */
.usp-card,
.service-overview-card,
.reference-card,
.team-card,
.bts-image,
.testimonial-card {
    transition-delay: calc(var(--animation-order) * 0.05s);
}

/* ===== LEGAL PAGES (IMPRESSUM, DATENSCHUTZ) ===== */
.legal-section {
    padding: 120px 0 80px 0;
    background-color: var(--dark-bg);
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--dark-gray);
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-magenta);
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-magenta-hover);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 100px 0 60px 0;
    }

    .legal-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .legal-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .legal-content h3 {
        font-size: 18px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-cta-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.contact-cta-highlight {
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 700;
    margin: 0 0 50px 0;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 50px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 350px;
    text-align: left;
}

.contact-btn:hover {
    border-color: var(--primary-magenta);
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.3);
    transform: translateY(-5px);
}

.contact-btn-icon {
    flex-shrink: 0;
    color: var(--primary-magenta);
}

.contact-btn-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-btn-label {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-btn-value {
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
}

.contact-strategy-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

.contact-strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-strategy-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.contact-strategy-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-strategy-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-strategy-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.contact-process-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.contact-process-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-process-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    max-width: 900px;
    margin: 0 auto;
}

.contact-details-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-detail-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-detail-card:hover {
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.2);
    border-color: var(--primary-magenta);
}

.contact-detail-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.contact-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.contact-detail-content {
    padding: 40px;
}

.contact-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-social-link {
    font-size: 16px;
    color: var(--primary-magenta);
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-social-link:hover {
    color: var(--primary-magenta-hover);
}

@media (max-width: 992px) {
    .contact-strategy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-strategy-image {
        height: 400px;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-cta-section {
        padding: 60px 0;
    }

    .contact-cta-highlight {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .contact-btn {
        min-width: auto;
        width: 100%;
        padding: 30px;
        gap: 20px;
    }

    .contact-btn-value {
        font-size: 18px;
    }

    .contact-strategy-section {
        padding: 60px 0;
    }

    .contact-strategy-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-strategy-text p {
        font-size: 16px;
    }

    .contact-strategy-image {
        height: 300px;
    }

    .contact-process-section {
        padding: 60px 0;
    }

    .contact-process-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-process-text {
        font-size: 16px;
    }

    .contact-details-section {
        padding: 60px 0;
    }

    .contact-detail-content {
        padding: 30px;
    }

    .contact-detail-image {
        height: 200px;
    }
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-filter-section {
    padding: 80px 0 60px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.portfolio-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.portfolio-filter-description {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    text-align: center;
}

.filter-btn {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-magenta);
    color: var(--white);
}

.filter-btn.active {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
    color: var(--white);
}

.portfolio-grid-section {
    padding: 60px 0 100px 0;
    background-color: var(--dark-bg-secondary);
}

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

.portfolio-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.portfolio-item-link {
    display: block;
    text-decoration: none;
}

.portfolio-item:hover {
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.2);
    border-color: var(--primary-magenta);
    transform: translateY(-5px);
}

.portfolio-item-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.portfolio-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.portfolio-item-content {
    padding: 30px;
}

.portfolio-item-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.portfolio-item-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.portfolio-item-title-link:hover .portfolio-item-title {
    color: var(--primary-magenta);
}

.portfolio-item-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-tag {
    padding: 5px 12px;
    background-color: rgba(175, 1, 113, 0.2);
    border: 1px solid var(--primary-magenta);
    color: var(--primary-magenta);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-loading,
.no-results,
.error-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--dark-gray);
    font-size: 18px;
}

/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.portfolio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.portfolio-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background-color: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    overflow-y: auto;
    z-index: 1;
}

.portfolio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.portfolio-modal-close:hover {
    background-color: var(--primary-magenta);
}

.portfolio-modal-body {
    padding: 40px;
}

.portfolio-modal-video {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.portfolio-modal-client,
.portfolio-modal-year {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.portfolio-modal-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.portfolio-modal-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.portfolio-modal-description p {
    margin-bottom: 20px;
}

.portfolio-modal-description p:last-child {
    margin-bottom: 0;
}

.portfolio-modal-highlights {
    margin-top: 30px;
}

.portfolio-modal-highlights h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.portfolio-modal-highlights ul {
    list-style: none;
    padding: 0;
}

.portfolio-modal-highlights li {
    font-size: 16px;
    color: var(--dark-gray);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.portfolio-modal-highlights li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-magenta);
    font-weight: 700;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .portfolio-filter-section {
        padding: 100px 0 40px 0;
    }

    .portfolio-filters {
        gap: 10px;
        margin-top: 30px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-grid-section {
        padding: 40px 0 60px 0;
    }

    .portfolio-item-content {
        padding: 20px;
    }

    .portfolio-item-title {
        font-size: 20px;
    }

    .portfolio-modal-content {
        width: 95%;
    }

    .portfolio-modal-body {
        padding: 30px 20px;
    }

    .portfolio-modal-title {
        font-size: 24px;
    }

    .portfolio-modal-description {
        font-size: 16px;
    }
}

/* ===== PROJECT DETAIL PAGE ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(175, 1, 113, 0.2);
    border-top-color: var(--primary-magenta);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.project-detail-hero {
    padding: 140px 0 80px 0;
    background-color: var(--dark-bg);
}

.breadcrumb {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-magenta);
}

.breadcrumb .separator {
    color: var(--border-color);
}

.project-detail-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.project-detail-meta .separator {
    color: var(--border-color);
}

.project-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-category-tag {
    padding: 8px 18px;
    background-color: rgba(175, 1, 113, 0.2);
    border: 1px solid var(--primary-magenta);
    color: var(--primary-magenta);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-video-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
}

.project-video-embed {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.project-video-embed .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: var(--dark-bg);
    cursor: pointer;
}

.project-video-embed .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-video-embed .video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.project-video-embed .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.project-video-embed .video-wrapper:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.project-description-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.project-description-content {
    max-width: 900px;
    margin: 0 auto;
}

.project-description-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.project-description-text p {
    margin-bottom: 24px;
}

.project-description-text p:last-child {
    margin-bottom: 0;
}

.project-highlights-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
}

.project-highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px auto 0;
    list-style: none;
    padding: 0;
    max-width: 1200px;
}

.project-highlights-list li {
    font-size: 18px;
    color: var(--dark-gray);
    padding: 30px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    padding-left: 60px;
    transition: all 0.3s ease;
}

.project-highlights-list li:hover {
    border-color: var(--primary-magenta);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(175, 1, 113, 0.2);
}

.project-highlights-list li:before {
    content: "→";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-magenta);
    font-weight: 700;
    font-size: 28px;
}

.project-additional-videos {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.additional-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.additional-video-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    transition: border-color 0.3s ease;
}

.additional-video-item:hover {
    border-color: var(--primary-magenta);
}

.additional-video-embed {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.additional-video-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.project-bts-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
}

.bts-gallery {
    column-count: 3;
    column-gap: 30px;
    margin-top: 60px;
}

.bts-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.bts-photo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.project-cta-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background-color: var(--primary-magenta);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b00171;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(175, 1, 113, 0.3);
}

.project-more-section {
    padding: 80px 0 100px 0;
    background-color: var(--dark-bg-secondary);
}

.more-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.more-project-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.more-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(175, 1, 113, 0.2);
    border-color: var(--primary-magenta);
}

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

.more-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.more-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.more-project-card:hover .more-project-overlay {
    opacity: 1;
}

.more-project-view {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.more-project-content {
    padding: 30px;
}

.more-project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.more-project-client {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.more-project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tag {
    padding: 4px 10px;
    background-color: rgba(175, 1, 113, 0.2);
    border: 1px solid var(--primary-magenta);
    color: var(--primary-magenta);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .project-detail-title {
        font-size: 42px;
    }

    .additional-videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bts-gallery {
        column-count: 2;
        column-gap: 20px;
    }

    .more-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .project-detail-hero {
        padding: 120px 0 60px 0;
    }

    .project-detail-title {
        font-size: 32px;
    }

    .project-detail-meta {
        font-size: 16px;
    }

    .project-video-section,
    .project-description-section,
    .project-highlights-section,
    .project-additional-videos,
    .project-bts-section {
        padding: 60px 0;
    }

    .project-description-text {
        font-size: 18px;
    }

    .project-highlights-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-highlights-list li {
        padding: 25px;
        padding-left: 55px;
        font-size: 16px;
    }

    .bts-gallery {
        column-count: 1;
        column-gap: 0;
    }
    
    .bts-photo-item {
        margin-bottom: 20px;
    }

    .more-projects-grid {
        grid-template-columns: 1fr;
    }

    .project-cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 18px;
    }
}
