/* ============================================
   VOREN MUSIC PRODUCTION - LIGHT THEME
   Corporate Color: #011166 (Navy Blue)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #011166;
    --primary-light: #1a2d8a;
    --primary-lighter: #2e44a8;
    --primary-bg: rgba(1, 17, 102, 0.06);
    --primary-bg-hover: rgba(1, 17, 102, 0.1);
    --accent: #d4a843;
    --bg-white: #ffffff;
    --bg-light: #f8f9fc;
    --bg-soft: #f0f2f8;
    --bg-card: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #8a8a9a;
    --text-light: #b0b0c0;
    --border-color: #e2e4ee;
    --border-light: #eef0f6;
    --shadow-sm: 0 2px 8px rgba(1, 17, 102, 0.06);
    --shadow-md: 0 4px 20px rgba(1, 17, 102, 0.08);
    --shadow-lg: 0 8px 40px rgba(1, 17, 102, 0.1);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    outline: none;
    border: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Custom Cursor ---------- */
.custom-cursor,
.custom-cursor-follower {
    display: none;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease;
    }

    .custom-cursor-follower {
        display: block;
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(1, 17, 102, 0.3);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    }

    .custom-cursor.hover {
        transform: translate(-50%, -50%) scale(2);
        background: rgba(1, 17, 102, 0.4);
    }

    .custom-cursor-follower.hover {
        width: 50px;
        height: 50px;
        border-color: var(--primary);
    }
}

/* ---------- Navigation ---------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 48px;
    width: auto;
}

.footer-logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    letter-spacing: 0.3px;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 17, 102, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-body);
    transition: var(--transition-fast);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-link:nth-child(7) { transition-delay: 0.4s; }

.mobile-link:hover {
    color: var(--primary);
}

.mobile-social {
    display: flex;
    gap: 24px;
}

.mobile-social a {
    font-size: 20px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.mobile-social a:hover {
    color: var(--primary);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(160deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-soft) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(1, 17, 102, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(42, 68, 168, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(212, 168, 67, 0.03) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-accent {
    color: var(--primary);
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(1, 17, 102, 0.25);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--primary);
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Equalizer */
.hero-equalizer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    opacity: 0.12;
    z-index: 1;
}

.eq-bar {
    width: 3px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
    animation: eq-anim 1.2s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.eq-bar:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.eq-bar:nth-child(6) { height: 50px; animation-delay: 0.5s; }
.eq-bar:nth-child(7) { height: 20px; animation-delay: 0.6s; }
.eq-bar:nth-child(8) { height: 40px; animation-delay: 0.7s; }
.eq-bar:nth-child(9) { height: 28px; animation-delay: 0.8s; }
.eq-bar:nth-child(10) { height: 38px; animation-delay: 0.9s; }

@keyframes eq-anim {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* ---------- Section Styling ---------- */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-accent {
    color: var(--primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-body);
    max-width: 560px;
}

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

.section-header .section-tag::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---------- About Section ---------- */
.about {
    background: var(--bg-white);
}

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

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-soft));
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    font-size: 80px;
    color: rgba(1, 17, 102, 0.1);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.float-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.about-float-card strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
}

.about-float-card span {
    font-size: 13px;
    color: var(--text-muted);
}

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

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-bg);
    border: 1px solid rgba(1, 17, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    color: var(--text-dark);
    font-size: 15px;
}

.feature span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- Services Section ---------- */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card--has-image {
    padding: 0;
}

.service-card-image {
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: var(--bg-soft);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.service-card-body {
    padding: 28px 32px 36px;
}

.service-card:not(.service-card--has-image) .service-card-body {
    padding: 0;
}

.service-card--has-image .service-card-body {
    padding-top: 24px;
}

.service-icon--image {
    padding: 8px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.service-icon--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card:hover {
    border-color: rgba(1, 17, 102, 0.15);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
    transition: var(--transition);
}

.service-card:hover .service-hover-line {
    width: 100%;
}

/* ---------- Marquee Section ---------- */
.marquee-section {
    padding: 28px 0;
    background: var(--primary);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-dot {
    color: rgba(255, 255, 255, 0.15) !important;
    font-size: 12px !important;
}

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

/* ---------- Projects Section ---------- */
.projects {
    background: var(--bg-white);
}

.project-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    border: 1px solid var(--border-color);
    background: transparent;
    transition: var(--transition);
}

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.project-card-info {
    padding: 16px 18px 18px;
    background: var(--bg-white);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.project-card-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.35;
}

.project-card-cat {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.project-card.hidden,
.project-card.project-card--paginated-hidden {
    display: none;
}

.projects-load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    min-width: 220px;
}

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

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        hsl(var(--hue, 200), 40%, 92%),
        hsl(var(--hue, 200), 50%, 85%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(1, 17, 102, 0.12);
    transition: var(--transition);
}

.project-card:hover .project-placeholder {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 17, 102, 0.92) 0%, rgba(1, 17, 102, 0.3) 40%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
}

.project-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.project-link:hover {
    gap: 12px;
    color: var(--accent);
}

.project-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.project-card:hover .project-cover {
    transform: scale(1.06);
}

.project-play-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.project-play-fab {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
    z-index: 2;
}

.project-card--reel:hover .project-play-fab {
    opacity: 1;
}

.project-card--reel .project-overlay {
    pointer-events: none;
}

.project-card--reel .project-play-btn {
    pointer-events: auto;
}

/* Reel modal */
.reel-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reel-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.reel-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 17, 102, 0.82);
    backdrop-filter: blur(6px);
}

