/* style.css - Premium Açık (Light) Tema Tasarım Sistemi */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Oswald:wght@700&display=swap');

:root {
    --bg-color: #F8F9FD;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(24, 25, 38, 0.07);
    --text-primary: #12121E;
    --text-secondary: #585A72;
    --primary-gradient: linear-gradient(135deg, #0707ff 0%, #0000b3 100%);
    --secondary-gradient: linear-gradient(135deg, #4d4dff 0%, #0707ff 100%);
    --neon-pink: #0707ff;
    --neon-blue: #0707ff;
    --neon-purple: #0000b3;
    --success: #00B159;
    --warning: #FE9A00;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-neon: 0 8px 25px rgba(7, 7, 255, 0.25);
    --input-bg: #FFFFFF;
}

/* Temel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: clip;
    width: 100%;
}

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

.page-wrapper {
    position: relative;
    width: 100%;
    overflow-x: clip;
}

/* Custom Mouse Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--neon-pink);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

/* Arkaplan Işımaları (Soft Gradients) */
.bg-glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-2 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 15%;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #E1E3ED;
    border-radius: 5px;
    border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}



/* Header & Navigasyon */
header {
    width: 100%;
    padding: 25px 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    padding: 15px 8%;
    background: rgba(248, 249, 253, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(24, 25, 38, 0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    color: #0707ff; /* Solid system color */
    -webkit-text-fill-color: #0707ff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: #0707ff;
    -webkit-text-fill-color: #0707ff;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #383A50;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--neon-pink);
}

.btn-nav {
    padding: 10px 22px;
    border-radius: 50px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(24, 25, 38, 0.15);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ========================================== */
/* DİNAMİK HERO SLIDER YAZILIMI               */
/* ========================================== */



.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    overflow: hidden;
    margin-top: 0;
    z-index: 2;
    padding: 0 !important; /* Reset section padding for full screen display */
}

.hero-slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 80px 8% 0 8%;
    background-size: cover;
    background-position: center;
}



.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

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

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(248, 249, 253, 0.95) 0%, rgba(248, 249, 253, 0.8) 50%, rgba(248, 249, 253, 0.3) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    transform: translateY(30px);
    transition: transform 0.8s ease-in-out;
}

.hero-slide.active .hero-slide-content {
    transform: translateY(0);
}

.hero-slide-tag {
    background: rgba(255, 0, 127, 0.08);
    color: var(--neon-pink);
    border: 1px solid rgba(255, 0, 127, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-slide h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-slide p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-weight: 500;
}

/* Slider Kontrolleri */
.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    color: var(--text-primary);
}

.slider-arrow-btn:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev { left: 25px; }
.slider-arrow-next { right: 25px; }

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(24, 25, 38, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--neon-pink);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(255,0,127,0.3);
}

/* ========================================== */
/* STATS BAR                                  */
/* ========================================== */

.stats-bar {
    width: 84%;
    margin: 40px auto 80px auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 4;
    box-shadow: var(--shadow-soft);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Bölüm Tasarımları */
section {
    padding: 90px 8%;
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
}

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

.section-tag {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: #0707ff !important;
    background-color: rgba(7, 7, 255, 0.05);
    border: 1px solid rgba(7, 7, 255, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-primary);
}

/* Hizmetlerimiz - Premium Akordeon ve 3D Tasarım */
.services-premium-section {
    background-color: #000000; /* Pure black background */
    padding: 120px 8%;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Disable background glow for pure black services section */
.services-premium-section::after {
    display: none;
}

.services-premium-section::before {
    display: none;
}

.services-giant-title {
    font-family: var(--font-heading);
    font-size: clamp(55px, 7vw, 120px);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-indent: 0.1em; /* Offsets the letter-spacing on the last character for perfect centering */
    line-height: 1.1;
    color: #FFFFFF; /* Pure white */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.12);
    user-select: none;
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .services-giant-title {
        font-size: clamp(32px, 6vw, 55px);
        letter-spacing: 0.05em;
        text-indent: 0.05em;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .services-giant-title {
        font-size: clamp(22px, 5.5vw, 32px);
        letter-spacing: 0.02em;
        text-indent: 0.02em;
    }
}

.services-premium-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.services-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-3d-graphic {
    max-width: 100%;
    height: auto;
    filter: none; /* Shadow/light effect removed */
    /* Float animation disabled for static display */
}

.services-accordion-col {
    width: 100%;
}

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 0px; /* Gap removed for stacked items with divider line */
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Thin bottom divider line */
    border-radius: 0;
    padding: 24px 0;
    transition: var(--transition-smooth);
    opacity: 1; /* Inactive opacity removed for clean visibility */
}

.accordion-item:hover {
    opacity: 1;
    background: transparent;
}

.accordion-item.active {
    opacity: 1;
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: none; /* Shadow removed */
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-title-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0707ff; /* Changed to system color */
    transition: var(--transition-smooth);
    box-shadow: none;
}

.accordion-icon svg,
.accordion-icon i {
    width: 24px;
    height: 24px;
}

.accordion-item.active .accordion-icon {
    background: transparent;
    color: #0707ff; /* Changed to system color */
    border-color: transparent;
    box-shadow: none;
}

.accordion-title-block h3 {
    font-family: var(--font-heading);
    font-size: 24px; /* Slightly larger title like the screenshot */
    font-weight: 700;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-title-block h3 {
    color: #FFFFFF;
}

.accordion-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Thin circle border */
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Let clicks pass through to header */
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-toggle-btn {
    border-color: rgba(255, 255, 255, 0.4);
}

.toggle-icon {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 300;
    transition: var(--transition-smooth);
    pointer-events: none;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item.active .toggle-icon {
    color: #FFFFFF;
}

.accordion-content {
    padding-left: 44px; /* Aligned to title block text */
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.6); /* Grayish description text */
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
}

/* Vibe Meter */
.vibe-widget-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.vibe-controls {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
}

.slider-label span:last-child {
    color: var(--neon-blue);
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(24, 25, 38, 0.08);
    border-radius: 10px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--neon-pink);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
    transition: transform 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.vibe-result-box {
    text-align: center;
    padding: 30px;
    background: rgba(24, 25, 38, 0.02);
    border-radius: 16px;
    border: 1px dashed rgba(24, 25, 38, 0.1);
}

.vibe-score-title {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.vibe-score-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 4px 15px rgba(255,0,127,0.15);
    margin-bottom: 10px;
}

.vibe-feedback {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Referanslar (Testimonials) */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 15px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    padding: 45px 40px;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-soft);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: rgba(24, 25, 38, 0.03);
    font-family: var(--font-heading);
    line-height: 1;
}

.rating-stars {
    color: var(--warning);
    font-size: 18px;
    display: flex;
    gap: 4px;
}

.feedback-text {
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    color: #2D2E3E;
    font-weight: 500;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-pink);
    object-fit: cover;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(24, 25, 38, 0.12);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--neon-pink);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255,0,127,0.3);
}

