/*
Theme Name: Seslendirme Evi
Theme URI: https://seslendirmeevi.com.tr
Description: Seslendirme Evi ozel temasi
Author: Volkan
Version: 1.0
*/

:root {
    --bg-dark: #ffffff;
    --bg-card: #f8f9fa;
    --bg-card-hover: #f1f3f5;
    --bg-glass: rgba(0, 0, 0, 0.03);
    --accent: #3a8bbe;
    --accent-hover: #2d7aa8;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --border-color: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

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

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

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.site-header.scrolled,
.site-header.not-home {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 70px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav > a,
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.main-nav > a:hover,
.nav-dropdown:hover > a {
    background: rgba(255,255,255,0.15);
}

.site-header.scrolled .main-nav > a,
.site-header.scrolled .nav-dropdown > a,
.site-header.not-home .main-nav > a,
.site-header.not-home .nav-dropdown > a {
    color: var(--text-primary);
}

.site-header.scrolled .main-nav > a:hover,
.site-header.scrolled .nav-dropdown:hover > a,
.site-header.not-home .main-nav > a:hover,
.site-header.not-home .nav-dropdown:hover > a {
    background: var(--bg-card);
}

.main-nav > a > svg,
.nav-dropdown > a > svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: all 0.3s;
    flex-shrink: 0;
}

.main-nav > a:hover > svg,
.nav-dropdown:hover > a > svg {
    opacity: 1;
}

/* Nav Dot Separator */
.nav-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    flex-shrink: 0;
}

.site-header.scrolled .nav-dot,
.site-header.not-home .nav-dot {
    background: var(--border-color);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--bg-card);
    color: var(--accent);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.site-header.scrolled .mobile-menu-btn span,
.site-header.not-home .mobile-menu-btn span {
    background: var(--text-primary);
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
    background: #fff;
    border-radius: 12px;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
}

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

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    background: var(--bg-card);
    color: var(--accent);
}

.mobile-nav a svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #fff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.section-title span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.section-title span::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}
/* ========================================
   ARTIST CARDS
   ======================================== */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.artist-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.artist-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artist-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.artist-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card) 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.artist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.artist-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    color: #fff;
}

.artist-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.badge {
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--accent);
    color: #fff;
}

.badge-secondary {
    background: rgba(255,255,255,0.25);
    color: #fff;
    backdrop-filter: blur(10px);
}

.artist-card-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #fff !important;
}

.artist-card-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.8) !important;
    margin: 0;
}

.artist-card-play {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(58, 139, 190, 0.4);
    z-index: 10;
    opacity: 1;
}

.artist-card-play:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

.artist-card.playing .artist-card-play {
    background: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.artist-card-play .pause-icon {
    display: none;
}

.artist-card.playing .play-icon {
    display: none;
}

.artist-card.playing .pause-icon {
    display: block;
}

/* ========================================
   AUDIO PLAYER
   ======================================== */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 1000;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
}

.audio-player.active {
    transform: translateY(0);
}

.player-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.player-info img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.player-info > div {
    display: flex;
    flex-direction: column;
}

#playerName {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.player-demo-title {
    font-size: 12px;
    color: var(--text-secondary);
}

.player-controls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-btn {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
    flex-shrink: 0;
}

.player-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.player-pause-icon {
    display: none;
}

.player-btn.playing .player-play-icon {
    display: none;
}

.player-btn.playing .player-pause-icon {
    display: block;
}

.player-progress {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.player-progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.player-time {
    font-size: 13px;
    color: var(--text-secondary);
    min-width: 45px;
}

.player-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 8px;
    transition: color 0.3s;
}