.reel-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    z-index: 1;
    animation: reelModalIn 0.35s ease;
}

@keyframes reelModalIn {
    from { opacity: 0; transform: scale(0.94) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.reel-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.reel-modal-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.reel-modal-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
    padding-right: 48px;
}

.reel-modal-body {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 9 / 16;
    max-height: min(80vh, 720px);
    min-height: 280px;
}

.reel-modal-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.reel-modal-video.is-loading {
    opacity: 0;
}

.reel-modal-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}

.reel-modal-loading.d-none {
    display: none;
}

.reel-modal-error {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.75);
    z-index: 3;
}

.reel-modal-error.d-none {
    display: none;
}

.reel-modal-play-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.reel-modal-play-cta:hover {
    transform: translate(-50%, -50%) scale(1.04);
    background: #fff;
}

.reel-modal-play-cta.d-none {
    display: none;
}

.project-card--shared-focus,
.prj-card.project-card--shared-focus {
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.55), var(--shadow-lg);
    transform: translateY(-4px);
}

.ref-logo--link {
    text-decoration: none;
    color: inherit;
}

.ref-logo-img {
    max-height: 52px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    display: block;
}

.ref-logo:has(.ref-logo-img) i {
    display: none;
}

/* ---------- Artists Section ---------- */
.artists {
    background: var(--bg-light);
}

.artist-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.artist-category-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.artist-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.artist-category-card:hover::before {
    width: 60%;
}

.artist-category-card:hover {
    border-color: rgba(1, 17, 102, 0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 1px solid rgba(1, 17, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.artist-category-card:hover .category-icon {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.artist-category-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.artist-category-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- Quote Section ---------- */
.quote-section {
    background: var(--primary);
    overflow: hidden;
}

.quote-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 32px;
}

.quote-author strong {
    display: block;
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 4px;
}

.quote-author span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- References Section ---------- */
.references {
    background: var(--bg-white);
}

.references-marquee {
    overflow: hidden;
    margin-top: 16px;
}

.ref-track {
    display: flex;
    gap: 32px;
    animation: ref-scroll 25s linear infinite;
}

.ref-item {
    flex-shrink: 0;
}

.ref-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 40px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: var(--transition);
    min-width: 140px;
}

.ref-logo:hover {
    border-color: rgba(1, 17, 102, 0.15);
    box-shadow: var(--shadow-sm);
}

.ref-logo i {
    font-size: 28px;
    color: var(--text-light);
    transition: var(--transition);
}

.ref-logo:hover i {
    color: var(--primary);
}

.ref-logo span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes ref-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Contact Section ---------- */
.contact {
    background: var(--bg-light);
}

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

.contact-desc {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-bg);
    border: 1px solid rgba(1, 17, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-item span {
    font-size: 14px;
    color: var(--text-muted);
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 0 8px;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition-fast);
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -4px;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

.dynamic-form-message.text-success {
    color: #4caf50;
    font-size: 14px;
}

.dynamic-form-message.text-danger {
    color: #f44336;
    font-size: 14px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--primary);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.footer .logo-img {
    filter: brightness(0) invert(1);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    padding: 6px 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-weight: 700;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    background: #e0b84d;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(1, 17, 102, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--primary-light);
}

/* ============================================
   HAKKIMIZDA PAGE STYLES
   ============================================ */

/* ---------- Page Hero ---------- */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--primary);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(42, 68, 168, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 168, 67, 0.1) 0%, transparent 40%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

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

.breadcrumb i {
    font-size: 9px;
}

.breadcrumb span {
    color: var(--accent);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.page-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ---------- Standard CMS Text Page ---------- */
.std-page {
    background: var(--bg-light);
    padding-top: 72px;
    padding-bottom: 96px;
}

.std-page-layout {
    max-width: 860px;
    margin: 0 auto;
}

.std-page-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.std-page-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-light);
}

.std-page-meta i {
    color: var(--accent);
}

.std-page-cover {
    border-bottom: 1px solid var(--border-light);
}

.std-page-cover img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

.std-page-body {
    padding: 40px 32px 48px;
}

.std-page-empty {
    padding: 72px 32px;
    text-align: center;
    color: var(--text-muted);
}

.std-page-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.cms-content {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.85;
}

.cms-content > *:first-child {
    margin-top: 0;
}

.cms-content > *:last-child {
    margin-bottom: 0;
}

.cms-content h1,
.cms-content h2,
.cms-content h3,
.cms-content h4,
.cms-content h5,
.cms-content h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.35;
    margin: 1.6em 0 0.75em;
}

