/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient);
    z-index: 10001;
    transition: width 0.1s;
}

/* Video Hero Background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* Video artık tam canlılıkta */
}

.hero-video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 70%, #0a0a0a 100%); /* Alta doğru yumuşak karartma */
    z-index: 1;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 30px;
    font-size: 0.75rem;
    font-weight: 800;
}

.lang-btn {
    cursor: pointer;
    color: var(--text-dim);
    transition: all 0.3s;
    padding: 2px 5px;
    border-radius: 4px;
}

.lang-btn.active {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
}

.lang-btn:hover { color: #fff; }

:root {
    --primary: #ff6b00; /* Logo Turuncusu */
    --secondary: #ff8c00; /* Daha Parlak Turuncu */
    --bg: #0a0a0a; /* Matte Black */
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Sora', sans-serif;
    --gradient: linear-gradient(135deg, #ff6b00 0%, #ff9d00 50%, #ffc107 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px; /* Güçlü yan boşluklar */
}

@media (max-width: 992px) {
    .container { padding: 0 50px; }
}

@media (max-width: 768px) {
    .container { padding: 0 30px; }
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Dynamic Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    animation: move 20s infinite alternate;
}

.blob-1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.blob-2 { width: 500px; height: 500px; bottom: -100px; right: -100px; animation-delay: -5s; background: var(--secondary); }
.blob-3 { width: 300px; height: 300px; top: 40%; left: 30%; animation-delay: -10s; background: var(--accent); }

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px) rotate(45deg); }
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 10000; /* Increased for mobile menu compatibility */
    transition: all 0.4s;
}

.main-nav.scrolled {
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    perspective: 1000px;
    z-index: 1001;
}

.agency-logo {
    height: 120px; /* 2 kat büyütüldü */
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-wrapper:hover .agency-logo {
    filter: drop-shadow(0 0 20px var(--primary));
}

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

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

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

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.btn-glass, .nav-call-btn {
    padding: 12px 25px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--text) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-call-btn {
    width: 45px;
    height: 45px;
    padding: 0;
    animation: call-pulse 2s infinite;
}

@keyframes call-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.nav-call-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Hero Section */
.footer-contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
}

.footer-tel-link {
    color: var(--primary) !important;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-tel-link:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.4));
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.surp-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

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

.breadcrumb a:hover {
    color: #fff;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #a1a1a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Hero Section Padding & Layout Fix */
.hero-creative {
    padding-top: 100px; /* Menü için pay */
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    height: 100vh; /* Tam ekran yükseklik */
    display: flex;
    align-items: center;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    padding: 18px 40px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-whatsapp-minimal {
    font-weight: 700;
    color: #25d366;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-hero, .works-hero, .refs-hero, .about-premium-hero, .contact-premium-hero, .blog-hero {
    padding-top: 220px !important;
}
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cube {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    position: absolute;
    top: 20%;
    right: 10%;
    animation: float 6s infinite ease-in-out;
}

.floating-sphere {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 0, 0.2), transparent);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    bottom: 10%;
    left: 10%;
    animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

/* Services Grid */
.services-section {
    padding: 150px 0;
    position: relative;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.service-box {
    perspective: 1000px;
}

.box-inner {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.service-box:hover .box-inner {
    background: rgba(255,255,255,0.08);
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    border-color: var(--primary);
}

.box-icon {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.box-inner p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* References Slider */
.references-section {
    padding: 100px 0;
    overflow: hidden; /* Prevent any local overflow */
}

.logo-ticker {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 50px; /* Matching container padding */
}

/* Gradient fade on edges for premium look */
.logo-ticker::before, .logo-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.logo-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.ticker-track {
    display: flex;
    width: calc(250px * 44); /* 22 logos * 2 sets * fixed width */
    animation: ticker 52s linear infinite;
}

.logo-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-item img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: none; /* Always in original color */
    opacity: 1;
    transition: all 0.3s;
}

.logo-item:hover img {
    transform: scale(1.1);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 22)); }
}

@media (max-width: 768px) {
    .logo-ticker::before, .logo-ticker::after {
        width: 100px;
    }
}

/* Footer */
.agency-footer {
    padding: 100px 0 50px;
    background: rgba(0,0,0,0.5);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.2));
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.footer-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.5));
}

.footer-links li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary);
    font-weight: 700;
    transform: translateX(8px);
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text);
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient);
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text);
    margin: 30px 0 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
}

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

