/* ========================================
   NETWORK AGENCY - MODERN LIGHT THEME
   Professional Talent Agency Design
======================================== */

/* ========== TYPOGRAPHY ========== */
/* Yerel font dosyası yerine temanın yüklediği Syne ve Inter kullanılır. */

/* ========== CSS VARIABLES ========== */
:root {
    /* RETRO BRAND COLORS (from logo) */
    --retro-orange: #F5B700;
    --retro-red: #D72638;
    --retro-burgundy: #6B0F1A;
    --retro-navy: #001D4A;

    /* LIGHT THEME COLORS */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F7F4;
    --color-bg-dark: #1A1A2E;

    --color-text: #1A1A2E;
    --color-text-light: #6B7280;
    --color-text-muted: #9CA3AF;

    /* PRIMARY ACCENT - Using Retro Red */
    --color-primary: #D72638;
    --color-primary-dark: #B91C2B;

    /* SECONDARY ACCENT - Using Navy */
    --color-secondary: #001D4A;

    --color-border: #E5E7EB;
    --color-border-dark: #D1D5DB;

    /* TYPOGRAPHY */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* SPACING */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* LAYOUT */
    --header-height: 80px;
    --container-max: 1280px;
    --container-padding: 24px;

    /* EFFECTS */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    min-height: 100vh;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

/* ========== UTILITIES ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: linear-gradient(135deg, var(--retro-red) 0%, var(--retro-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== HEADER ========== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all 0.4s ease;
}

body.is-admin .header {
    top: 60px;
}

/* Homepage & Actor Page Transparent Header */
body.home-page .header:not(.header-scrolled),
body.actor-page .header:not(.header-scrolled) {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

body.home-page .header:not(.header-scrolled) .nav-link,
body.actor-page .header:not(.header-scrolled) .nav-link {
    color: var(--color-text);
}

body.home-page .header:not(.header-scrolled) .logo,
body.actor-page .header:not(.header-scrolled) .logo {
    filter: none;
}

/* Force white text on actor page header when transparent (since background is black) */
body.actor-page .header:not(.header-scrolled) .nav-link,
body.actor-page .header:not(.header-scrolled) .logo {
    color: #fff !important;
}

body.actor-page .header:not(.header-scrolled) .menu-toggle span {
    background-color: #fff !important;
}

body.actor-page .header:not(.header-scrolled) .logo img {
    /* Removed filter to avoid making logos with backgrounds look like white boxes */
    filter: none;
}

body.actor-page .header.header-scrolled .logo img {
    filter: none;
    /* Return logo to original color on scroll */
}

.header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--retro-red);
    transition: width var(--transition-base);
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.2, 1);
    z-index: 100;
    border: 1px solid var(--color-border);
}

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

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

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--color-bg-alt);
    color: var(--retro-red);
    padding-left: 25px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

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

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== MAIN ========== */
.main {
    padding-top: var(--header-height);
}

body.home-page .main,
body.actor-page .main {
    padding-top: 0;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

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

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

.btn-outline:hover {
    border-color: var(--color-text);
    background: var(--color-bg-alt);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ========== TELEVI STYLE HERO FULL ========== */
.hero-full {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-video-item.active {
    opacity: 1;
}

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

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, transparent 40%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 2;
}

.hero-content-overlay {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    color: var(--color-text);
    pointer-events: none;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.hero-text-content {
    max-width: 900px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpTelevi 1s ease forwards 0.8s;
}

@keyframes fadeInUpTelevi {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text);
    margin-bottom: 20px;
}

.hero-title-premium {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--color-text);
}

.hero-title-premium em {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

.hero-desc-premium {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 550px;
    line-height: 1.6;
}

/* Minimal Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    opacity: 0.4;
    animation: fadeInUpTelevi 1s ease forwards 1.2s;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--color-text);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--color-text);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}

/* CTA UPDATED */
.cta {
    position: relative;
    padding: var(--space-5xl) 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: var(--color-bg-dark);
    color: white;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    transition: transform 10s linear;
}

.cta:hover .cta-bg {
    transform: scale(1.1);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 29, 74, 0.8), rgba(215, 38, 56, 0.4));
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

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

.btn-white:hover {
    background: var(--retro-red);
    color: white;
}

/* BRAND STRIPES */
.brand-stripes {
    height: 40px;
    width: 100%;
    position: relative;
    background: linear-gradient(to bottom,
            var(--retro-orange) 0%,
            var(--retro-orange) 25%,
            var(--retro-red) 25%,
            var(--retro-red) 50%,
            var(--retro-burgundy) 50%,
            var(--retro-burgundy) 75%,
            var(--retro-navy) 75%,
            var(--retro-navy) 100%);
}

/* STATS REMOVED */

/* ========== SECTION COMMON ========== */
.section {
    padding: var(--space-5xl) 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--retro-red);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

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

/* ========== FEATURED ACTORS ========== */
.featured-section {
    background: var(--color-bg);
    padding: var(--space-5xl) 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.actor-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-alt);
    transition: all var(--transition-base);
}