.cms-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}

.cms-content h3 {
    font-size: clamp(1.25rem, 2vw, 1.45rem);
}

.cms-content h4 {
    font-size: 1.15rem;
}

.cms-content p,
.cms-content li {
    margin-bottom: 1em;
}

.cms-content ul,
.cms-content ol {
    margin: 0 0 1.25em;
    padding-left: 1.4em;
}

.cms-content ul {
    list-style: disc;
}

.cms-content ol {
    list-style: decimal;
}

.cms-content li ul,
.cms-content li ol {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.cms-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cms-content a:hover {
    color: var(--primary-lighter);
}

.cms-content strong,
.cms-content b {
    color: var(--text-dark);
    font-weight: 600;
}

.cms-content blockquote {
    margin: 1.5em 0;
    padding: 16px 20px;
    border-left: 4px solid var(--accent);
    background: var(--primary-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-dark);
}

.cms-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5em 0;
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 15px;
}

.cms-content th,
.cms-content td {
    border: 1px solid var(--border-color);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.cms-content th {
    background: var(--bg-soft);
    color: var(--text-dark);
    font-weight: 600;
}

.cms-content hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 2em 0;
}

/* ---------- Story Section ---------- */
.about-story {
    background: var(--bg-white);
}

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

.story-visual {
    position: relative;
}

.story-image-group {
    position: relative;
    padding: 20px;
}

.story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.story-image-main {
    width: 85%;
    aspect-ratio: 4 / 5;
}

.story-image-group--single .story-image-main {
    width: 100%;
}

.story-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
}

.story-experience-badge {
    position: absolute;
    top: 0;
    right: 20%;
    background: var(--primary);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.experience-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
    margin-top: 2px;
}

/* ---------- What We Do ---------- */
.about-whatwedo {
    background: var(--bg-light);
}

.whatwedo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.whatwedo-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.whatwedo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(1, 17, 102, 0.12);
}

.whatwedo-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: rgba(1, 17, 102, 0.05);
    line-height: 1;
}

.whatwedo-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.whatwedo-card:hover .whatwedo-icon {
    background: var(--primary);
    color: #fff;
}

.whatwedo-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.whatwedo-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---------- Mission Vision Values ---------- */
.about-mvv {
    background: var(--bg-white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mvv-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mvv-card-accent {
    background: var(--primary);
    border-color: transparent;
}

.mvv-card-accent h3 {
    color: #fff !important;
}

.mvv-card-accent p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.mvv-icon-wrapper {
    margin-bottom: 24px;
}

.mvv-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto;
    transition: var(--transition);
}

.mvv-card-accent .mvv-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mvv-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
}

/* ---------- Stats Section (About Page) ---------- */
.about-stats-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(1, 17, 102, 0.1);
}

.about-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin: 0 auto 16px;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.about-stat-plus {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--accent);
}

.about-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ---------- Timeline ---------- */
.about-timeline {
    background: var(--bg-white);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 68px;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 14px;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--primary);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(1, 17, 102, 0.1);
}

.timeline-content {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-sm);
    border-color: rgba(1, 17, 102, 0.1);
}

.timeline-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Team Section ---------- */
.about-team {
    background: var(--bg-light);
}

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

.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(1, 17, 102, 0.1);
}

.team-social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 17, 102, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
}

.team-social-overlay a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: var(--transition-fast);
    transform: translateY(10px);
}

.team-card:hover .team-social-overlay a {
    transform: translateY(0);
}

.team-card:hover .team-social-overlay a:nth-child(2) {
    transition-delay: 0.05s;
}