/* İletişim */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.25;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 114, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 20px;
    border: 1px solid rgba(0, 114, 255, 0.1);
}

.info-text h4 {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.info-text p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid rgba(24, 25, 38, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.12);
    border: 1px solid var(--neon-pink);
}

select.form-control option {
    background-color: #fff;
    color: var(--text-primary);
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    display: none;
}

.alert-success {
    background: rgba(0, 177, 89, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 177, 89, 0.15);
}

.alert-error {
    background: rgba(255, 0, 127, 0.08);
    color: var(--neon-pink);
    border: 1px solid rgba(255, 0, 127, 0.15);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 0, 127, 0.35);
}

.btn-secondary {
    background: rgba(24, 25, 38, 0.04);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(24, 25, 38, 0.08);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(24, 25, 38, 0.08);
    transform: translateY(-3px);
}

/* Footer */
footer {
    border-top: 1px solid rgba(24, 25, 38, 0.05);
    background-color: #FFFFFF;
    padding: 60px 8% 30px 8%;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-box p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 350px;
    font-size: 15px;
}

.footer-links-box h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-box a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 15px;
    font-weight: 500;
}

.footer-links-box a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(24, 25, 38, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(24, 25, 38, 0.06);
}

.social-icon:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.footer-bottom {
    border-top: 1px solid rgba(24, 25, 38, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ========================================== */
/* BEYAZ GÖRÜNÜMLÜ ADMIN PANELİ (LIGHT CMS)   */
/* ========================================== */

.admin-layout {
    display: flex;
    min-height: 100vh;
    background-color: #F3F4F9;
}

/* Açık Sidebar */
.admin-sidebar {
    width: 260px;
    background: #FFFFFF;
    border-right: 1px solid rgba(24, 25, 38, 0.06);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
    box-shadow: 4px 0 20px rgba(0,0,0,0.01);
}

.admin-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 40px;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(24, 25, 38, 0.06);
    padding-bottom: 20px;
}

.admin-logo span {
    color: var(--neon-blue);
}

.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.admin-menu-link:hover, .admin-menu-link.active {
    color: var(--neon-pink);
    background: rgba(255, 0, 127, 0.04);
}

.admin-menu-link.active {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: var(--shadow-neon);
}

.admin-menu-link.active:hover {
    color: #fff;
}

.admin-logout-btn {
    margin-top: auto;
    background: rgba(255, 0, 127, 0.05);
    color: var(--neon-pink);
    border: 1px solid rgba(255, 0, 127, 0.1);
}

.admin-logout-btn:hover {
    background: var(--neon-pink);
    color: #fff;
}

/* Admin Ana Ekran */
.admin-main {
    flex-grow: 1;
    margin-left: 260px;
    padding: 40px 5%;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(24, 25, 38, 0.06);
    padding-bottom: 20px;
}

.admin-title h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.admin-title p {
    color: var(--text-secondary);
    font-size: 14px;
}

.admin-user-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
}

.admin-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

/* Metrik Kartlar */
.admin-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.metric-card {
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.06);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.metric-icon.pink {
    background: rgba(255, 0, 127, 0.05);
    color: var(--neon-pink);
    border: 1px solid rgba(255, 0, 127, 0.1);
}

.metric-icon.blue {
    background: rgba(0, 114, 255, 0.05);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 114, 255, 0.1);
}

.metric-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
}

.metric-info p {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Admin Kart & Tablo */
.admin-card {
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.06);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: #F8F9FD;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(24, 25, 38, 0.08);
}

.admin-table td {
    padding: 16px 18px;
    font-size: 14px;
    border-bottom: 1px solid rgba(24, 25, 38, 0.05);
    color: var(--text-primary);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(0,0,0,0.005);
}

.badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-new { background: rgba(0, 114, 255, 0.08); color: var(--neon-blue); }
.badge-discussion { background: rgba(254, 154, 0, 0.08); color: var(--warning); }
.badge-won { background: rgba(0, 177, 89, 0.08); color: var(--success); }
.badge-lost { background: rgba(255, 0, 127, 0.08); color: var(--neon-pink); }

.action-btns {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: #fff;
    font-size: 13px;
}

.btn-edit { background: rgba(0, 114, 255, 0.08); color: var(--neon-blue); border: 1px solid rgba(0, 114, 255, 0.12); }
.btn-edit:hover { background: var(--neon-blue); color: #fff; }

.btn-delete { background: rgba(255, 0, 127, 0.08); color: var(--neon-pink); border: 1px solid rgba(255, 0, 127, 0.12); }
.btn-delete:hover { background: var(--neon-pink); color: #fff; }

/* Login Page Modifikasyonları */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    background-color: var(--bg-color);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.08);
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ========================================== */
/* MOBİL UYUMLULUK                            */
/* ========================================== */

@media (max-width: 992px) {
    header {
        padding: 15px 5%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: left 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
        z-index: 999;
        border-top: 1px solid rgba(24,25,38,0.06);
        opacity: 0;
        visibility: hidden;
    }
    
    nav.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .services-premium-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-image-col {
        order: 2;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .admin-sidebar {
        width: 70px;
        padding: 20px 10px;
    }
    
    .admin-logo {
        font-size: 16px;
        padding-bottom: 15px;
    }
    
    .admin-logo span { display: none; }
    
    .admin-menu-link span {
        display: none;
    }
    
    .admin-menu-link {
        justify-content: center;
        padding: 12px;
    }
    
    .admin-main {
        margin-left: 70px;
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider-wrapper {
        height: 80vh;
    }
    
    .hero-slide {
        padding: 0 5%;
    }
    
    .stats-bar {
        width: 90%;
        flex-direction: column;
        gap: 30px;
        padding: 30px;
        margin-top: 20px;
    }
    
    section {
        padding: 80px 5%;
    }
    
    .vibe-widget-container {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 35px 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .slider-arrow-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-prev { left: 10px; }
    .slider-arrow-next { right: 10px; }
}

/* ========================================== */
/* MARQUEE SERVICE TICKER                     */
/* ========================================== */

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: #FAF9F6;
    border-top: 1px solid rgba(24, 25, 38, 0.05);
    border-bottom: 1px solid rgba(24, 25, 38, 0.05);
    padding: 20px 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
}

.ticker-star {
    flex-shrink: 0;
    color: var(--text-primary);
    margin: 0 10px;
    opacity: 0.8;
}

@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.3333%, 0, 0);
    }
}