.actor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.actor-card-image {
    position: absolute;
    inset: 0;
}

.actor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.actor-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 60%);
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.actor-card:hover .actor-card-overlay {
    opacity: 1;
}

.actor-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.actor-card:hover .actor-card-content {
    transform: translateY(0);
    opacity: 1;
}

.actor-card-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.actor-card-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--retro-orange);
}

/* ABOUT SECTION */
.about-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    background: var(--color-bg-dark);
    padding: var(--space-2xl);
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--retro-red);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--retro-red);
    margin-bottom: var(--space-md);
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--color-text);
}

.about-feature i {
    font-size: 1.3rem;
    color: var(--retro-red);
}

/* FEATURED SECTION */
.featured {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-alt);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-3xl);
}

.featured-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.actor-card {
    display: block;
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
}

.actor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.actor-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-bg-alt);
}

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

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

.actor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-border-dark);
}

.actor-info {
    padding: var(--space-lg);
    text-align: center;
}

.actor-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.actor-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA SECTION */
.cta {
    position: relative;
    padding: var(--space-5xl) 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--color-bg-dark);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cta .container {
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

/* BUTTON VARIANTS */
.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: none;
    padding: 16px 24px;
}

.btn-ghost:hover {
    color: var(--retro-red);
}

.btn-white {
    background: white;
    color: var(--color-text);
    border: none;
}

.btn-white:hover {
    background: var(--retro-red);
    color: white;
    transform: translateY(-3px);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-nav h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-lg);
}

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

.footer-nav li {
    margin-bottom: var(--space-sm);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--retro-red);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        height: 350px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-badge {
        right: 20px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding-left: 0;
        padding-right: var(--container-padding);
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001; /* Above mobile nav */
    }

    .nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        padding: 40px;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
    }

    .nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-text) !important;
    }

    .header-scrolled .nav {
        background: #FFFFFF;
    }

    body.actor-page .nav {
        background: #000000;
    }

    body.actor-page .nav-link {
        color: #FFFFFF !important;
    }

    .nav-item-dropdown {
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        transform: none;
    }

    .dropdown-item {
        color: inherit !important;
        opacity: 0.7;
    }

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

    .hero-visual {
        display: none;
    }

    .hero-grid {
        min-height: auto;
        padding: var(--space-4xl) 0;
    }

    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* ========== MATCH & MOVE COMPONENT (Moved from index) ========== */
/* Match & Move Grid Styles */
.match-move-grid {
    display: flex;
    gap: 15px;
    height: 600px;
    width: 100%;
    padding: 0 10px;
}

.mm-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 60px;
    /* High pill radius */
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.2, 1), transform 0.4s ease;
    background: var(--color-bg-alt);
    margin: 0;
}

.mm-card:hover {
    flex: 6;
    /* Expand significantly */
}

/* Card Images */
.mm-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 1, 0.2, 1);
    filter: grayscale(100%);
    /* Start B&W */
}

.mm-card:hover .mm-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
    /* Color on hover */
}

.mm-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Colored Overlays (Gradient tints) */
.mm-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    transition: opacity 0.5s ease;
    mix-blend-mode: multiply;
}

.mm-card.retro-red .mm-overlay {
    background: var(--retro-red);
}

.mm-card.retro-orange .mm-overlay {
    background: var(--retro-orange);
}

.mm-card.retro-burgundy .mm-overlay {
    background: var(--retro-burgundy);
}