.footer-socials a {
    font-size: 1.4rem;
    color: var(--text-dim);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.footer-socials a:hover {
    color: var(--primary);
    transform: scale(1.4) translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.4));
}

/* Stock Icons Specific Styles */
.stock-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stock-links a {
    opacity: 0.6;
    transition: all 0.4s;
    filter: grayscale(1) invert(1);
}

.stock-links a:hover {
    opacity: 1;
    filter: grayscale(0) invert(0);
    transform: scale(1.2);
}

.social-img-icon {
    height: 18px;
    width: auto;
    filter: grayscale(1) invert(1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    vertical-align: middle;
}

.footer-socials a:hover .social-img-icon {
    filter: grayscale(0) invert(0);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-dim);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Works Ticker Section */
.portfolio-ticker-section {
    padding: 100px 0;
    overflow: hidden;
}

.works-ticker {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 50px 20px; /* Matching container padding */
}

.works-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: slide-left 40s linear infinite;
}

.work-item {
    width: 450px;
    text-decoration: none;
    color: white;
    transition: all 0.4s;
}

.work-thumb {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111;
}

.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.work-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    box-shadow: 0 0 30px var(--primary);
}

.work-item:hover .work-thumb img {
    transform: scale(1.1);
}

.work-item:hover .work-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.work-info {
    margin-top: 20px;
    padding: 0 10px;
}

.work-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.work-info span {
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Assuming duplicates cover half width */
}

@media (max-width: 768px) {
    .work-item {
        width: 300px;
    }
}

/* Contact Agency */
.contact-agency {
    padding: 150px 0;
}

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

.contact-text h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.agency-form {
    background: var(--glass);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
}

.f-group {
    margin-bottom: 25px;
}

.f-group input, .f-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s;
}

.f-group input:focus, .f-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Better for mobile */
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--glass);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.4s;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.blog-body {
    padding: 30px;
}

.blog-date {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.blog-body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.blog-body p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 15px;
    color: var(--primary);
}

.section-head.between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.showreel-section {
    padding: 150px 0;
    background: radial-gradient(circle at left, rgba(168, 85, 247, 0.05), transparent);
}

.showreel-wrapper {
    margin-top: 60px;
    border-radius: 40px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.video-container {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
/* Global Portfolio Grid & Cards */
.compact-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.work-card-compact {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 380px;
    background: #111;
    border: 1px solid var(--glass-border);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    text-decoration: none;
}

.work-card-compact:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.2);
}

.work-card-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.work-overlay-compact {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.work-play-small {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.4s;
}

.work-card-compact:hover .work-play-small {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.work-category-tag {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.work-title-compact {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Home Portfolio Preview Section */
.home-portfolio-preview {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg), #0f0f0f);
}

.section-header.with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.btn-outline-premium {
    padding: 12px 30px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.4s;
    background: rgba(255,255,255,0.02);
}

.btn-outline-premium:hover {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

@media (max-width: 768px) {
    .section-header.with-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .portfolio-filters {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .portfolio-filters::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}

/* Video Modal System */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    padding: 40px;
}

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

.modal-content {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .video-modal { padding: 15px; }
    .modal-close { top: -50px; font-size: 1.5rem; }
    
    /* Hero Mobile Adjustments */
    .hero-creative {
        height: 80vh;
        min-height: 500px;
        padding-top: 140px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    /* Navigation Mobile Fix */
    .nav-links {
        display: none !important; /* Force hide standard links */
    }
    
    .nav-links.mobile-active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 30%, #ff6b00 120%); /* Siyah ve Turuncu Karışımı */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 99999 !important;
        gap: 25px;
        animation: fadeIn 0.4s;
    }
    
    .nav-links.mobile-active a {
        font-size: 1.3rem;
        font-family: var(--font-body);
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.9) !important;
        transition: color 0.3s ease;
    }
    
    .nav-links.mobile-active a:hover {
        color: var(--primary) !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        color: white !important;
        cursor: pointer;
        z-index: 100000 !important;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.2);
    }

    /* Grid Adjustments */
    .service-cards-grid, 
    .compact-portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .work-card-compact {
        height: 350px;
    }
    
    /* Section Padding */
    section {
        padding: 100px 0 !important;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Animations for Mobile Menu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Specific Mobile Fixes for Ticker */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .ticker-track {
        animation-duration: 30s; /* Faster on small screens */
    }
    
    .logo-item {
        width: 150px;
        padding: 0 20px;
    }
    
    .logo-item img {
        max-width: 100px;
    }
}