.player-close:hover {
    color: var(--text-primary);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: #f8f9fa;
    color: var(--text-primary);
    padding: 60px 0 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

/* Footer Müjgan */
.footer-mujgan {
    position: relative;
    min-height: 280px;
    overflow: visible;
}

.footer-mujgan img {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    height: 380px;
    width: auto;
    max-width: none;
}

.footer-mujgan .mujgan-text {
    position: absolute;
    bottom: 5px;
    right: 10px;
    text-align: right;
}

.footer-mujgan .mujgan-text p {
    font-size: 11px;
    color: #333;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    background: rgba(255,255,255,0.85);
    padding: 4px 10px;
    border-radius: 4px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    border: none;
}

/* Instagram - Gradient */
.footer-social a[href*="instagram"] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* LinkedIn - Mavi */
.footer-social a[href*="linkedin"] {
    background: #0077B5;
}

/* YouTube - Kırmızı */
.footer-social a[href*="youtube"] {
    background: #FF0000;
}

/* Facebook - Mavi */
.footer-social a[href*="facebook"] {
    background: #1877F2;
}

/* Hover - Büyüme */
.footer-social a:hover {
    transform: scale(1.15);
}
.footer-social a svg {
    color: #fff;
    fill: #fff;
}

.footer-col h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4 svg {
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    transition: all 0.3s;
    margin-top: 15px;
}

.footer-apply-btn:hover {
    background: var(--accent);
    color: #fff;
}

.footer-apply-btn svg {
    flex-shrink: 0;
}

.footer-workshop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #ee5a5a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ee5a5a;
    transition: all 0.3s;
    margin-top: 10px;
}
.footer-workshop-btn:hover {
    background: #ee5a5a;
    color: #fff;
}
.footer-workshop-btn svg {
    flex-shrink: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s;
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-top: 25px;
}

.footer-basvuru-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-basvuru-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent);
    color: #fff !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-basvuru-btn:hover {
    background: var(--accent-hover);
    color: #fff !important;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.page-content {
    padding-top: 120px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-secondary);
}

/* ========================================
   ARTIST PROFILE
   ======================================== */
.artist-profile {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.artist-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.artist-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border: 1px solid var(--border-color);
}

.artist-info h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    padding: 6px 16px;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.tag-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.artist-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.artist-projects {
    color: var(--text-secondary);
    font-size: 14px;
}

.artist-section {
    margin-bottom: 50px;
}

.artist-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* ========================================
   DEMO LIST
   ======================================== */
.demos-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.demo-item:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.demo-item.playing {
    border-color: var(--accent);
    box-shadow: 0 5px 25px rgba(59, 130, 246, 0.15);
}