.mm-card.retro-navy .mm-overlay {
    background: var(--retro-navy);
}

.mm-card:hover .mm-overlay {
    opacity: 0;
    /* Remove tint to show full color photo on hover */
}

/* Vertical Title (Default) */
.mm-vertical-title {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-90deg);
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    opacity: 0.9;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.mm-card:hover .mm-vertical-title {
    opacity: 0;
    transform: translate(-50%, 60%) rotate(-90deg);
}

/* Expanded Content */
.mm-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    /* Delay for expand */
}

.mm-card:hover .mm-content {
    opacity: 1;
    transform: translateY(0);
}

.mm-role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.mm-name {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.mm-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 2px solid white;
    padding-bottom: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .match-move-grid {
        flex-direction: column;
        height: 800px;
    }

    .mm-vertical-title {
        transform: translate(-50%, -50%) rotate(0deg);
        /* Horizontal on mobile */
        bottom: auto;
        top: 50%;
    }

    .mm-card:hover .mm-vertical-title {
        transform: translate(-50%, -60%) rotate(0deg);
    }
}



/* ========== V2 ACTOR GRID (oyuncular.php) - FULLSCREEN RESTORED ========== */
.actors-fullscreen {
    padding: 0;
    background: #000;
}

.fullscreen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 50vh;
    gap: 0;
}

.fs-card {
    position: relative;
    background: #000;
    overflow: hidden;
    display: block;
    height: 100%;
}

.fs-image {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.fs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removed grayscale to allow user-chosen colors and original vibrancy */
    transition: filter 0.6s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.fs-card:hover .fs-image img {
    transform: scale(1.08);
}

/* Placeholder for actors without photos */
.fs-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #333;
    font-size: 5rem;
}

.fs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 60%);
    opacity: 0.7;
    z-index: 2;
    transition: all 0.5s ease;
}

/* Dynamic Tinted Colored Hover Effect */
.fs-card:hover .fs-overlay {
    background: linear-gradient(to top,
            color-mix(in srgb, var(--actor-theme, #D72638) 80%, transparent) 0%,
            color-mix(in srgb, var(--actor-theme, #D72638) 30%, transparent) 100%);
    opacity: 1;
}



.fs-title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    z-index: 5;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0;
    line-height: 1;
}

.fs-card:hover .fs-title {
    transform: translateY(-10px);
}

/* Hide legacy elements */
.fs-preview,
.fs-content {
    display: none !important;
}

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

@media (max-width: 991px) {
    .fullscreen-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 40vh;
    }

    .fs-title {
        font-size: 1.5rem;
        bottom: 25px;
        left: 25px;
    }
}

@media (max-width: 576px) {
    .fullscreen-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 60vh;
    }
}


/* ========== MANIFESTO SECTION ========== */
.section-manifesto {
    padding: var(--space-5xl) 0;
    background: var(--color-bg);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.manifesto-content {
    padding-right: var(--space-2xl);
}

.manifesto-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
    position: relative;
    padding-left: var(--space-lg);
}

.manifesto-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--retro-red), var(--retro-orange));
    border-radius: 2px;
}

.manifesto-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-light);
}

.manifesto-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--color-bg-alt);
}

.manifesto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.manifesto-image:hover img {
    transform: scale(1.03);
}

/* ========== MARQUEE SECTION ========== */
.section-marquee {
    padding: var(--space-2xl) 0;
    background: var(--color-bg-alt);
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-text);
    padding: 0 var(--space-3xl);
    white-space: nowrap;
    opacity: 0.4;
    transition: opacity var(--transition-fast);
}

.marquee-item:hover {
    opacity: 1;
}

/* ========== CTA SECTION ========== */
.section-cta {
    padding: var(--space-5xl) 0;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.section-cta .container {
    position: relative;
    z-index: 10;
}

.cta-grid {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 18px 40px;
    background: white;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.cta-btn:hover {
    background: var(--retro-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(215, 38, 56, 0.3);
}

/* ========== MANIFESTO & CTA RESPONSIVE ========== */
@media (max-width: 1024px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .manifesto-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
}


/* ========== ABOUT PAGE ========== */
.about-hero {
    background: var(--color-bg-alt);
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.about-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: var(--space-4xl) 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.feature-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--retro-red);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.8rem;
    color: var(--retro-red);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.contact-info>p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--retro-red);
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

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

.contact-form {
    background: var(--color-bg-alt);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--retro-red);
}

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


/* ========== ACTOR PROFILE PAGE ========== */
.actor-hero {
    padding: var(--space-3xl) 0 var(--space-5xl);
    background: var(--color-bg);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--retro-red);
}