.team-social-overlay a:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.team-info {
    padding: 20px 24px;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-info span {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* ---------- CTA Section ---------- */
.about-cta {
    background: var(--primary);
    text-align: center;
    padding: 80px 0;
}

.cta-wrapper h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 16px;
}

.cta-wrapper p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-white-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   HIZMETLERIMIZ PAGE STYLES
   ============================================ */

/* ---------- Service Intro ---------- */
.svc-intro {
    background: var(--bg-white);
}

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

.svc-intro-visual {
    position: relative;
}

.svc-intro-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.svc-intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.svc-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.svc-highlight i {
    color: var(--primary);
    font-size: 16px;
}

/* ---------- Service Detail Cards ---------- */
.svc-main {
    background: var(--bg-light);
}

.svc-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.svc-detail:last-child {
    margin-bottom: 0;
}

.svc-detail-reverse {
    direction: rtl;
}

.svc-detail-reverse > * {
    direction: ltr;
}

.svc-detail-visual {
    position: relative;
}

.svc-detail-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.svc-detail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        hsl(var(--hue, 220), 40%, 92%),
        hsl(var(--hue, 220), 50%, 85%));
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    font-size: 56px;
    color: rgba(1, 17, 102, 0.12);
}

.svc-detail-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.svc-detail-reverse .svc-detail-badge {
    left: auto;
    right: -12px;
}

.svc-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.svc-detail-content > p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.svc-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.svc-detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.svc-detail-list li i {
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* ---------- Process Section ---------- */
.svc-process {
    background: var(--bg-white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-card {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.process-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 1px solid rgba(1, 17, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
    font-size: 14px;
    padding-top: 50px;
    flex-shrink: 0;
    width: 40px;
}

/* ---------- Music Categories ---------- */
.svc-categories {
    background: var(--bg-light);
}

.svc-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.svc-cat-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-cat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.svc-cat-item:hover::after {
    width: 100%;
}

.svc-cat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(1, 17, 102, 0.1);
}

.svc-cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 1px solid rgba(1, 17, 102, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: var(--transition);
}

.svc-cat-item:hover .svc-cat-icon {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.svc-cat-item span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   PROJELER & PROJE DETAY PAGE STYLES
   ============================================ */

/* ---------- Projects Listing ---------- */
.prj-listing {
    background: var(--bg-white);
}

.prj-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.prj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.prj-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    color: inherit;
}

.prj-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1, 17, 102, 0.1);
}

.prj-card.hidden,
.prj-card.project-card--paginated-hidden {
    display: none;
}

.prj-card.project-card--reel {
    cursor: pointer;
}

.prj-card-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.prj-card.project-card--reel:hover .prj-card-cover {
    transform: scale(1.06);
}

.prj-card-overlay--reel {
    opacity: 1;
}

.prj-card-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transform: translateX(10px);
    opacity: 0;
    transition: var(--transition);
}

.prj-card.project-card--reel:hover .prj-card-play {
    transform: translateX(0);
    opacity: 1;
}

.prj-card-image .project-play-fab {
    opacity: 0;
}

.prj-card.project-card--reel:hover .project-play-fab {
    opacity: 1;
}

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

.prj-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        hsl(var(--hue, 220), 40%, 92%),
        hsl(var(--hue, 220), 50%, 85%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(1, 17, 102, 0.1);
    transition: var(--transition);
}

.prj-card:hover .prj-card-placeholder {
    transform: scale(1.08);
}

.prj-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 17, 102, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.prj-card-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
}

.prj-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transform: translateX(10px);
    opacity: 0;
    transition: var(--transition);
}

.prj-card:hover .prj-card-arrow {
    transform: translateX(0);
    opacity: 1;
}

.prj-card-body {
    padding: 24px;
}

.prj-card-body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.prj-card:hover .prj-card-body h3 {
    color: var(--primary);
}

.prj-card-body > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.prj-card-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.prj-card-meta span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.prj-card-meta i {
    color: var(--primary);
    font-size: 11px;
}

/* ---------- Project Detail Hero ---------- */
.prj-detail-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.prj-detail-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        hsl(var(--hue, 220), 60%, 20%),
        hsl(var(--hue, 220), 50%, 12%));
}

.prj-detail-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 168, 67, 0.08) 0%, transparent 40%);
}

.prj-detail-hero-content {
    position: relative;
    z-index: 2;
}

.prj-detail-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}

.prj-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.prj-detail-back:hover {
    color: #fff;
}

.prj-detail-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    line-height: 1.15;
    max-width: 760px;
}

.prj-info-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 120px;
}

.prj-info-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.prj-info-card .prj-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

.prj-info-card .prj-info-item {
    padding: 0 0 16px;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
}

.prj-info-card .prj-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prj-gallery-carousel {
    margin-bottom: 8px;
}

.prj-gallery-carousel-main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prj-gallery-carousel-frame {
    position: relative;
    flex: 1;
    aspect-ratio: 4 / 5;
    max-height: 720px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
}

.prj-gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.prj-gallery-slide.is-active {
    opacity: 1;
}