/* ========================================== */
/* PARALLAX IMAGE DIVIDER                     */
/* ========================================== */

.parallax-divider {
    width: 100%;
    height: 800px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 30, 0.2);
    z-index: 1;
}

/* ========================================== */
/* MINIMALIST EDITORIAL ABOUT SECTION         */
/* ========================================== */

.about-section-minimal {
    position: relative;
    z-index: 2;
    background-color: #FAF9F6; /* Cream/off-white background matching the screenshot */
    padding: 130px 8%;
    border-top: 1px solid rgba(24, 25, 38, 0.04);
    border-bottom: 1px solid rgba(24, 25, 38, 0.04);
    overflow: hidden;
}

/* Background guide lines */
.minimal-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 0;
    padding: 0 8%;
}

.minimal-grid-lines span {
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, rgba(24, 25, 38, 0.04), rgba(24, 25, 38, 0.04) 4px, transparent 4px, transparent 8px); /* Subtle vertical dotted guide lines */
}

.about-minimal-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    max-width: 1250px;
    margin: 0 auto;
    align-items: flex-start;
}

.about-min-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-min-logo {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 900;
    color: #12121E;
    letter-spacing: -2.5px;
    line-height: 0.9;
}

.about-min-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.about-min-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.about-min-statement {
    font-family: var(--font-heading);
    font-size: clamp(23px, 2.5vw, 34px);
    font-weight: 700;
    line-height: 1.35;
    color: #12121E;
    letter-spacing: -0.5px;
}

.about-min-statement p {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    margin-bottom: 0;
}

.highlight-blue {
    color: #0707ff; /* Premium brand cobalt blue */
}

/* Bordered button */
.btn-minimal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: transparent;
    color: #12121E;
    border: 1px solid rgba(24, 25, 38, 0.15);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.btn-minimal-cta:hover {
    border-color: #0707ff;
    color: #0707ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 7, 255, 0.08);
}

/* Mobile responsive fallbacks */
@media (max-width: 992px) {
    .parallax-divider {
        background-attachment: scroll;
        height: 500px;
    }
    
    .about-section-minimal {
        padding: 80px 5%;
    }
    
    .about-minimal-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-min-logo {
        font-size: 52px;
        letter-spacing: -1.5px;
    }
    
    .about-min-statement {
        font-size: 23px;
        line-height: 1.4;
    }
    
    .minimal-grid-lines {
        padding: 0 5%;
    }
}

/* ========================================== */
/* MINIMALIST EDITORIAL BLOG SECTION          */
/* ========================================== */

.blog-section {
    position: relative;
    z-index: 2;
    background-color: #FAF9F6; /* Cream background matching about us */
    padding: 130px 8%;
    border-top: 1px solid rgba(24, 25, 38, 0.04);
    border-bottom: 1px solid rgba(24, 25, 38, 0.04);
    overflow: hidden;
}

.blog-section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.blog-giant-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: #12121E;
    text-align: left;
    margin-bottom: 15px;
    user-select: none;
}

.blog-section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blog-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4-column grid */
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-card {
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.06);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 114, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.blog-card-image-box {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-card-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-neon);
    z-index: 3;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #12121E;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-title {
    color: var(--neon-blue);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.blog-card-link i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    color: var(--neon-pink);
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

/* ========================================== */
/* BLOG MODAL POPUP                           */
/* ========================================== */

.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 10, 0.6);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 30px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.blog-modal-card {
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.08);
    border-radius: 28px;
    width: 100%;
    max-width: 850px;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(24,25,38,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.blog-modal-close:hover {
    background: var(--neon-pink);
    color: #FFFFFF;
    border-color: transparent;
    transform: rotate(90deg);
}

.blog-modal-image-box {
    position: relative;
    width: 100%;
    height: 380px;
    flex-shrink: 0;
}

.blog-modal-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-modal-content-wrapper {
    padding: 45px 50px;
}

.blog-modal-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    line-height: 1.25;
    color: #12121E;
    margin-bottom: 25px;
}

.blog-modal-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-modal-body p {
    margin-bottom: 20px;
}

.blog-modal-body h1, .blog-modal-body h2, .blog-modal-body h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin: 30px 0 15px 0;
}

/* Rich Text Paragraph formatting adjustments */
.accordion-desc-rich, .feedback-text-rich {
    font-size: 15px;
    line-height: 1.6;
    color: inherit;
}
.accordion-desc-rich p, .feedback-text-rich p {
    margin-bottom: 10px;
}
.accordion-desc-rich p:last-child, .feedback-text-rich p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive Blog */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .blog-modal-content-wrapper {
        padding: 30px 20px;
    }
    
    .blog-modal-image-box {
        height: 250px;
    }
}

/* ========================================== */
/* REFERANSLARIMIZ MARQUEE CLIENT LOGO TICKER */
/* ========================================== */

.partners-ticker-section {
    position: relative;
    z-index: 2;
    background-color: #FAF9F6;
    padding: 60px 8% 90px 8%;
    border-bottom: 1px solid rgba(24, 25, 38, 0.04);
    overflow: hidden;
}

.partners-ticker-header {
    margin-bottom: 30px;
    padding-left: 15px;
}

.partners-ticker-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    margin: 0;
    position: relative;
}

.partners-ticker-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

.partners-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.partners-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: partners-ticker-scroll 25s linear infinite;
}

.partners-ticker-wrapper:hover .partners-ticker-track {
    animation-play-state: paused;
}

.partner-logo-card {
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.05);
    border-radius: 20px;
    width: 200px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    padding: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: var(--transition-smooth);
    user-select: none;
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1); /* Black and white filter */
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.partner-logo-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 114, 255, 0.15);
    box-shadow: 0 12px 25px rgba(0, 114, 255, 0.06);
}

.partner-logo-card:hover img {
    filter: grayscale(0); /* Restore original colors on hover */
    opacity: 1;
}

@keyframes partners-ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.3333%, 0, 0);
    }
}

/* ========================================== */
/* CUSTOM DARK FOOTER & glowing SIGNATURE     */
/* ========================================== */

.custom-dark-footer {
    background-color: #121214 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 90px 8% 40px 8% !important;
    color: rgba(255, 255, 255, 0.7) !important;
    position: relative;
    z-index: 5;
}