.actor-hero-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.actor-photo {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--color-bg-alt);
    box-shadow: var(--shadow-xl);
}

.actor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actor-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--color-border-dark);
}

.actor-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--retro-red);
    margin-bottom: var(--space-sm);
}

.actor-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.actor-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.actor-stat {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.actor-stat i {
    font-size: 1.5rem;
    color: var(--retro-red);
}

.actor-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.actor-stat .stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.actor-bio {
    margin-bottom: var(--space-2xl);
}

.actor-bio h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.actor-bio p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-light);
}

/* FILMOGRAPHY */
.actor-filmography {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.filmography-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: var(--space-2xl);
}

.filmography-title i {
    color: var(--retro-red);
}

.filmography-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-md);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--color-text);
    background: var(--color-bg);
}

.tab-btn.active {
    color: white;
    background: var(--color-text);
}

.tab-count {
    font-size: 0.75rem;
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
}

.tab-btn.active .tab-count {
    background: rgba(255, 255, 255, 0.2);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.projects-grid {
    display: grid;
    gap: var(--space-md);
}

.project-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.project-card:hover {
    border-color: var(--retro-red);
    transform: translateX(5px);
}

.project-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--retro-red);
    min-width: 70px;
}

.project-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.project-role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ACTOR PAGE RESPONSIVE */
@media (max-width: 1024px) {
    .actor-hero-grid {
        grid-template-columns: 300px 1fr;
        gap: var(--space-2xl);
    }
}

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

    .actor-photo {
        position: relative;
        top: 0;
        max-width: 300px;
        margin: 0 auto var(--space-2xl);
    }

    .actor-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .filmography-tabs {
        flex-wrap: wrap;
    }
}

/* ========== UTILITIES ========== */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: var(--space-3xl);
}

.mb-4 {
    margin-bottom: var(--space-xl);
}

.mb-5 {
    margin-bottom: var(--space-3xl);
}

/* ========== ADDITIONAL RESPONSIVE ========== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
}

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

    .profile-hero {
        height: 60vh;
    }

    .profile-meta {
        gap: var(--space-xl);
    }
}


/* ========== SERVICES SECTION ========== */
.services {
    padding: var(--space-5xl) 0;
    background: var(--color-bg);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-4xl);
}

.services-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.services-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--color-bg);
    border-color: var(--color-border);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--retro-red), var(--retro-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-dark);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.testimonials-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: white;
    margin-top: var(--space-md);
}

.testimonials-header .section-tag {
    color: var(--retro-orange);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial-content i {
    font-size: 2.5rem;
    color: var(--retro-red);
    opacity: 0.6;
    margin-bottom: var(--space-md);
    display: block;
}

.testimonial-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-info strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== RESPONSIVE FOR NEW SECTIONS ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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


/* ========== NETFLIX STYLE PROJECT CARDS ========== */
.netflix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.netflix-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
    cursor: pointer;
}

.netflix-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.netflix-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

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

.netflix-card:hover .netflix-poster img {
    transform: scale(1.1);
}

.netflix-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-alt) 100%);
    font-size: 3rem;
    color: var(--color-text-muted);
}

.netflix-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-lg);
}

.netflix-card:hover .netflix-overlay {
    opacity: 1;
}

.netflix-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.netflix-info {
    padding: var(--space-md);
    background: var(--color-bg);
}

.netflix-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.netflix-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: block;
}

/* Netflix card hover effect - expand info */
.netflix-card:hover .netflix-info {
    background: var(--color-bg-dark);
}

.netflix-card:hover .netflix-title {
    color: white;
}

@media (max-width: 768px) {
    .netflix-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: var(--space-md);
    }

    .netflix-card:hover {
        transform: none;
    }
}

/* ========== PORTFOLIO STYLE ACTOR PROFILE ========== */
/* ========== TELEVI STYLE ACTOR HERO ========== */
.actor-profile-hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.actor-profile-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--header-height) + 20px) 60px 60px 60px;
    z-index: 2;
    background: #000;
}