.prj-gallery-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.prj-gallery-nav:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.prj-gallery-carousel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.prj-gallery-counter {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.prj-gallery-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.prj-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(1, 17, 102, 0.18);
    cursor: pointer;
    padding: 0;
}

.prj-gallery-dot.is-active {
    background: var(--primary);
}

.project-card--gallery:hover .project-play-fab,
.prj-card.project-card--gallery:hover .project-play-fab {
    opacity: 1;
}

.project-card--gallery .project-play-fab,
.prj-card.project-card--gallery .project-play-fab {
    color: var(--primary);
}

.project-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ---------- Project Gallery Detail (pgd) ---------- */
.pgd-hero {
    position: relative;
    min-height: 420px;
    padding: 150px 0 88px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.pgd-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    filter: blur(2px);
}

.pgd-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 12, 38, 0.55) 0%, rgba(8, 12, 38, 0.88) 72%, rgba(8, 12, 38, 0.96) 100%),
        linear-gradient(135deg, hsla(var(--hue, 220), 55%, 18%, 0.72), hsla(var(--hue, 220), 45%, 10%, 0.85));
}

.pgd-hero-inner {
    position: relative;
    z-index: 2;
}

.pgd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

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

.pgd-breadcrumb-sep {
    font-size: 10px;
    opacity: 0.55;
}

.pgd-breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.pgd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
}

.pgd-back-link:hover {
    color: #fff;
}

.pgd-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.pgd-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.pgd-badge--type {
    background: rgba(212, 168, 67, 0.18);
    border-color: rgba(212, 168, 67, 0.35);
    color: #f3dfaa;
}

.pgd-badge--count {
    background: rgba(1, 17, 102, 0.35);
}

.pgd-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    color: #fff;
    max-width: 820px;
    margin-bottom: 16px;
}

.pgd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.pgd-hero-meta i {
    color: var(--accent);
    margin-right: 8px;
}

.pgd-body {
    padding-top: 56px;
    padding-bottom: 88px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.pgd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
}

.pgd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 108px;
    align-self: start;
}

.pgd-main {
    min-width: 0;
}

.pgd-stage {
    margin-bottom: 48px;
}

.pgd-stage-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.pgd-stage-viewport {
    position: relative;
    border-radius: calc(var(--radius-lg) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(1, 17, 102, 0.08);
    background: #0d1020;
}

.pgd-stage-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    max-height: 680px;
    background: #101425;
    cursor: zoom-in;
}

.pgd-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
}

.pgd-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.pgd-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pgd-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 48px 22px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.pgd-stage-toolbar {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.pgd-stage-counter {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.48);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.pgd-stage-counter-sep {
    opacity: 0.65;
}

.pgd-stage-expand {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pgd-stage-expand:hover {
    background: var(--accent);
    color: #fff;
}

.pgd-stage-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.pgd-stage-nav:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.pgd-progress {
    height: 3px;
    background: rgba(1, 17, 102, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 18px;
}

.pgd-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: inherit;
    transition: width 0.35s ease;
}

.pgd-filmstrip-wrap {
    margin-top: 16px;
    overflow: hidden;
}

.pgd-filmstrip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.pgd-filmstrip-item {
    flex: 0 0 auto;
    width: 92px;
    height: 68px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-soft);
    scroll-snap-align: center;
    transition: var(--transition-fast);
    opacity: 0.72;
}

.pgd-filmstrip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pgd-filmstrip-item:hover,
.pgd-filmstrip-item.is-active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(1, 17, 102, 0.16);
    transform: translateY(-2px);
}

.pgd-section-head {
    margin-bottom: 22px;
}

.pgd-section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.pgd-section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 34px);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pgd-section-lead {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 15px;
}

.pgd-about {
    margin-bottom: 52px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.pgd-about-content {
    color: var(--text-body);
    line-height: 1.9;
    font-size: 16px;
}

.pgd-mosaic-section {
    margin-top: 12px;
}

.pgd-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pgd-mosaic-item {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-soft);
}

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

.pgd-mosaic-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 17, 102, 0.42);
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pgd-mosaic-item:hover img {
    transform: scale(1.06);
}

.pgd-mosaic-item:hover .pgd-mosaic-overlay {
    opacity: 1;
}

.pgd-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.pgd-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pgd-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pgd-facts {
    display: grid;
    gap: 0;
}

.pgd-fact {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.pgd-fact:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pgd-fact dt {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pgd-fact dd {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.pgd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pgd-btn--block {
    width: 100%;
}

.pgd-btn--primary {
    background: var(--primary);
    color: #fff;
}

.pgd-btn--primary:hover {
    background: var(--primary-light);
}

.pgd-btn--outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--primary);
}

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

.pgd-btn--ghost {
    background: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--border-light);
}