.dark-theme-logo {
    background: linear-gradient(135deg, #0707ff 0%, #4d4dff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.dark-footer-text {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 15px;
    line-height: 1.6;
}

.dark-footer-title {
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.dark-footer-link {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.dark-footer-link:hover {
    color: var(--neon-blue) !important;
    padding-left: 6px;
}

.footer-bottom-signature-area {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 40px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-sig-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.sig-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.sig-social-btn:hover {
    background: #FFFFFF;
    color: #121214;
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

.sig-social-btn i {
    width: 18px;
    height: 18px;
}

.admin-panel-lock-link {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.admin-panel-lock-link:hover {
    color: var(--neon-pink);
}

.admin-panel-lock-link i {
    width: 12px;
    height: 12px;
}

.footer-sig-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.footer-sig-text {
    font-family: var(--font-heading);
    font-size: clamp(38px, 9.5vw, 115px);
    font-weight: 900;
    color: #0707ff;
    line-height: 0.9;
    letter-spacing: -2.5px;
    margin: 0;
    text-shadow: 0 0 40px rgba(7, 7, 255, 0.65), 0 0 15px rgba(7, 7, 255, 0.3);
    user-select: none;
}

.sig-back-to-top {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121214;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.sig-back-to-top:hover {
    transform: translateY(-5px);
    background: #0707ff;
    color: #FFFFFF;
    box-shadow: 0 12px 30px rgba(7, 7, 255, 0.45);
}

.sig-back-to-top i {
    width: 20px;
    height: 20px;
}

.footer-sig-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 25px;
}

/* ========================================== */
/* PORTFOLIO GRID AND DETAILS MODAL           */
/* ========================================== */

.portfolio-hero {
    background-color: var(--bg-color);
    padding: 160px 8% 60px 8%;
    border-bottom: 1px solid rgba(24, 25, 38, 0.03);
    position: relative;
    z-index: 2;
}

.portfolio-grid-section {
    background-color: var(--bg-color);
    padding: 40px 8% 120px 8%;
    position: relative;
    z-index: 2;
}

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

.portfolio-card {
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.05);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
    transition: var(--transition-smooth);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 114, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 114, 255, 0.08);
}

.portfolio-card-image-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.06);
}

.portfolio-card-logo-badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.05);
    border-radius: 16px;
    padding: 8px;
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    z-index: 5;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-card-logo-badge {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: rgba(0, 114, 255, 0.15);
}

.portfolio-card-logo-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.portfolio-card-content {
    padding: 45px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-card-company {
    font-size: 12px;
    font-weight: 800;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    color: #12121E;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-card-title {
    color: var(--neon-blue);
}

.portfolio-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.portfolio-card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.portfolio-card-link i {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.portfolio-card-link:hover {
    color: var(--neon-pink);
}

.portfolio-card-link:hover i {
    transform: translateX(4px);
}

/* split layout in portfolio modal */
.portfolio-modal-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 500px;
    background: #FFFFFF;
}

.portfolio-modal-image-col {
    width: 100%;
    height: 100%;
    position: relative;
    background: #FAF9F6;
}

.portfolio-modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-modal-content-col {
    padding: 45px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 75vh;
}

.portfolio-modal-company-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.portfolio-modal-logo-box {
    background: #FAF9F6;
    border: 1px solid rgba(24, 25, 38, 0.05);
    border-radius: 12px;
    padding: 6px;
    width: 80px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.portfolio-modal-company-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.portfolio-modal-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #12121E;
    margin-bottom: 15px;
    line-height: 1.25;
}

.portfolio-modal-divider {
    height: 1px;
    background: rgba(24, 25, 38, 0.08);
    margin-bottom: 20px;
    width: 100%;
}

.portfolio-modal-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex-grow: 1;
}

.portfolio-modal-body p {
    margin-bottom: 15px;
}

.portfolio-modal-body h1, .portfolio-modal-body h2, .portfolio-modal-body h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin: 25px 0 10px 0;
}

.ql-editor-preview p {
    margin-bottom: 12px;
}

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

@media (max-width: 992px) {
    .portfolio-modal-split {
        grid-template-columns: 1fr;
    }
    
    .portfolio-modal-image-col {
        height: 280px;
    }
    
    .portfolio-modal-content-col {
        padding: 30px 20px;
        max-height: none;
    }
    
    .footer-sig-top-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-hero {
        padding: 120px 5% 40px 5%;
    }
    
    .portfolio-grid-section {
        padding: 30px 5% 80px 5%;
    }
    
    .footer-sig-main-row {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: flex-start;
    }
    
    .sig-back-to-top {
        align-self: flex-end;
    }
    
    .footer-sig-copyright {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* ========================================== */
/* PORTFOLIO FILTER PILLS                     */
/* ========================================== */

.filter-pill {
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.08);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.filter-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 25, 38, 0.15);
    color: var(--text-primary);
}

.filter-pill.active {
    background: #1A1A1A;
    color: #FFFFFF;
    border-color: #1A1A1A;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.filter-pill.active:hover {
    background: #12121E;
    border-color: #12121E;
    color: #FFFFFF;
}

/* ========================================== */
/* BUZZSPARK CUSTOM DIALOG ALERTS & CONFIRMS  */
/* ========================================== */

.buzz-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 10, 0.45);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    animation: buzzFadeIn 0.3s ease;
    padding: 20px;
}

.buzz-dialog-card {
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.08);
    border-radius: 24px;
    padding: 35px 30px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.25s;
    opacity: 0;
}

.buzz-dialog-overlay.active .buzz-dialog-card {
    transform: scale(1);
    opacity: 1;
}

.buzz-dialog-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.buzz-dialog-message {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.buzz-dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.buzz-dialog-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    border: none;
    outline: none;
}

.buzz-dialog-btn-cancel {
    background: rgba(24, 25, 38, 0.04);
    color: var(--text-primary);
    border: 1px solid rgba(24, 25, 38, 0.08);
}

.buzz-dialog-btn-cancel:hover {
    background: rgba(24, 25, 38, 0.08);
    transform: translateY(-2px);
}

.buzz-dialog-btn-ok {
    background: #1A1A1A;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.buzz-dialog-btn-ok:hover {
    background: #0707ff;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 7, 255, 0.25);
}

@keyframes buzzFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================== */
/* BUZZSPARK STANDALONE ABOUT PAGE STYLES    */
/* ========================================== */

.about-page-main {
    position: relative;
    background-color: var(--bg-color);
}

/* Hero Section */
.about-hero-section {
    width: 100%;
    padding: 80px 8% 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-pre-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: #0707ff !important;
    background-color: rgba(7, 7, 255, 0.05);
    border: 1px solid rgba(7, 7, 255, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-main-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-lead-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

.about-hero-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin: 30px auto 0;
}

/* Details Section */
.about-details-section {
    padding: 40px 8% 60px;
    position: relative;
    z-index: 2;
}

.about-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-img-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    pointer-events: none;
}

.about-section-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.about-rich-text p:last-child {
    margin-bottom: 0;
}