.actor-profile-photo img,
.actor-profile-photo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0) !important; /* Force color on detail page */
}

.actor-back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.actor-back-link:hover {
    opacity: 1;
}

.actor-profile-branding h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    color: white;
    letter-spacing: -1px;
}

.actor-profile-name {
    margin-top: auto;
}

.actor-profile-name h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: white;
    line-height: 0.9;
    text-transform: uppercase;
}

.actor-profile-name .accent {
    display: block;
    opacity: 0.3;
}

.actor-profile-right {
    position: relative;
    background: #000;
}

.actor-profile-photo {
    width: 100%;
    height: 100%;
}

.actor-profile-photo img,
.actor-profile-photo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== TELEVI STYLE DETAILS SECTION ========== */

/* ========== TELEVI STYLE DETAILS SECTION (LIGHT) ========== */
.actor-v2-details {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 120px 0;
}

.actor-v2-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 100px;
    align-items: start;
}

.actor-v2-sidebar {
    position: sticky;
    top: 100px;
}

.actor-v2-name {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -2px;
    color: var(--color-text);
}

.actor-v2-info-list {
    margin-bottom: 60px;
}

.info-item {
    margin-bottom: 30px;
}

.info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Accordions Light */
.actor-v2-accordions {
    border-top: 1px solid var(--color-border);
}

.acc-item {
    border-bottom: 1px solid var(--color-border);
}

.acc-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s;
}

.acc-trigger:hover {
    color: var(--retro-red);
}

.acc-trigger i {
    font-size: 1.2rem;
    transition: transform 0.3s;
    opacity: 0.4;
}

.acc-item.active .acc-trigger i {
    transform: rotate(45deg);
    opacity: 1;
    color: var(--retro-red);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.acc-item.active .acc-content {
    max-height: 1000px;
}

.acc-inner {
    padding: 0 0 40px;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.acc-inner ul {
    list-style: none;
}

.acc-inner li {
    margin-bottom: 15px;
}

.acc-inner li strong {
    color: var(--color-text);
    display: block;
    font-size: 1.05rem;
}


/* Vertical Gallery - Updated to 2 Column Grid */
.actor-v2-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-v2-item {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    position: relative;
    cursor: pointer;
}

.gallery-v2-item img,
.gallery-v2-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease, transform 0.4s ease;
}

.gallery-v2-item:hover img,
.gallery-v2-item:hover video {
    filter: brightness(0.8);
    transform: scale(1.02);
}

.video-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 5;
    transition: all 0.3s ease;
}

.gallery-v2-item:hover .video-play-indicator {
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.actor-v2-contact {
    margin-top: 50px;
}

.btn-mail {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #D72638;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-mail i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-mail:hover i {
    transform: translateY(-5px);
}


/* ========== V2 PAGE HEADER (Organizasyonlar etc.) ========== */
.v2-page-header {
    padding: 120px 0 60px;
    background: var(--color-bg);
}

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

.v2-page-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--color-text);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.v2-title-line {
    width: 60px;
    height: 4px;
    background: var(--retro-red);
    margin: 0 auto 30px;
}

.v2-page-desc {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Filter System V2 */
.v2-events-section {
    padding: 0 0 100px;
    background: var(--color-bg);
}

.event-v2-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.filter-v2-btn {
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding: 10px 0;
}

.filter-v2-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--retro-red);
    transition: width 0.3s;
}

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

.filter-v2-btn.active::after {
    width: 100%;
}

/* Event Grid V2 */
.events-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.event-v2-card {
    background: #fff;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
}

.event-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.event-v2-media {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}

.event-v2-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.event-v2-card:hover .event-v2-media img {
    transform: scale(1.1);
}

.event-v2-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    z-index: 5;
}

.event-v2-date strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
}

.event-v2-date span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--retro-red);
}

.event-v2-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-v2-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--retro-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.event-v2-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.event-v2-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.btn-more-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-more-v2 i {
    transition: transform 0.3s;
}

.btn-more-v2:hover i {
    transform: translateX(5px);
}