.demo-play {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.demo-title {
    font-weight: 500;
    color: var(--text-primary);
}

/* ========================================
   WORKS GRID
   ======================================== */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.work-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.work-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.work-info {
    padding: 20px;
}

.work-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.work-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.work-info span {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
}

.work-client {
    font-size: 13px;
    color: var(--text-secondary);
}

.work-play {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.work-card:hover .work-play {
    opacity: 1;
}

/* Works Filters */
.works-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.work-card.hidden {
    display: none;
}

/* ========================================
   SCROLL MARGIN
   ======================================== */
#basvuru {
    scroll-margin-top: 120px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-info {
        grid-column: 1 / -1;
    }
    
    .footer-mujgan {
        min-height: 240px;
    }
    
    .footer-mujgan img {
        height: 320px;
        bottom: -35px;
    }
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        margin-bottom: 20px;
    }
    
    .footer-mujgan {
        min-height: 300px;
        order: -1;
        margin-bottom: 20px;
    }
    
    .footer-mujgan img {
        height: 350px;
        bottom: -40px;
    }
    
    .footer-mujgan .mujgan-text {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        bottom: -25px;
        white-space: nowrap;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .artist-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .artist-photo img {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    
    .artist-info h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .artist-tags {
        justify-content: center;
    }
    
    .player-info {
        min-width: auto;
    }
    
    .player-info img {
        width: 40px;
        height: 40px;
    }
    
    #playerName {
        font-size: 13px;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .player-demo-title {
        display: none;
    }
    
    .player-time {
        display: none;
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.footer-dolby-logo {
    height: 35px;
    border-radius: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-dolby-logo:hover {
    opacity: 1;
}

.page-content .office-slider,
.page-content .service-hero,
.page-content .studio-hero, 
.page-content .hizmet-hero {
    margin-top: -10px;
}
/* ========================================
   HOME SECTIONS
   ======================================== */

/* Works Grid Home */
.works-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.work-card-home {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.work-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.work-card-home:hover .work-card-overlay {
    opacity: 1;
}

.work-card-overlay .play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.work-card-content {
    padding: 20px;
}

.work-category {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
}

.work-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
    color: var(--text-primary);
}

.work-placeholder {
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-secondary);
}

/* Work Modal */
.work-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.work-modal.active {
    opacity: 1;
    visibility: visible;
}

.work-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.work-modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
}

.work-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.work-modal-close:hover {
    background: rgba(0,0,0,0.7);
}

.work-modal-video {
    aspect-ratio: 16/9;
    background: #000;
}

.work-modal-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.work-modal-info {
    padding: 25px;
}

.work-modal-info h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.modal-brand {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

.modal-category {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 15px;
}

.modal-artists {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-artists-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.modal-artists-list a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-card);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.modal-artists-list a:hover {
    background: var(--accent);
    color: #fff;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-info strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.news-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.news-placeholder {
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--text-primary);
}

.news-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Grid Home */
.services-grid-home {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card-home {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-decoration: none;
}

.service-card-home:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card-home .service-icon {
    margin-bottom: 15px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(58,147,190,0.1);
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-home h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-card-home p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

/* Home Sections Responsive */
@media (max-width: 1024px) {
    .works-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .works-grid-home,
    .news-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .work-modal-content {
        border-radius: 15px;
    }
    
    .work-modal-info {
        padding: 20px;
    }
    
    .work-modal-info h2 {
        font-size: 18px;
    }
}
/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;  /* hidden yerine visible */
}

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

.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-rotate {
    white-space: nowrap;
    transition: opacity 0.3s;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Pill-shaped Search */
.hero-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
    display: flex;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px;
    z-index: 100;
}

.hero-search input {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 25px;
    color: #fff;
    font-size: 16px;
    min-width: 0;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-search input:focus {
    outline: none;
}

.hero-search button {
    width: 50px;
    height: 50px;
    background: var(--accent, #3a8bbe);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.hero-search button:hover {
    background: #2d7aa8;
}


/* Autocomplete Suggestions */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 10000;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: var(--text-primary);
}

.suggestion-item:first-child {
    border-radius: 16px 16px 0 0;
}

.suggestion-item:last-child {
    border-radius: 0 0 16px 16px;
}

.suggestion-item:only-child {
    border-radius: 16px;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: var(--bg-card);
}

.suggestion-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: all 0.2s;
}

.suggestion-icon.artist {
    color: var(--accent);
}

.suggestion-item:hover .suggestion-icon,
.suggestion-item.active .suggestion-icon {
    background: var(--accent);
    color: #fff;
}

.suggestion-text {
    flex: 1;
    text-align: left;
}

.suggestion-label {
    font-weight: 500;
    font-size: 14px;
    display: block;
}

.suggestion-type {
    font-size: 11px;
    color: var(--text-secondary);
}

.no-suggestions {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-search .search-suggestions {
    z-index: 9999;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
}

.hero-buttons .btn-primary {
    background: #3a8bbe;
    box-shadow: 0 4px 15px rgba(58, 139, 190, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: #2d7aa8;
    box-shadow: 0 6px 20px rgba(58, 139, 190, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Client Logos */
.hero-clients {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

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

.client-logos img {
    height: 35px;
    width: auto;
    max-width: 120px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
    object-fit: contain;
}

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

.client-logos img[alt="Migros"] { height: 30px; }
.client-logos img[alt="Trendyol"] { height: 38px; }
.client-logos img[alt="Yemeksepeti"] { height: 32px; }
.client-logos img[alt="Eti"] { height: 45px; }
.client-logos img[alt="Nestle"] { height: 35px; }

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }
    
    .hero {
        height: 85vh;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 28px;
        height: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-search {
    flex-direction: row;
    border-radius: 50px;
    padding: 5px;
}

.hero-search input {
    padding: 12px 18px;
    font-size: 14px;
    text-align: left;
}

.hero-search button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    margin-top: 0;
}
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .client-logos {
        gap: 20px;
        flex-wrap: wrap;
        padding: 0 20px;
    }
    
    .client-logos img {
        height: 20px !important;
        max-width: 70px !important;
    }
    
    .hero-clients {
        bottom: 25px;
    }
}
/* ========================================
   BIZ KIMIZ / ABOUT US PAGE
   ======================================== */

/* Office Slider */
.office-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-top: 0;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* About Intro */
.about-intro {
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-intro h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 40px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text .highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 30px;
}

.about-intro .btn {
    margin-top: 30px;
}

/* Team Section */
.team-section {
    padding: 60px 0 100px;
}

.team-section > h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
}

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

.team-image.no-photo {
    background: linear-gradient(135deg, var(--accent) 0%, #2d7aa8 100%);
}

.team-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 15px;
    color: #fff;
    text-align: center;
}

.team-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-info span {
    font-size: 12px;
    opacity: 0.8;
    display: block;
    margin-bottom: 12px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .office-slider {
        height: 220px;
        margin-top: 70px;
    }
    
    .about-intro {
        padding: 50px 20px;
    }
    
    .about-intro h1 {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team-info h3 {
        font-size: 14px;
    }
    
    .team-info span {
        font-size: 11px;
    }
}
/* ========================================
   DUBLAJ CAST PAGE
   ======================================== */

/* Filters Bar */
.filters-bar {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Search Row */
.search-row {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-wrapper .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.search-wrapper input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s;
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}

.search-wrapper input::placeholder {
    color: var(--text-secondary);
}

/* Filters Row */
.filters-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* Filter Dropdown */
.filter-dropdown {
    position: relative;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--accent);
}

.filter-btn.has-selection {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.filter-btn.has-selection svg {
    stroke: #fff;
}

.filter-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: none;
    z-index: 50;
}

.filter-dropdown.open .filter-menu {
    display: block;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    color: var(--text-primary);
}

.filter-option:hover {
    background: var(--bg-card);
}

.filter-option input {
    display: none;
}

.filter-option .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.filter-option input:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.filter-option input:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* Clear Filters */
.clear-filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.clear-filters-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.active-filter button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.active-filter button:hover {
    color: #fff;
}

.results-count {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: var(--accent);
    color: #fff;
}

.load-more-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Mobile Overlay */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 40;
}

.filter-overlay.active {
    display: block;
}

/* Dublaj Cast Page - Hide artist meta */
.artists-grid .artist-card .artist-styles,
.artists-grid .artist-card .artist-tags,
.artists-grid .artist-card-meta {
    display: none;
}

/* Dropdown scroll bar - genel */
.filter-menu::-webkit-scrollbar {
    width: 6px;
}

.filter-menu::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 6px;
}

.filter-menu::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 6px;
}

.filter-menu::-webkit-scrollbar-thumb:hover {
    background: #2d7aa8;
}

/* Dublaj Cast Responsive */
@media (max-width: 768px) {
    .filters-bar {
        padding: 20px;
    }
    
    .search-row {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .filters-row {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .filter-menu {
        position: absolute;
        top: calc(100% + 8px);
        bottom: auto;
        min-width: 200px;
        max-width: calc(100vw - 40px);
        max-height: 250px;
        overflow-y: auto;
        border-radius: 12px;
        max-height: 350px;
    }
    
    /* Cinsiyet ve Ses Aralığı - sola aç */
    .filter-dropdown:nth-child(1) .filter-menu,
    .filter-dropdown:nth-child(2) .filter-menu {
        left: 0;
        right: auto;
    }
    
    /* Ses Tarzı - sağa aç */
    .filter-dropdown:nth-child(3) .filter-menu {
        left: auto;
        right: 0;
    }
    
    /* Dil - sola aç */
    .filter-dropdown:nth-child(4) .filter-menu {
        left: 0;
        right: auto;
    }
}

/* ========================================
   HIZMET / SERVICE DETAIL PAGE
   ======================================== */

.hizmet-hero {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
}

.hizmet-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hizmet-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.hizmet-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

.hizmet-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    padding: 60px 0 80px;
}

.hizmet-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.hizmet-sidebar h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hizmet-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.hizmet-sidebar li {
    margin-bottom: 8px;
}

.hizmet-sidebar a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.hizmet-sidebar a:hover {
    background: var(--bg-card);
    color: var(--accent);
}

.hizmet-sidebar a.active {
    background: var(--accent);
    color: #fff;
}

.sidebar-cta {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
}

.sidebar-cta h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.hizmet-intro {
    margin-bottom: 40px;
}

.hizmet-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.hizmet-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.hizmet-section {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.hizmet-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hizmet-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s;
}

.section-link:hover {
    padding-left: 5px;
}

.hizmet-apple-music {
    margin-bottom: 50px;
}

.hizmet-apple-music h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hizmet-apple-music iframe {
    width: 100%;
    max-width: 100%;
}

.hizmet-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #2d7aa8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.hizmet-cta h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
}

.hizmet-cta .btn {
    margin: 0 8px;
}

.hizmet-cta .btn-secondary {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.hizmet-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* Hizmet Page Responsive */
@media (max-width: 968px) {
    .hizmet-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hizmet-sidebar {
        position: static;
        display: flex;
        flex-direction: column;
    }
    
    .hizmet-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .hizmet-sidebar li {
        margin: 0;
    }
    
    .hizmet-sidebar a {
        padding: 8px 14px;
        font-size: 13px;
        background: var(--bg-card);
        border-radius: 20px;
    }
    
    .sidebar-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .hizmet-hero {
        height: 250px;
        margin-top: 70px;
    }
    
    .hizmet-hero h1 {
        font-size: 32px;
    }
    
    .hizmet-intro p {
        font-size: 16px;
    }
    
    .hizmet-cta {
        padding: 30px 20px;
    }
    
    .hizmet-cta .btn {
        display: block;
        margin: 10px 0;
    }
}
/* ========================================
   NELER YAPARIZ / SERVICES PAGE
   ======================================== */

.services-page {
    padding-top: 120px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

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

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 30px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(58,147,190,0.1) 0%, rgba(58,147,190,0.05) 100%);
    border-color: var(--accent);
}

.service-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(58,147,190,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

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

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s;
}

.service-card:hover .service-link {
    letter-spacing: 1px;
}

.services-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 80px;
}

.services-cta h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

@media (max-width: 768px) {
    .services-page {
        padding-top: 100px;
    }
    
    .services-header h1 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-cta {
        padding: 40px 20px;
    }
    
    .services-cta h2 {
        font-size: 22px;
    }
}
/* ========================================
   STÜDYOLAR / STUDIOS PAGE
   ======================================== */

/* Hero */
.studio-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
    text-align: center;
}

.studio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.studio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.studio-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.studio-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.studio-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Intro */
.studio-intro {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.studio-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Studios Section */
.studios-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.studio-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
}

.studio-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.studio-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
}

.studio-card:nth-child(even) {
    direction: rtl;
}

.studio-card:nth-child(even) > * {
    direction: ltr;
}

.studio-card-image {
    position: relative;
    aspect-ratio: 4/3;
}

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

.studio-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.studio-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.studio-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.studio-subtitle {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

.studio-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.studio-specs .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.studio-specs .spec-item:last-child {
    border-bottom: none;
}

.studio-specs .spec-item.highlight {
    background: rgba(58, 139, 190, 0.1);
    margin: 0 -15px;
    padding: 10px 15px;
    border-radius: 8px;
    border-bottom: none;
}

.studio-specs .spec-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.studio-specs .spec-value {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

/* Gallery */
.studio-gallery {
    margin-bottom: 80px;
}

.studio-gallery h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.studio-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.studio-gallery .gallery-grid img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.studio-gallery .gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Brands */
.studio-brands {
    text-align: center;
    margin-bottom: 80px;
    padding: 50px;
    background: var(--bg-card);
    border-radius: 24px;
}

.studio-brands .brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.studio-brands .brands-grid img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
    border-radius: 12px;
}

.studio-brands .brands-grid img:hover {
    opacity: 1;
}

/* CTA */
.studio-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, #2d7aa8 100%);
    border-radius: 24px;
    padding: 60px 40px;
    margin-bottom: 80px;
    color: #fff;
}

.studio-cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.studio-cta p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.studio-cta .btn-primary {
    background: #fff;
    color: var(--accent);
}

.studio-cta .btn-primary:hover {
    background: rgba(255,255,255,0.9);
}

/* Studios Page Responsive */
@media (max-width: 968px) {
    .studio-card {
        grid-template-columns: 1fr;
    }
    
    .studio-card:nth-child(even) {
        direction: ltr;
    }
    
    .studio-card-content {
        padding: 30px;
    }
    
    .studio-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .studio-hero {
        height: 300px;
        margin-top: 70px;
    }
    
    .studio-hero h1 {
        font-size: 36px;
    }
    
    .studio-intro {
        margin: 40px auto;
    }
    
    .studio-intro p {
        font-size: 16px;
    }
    
    .studio-card h2 {
        font-size: 24px;
    }
    
    .studio-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-brands .brands-grid img {
        height: 30px;
    }
    
    .studio-cta {
        padding: 40px 25px;
    }
    
    .studio-cta h2 {
        font-size: 24px;
    }
}
/* ========================================
   SINGLE ARTIST PAGE
   ======================================== */

.artist-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.artist-sidebar {
    position: relative;
    padding: 40px 30px;
    color: #fff;
    overflow: hidden;
    background: #1a1a2e;
}

.artist-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.artist-sidebar > * {
    position: relative;
    z-index: 2;
}

.artist-photo-wrapper {
    margin-bottom: 25px;
}

.artist-photo-wrapper img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

.artist-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.sidebar-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-section h4 {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.tag-primary {
    background: var(--accent);
    color: #fff;
}

.tag-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.artist-content {
    padding: 50px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-label {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.demos-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--bg-card);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.demo-card:hover {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(58, 139, 190, 0.1);
}

.demo-card.playing {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 5px 25px rgba(58, 139, 190, 0.15);
}

.demo-play-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(58, 139, 190, 0.3);
    transition: transform 0.3s;
}

.demo-card:hover .demo-play-btn {
    transform: scale(1.05);
}

.demo-card .pause-icon {
    display: none;
}

.demo-card.playing .play-icon {
    display: none;
}

.demo-card.playing .pause-icon {
    display: block;
}

.demo-info {
    flex: 1;
    min-width: 0;
}

.demo-number {
    font-size: 12px;
    color: var(--text-secondary);
}

.demo-duration {
    font-size: 14px;
    color: var(--text-secondary);
    font-family: monospace;
    margin-right: 10px;
}

.demo-actions {
    display: flex;
    gap: 8px;
}

.demo-action-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.demo-action-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(58, 139, 190, 0.05);
}

/* Artist Works Grid */
.artist-content .works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.work-card-video {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.work-card-video:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

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

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

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

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

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.work-card-info {
    padding: 10px 12px;
}

.work-card-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-card-info .work-client {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
}

.work-card-info .work-category {
    font-size: 9px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.share-modal.active {
    display: flex;
}

.share-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    max-width: 350px;
    width: 100%;
    position: relative;
}

.share-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
}

.share-modal h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.share-btn-social.whatsapp {
    background: #25D366;
    color: #fff;
}

.share-btn-social.twitter {
    background: #000;
    color: #fff;
}

.share-btn-social.copy {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.share-btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Single Artist Responsive */
@media (max-width: 968px) {
    .artist-layout {
        grid-template-columns: 1fr;
    }
    
    .artist-sidebar {
        padding: 30px;
    }
    
    .artist-photo-wrapper img {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    
    .artist-name {
        text-align: center;
    }
    
    .tag-list {
        justify-content: center;
    }
    
    .sidebar-section h4 {
        text-align: center;
    }
    
    .artist-content {
        padding: 30px;
    }
    
    .artist-content .works-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .demo-card {
        flex-wrap: wrap;
        padding: 15px;
    }
    
    .demo-duration {
        display: none;
    }
    
    .demo-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }
}

/* =====================================================
   NEWS MODAL
   ===================================================== */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.news-modal.active {
    display: flex;
}

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

.news-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

.news-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 2;
    transition: background 0.3s;
}

.news-modal-close:hover {
    background: rgba(0,0,0,0.7);
}

.news-modal-image {
    width: 100%;
    line-height: 0;
}

.news-modal-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.news-modal-body {
    padding: 30px;
}

.news-modal-date {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.news-modal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: var(--text-primary);
    line-height: 1.3;
}

.news-modal-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.news-modal-text p {
    margin-bottom: 15px;
}

.news-modal-text iframe {
    display: block;
    width: 80%;
    height: 180px;
    border: none;
    border-radius: 8px;
    margin: 20px auto 0;
}

/* NEWS CARD clickable */
.news-card {
    cursor: pointer;
}

@media (max-width: 768px) {
    .news-modal-content {
        max-width: 95%;
    }
    
    .news-modal-image img {
        max-height: 200px;
    }
    
    .news-modal-body {
        padding: 20px;
    }
    
    .news-modal-text iframe {
        width: 100%;
        height: 150px;
    }
}
/* Load More Button */
.load-more-wrapper {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: var(--accent);
    opacity: 0.85;
    transform: translateY(-2px);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* ===========================================
   HABERLER PAGE STYLES
   =========================================== */
.haberler-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

/* News Grid Page */
.news-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-page {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.news-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.news-card-page .news-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-card-page .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.news-card-page .news-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.news-card-page .news-content {
    padding: 25px;
}

.news-card-page .news-date {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.news-card-page .news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-card-page .news-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

/* Haberler Page Responsive */
@media (max-width: 1024px) {
    .news-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .haberler-page {
        padding: 100px 0 60px;
    }
    
    .news-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* Nostalji galeri - siyah beyaz, hover'da renkli */
.studio-gallery.nostalji .gallery-grid img {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.studio-gallery.nostalji .gallery-grid img:hover {
    filter: grayscale(0%);
}

.studio-gallery.nostalji h2 {
    color: #666;
    font-style: italic;
}

/* Footer Gizlilik Politikası Link Stili */
/* Bu CSS'i style.css dosyasına ekle */

.footer-privacy-sep {
    margin: 0 8px;
    opacity: 0.5;
}

.footer-privacy-link {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-privacy-link:hover {
    opacity: 1;
    text-decoration: underline;
}
/* Gizlilik Politikası sayfaları için üst boşluk */
body.page-id-2138 main,
body.page-id-2142 main {
    padding-top: 140px;
}