.about-rich-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Mission & Vision Section */
.about-mv-section {
    padding: 60px 8%;
    position: relative;
    z-index: 2;
}

.about-mv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-mv-card {
    padding: 50px 40px;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.about-mv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(7, 7, 255, 0.2);
    box-shadow: 0 20px 40px rgba(7, 7, 255, 0.05);
}

.mv-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(7, 7, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.about-mv-card:hover .mv-icon-wrapper {
    background: var(--primary-gradient);
    color: #FFFFFF;
    box-shadow: var(--shadow-neon);
}

.mv-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.about-mv-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-mv-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section */
.about-values-section {
    padding: 80px 8% 100px;
    position: relative;
    z-index: 2;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-values-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.about-values-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid rgba(24, 25, 38, 0.04);
    transition: var(--transition-smooth);
}

.value-card:hover {
    background: #FFFFFF;
    box-shadow: var(--shadow-soft);
    border-color: transparent;
    transform: translateY(-5px);
}

.value-num {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-num {
    opacity: 0.8;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* Responsive about page design */
@media (max-width: 992px) {
    .about-main-title {
        font-size: 40px;
    }
    
    .about-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-details-img-box {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================== */
/* BUZZSPARK STANDALONE SERVICES PAGE STYLES */
/* ========================================== */

.services-page-main {
    position: relative;
    background-color: var(--bg-color);
}

/* Services Hero Section */
.services-hero-section {
    width: 100%;
    padding: 80px 8% 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-pre-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: #0707ff !important;
    background-color: rgba(7, 7, 255, 0.05);
    border: 1px solid rgba(7, 7, 255, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-main-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.services-lead-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

.services-hero-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin: 30px auto 0;
}

/* Services Grid Section */
.services-grid-section {
    padding: 40px 8% 60px;
    position: relative;
    z-index: 2;
}

.services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-premium-card {
    padding: 50px 40px;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(7, 7, 255, 0.2);
    box-shadow: 0 25px 50px rgba(7, 7, 255, 0.06);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(7, 7, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-premium-card:hover .service-icon-box {
    background: var(--primary-gradient);
    color: #FFFFFF;
    box-shadow: var(--shadow-neon);
}

.service-icon-box svg {
    width: 28px;
    height: 28px;
}

.service-premium-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-premium-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 30px;
}

.service-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    cursor: pointer;
}

.service-more-info {
    transition: var(--transition-smooth);
}

.service-premium-card:hover .service-more-info {
    color: var(--neon-pink);
    transform: translateX(3px);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.service-premium-card:hover .arrow-icon {
    color: var(--neon-pink);
    transform: translateX(5px);
}

/* Process Section */
.process-flow-section {
    padding: 80px 8%;
    position: relative;
    z-index: 2;
}

.process-flow-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.process-flow-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.process-flow-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-step {
    padding: 35px 25px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid rgba(24, 25, 38, 0.03);
    transition: var(--transition-smooth);
}

.process-step:hover {
    background: #FFFFFF;
    box-shadow: var(--shadow-soft);
    border-color: transparent;
    transform: translateY(-5px);
}

.step-num-box {
    margin-bottom: 20px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    transition: var(--transition-smooth);
}

.process-step:hover .step-num {
    opacity: 0.8;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* Services CTA Section */
.services-cta-section {
    padding: 60px 8% 100px;
    position: relative;
    z-index: 2;
}

.services-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-cta-box {
    padding: 60px 40px;
    border-radius: 30px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(7, 7, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.cta-inner-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-cta-box h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(7, 7, 255, 0.35);
}

.btn-cta svg {
    width: 18px;
    height: 18px;
}

/* Responsive design for services page */
@media (max-width: 992px) {
    .services-main-title {
        font-size: 40px;
    }
    
    .services-premium-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-cta-box h2 {
        font-size: 28px;
    }
}

/* ========================================== */
/* BUZZSPARK PHYSICS SERVICES SHOWCASE STYLES */
/* ========================================== */

/* Header & Typography Matching Reference Image */
.services-interactive-header {
    width: 100%;
    padding: 60px 8% 20px;
    background: #FFFFFF;
}

.interactive-header-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left; /* Referans görseldeki gibi sola yaslı */
}

.interactive-pre-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #12121E;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.interactive-main-title {
    font-family: var(--font-heading);
    font-size: 64px; /* Dev editoryal başlık */
    font-weight: 900;
    color: #000000;
    line-height: 1.05;
    letter-spacing: -3px;
    text-transform: uppercase;
}

/* Arena Kapsayıcı */
.services-arena-section {
    padding: 0 8% 40px;
    background: #FFFFFF;
}

.services-arena-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-interactive-arena {
    width: 100%;
    height: 580px; /* Geniş alan */
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(24, 25, 38, 0.05);
}

/* Fizik Topları */
.physics-ball {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    user-select: none;
    cursor: grab;
    will-change: transform;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(24, 25, 38, 0.06);
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.physics-ball span {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    pointer-events: none;
    max-width: 76%;
    max-height: 76%;
    display: inline-block;
    word-wrap: break-word;
    overflow: visible;
}

.physics-ball:active {
    cursor: grabbing;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

/* Dikey Başlık Biçimlendirmesi (Referans görseldeki gibi) */
.physics-ball.vertical-text span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    max-height: 76%;
    max-width: 76%;
}

/* Zemin Şeritleri */
.arena-floor-stripes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    pointer-events: none;
    background: #FFFFFF;
    border-top: 2px solid #000000;
}

.arena-floor-stripes span {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #000000;
}

.arena-tip-text {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
}

/* Detay Kartı Bölümü */
.service-detail-section {
    padding: 40px 8% 80px;
    background: #FFFFFF;
}

.service-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Başlangıç Placeholder Kartı */
.detail-placeholder-card {
    padding: 40px;
    text-align: center;
    border-radius: 24px;
    border: 1px dashed rgba(24, 25, 38, 0.15);
    background: rgba(248, 249, 253, 0.5);
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 15px;
}

.detail-placeholder-card p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hizmet Detay Kartı */
.service-detail-card {
    padding: 50px 40px;
    border-radius: 28px;
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-detail-card.active {
    opacity: 1;
    transform: translateY(0);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(24, 25, 38, 0.06);
    padding-bottom: 25px;
}

.detail-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(7, 7, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
}

.detail-icon-box svg {
    width: 30px;
    height: 30px;
}

.detail-badge {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--neon-pink);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 5px;
}

.detail-title-box h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: #000000;
}

.detail-card-body p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.detail-card-footer {
    display: flex;
    justify-content: flex-start;
}

.btn-detail-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-smooth);
}

.btn-detail-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 7, 255, 0.3);
}

/* Mobil Ekran Responsive Ayarları */
@media (max-width: 768px) {
    .interactive-main-title {
        font-size: 40px;
        letter-spacing: -1.5px;
    }
    
    .services-interactive-arena {
        height: 480px;
    }
    
    .physics-ball span {
        font-size: 14px;
    }
    
    .service-detail-card {
        padding: 30px 20px;
    }
    
    .detail-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ========================================== */
/* BUZZSPARK INTERACTIVE STACKING STEPS       */
/* ========================================== */

.services-steps-section {
    position: relative;
    width: 100%;
    height: 2900px; /* Kaydırma derinliği sağlayan yüksek scroll track */
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: visible;
}

.steps-section-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 6%;
    height: 100%;
    position: relative;
    overflow: visible;
}

.steps-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 130px;
    align-items: center; /* Dikeyde merkeze hizala */
    position: sticky;
    top: 100px; /* Viewport'ta kilitlenme noktası */
    height: calc(100vh - 120px); /* Ekran yüksekliğine göre sabitle */
    overflow: visible;
}

/* Sol Taraf: Visual Panel (Artık kendisi sticky değil, üst grid sticky) */
.steps-sticky-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.step-huge-bg-text {
    font-family: 'Oswald', sans-serif;
    font-size: 110px;
    font-weight: 700;
    color: #000000;
    position: absolute;
    left: 8%;
    top: 5%;
    z-index: 5;
    letter-spacing: -4px;
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
    text-transform: uppercase;
}

.steps-3d-container {
    position: relative;
    width: 100%;
}

/* Küre (Sphere) Tasarımı (Referans görseldeki koyu gri gölgeli küre) */
.steps-physics-sphere {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    /* 3D derinlik hissi veren gradyan */
    background: radial-gradient(circle at 35% 35%, #5a5d64 0%, #202226 70%, #0d0e10 100%);
    box-shadow: 
        inset 2px 2px 5px rgba(255, 255, 255, 0.15),
        inset -5px -5px 12px rgba(0, 0, 0, 0.7),
        0 15px 25px rgba(0, 0, 0, 0.35);
    z-index: 10;
    /* Pürüzsüz sekme ve yuvarlanma animasyon geçişi */
    transition: left 0.85s cubic-bezier(0.25, 1.4, 0.5, 1.05), top 0.85s cubic-bezier(0.25, 1.4, 0.5, 1.05);
}

/* Kürenin Step Basamaklarına Göre Konumları (Geometri üzerindeki basamaklar) */
.steps-3d-container[data-active-step="1"] .steps-physics-sphere {
    left: 55%;
    top: 15%;
}

.steps-3d-container[data-active-step="2"] .steps-physics-sphere {
    left: 42%;
    top: 30%;
}

.steps-3d-container[data-active-step="3"] .steps-physics-sphere {
    left: 29%;
    top: 45%;
}

.steps-3d-container[data-active-step="4"] .steps-physics-sphere {
    left: 15%;
    top: 60%;
}

/* Sağ Taraf: Stacking (Yığılan) Kartlar */
.steps-scroll-cards {
    width: 100%;
    position: relative;
    overflow: visible;
}

/* Kartların absolute olarak üst üste bineceği kapsayıcı */
.steps-cards-stack-wrapper {
    width: 100%;
    height: 450px; /* Tek bir kartın dikey yer kaplama alanı */
    position: relative;
    overflow: visible;
    margin-top: 20px;
}

.step-stack-card {
    position: absolute; /* Üst üste binmeleri için absolute konumlandırma */
    top: 0;
    left: 0;
    width: 100%;
    height: 480px; /* Sabit dikey alan */
    padding: 50px 45px;
    border-radius: 12px; /* Görseldeki gibi daha keskin modern köşeler */
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    /* Transform transition'ı kaldırıyoruz çünkü JS scroll sırasında anlık güncelleyecek, hover durumunda ise yavaş geçiş yapacak */
    transition: box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.3s ease-out;
    will-change: transform, opacity;
}

/* Farklı Adımlar İçin Z-Index Değerleri */
.step-stack-card[data-step="1"] {
    z-index: 10;
}

.step-stack-card[data-step="2"] {
    z-index: 20;
}

.step-stack-card[data-step="3"] {
    z-index: 30;
}

.step-stack-card[data-step="4"] {
    z-index: 40;
}

.step-stack-card[data-step="5"] {
    z-index: 50;
}

.step-stack-card[data-step="6"] {
    z-index: 60;
}

.step-stack-card[data-step="7"] {
    z-index: 70;
}

.step-stack-card[data-step="8"] {
    z-index: 80;
}

.step-stack-card:last-child {
    margin-bottom: 50px; /* Son kartın altında devasa boşluk kalmasın */
}

/* Kart İçerik Elemanları */
.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: none; /* Görseldeki gibi çizgi yok */
    padding-bottom: 0;
}

.step-badge-pill {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    background: #000000;
    color: #FFFFFF;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.step-card-num {
    font-family: 'Oswald', sans-serif;
    font-size: 140px; /* Görseldeki gibi devasa rakam */
    font-weight: 700;
    color: #000000;
    line-height: 0.75;
    letter-spacing: -3px;
    margin: 0;
}

.step-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px; /* Görseldeki gibi büyük ve sıkıştırılmış */
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -2px;
    text-align: left;
    margin: 0;
    max-width: 250px; /* İki satıra kırılması için */
}