.pgd-btn--ghost:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.pgd-share-feedback {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    min-height: 18px;
}

.pgd-card--instagram {
    background: linear-gradient(145deg, #fdf2f8, #fff7ed);
    border-color: rgba(225, 48, 108, 0.12);
}

.pgd-instagram-showcase {
    margin-bottom: 48px;
}

.pgd-instagram-showcase--centered {
    max-width: 680px;
    margin: 0 auto 56px;
}

.pgd-section-head--center {
    text-align: center;
}

.pgd-section-head--center .pgd-section-lead {
    margin-left: auto;
    margin-right: auto;
}

.pgd-instagram-embed-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: calc(var(--radius-lg) + 4px);
    box-shadow: var(--shadow-lg);
    overflow: visible;
}

.pgd-instagram-embed-wrap {
    position: relative;
    background: #fafafa;
    border-bottom: 1px solid var(--border-light);
    border-radius: calc(var(--radius-lg) + 4px) calc(var(--radius-lg) + 4px) 0 0;
    overflow: hidden;
    min-height: 760px;
}

.pgd-instagram-embed {
    display: block;
    width: 100%;
    min-height: 760px;
    height: 900px;
    border: none;
    background: #fff;
}

.pgd-instagram-embed-actions {
    padding: 24px;
    text-align: center;
}

.pgd-instagram-hint {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pgd-instagram-hint i {
    color: var(--primary);
    margin-right: 6px;
}

.pgd-btn--instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(221, 42, 123, 0.28);
}

.pgd-btn--instagram:hover {
    color: #fff;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.pgd-fallback-cover {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.pgd-fallback-cover img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.pgd-instagram-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
    font-size: 20px;
}

.pgd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.pgd-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.pgd-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 20, 0.94);
    backdrop-filter: blur(10px);
}

.pgd-lightbox-inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.pgd-lightbox-stage {
    margin: 0;
    max-height: calc(100vh - 120px);
}

