/*
                  _   _             _ _ _ _ _        _ 
                 | | | |           | (_|_|_) |      | |
  _ __ ___  _   _| |_| |_   _    __| |_ _ _| |_ __ _| |
 | '_ ` _ \| | | | __| | | | |  / _` | | | | __/ _` | |
 | | | | | | |_| | |_| | |_| | | (_| | | | | || (_| | |
 |_| |_| |_|\__,_|\__|_|\__,_|  \__,_|_| |_|\__\__,_|_|
                                      _/ |             
                                     |__/

Samet Mutlu | +05422419932 | mutludijital.com.tr
*/

:root {
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    
    --color-copper: #B87333;
    --color-copper-glow: rgba(184, 115, 51, 0.4);
    --color-cyan: #00A8E8;
    --color-cyan-glow: rgba(0, 168, 232, 0.4);
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-copper);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-copper-glow);
    transition: width 0.2s, height 0.2s;
}

/* Ambient Backgrounds */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.bg-copper { background: var(--color-copper); top: -200px; left: -100px; }
.bg-cyan { background: var(--color-cyan); top: 20%; right: -200px; }

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.text-gradient-copper {
    background: linear-gradient(135deg, #fff, var(--color-copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-cyan {
    background: linear-gradient(135deg, #fff, var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
}
.btn-primary:hover {
    background: var(--color-copper);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--color-copper-glow);
}
.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}
.btn-outline:hover {
    border-color: var(--color-copper);
    background: rgba(184, 115, 51, 0.1);
}
.btn-text {
    color: var(--text-muted);
    background: transparent;
    padding: 0;
}
.btn-text:hover {
    color: var(--color-cyan);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}
.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--text-main);
    text-decoration: none;
}
.brand { text-decoration: none; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}
.dropdown {
    position: relative;
}
.dropdown-content {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 150px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-content a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}
.dropdown-content a:hover {
    color: var(--color-cyan);
    padding-left: 5px;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.4) 50%, rgba(5,5,5,0.95) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 100px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-copper);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-copper);
}
.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Marquee */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}
.marquee {
    display: flex;
    white-space: nowrap;
}
.marquee-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: scroll 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}
.marquee-content i {
    color: var(--color-cyan);
    font-size: 1rem;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Bento Grid */
.section-padding {
    padding: 8rem 0;
}
.section-header {
    margin-bottom: 4rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}
.bento-box {
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.bento-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}
.bento-wide {
    grid-column: span 3;
}
.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-copper);
    margin-bottom: 1.5rem;
}
.bento-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.bento-large h3 {
    font-size: 2.5rem;
}
.bento-content p {
    color: var(--text-muted);
}
.bento-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cix Floating Actions */
.cix-floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}
.cix-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.wa-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}
.phone-btn {
    background: linear-gradient(135deg, var(--color-copper), #8A5A2B);
}
.cix-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s;
}
.cix-btn:hover {
    transform: scale(1.1) translateY(-5px);
}
.cix-btn:hover::before {
    opacity: 0.8;
}
.cix-tooltip {
    position: absolute;
    right: 120%;
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    white-space: nowrap;
}
.cix-btn:hover .cix-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 5rem;
    background: #020202;
    position: relative;
    z-index: 1;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.social-links a:hover {
    background: var(--color-copper);
    border-color: var(--color-copper);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.link-group h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
}
.link-group a:hover {
    color: var(--color-cyan);
    padding-left: 5px;
}
.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 2rem 0;
    text-align: center;
}
.signature-container {
    display: flex;
    justify-content: center;
}

/* Page Header (Inner Pages) */
.page-header {
    padding: 150px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,168,232,0.05) 100%);
}
.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Story Section (Hakkımızda) */
.story-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}
.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 0;
    transform: scale(1.05); /* Slight zoom for dramatic effect */
}
.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.8) 100%);
    z-index: 1;
}
.relative-z {
    position: relative;
    z-index: 2;
}
.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    border-radius: 32px;
}
.story-text {
    text-align: left;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Video Showcase Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    aspect-ratio: 16/9;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.video-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--color-cyan);
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.2);
}
.video-large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}
.video-card:hover .gallery-video {
    transform: scale(1.05);
}

/* Process Layout */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.process-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}
.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-copper);
    box-shadow: 0 15px 30px rgba(184, 115, 51, 0.2);
}
.process-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.2) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}
.process-card:hover .process-card-overlay {
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 60%, transparent 100%);
}
.process-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}
.process-step-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-copper);
    margin-bottom: 0.5rem;
}
.process-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.process-card-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 1rem;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}
.faq-question:hover {
    color: var(--color-copper);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(45deg);
    color: var(--color-cyan);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Responsive Updates */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-wide {
        grid-column: span 2;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .process-card {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .story-content {
        padding: 2rem;
    }
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }
    .hero-visual {
        margin-top: 3rem;
        justify-content: center;
    }
    .hero-desc {
        margin: 0 auto 2.5rem;
    }
    .hero-cta {
        justify-content: center;
    }
    .bento-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        display: flex;
    }
    .bento-large, .bento-wide {
        grid-column: span 1;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .process-card {
        min-height: 350px;
    }
}
@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    .bento-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}