.empty-state-v2 {
    text-align: center;
    padding: 100px 0;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .actor-v2-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .actor-v2-sidebar {
        position: relative;
        top: 0;
    }

    .actor-profile-hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .actor-profile-left {
        height: auto;
        min-height: 50vh;
        padding: calc(var(--header-height) + 40px) 30px 40px 30px;
        order: 2;
    }

    .actor-profile-right {
        height: 60vh;
        order: 1;
    }

    .actor-profile-branding {
        display: none; /* Hide redundant logo container on mobile since header has it */
    }

    .actor-back-link {
        position: absolute;
        top: calc(var(--header-height) + 15px);
        left: 20px;
        z-index: 10;
        background: rgba(0,0,0,0.2);
        padding: 5px 12px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }

    .actor-profile-name h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1;
    }

    .events-v2-grid {
        grid-template-columns: 1fr;
    }

    .actor-v2-gallery {
        grid-template-columns: 1fr;
    }
}


/* ========== PAGE ANIMATIONS ========== */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) forwards;
}

.animate-fadeIn {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fadeInScale {
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.25, 1, 0.2, 1) forwards;
}

.animate-slideInLeft {
    opacity: 0;
    animation: slideInLeft 0.8s cubic-bezier(0.25, 1, 0.2, 1) forwards;
}

.animate-slideInRight {
    opacity: 0;
    animation: slideInRight 0.8s cubic-bezier(0.25, 1, 0.2, 1) forwards;
}

/* Animation Delays for Stagger Effect */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

.delay-7 {
    animation-delay: 0.7s;
}

.delay-8 {
    animation-delay: 0.8s;
}

.delay-9 {
    animation-delay: 0.9s;
}

.delay-10 {
    animation-delay: 1.0s;
}

/* Intersection Observer Based Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.2, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

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

.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.reveal-fade.revealed {
    opacity: 1;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children animations */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.2, 1);
}

.stagger-children.revealed>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(7) {
    transition-delay: 0.7s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(8) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(9) {
    transition-delay: 0.9s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(10) {
    transition-delay: 1.0s;
    opacity: 1;
    transform: translateY(0);
}

/* Homepage Hero Specific */
body.animations-ready .hero-label {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 1, 0.2, 1) forwards;
}

body.animations-ready .hero-title {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) 0.2s forwards;
}

body.animations-ready .hero-desc {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) 0.4s forwards;
}

body.animations-ready .hero-actions {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) 0.6s forwards;
}

/* Homepage Hero Specific Animations */
@keyframes heroCard1 {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes heroCard2 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes heroCard3 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

body.animations-ready .hero-visual {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.2, 1) 0.6s forwards;
}

body.animations-ready .hero-card-1 {
    animation: heroCard1 1s cubic-bezier(0.25, 1, 0.2, 1) 1s both;
}

body.animations-ready .hero-card-2 {
    animation: heroCard2 1s cubic-bezier(0.25, 1, 0.2, 1) 1.2s both;
}

body.animations-ready .hero-card-3 {
    animation: heroCard3 1s cubic-bezier(0.25, 1, 0.2, 1) 1.4s both;
}


/* Corporate/Organization Page Specific */
.corporate-hero,
.references-section,
.corporate-cta,
.about-hero,
.about-content .about-text,
.features-grid,
.feature-card,
.contact-section,
.contact-info,
.contact-form,
.contact-items .contact-item,
.contact-form .form-group,
.reference-item,
.about-title,
.about-subtitle,
.corporate-title,
.corporate-text,
.animate-on-scroll,
.hero-label,
.hero-title,
.hero-desc,
.hero-actions {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.2, 1), transform 1s cubic-bezier(0.25, 1, 0.2, 1);
}

.hero-visual {
    opacity: 0;
}

/* Scroll Triggered Animations */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* When animations are ready, trigger immediate top elements */
body.animations-ready .corporate-hero,
body.animations-ready .about-hero,
body.animations-ready .contact-section {
    animation: fadeIn 1s ease-out forwards;
}

body.animations-ready .corporate-title,
body.animations-ready .about-title {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.2, 1) 0.1s forwards;
}

body.animations-ready .corporate-text,
body.animations-ready .about-subtitle {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.2, 1) 0.3s forwards;
}