.step-card-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    max-width: 330px;
    margin: auto auto; /* Dikeyde ve yatayda ortalama */
}

/* Responsive Kurallar: Mobil Cihazlar */
@media (max-width: 992px) {
    .services-steps-section {
        height: auto !important; /* Mobil için kaydırma derinliği yüksekliğini sıfırla */
    }

    .steps-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
    }
    
    .steps-sticky-visual {
        position: relative;
        top: 0;
        height: auto;
        margin-bottom: 30px;
        padding: 40px 0;
    }
    
    .step-huge-bg-text {
        font-size: 24vw;
        top: -10%;
    }
    
    .steps-cards-stack-wrapper {
        height: auto !important; /* Mobilde kartların dikey yığılmasını iptal et */
    }

    .step-stack-card {
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 30px !important;
        padding: 40px 30px !important;
        height: auto !important; /* Dikey yüksekliği mobilde sıfırlayıp içeriğe göre uzatıyoruz */
    }
    
    .step-stack-card:last-child {
        margin-bottom: 0 !important;
    }
    
    .step-card-title {
        font-size: 26px;
    }
    
    .step-card-num {
        font-size: 60px;
    }
}

/* ==========================================================================
   PORTFOLIO DETAIL PAGE (project.php) STYLES
   ========================================================================== */