.pgd-lightbox-stage img {
    width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.pgd-lightbox-stage figcaption {
    margin-top: 14px;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.pgd-lightbox-close {
    position: absolute;
    top: -52px;
    right: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

.pgd-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.pgd-lightbox-nav {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

.pgd-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.pgd-lightbox-meta {
    position: absolute;
    left: 50%;
    bottom: -42px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
}

body.pgd-lightbox-open {
    overflow: hidden;
}

@media (min-width: 992px) {
    .pgd-instagram-embed-wrap {
        min-height: 980px;
    }

    .pgd-instagram-embed {
        min-height: 980px;
        height: 980px;
    }
}

@media (max-width: 1100px) {
    .pgd-layout {
        grid-template-columns: 1fr;
    }

    .pgd-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pgd-sidebar .pgd-btn--ghost {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .pgd-hero {
        min-height: 360px;
        padding-top: 130px;
    }

    .pgd-stage-shell {
        grid-template-columns: 1fr;
    }

    .pgd-stage-nav {
        display: none;
    }

    .pgd-stage-frame {
        aspect-ratio: 4 / 5;
        max-height: none;
    }

    .pgd-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pgd-instagram-showcase--centered {
        max-width: 100%;
    }

    .pgd-instagram-embed-wrap {
        min-height: 720px;
    }

    .pgd-instagram-embed {
        min-height: 720px;
        height: 780px;
    }

    .pgd-about {
        padding: 22px;
    }

    .pgd-sidebar {
        grid-template-columns: 1fr;
    }

    .pgd-fact {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .pgd-lightbox-inner {
        width: calc(100vw - 20px);
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
    }

    .pgd-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }

    .pgd-lightbox-nav--prev {
        left: 8px;
    }

    .pgd-lightbox-nav--next {
        right: 8px;
    }

    .pgd-lightbox-close {
        top: 12px;
        right: 12px;
        position: fixed;
        z-index: 4;
    }
}

@media (max-width: 480px) {
    .pgd-mosaic {
        grid-template-columns: 1fr;
    }

    .pgd-filmstrip-item {
        width: 78px;
        height: 58px;
    }
}

/* ---------- Project Info Bar ---------- */
.prj-info-bar {
    background: var(--bg-white);
    padding: 0;
    margin-top: -1px;
}

.prj-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: -40px;
    position: relative;
    z-index: 4;
}

.prj-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid var(--border-light);
}

.prj-info-item:last-child {
    border-right: none;
}

.prj-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.prj-info-item strong {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.prj-info-item span {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ---------- Project Detail Content ---------- */
.prj-detail-content {
    background: var(--bg-white);
}

.prj-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.prj-detail-main h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 40px;
}

.prj-detail-main h2:first-child {
    margin-top: 0;
}

.prj-detail-main > p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 12px;
}

.prj-detail-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.prj-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.prj-check-item i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

/* Gallery */
.prj-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.prj-gallery-item {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: linear-gradient(135deg,
        hsl(var(--hue, 220), 40%, 94%),
        hsl(var(--hue, 220), 50%, 88%));
}

.prj-gallery-item .about-image-placeholder {
    font-size: 32px;
}

/* Sidebar */
.prj-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.prj-sidebar-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.prj-sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.prj-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prj-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prj-sidebar-label {
    font-size: 13px;
    color: var(--text-muted);
}

.prj-sidebar-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.prj-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prj-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(1, 17, 102, 0.08);
}

.prj-sidebar-cta {
    background: var(--primary);
    border-color: transparent;
}

.prj-sidebar-cta h4 {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.prj-sidebar-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.prj-sidebar-cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ---------- Related Projects ---------- */
.prj-related {
    background: var(--bg-light);
}

.prj-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ============================================
   SANATCILAR PAGE STYLES
   ============================================ */

/* ---------- Artist Categories ---------- */
.art-categories {
    background: var(--bg-white);
}

.art-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.art-cat-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.art-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1, 17, 102, 0.12);
}

.art-cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.art-cat-card:hover .art-cat-icon {
    background: var(--primary);
    color: #fff;
}

.art-cat-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.art-cat-card > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.art-cat-count {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 5px 14px;
    border-radius: 50px;
}

/* ---------- Featured Artists Grid ---------- */
.art-featured {
    background: var(--bg-light);
}

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

.art-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.art-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.art-card-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.art-card-photo-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.art-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        hsl(var(--hue, 220), 40%, 92%),
        hsl(var(--hue, 220), 50%, 85%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(1, 17, 102, 0.08);
    transition: var(--transition);
}

.art-card:hover .art-card-placeholder {
    transform: scale(1.08);
}

.art-card-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.art-card:hover .art-card-cover {
    transform: scale(1.08);
}

.art-card-social {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.art-card-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    backdrop-filter: blur(6px);
    transition: var(--transition-fast);
}

.art-card-social a:hover {
    background: var(--primary);
    color: #fff;
}

.art-card-info {
    padding: 20px;
    text-align: center;
}

.art-card-info h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.art-card-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- Ensembles ---------- */
.art-ensembles {
    background: var(--bg-white);
}

.art-ensemble-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.art-ensemble-card {
    display: flex;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.art-ensemble-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.art-ensemble-visual {
    width: 160px;
    min-height: 180px;
    flex-shrink: 0;
    background: linear-gradient(135deg,
        hsl(var(--hue, 220), 40%, 92%),
        hsl(var(--hue, 220), 50%, 85%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: rgba(1, 17, 102, 0.1);
}

.art-ensemble-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.art-ensemble-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.art-ensemble-body > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.art-ensemble-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.art-ensemble-tags span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 4px 12px;
    border-radius: 50px;
}

/* ============================================
   REFERANSLAR PAGE STYLES
   ============================================ */

/* ---------- Partner Logos ---------- */
.ref-partners {
    background: var(--bg-white);
}

.ref-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ref-logo-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
}

.ref-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(1, 17, 102, 0.1);
}

.ref-logo-icon {
    font-size: 32px;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 14px;
    transition: var(--transition);
}

.ref-logo-card:hover .ref-logo-icon {
    opacity: 1;
}

.ref-logo-card span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.ref-logo-card--link:hover {
    color: inherit;
}

.ref-logo-icon .ref-logo-card-img {
    display: block;
    max-height: 48px;
    max-width: 120px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.ref-logo-card:has(.ref-logo-card-img) .ref-logo-icon {
    opacity: 0.85;
}

.ref-logo-card:has(.ref-logo-card-img):hover .ref-logo-icon {
    opacity: 1;
}

/* ---------- Stats Bar ---------- */
.ref-stats-bar {
    background: var(--primary);
    padding: 60px 0;
}

.ref-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.ref-stat {
    color: #fff;
}

.ref-stat .about-stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    display: inline;
}

.ref-stat-plus {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
}

.ref-stat p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

/* ---------- Testimonials ---------- */
.ref-testimonials {
    background: var(--bg-light);
}

.ref-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ref-testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.ref-testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.ref-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 14px;
}

.ref-testimonial-card > p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

.ref-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.ref-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        hsl(var(--hue, 220), 40%, 92%),
        hsl(var(--hue, 220), 50%, 85%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(1, 17, 102, 0.15);
    flex-shrink: 0;
}

.ref-testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
}

.ref-testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   ILETISIM PAGE STYLES
   ============================================ */