body.animations-ready .references-section {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

body.animations-ready .corporate-cta {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* About Page Specific */
body.animations-ready .about-hero {
    animation: fadeIn 0.8s ease-out forwards;
}

body.animations-ready .about-content .about-text {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

body.animations-ready .features-grid {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

body.animations-ready .feature-card {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) both;
}

body.animations-ready .feature-card:nth-child(1) {
    animation-delay: 0.4s;
}

body.animations-ready .feature-card:nth-child(2) {
    animation-delay: 0.55s;
}

body.animations-ready .feature-card:nth-child(3) {
    animation-delay: 0.7s;
}

/* Contact Page Specific */
body.animations-ready .contact-section {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

body.animations-ready .contact-info {
    animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.2, 1) 0.3s both;
}

body.animations-ready .contact-form {
    animation: slideInRight 1s cubic-bezier(0.25, 1, 0.2, 1) 0.3s both;
}

body.animations-ready .contact-items .contact-item {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) both;
}

body.animations-ready .contact-items .contact-item:nth-child(1) {
    animation-delay: 0.5s;
}

body.animations-ready .contact-items .contact-item:nth-child(2) {
    animation-delay: 0.65s;
}

body.animations-ready .contact-items .contact-item:nth-child(3) {
    animation-delay: 0.8s;
}

body.animations-ready .contact-form .form-group {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) both;
}

body.animations-ready .contact-form .form-group:nth-child(1) {
    animation-delay: 0.4s;
}

body.animations-ready .contact-form .form-group:nth-child(2) {
    animation-delay: 0.5s;
}

body.animations-ready .contact-form .form-group:nth-child(3) {
    animation-delay: 0.6s;
}

body.animations-ready .contact-form .form-group:nth-child(4) {
    animation-delay: 0.7s;
}

body.animations-ready .contact-form button[type="submit"] {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) 0.85s both;
}

/* Reference Items Animation */
body.animations-ready .reference-item {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.2, 1) both;
}

body.animations-ready .reference-item:nth-child(1) {
    animation-delay: 0.3s;
}

body.animations-ready .reference-item:nth-child(2) {
    animation-delay: 0.4s;
}

body.animations-ready .reference-item:nth-child(3) {
    animation-delay: 0.5s;
}

body.animations-ready .reference-item:nth-child(4) {
    animation-delay: 0.6s;
}

body.animations-ready .reference-item:nth-child(5) {
    animation-delay: 0.7s;
}

body.animations-ready .reference-item:nth-child(6) {
    animation-delay: 0.8s;
}

body.animations-ready .reference-item:nth-child(7) {
    animation-delay: 0.9s;
}

body.animations-ready .reference-item:nth-child(8) {
    animation-delay: 1s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .animate-fadeInUp,
    .animate-fadeIn,
    .animate-fadeInScale,
    .animate-slideInLeft,
    .animate-slideInRight,
    .reveal,
    .reveal-fade,
    .reveal-scale,
    .reveal-left,
    .reveal-right,
    .stagger-children>*,
    .corporate-hero,
    .references-section,
    .corporate-cta,
    .about-hero,
    .about-content .about-text,
    .features-grid,
    .feature-card,
    .contact-section,
    .contact-info,
    .contact-form,
    .contact-items .contact-item,
    .contact-form .form-group,
    .contact-form button[type="submit"],
    .reference-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ========== SENIOR DEVELOPER FIXES: HOMEPAGE & MOBILE ========== */

/* Actors Grid V2 Optimization */
.actors-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.actor-card-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 3/4;
}

.actor-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.actor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.2, 1);
}

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

.actor-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1; /* Always visible on mobile/desktop for UX */
    transition: background 0.4s ease;
}

.actor-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.view-profile {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

/* Mobile Responsive Fixes */
@media (max-width: 1024px) {
    .actors-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-full {
        min-height: 80vh !important;
    }

    .actors-grid-v2 {
        grid-template-columns: 1fr; /* Single column on small mobile for clarity */
        gap: 20px;
    }

    .actor-card-overlay {
        padding: 20px;
    }

    .actor-card-overlay h3 {
        font-size: 1.5rem;
    }

    /* Fixed overlapping menu or extra spacing */
    .featured {
        padding: 60px 0;
    }
    
    /* Force visibility for scroll animations on mobile */
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}

.page-body-content {
    white-space: pre-line !important;
}