.project-detail-page-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Entrance Header (White-Themed, matching screenshot) */
.project-detail-header {
    background: #FFFFFF;
    color: #181926;
    padding: 180px 8% 130px 8%; /* Alt boşluğu (padding-bottom) 100px daha artırdık */
    border-bottom: none;
    position: relative;
    z-index: 10;
}

.project-detail-header-container {
    max-width: 1350px;
    margin: 0 auto;
}

.project-detail-main-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    color: #05050A;
    margin: 0 0 50px 0;
    line-height: 1.05;
    letter-spacing: -2px;
}

/* Metadata Grid underneath the title */
.project-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: end;
    gap: 40px;
}

.project-meta-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-meta-col .meta-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7D7D8D;
}

.project-meta-col .meta-value {
    font-size: 16px;
    font-weight: 700;
    color: #181926;
    line-height: 1.4;
}

/* Site Link Button (Pill shaped with diagonal arrow) */
.project-site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid #181926;
    border-radius: 50px;
    background: transparent;
    color: #181926;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.project-site-btn:hover {
    background: #181926;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 25, 38, 0.15);
}

.project-site-btn i {
    transition: transform 0.3s ease;
}

.project-site-btn:hover i {
    transform: translate(2px, -2px);
}

/* Proje Ana Görseli (Sayfayla Birlikte Kayan Kutulu Tasarım) */
.project-detail-image-section {
    padding: 60px 8% 40px 8%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    background: transparent;
}

.project-detail-image-container {
    max-width: 1350px;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--card-border);
    background: #000000;
    display: flex;
}

.project-detail-featured-img,
.project-detail-featured-video {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-detail-image-container:hover .project-detail-featured-img,
.project-detail-image-container:hover .project-detail-featured-video {
    transform: scale(1.02);
}

/* Proje İçerik Bölümü */
.project-detail-content-section {
    padding: 40px 8% 120px 8%;
    position: relative;
    z-index: 5;
}

.project-detail-content-container {
    max-width: 1350px;
    margin: 0 auto;
    display: block; /* Sağ sidebar kaldırıldığı için tek sütun geniş yerleşim */
}

.project-content-left {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.project-content-right {
    position: sticky;
    top: 100px;
}

.project-sidebar-card {
    background: linear-gradient(135deg, rgba(7, 7, 255, 0.05), rgba(255, 0, 127, 0.03));
    border: 1px solid rgba(7, 7, 255, 0.15);
    border-radius: 28px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.project-sidebar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(7, 7, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.project-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.project-sidebar-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .project-detail-header {
        padding: 70px 6% 50px 6%;
    }
    
    .project-detail-meta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }
    
    .project-btn-col {
        margin-top: 15px;
    }
    
    .project-site-btn {
        width: 100%;
        padding: 14px 28px;
    }

    .project-detail-image-section {
        padding: 30px 6% 20px 6%;
    }

    .project-detail-content-section {
        padding: 20px 6% 80px 6%;
    }

    .project-detail-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-content-left {
        padding: 30px;
    }
    
    .project-content-right {
        position: relative;
        top: 0;
    }
}

@media (max-width: 576px) {
    .project-detail-header {
        padding: 50px 5% 40px 5%;
    }
    
    .project-detail-main-title {
        margin-bottom: 35px;
    }
    
    .project-detail-image-section {
        padding: 20px 5% 10px 5%;
    }

    .project-detail-featured-img {
        border-radius: 18px;
    }

    .project-detail-content-section {
        padding: 10px 5% 60px 5%;
    }

    .project-content-left {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .project-sidebar-card {
        padding: 25px 20px;
        border-radius: 18px;
    }
}

/* Custom Background Header styling (project.php) */
.project-detail-header.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.project-detail-header.has-bg .project-detail-main-title {
    color: #FFFFFF;
    position: relative;
    z-index: 5;
}

.project-detail-header.has-bg .project-meta-col .meta-value {
    color: #FFFFFF;
}

.project-detail-header.has-bg .project-meta-col .meta-label {
    color: rgba(255, 255, 255, 0.6);
}

.project-detail-header.has-bg .project-site-btn {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.project-detail-header.has-bg .project-site-btn:hover {
    background: #FFFFFF;
    color: #05050A;
    border-color: #FFFFFF;
}

/* Video background positioning */
.project-header-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Dark Overlay Layer */
.project-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 10, 0.4) 0%, rgba(5, 5, 10, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.project-detail-header.has-bg .project-detail-header-container {
    position: relative;
    z-index: 5;
}

/* Proje Detay Sayfası Kayan Ana Görsel Bölümü */
.project-detail-parallax-divider {
    width: 100%;
    height: 900px; /* Görsel alanının yüksekliğini 900px'e yükselttik */
    background-attachment: scroll; /* JS ile hafif kaydırma efekti için scroll olmalıdır */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 0 80px 0; /* 1. bölümün bittiği yerden başlaması için üst boşluk (margin-top) sıfırlandı */
    box-shadow: none; /* Üstteki gri gölge alanını yok etmek için gölgeyi kaldırdık */
}

/* Kayan video arka planı konumlandırma */
.project-parallax-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Mobil cihazlar için kaydırma uyumluluğu */
@media (max-width: 992px) {
    .project-detail-parallax-divider {
        background-attachment: scroll;
        height: 580px; /* Mobilde de yüksekliği orantılı olarak 580px'e çıkardık */
        margin: 40px 0;
    }
}

/* Proje Detay İki Kolonlu Kart Tasarımı (Sol Logo, Sağ Detay & Maddeler) */
.project-detail-two-col-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

.project-detail-col-logo {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-right: none;
    padding-right: 0;
}

.project-about-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #181926;
}

.project-logo-display-box {
    max-width: 360px;
    width: 100%;
    display: flex;
    align-items: center;
    background: transparent;
}

.project-about-logo {
    max-width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.project-detail-col-content {
    padding-left: 0;
}

.project-detail-right-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 850;
    color: #181926;
    line-height: 1.25;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Reset browser list styles inside the preview container for both standard and Quill 2.0 list types */
.project-detail-col-content ul,
.project-detail-col-content ol {
    margin-top: 35px;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    counter-reset: ql-counter;
}

/* Base style for list items */
.project-detail-col-content li {
    font-size: 16px;
    font-weight: 600;
    color: #181926;
    line-height: 1.4;
    margin-bottom: 0;
    position: relative;
}

/* Bullet markers for ul > li and li[data-list="bullet"] */
.project-detail-col-content ul li,
.project-detail-col-content li[data-list="bullet"] {
    padding-left: 18px;
}

.project-detail-col-content ul li::before,
.project-detail-col-content li[data-list="bullet"]::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #181926;
    font-size: 18px;
    line-height: 1;
}

/* Numbered markers for ol > li (standard) and li[data-list="ordered"] (Quill 2.0) */
.project-detail-col-content ol > li:not([data-list]),
.project-detail-col-content li[data-list="ordered"] {
    counter-increment: ql-counter;
    padding-left: 24px;
}

.project-detail-col-content ol > li:not([data-list])::before,
.project-detail-col-content li[data-list="ordered"]::before {
    content: counter(ql-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #181926;
    font-weight: 700;
}

/* Mobilde tek sütuna düşür */
@media (max-width: 768px) {
    .project-detail-col-content ul,
    .project-detail-col-content ol {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Mobilde tek sütuna düşür */
@media (max-width: 992px) {
    .project-detail-two-col-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-detail-col-logo {
        border-right: none;
        border-bottom: 1px solid rgba(24, 25, 38, 0.08);
        padding-right: 0;
        padding-bottom: 30px;
        gap: 20px;
    }

    .project-logo-display-box {
        max-width: 280px;
    }
}

/* Proje Galerisi (4. Bölüm) Stilleri */
.project-gallery-section {
    padding: 60px 8% 120px 8%;
    background: transparent;
    position: relative;
    z-index: 5;
}

.project-gallery-container {
    max-width: 1350px;
    margin: 0 auto;
}

.project-gallery-section-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 1.5px;
    color: #181926;
    margin-bottom: 35px;
}

/* Galeri Sekmeleri */
.project-gallery-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(24, 25, 38, 0.08);
    padding-bottom: 15px;
}

.gallery-tab-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #7D7D8D;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-tab-btn:hover {
    color: #181926;
}

.gallery-tab-btn.active {
    color: #181926;
}

.gallery-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #181926;
    transition: all 0.3s ease;
}

/* Galeri Grid Yerleşimi */
.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
}

.gallery-slider-container {
    position: relative;
    width: 100%;
}

.gallery-media-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}