/* ---------- Contact Info Cards ---------- */
.cnt-info-section {
    background: var(--bg-white);
    padding: 0;
    margin-top: -1px;
}

.cnt-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 4;
}

.cnt-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.cnt-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cnt-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.cnt-info-card:hover .cnt-info-icon {
    background: var(--primary);
    color: #fff;
}

.cnt-info-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cnt-info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Contact Main ---------- */
.cnt-main {
    background: var(--bg-white);
}

.cnt-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.cnt-form-header {
    margin-bottom: 32px;
}

.cnt-form-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-dark);
    margin: 12px 0 8px;
}

.cnt-form-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.cnt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.cnt-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cnt-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.cnt-form-group input,
.cnt-form-group select,
.cnt-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition-fast);
    outline: none;
}

.cnt-form-group input:focus,
.cnt-form-group select:focus,
.cnt-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 17, 102, 0.08);
    background: var(--bg-white);
}

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

.cnt-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a5a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* ---------- Contact Sidebar ---------- */
.cnt-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.cnt-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.cnt-map-placeholder {
    height: 250px;
    background: linear-gradient(135deg, hsl(220, 40%, 94%), hsl(220, 50%, 90%));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 40px;
    color: rgba(1, 17, 102, 0.1);
}

.cnt-map-placeholder span {
    font-size: 14px;
    color: var(--text-light);
}

.cnt-instagram-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    overflow: hidden;
}

.cnt-instagram-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cnt-instagram-card h3 i {
    color: #dd2a7b;
}

.cnt-instagram-card > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cnt-instagram-embed-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: #fff;
    margin-bottom: 16px;
}

.cnt-instagram-embed {
    display: block;
    width: 100%;
    min-height: 460px;
    height: 520px;
    border: none;
    background: #fff;
}

.cnt-instagram-follow {
    margin-top: 4px;
}

.cnt-instagram-fallback {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.cnt-social-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.cnt-social-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cnt-social-card > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cnt-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cnt-social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition-fast);
    color: inherit;
}

.cnt-social-link:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.cnt-social-link i {
    font-size: 20px;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.cnt-social-link strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
}

.cnt-social-link span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.cnt-faq {
    background: var(--bg-light);
}

.cnt-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cnt-faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-fast);
}

.cnt-faq-item:hover {
    border-color: rgba(1, 17, 102, 0.12);
}

.cnt-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.cnt-faq-question:hover {
    color: var(--primary);
}

.cnt-faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.cnt-faq-item.open .cnt-faq-question i {
    transform: rotate(45deg);
}

.cnt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.cnt-faq-item.open .cnt-faq-answer {
    max-height: 300px;
}

.cnt-faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.8;
}

/* ---------- Animations ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual,
    .story-visual {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .svc-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .svc-detail,
    .svc-detail-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .svc-detail-reverse .svc-detail-badge {
        left: -12px;
        right: auto;
    }

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

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

    .prj-detail-grid {
        grid-template-columns: 1fr;
    }

    .prj-detail-sidebar {
        position: static;
    }

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

    .prj-info-item:nth-child(2) {
        border-right: none;
    }

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

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

    .art-ensemble-grid {
        grid-template-columns: 1fr;
    }

    .ref-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .cnt-main-grid {
        grid-template-columns: 1fr;
    }

    .cnt-sidebar {
        position: static;
    }
}

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

    .std-page {
        padding-top: 48px;
        padding-bottom: 72px;
    }

    .std-page-body {
        padding: 28px 20px 36px;
    }

    .std-page-meta {
        padding: 14px 20px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .artist-categories {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .about-float-card {
        right: 0;
    }

    .logo-img {
        height: 38px;
    }

    .page-hero {
        padding: 130px 0 80px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .svc-detail-list {
        grid-template-columns: 1fr;
    }

    .svc-intro-highlights {
        grid-template-columns: 1fr;
    }

    .svc-cat-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .prj-grid,
    .prj-related-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .prj-info-grid {
        grid-template-columns: 1fr;
    }

    .prj-info-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .prj-info-item:last-child {
        border-bottom: none;
    }

    .prj-detail-checklist {
        grid-template-columns: 1fr;
    }

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

    .art-cat-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

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

    .art-ensemble-card {
        flex-direction: column;
    }

    .art-ensemble-visual {
        width: 100%;
        min-height: 120px;
    }

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

    .ref-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ref-stat .about-stat-number,
    .ref-stat-plus {
        font-size: 32px;
    }

    .ref-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cnt-info-grid {
        grid-template-columns: 1fr;
    }

    .cnt-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .project-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .story-image-secondary {
        width: 50%;
    }

    .story-experience-badge {
        width: 80px;
        height: 80px;
    }

    .experience-number {
        font-size: 22px;
    }
}