.gallery-media-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari/Opera */
}

/* Galeri Slider Yönlendirme Okları */
.gallery-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 38, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #181926;
}

.gallery-arrow-btn:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-neon);
    transform: translateY(-50%) scale(1.05);
}

.gallery-arrow-prev {
    left: -25px;
}

.gallery-arrow-next {
    right: -25px;
}

.gallery-media-item {
    flex: 0 0 calc((100% - 50px) / 3);
    scroll-snap-align: start;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(24, 25, 38, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.gallery-media-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.gallery-img-preview,
.gallery-video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-media-item:hover .gallery-img-preview,
.gallery-media-item:hover .gallery-video-preview {
    transform: scale(1.03);
}

/* Hover Zoom & Play Efektleri */
.gallery-media-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 25, 38, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.gallery-media-item:hover .gallery-media-hover-overlay {
    opacity: 1;
    background: rgba(24, 25, 38, 0.15);
    backdrop-filter: blur(3px);
}

.gallery-overlay-icon {
    width: 36px;
    height: 36px;
    stroke: #FFFFFF;
    stroke-width: 2px;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-media-item:hover .gallery-overlay-icon {
    transform: scale(1);
}

/* Video için play ikonu yuvarlak daire */
.gallery-overlay-icon.play-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Galeri Boş Durumu */
.gallery-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #7D7D8D;
    font-size: 15px;
    font-style: italic;
    background: rgba(24, 25, 38, 0.01);
    border: 1px dashed rgba(24, 25, 38, 0.08);
    border-radius: 18px;
}

/* Premium Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(15px);
}

.lightbox-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.lightbox-close-btn:hover {
    transform: scale(1.1);
    color: rgba(255,255,255,0.7);
}

.lightbox-content-container {
    position: relative;
    z-index: 5;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.open .lightbox-content-container {
    transform: scale(1);
}

.lightbox-media-wrapper img,
.lightbox-media-wrapper video {
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .project-gallery-section {
        padding: 40px 6% 80px 6%;
    }
    .gallery-media-item {
        flex: 0 0 calc((100% - 25px) / 2);
    }
    .gallery-arrow-prev {
        left: -15px;
    }
    .gallery-arrow-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .gallery-media-grid {
        gap: 20px;
    }
    .gallery-media-item {
        flex: 0 0 100%;
    }
    .gallery-arrow-btn {
        width: 40px;
        height: 40px;
    }
    .gallery-arrow-prev {
        left: -10px;
    }
    .gallery-arrow-next {
        right: -10px;
    }
    .lightbox-close-btn {
        top: 20px;
        right: 20px;
        font-size: 36px;
    }
}

/* ========================================== */
/* İLETİŞİM SAYFASI (contact.php)             */
/* ========================================== */

.contact-hero-section {
    padding: 180px 8% 80px 8%;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero-tag {
    background: rgba(7, 7, 255, 0.08);
    color: var(--neon-blue);
    border: 1px solid rgba(7, 7, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-transform: uppercase;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-section {
    padding: 0 8% 120px 8%;
    position: relative;
    z-index: 2;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    align-items: start;
    max-width: 1350px;
    margin: 0 auto;
}

.contact-details-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.contact-panel-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-panel-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(7, 7, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    border: 1px solid rgba(7, 7, 255, 0.1);
    flex-shrink: 0;
}

.contact-panel-text h4 {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-panel-text p {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
}

.contact-panel-socials {
    margin-top: 40px;
    border-top: 1px solid rgba(24, 25, 38, 0.08);
    padding-top: 30px;
}

.contact-panel-socials h4 {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-social-grid {
    display: flex;
    gap: 15px;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(24, 25, 38, 0.03);
    border: 1px solid rgba(24, 25, 38, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.contact-social-link:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

/* Harita Stillendirmesi */
.contact-map-wrapper {
    margin-top: 20px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    height: 400px;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.9) contrast(1.1) invert(0);
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-hero-section {
        padding: 140px 6% 60px 6%;
    }
    .contact-page-section {
        padding: 0 6% 80px 6%;
    }
}

/* ========================================== */
/* BLOG SAYFASI (blog.php)                    */
/* ========================================== */

.blog-hero-section {
    padding: 180px 8% 80px 8%;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-hero-tag {
    background: rgba(7, 7, 255, 0.08);
    color: var(--neon-blue);
    border: 1px solid rgba(7, 7, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-transform: uppercase;
}

.blog-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.blog-page-section {
    padding: 0 8% 120px 8%;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .blog-hero-section {
        padding: 140px 6% 60px 6%;
    }
    .blog-page-section {
        padding: 0 6% 80px 6%;
    }
}
