/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Başlık rengi - marka turuncusu */
h1, h2, h3, h4, h5, h6 {
    color: #cc6a31 !important;
}

/* Kurumsal Renk Paleti - Mavi Ağırlıklı */
:root {
    --primary-color: #1e40af;      /* Ana mavi */
    --secondary-color: #3b82f6;    /* Açık mavi */
    --accent-color: #60a5fa;       /* Vurgu mavisi */
    --dark-color: #1e3a8a;         /* Koyu mavi */
    --light-color: #eff6ff;        /* Çok açık mavi */
    --text-color: #1e293b;         /* Koyu mavi-gri metin */
    --border-color: #dbeafe;       /* Açık mavi kenarlık */
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.96);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 56px;
    display: flex;
    align-items: center;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #cc6a31;
}

.navbar {
    padding: 0;
    width: 100%;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
}

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.logo-owners {
    font-size: 0.7rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
    font-weight: 700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #cc6a31;
    transition: width 0.3s ease;
}

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

.nav-link.active::after {
    background: #cc6a31;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px) brightness(0.7);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }
    20% {
        background-position: 100% 50%;
    }
    40% {
        background-position: 100% 100%;
    }
    60% {
        background-position: 0% 100%;
    }
    80% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 3D Canvas için */
.hero canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    opacity: 0.8 !important;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: heroShimmer 6s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

/* Sürekli dönen daire efekti */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: rotate 15s linear infinite;
    z-index: 1;
    pointer-events: none;
}

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

@keyframes heroShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    20% {
        transform: translateX(100%) translateY(-100%);
    }
    40% {
        transform: translateX(100%) translateY(100%);
    }
    60% {
        transform: translateX(-100%) translateY(100%);
    }
    80% {
        transform: translateX(-100%) translateY(0%);
    }
    100% {
        transform: translateX(-100%) translateY(-100%);
    }
}

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

.hero-container {
    position: relative;
    z-index: 4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-owners {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-owners p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: white;
}

.hero-owners p:first-child {
    font-size: 1.1rem;
    color: white !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    animation: fadeInUp 1s ease-out 0.4s both;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite, fadeInRight 1s ease-out 0.3s both;
}

.hero-video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 2s ease-in-out, float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-video:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-visual i {
    font-size: 15rem;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #1e293b;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin-bottom: 1.5rem;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.section-header p {
    font-size: 1.1rem;
    color: #94a3b8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.service-card {
    background: #1e293b;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.25);
    border-color: rgba(96, 165, 250, 0.3);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}



.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #f8fafc;
    line-height: 1.3;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.4;
    font-size: 0.85rem;
}

.services-button-container {
    text-align: center;
    margin-top: 3rem;
}

.services-button-container .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.services-button-container .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: #0f172a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.about-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-owners {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    color: white;
    text-align: center;
}

.about-owners p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: white !important;
}

.about-owners p:first-child {
    font-size: 1.2rem;
    color: white;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-visual i {
    font-size: 12rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Spor Sözleri Section */
.spor-sozleri-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
}

.spor-sozleri-section .section-header h2 {
    color: white !important;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.spor-sozleri-section .section-header p {
    color: white !important;
}

.soz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.soz-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.soz-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.4);
}

.quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.soz-content {
    margin-top: 20px;
}

.soz-text {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Teams Marquee Section */
.teams-marquee {
    padding: 60px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #cc6a31;
    border-bottom: 2px solid #cc6a31;
}

.teams-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    animation: none;
    pointer-events: none;
}

.teams-marquee::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: none;
    animation: none;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    25% {
        transform: translateX(0%);
    }
    50% {
        transform: translateX(100%);
    }
    75% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.marquee-header {
    text-align: center;
    margin-bottom: 40px;
}

.marquee-header h3 {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff !important;
    margin-bottom: 10px;
    font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    text-shadow: none;
}

.marquee-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.team-logo {
    flex-shrink: 0;
    margin: 0 25px;
    transition: transform 0.3s ease;
}

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

.team-logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

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

/* Marquee hover pause */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/stats-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA bölümü için özel buton stili */
.cta .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.cta .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.4), 0 0 20px rgba(30, 64, 175, 0.2);
}

/* Footer */
.footer {
    background: #0b1220;
    padding: 18px 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-owners {
    color: var(--accent-color) !important;
    font-weight: 600;
    margin-bottom: 0.5rem !important;
}

.footer-owners:last-of-type {
    color: #ccc !important;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px) scale(1.1);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0f172a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .logo-subtitle,
    .logo-owners {
        display: none;
    }

    .nav-logo h2 {
        margin-bottom: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual i {
        font-size: 8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-visual i {
        font-size: 8rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card,
.stat-item {
    animation: fadeInUp 0.6s ease forwards;
}



/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/about-bg.jpg') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-claim {
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: #cc6a31;
    text-align: center;
    font-size: 1.55rem;
    line-height: 1.4;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(204, 106, 49, 0.55);
    background: rgba(204, 106, 49, 0.08);
}

.about-visual-large {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.about-visual-large img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-visual-large i {
    font-size: 15rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #0f172a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card {
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.value-card:hover::after {
    width: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.value-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member {
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.team-member:hover::before {
    left: 100%;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.member-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-desc {
    color: #666;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: #1e293b;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 2rem;
}

.timeline-content {
    background: #0f172a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(30, 58, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 58, 138, 0); }
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #1e293b;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Page Styles */
.contact-hero {
    background: #0f172a;
    color: white;
    padding: 0.9rem 0;
    text-align: center;
    margin-top: 56px;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-hero-content p {
    font-size: 1rem;
    opacity: 0.8;
}

.contact-main {
    padding: 2rem 0;
    background: #1e293b;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

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

.contact-card .contact-icon {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.contact-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.contact-card a {
    color: #cc6a31;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.contact-card a:hover {
    color: #cc6a31;
}

.social-section {
    text-align: center;
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.social-section .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-section .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.2);
}

.social-section .social-link:hover {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

/* İletişim — sade form + LinkedIn */
body.page-iletisim {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 38%, #1e293b 100%);
}

body.page-iletisim main.contact-simple {
    flex: 1 0 auto;
    margin-top: 56px;
    padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
}

.contact-simple-inner {
    width: 100%;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.contact-simple-head {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-simple-head h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

.contact-simple-head p {
    margin: 0;
    font-size: clamp(1.1rem, 2.5vw, 1.28rem);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-style: normal;
    color: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-alert {
    max-width: 920px;
    margin: 0 auto 1.25rem;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.contact-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}

.contact-alert--error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

.contact-simple-panel {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.contact-simple-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
    align-items: stretch;
    gap: clamp(2rem, 5vw, 3rem);
}

.contact-form--simple {
    width: 100%;
    min-width: 0;
}

.contact-simple-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    margin: -0.25rem 0;
}

.contact-simple-email {
    margin: 0 0 0.25rem;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem) 0;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.5;
}

.contact-simple-email a {
    color: #bae6fd;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.contact-simple-email a:hover {
    text-decoration: underline;
    color: #e0f2fe;
}

.contact-simple-social {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.5rem) 0;
}

.contact-form--simple .form-group label {
    color: #e2e8f0;
}

.contact-form--simple .form-group input,
.contact-form--simple .form-group textarea {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
}

.contact-form--simple .form-group input::placeholder,
.contact-form--simple .form-group textarea::placeholder {
    color: #64748b;
}

.contact-form--simple .form-group input:focus,
.contact-form--simple .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 106, 49, 0.2);
}

.contact-simple-submit {
    align-self: flex-start;
    margin-top: 0.25rem;
}

@media (min-width: 769px) {
    .contact-simple-layout .contact-form--simple {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .contact-simple-submit {
        margin-top: auto;
        align-self: flex-start;
    }

    .contact-simple-aside {
        justify-content: center;
    }

    .contact-simple-social {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.contact-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.contact-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.contact-social-btn--linkedin {
    background: #0a66c2;
}

.contact-social-btn--linkedin:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-social-btn--instagram {
    background: linear-gradient(145deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-social-btn--instagram:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-social-btn .fab {
    font-size: 2.15rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .contact-simple-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-simple-aside {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin: 1.75rem 0 0;
        padding: 1.75rem 0 0;
        width: 100%;
    }

    .contact-simple-social {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        min-height: auto;
        padding: 0;
    }
}

/* Services Hero Section */
.services-hero {
    background: #0f172a;
    color: white;
    padding: 0.9rem 0;
    text-align: center;
    margin-top: 56px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #60a5fa;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.updating-badge {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.services-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.services-hero-content p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Hizmetler — sahə görseli + alt şerit (img/futbol.jpg) */
html.page-hizmetler-root,
body.page-hizmetler {
    min-height: 100%;
}

body.page-hizmetler {
    display: flex;
    flex-direction: column;
    background: #0f172a;
}

.services-page-hero {
    margin-top: 56px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px);
    position: relative;
}

.services-page-hero-main {
    flex: 1 1 auto;
    min-height: min(52vh, 520px);
    background-color: #0f172a;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-page-hero-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--services-hero-bg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.03);
    filter: saturate(1.15) contrast(1.05);
    animation: servicesHeroKenBurns 18s ease-in-out infinite alternate;
    will-change: transform;
}

.services-page-hero-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.28) 52%, rgba(15, 23, 42, 0.08) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.22) 0%, rgba(15, 23, 42, 0.56) 100%);
}

@keyframes servicesHeroKenBurns {
    from { transform: scale(1.03) translate3d(0, 0, 0); }
    to   { transform: scale(1.10) translate3d(-1.5%, -1%, 0); }
}

.services-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    padding: 1.5rem max(20px, env(safe-area-inset-right)) 1.5rem max(20px, env(safe-area-inset-left));
    box-sizing: border-box;
}

body.page-hizmetler .services-hero-inner.container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

.services-hero-title {
    margin: 0 0 0.85rem;
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: #ffffff !important;
    max-width: 560px;
    text-align: left;
    align-self: flex-start;
}

.services-hero-subtitle {
    margin: 0;
    font-size: clamp(1.12rem, 1.85vw, 1.32rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 560px;
}

.services-page-hero-bar {
    flex: 0 0 auto;
    min-height: clamp(188px, 36vh, 300px);
    background: #1a1e26;
    display: flex;
    align-items: center;
    padding: clamp(2rem, 5vw, 3.25rem) 0;
    position: relative;
    z-index: 3;
}

.services-page-hero-bar-inner {
    width: 100%;
    text-align: left;
}

.services-page-hero-lead,
h1.services-page-hero-lead {
    margin: 0;
    max-width: 54rem;
    font-size: clamp(1.55rem, 3.45vw, 2.28rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #f8fafc !important;
}

@media (max-width: 768px) {
    .services-page-hero-main {
        min-height: 38vh;
    }

    .services-hero-title,
    .services-hero-subtitle {
        max-width: 100%;
    }
}

/* Hizmetler — 2. bölüm: çizgili iki sütun tablo */
.services-matrix {
    background: #0a1628;
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
    flex: 1 0 auto;
}

/* Neden Biz? — birleşik tablo: üst blokla aynı koyu zemin (#0a1120) */
.services-matrix.services-matrix--neden-biz {
    background: #0a1120;
    padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.services-matrix-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.services-matrix-wrap {
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.services-matrix-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.services-matrix-row:last-child {
    border-bottom: none;
}

.services-matrix-cell {
    min-height: 0;
}

.services-matrix-cell--title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: clamp(1.35rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.5rem);
    border-right: 1px solid rgba(148, 163, 184, 0.22);
}

.services-matrix-cell--title.services-matrix-cell--title-stack {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
}

.services-matrix-heading {
    margin: 0;
    font-size: clamp(0.95rem, 1.65vw, 1.1rem);
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    color: #f8fafc !important;
}

.services-matrix-cell--body {
    padding: clamp(1.35rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
    text-align: left;
}

.services-matrix-cell--body p {
    margin: 0;
    font-size: clamp(1.02rem, 1.85vw, 1.18rem);
    line-height: 1.65;
    color: #e2e8f0 !important;
}

.services-matrix-cell--body p + p {
    margin-top: 0.9rem;
}

.services-matrix-list {
    margin: 0.75rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.5rem;
}

.services-matrix-list li {
    color: #e2e8f0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-matrix-row {
        grid-template-columns: 1fr;
    }

    .services-matrix-cell--title {
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, 0.22);
        padding-bottom: 1rem;
    }

    .services-matrix-row:last-child .services-matrix-cell--title {
        border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    }

    .services-matrix-row:last-child .services-matrix-cell--body {
        border-bottom: none;
    }
}

/* Hizmetler — tablo: sol ve sağ sütun aynı punto ve ağırlık */
@media (min-width: 769px) {
    body.page-hizmetler .services-matrix-row {
        grid-template-columns: minmax(0, 0.65fr) minmax(0, 0.35fr);
    }
}

/* Hizmetler — tablo: hücre içeriklerini dikey ortala */
body.page-hizmetler .services-matrix-cell--body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hizmetler — sol sütun: başlık üstte, açıklama altta (1. satır gibi) */
body.page-hizmetler .services-matrix-cell--title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    justify-content: center;
}

body.page-hizmetler .services-matrix .services-matrix-heading {
    font-size: clamp(1.02rem, 1.85vw, 1.18rem);
    font-weight: 400;
    line-height: 1.65;
}

/* Hizmetler — "NEDEN AnD SPORTS & MEDIA?" başlığını ortala ve büyüt */
body.page-hizmetler .services-matrix-row--why-and .services-matrix-cell--title {
    align-items: center;
    text-align: center;
}

body.page-hizmetler .services-matrix-row--why-and .services-matrix-heading {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

body.page-hizmetler .services-matrix .services-matrix-cell--body p,
body.page-hizmetler .services-matrix .services-matrix-list li {
    font-size: clamp(1.02rem, 1.85vw, 1.18rem);
    line-height: 1.65;
}

/* Hizmetler — sol başlıkların arkasına turuncu box */
body.page-hizmetler .services-matrix .services-matrix-heading {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.72), rgba(204, 106, 49, 0.60));
    border: 1px solid rgba(249, 115, 22, 0.85);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
}

body.page-hizmetler .services-matrix .services-matrix-cell--title-stack p {
    margin: 0;
    font-size: clamp(1.02rem, 1.85vw, 1.18rem);
    line-height: 1.65;
    color: #e2e8f0 !important;
}

body.page-hizmetler .services-matrix .services-matrix-cell--title-stack p + p {
    margin-top: 0.9rem;
}

body.page-hizmetler .services-matrix-led-box {
    width: 100%;
    box-sizing: border-box;
    /* LED satırında ekstra iç kutu soldan kaydırıyordu; hizayı eşitle */
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

body.page-hizmetler .services-matrix-led-box .services-matrix-heading {
    margin-bottom: 0;
}

body.page-hizmetler .services-matrix-led-box p:first-of-type {
    margin-top: 0.65rem;
}

/* Hakkımızda: arka plan tüm sayfa (body.page-hakkimizda) */
html.page-hakkimizda-root,
body.page-hakkimizda {
    min-height: 100%;
}

/* body.page-hakkimizda tam ekran arka planı: hakkimizda.php içindeki <style> */

body.page-hakkimizda .header {
    background: rgba(15, 23, 42, 0.9);
}

body.page-hakkimizda .footer {
    background: rgba(11, 18, 32, 0.82);
    backdrop-filter: blur(8px);
}

/* Hakkımızda hero — referans: sol blok, dikey ortalı (arka plan body’de) */
body.page-hakkimizda .about-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 56px;
    min-height: calc(100vh - 56px);
    flex: 1 0 auto;
    color: #ffffff;
    text-align: left;
    padding: 0;
    background: transparent;
}

body.page-hakkimizda .about-hero .breadcrumb {
    margin-bottom: 0.5rem;
}

body.page-hakkimizda .about-hero .container.about-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem max(20px, env(safe-area-inset-right)) 1.5rem max(20px, env(safe-area-inset-left));
}

@media (min-width: 768px) {
    body.page-hakkimizda .about-hero .container.about-hero-inner {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

body.page-hakkimizda .about-hero-title,
body.page-hakkimizda .about-hero-title .about-hero-line {
    color: #ffffff !important;
}

body.page-hakkimizda .about-hero-title {
    font-size: clamp(2.6rem, 5.6vw, 4.1rem);
    max-width: 560px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin: 0 0 1.125rem;
}

body.page-hakkimizda .about-hero-line {
    display: block;
}

body.page-hakkimizda .about-hero-lead {
    margin: 0;
    font-size: clamp(1.12rem, 1.85vw, 1.32rem);
    line-height: 1.55;
    color: #ffffff;
    max-width: 560px;
    font-weight: 400;
    opacity: 0.96;
}

/* Hakkımızda — 2. bölüm: metin + foto grid (11/22/33.jpg) */
.about-split {
    background: #0a1120;
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.about-split-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.about-split-text {
    color: #f8fafc;
}

.about-split-text p {
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    line-height: 1.65;
    margin: 0 0 1.35rem;
    color: #f8fafc !important;
}

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

.about-split-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.85rem;
    max-width: 440px;
    margin-left: auto;
    width: 100%;
}

.about-split-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.about-split-img--bottom {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(52%, 220px);
    max-width: 100%;
}

@media (max-width: 900px) {
    .about-split-inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .about-split-photos {
        margin-left: 0;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .about-split-img--bottom {
        width: min(58%, 200px);
    }
}

/* Hakkımızda — 4. bölüm: dört blok + turuncu vurgu (sarı dikey yazı yok) */
.about-value-split {
    background: #0a1120;
    padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.about-value-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.about-value-left {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.5rem, 4vw, 3rem);
    row-gap: clamp(1.25rem, 3vw, 2rem);
}

.about-value-col {
    display: grid;
    grid-auto-rows: min-content;
    row-gap: clamp(1.25rem, 3vw, 2rem);
}

.about-value-item p {
    margin: 0;
}

.about-value-item h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 600;
    margin: 0 0 0.45rem;
    color: #f1f5f9 !important;
}

.about-value-item p {
    font-size: clamp(0.98rem, 1.65vw, 1.05rem);
    line-height: 1.65;
    color: #94a3b8 !important;
}

.about-value-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100%;
}

.about-value-claim {
    margin: 0;
    max-width: 16ch;
    text-align: right;
    font-size: clamp(1.85rem, 4.2vw, 3.1rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #cc6a31 !important;
}

.about-value-claim-line {
    display: block;
}

.about-value-claim-gap {
    display: block;
    height: 0.85rem;
}

@media (max-width: 900px) {
    .about-value-columns {
        grid-template-columns: 1fr;
    }

    .about-value-left {
        grid-template-columns: 1fr;
    }

    .about-value-right {
        justify-content: center;
    }

    .about-value-claim {
        max-width: none;
        text-align: center;
    }
}

/* Hakkımızda — Biz neden farklıyız (arka plan görseli: hakkimizda.php <style>) */
.why-different {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(88vh, 920px);
    padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem;
    text-align: center;
}

.why-different-inner {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    margin: 0 auto;
}

/* Neden Biz? — giriş: Hakkımızda about-hero ile aynı tipografi (açık zeminde kontrast renkler) */
body.page-neden-biz .why-different.about-hero {
    justify-content: flex-start;
    text-align: left;
    padding: 0;
    min-height: calc(100vh - 56px);
}

body.page-neden-biz .why-different .container.about-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem max(20px, env(safe-area-inset-right)) 1.5rem max(20px, env(safe-area-inset-left));
}

body.page-neden-biz .why-different .about-hero-title,
body.page-neden-biz .why-different .about-hero-title .about-hero-line {
    color: #111827 !important;
}

body.page-neden-biz .why-different .about-hero-title {
    font-size: clamp(2.6rem, 5.6vw, 4.1rem);
    max-width: 560px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin: 0 0 1.125rem;
}

body.page-neden-biz .why-different .about-hero-line {
    display: block;
}

body.page-neden-biz .why-different .about-hero-lead {
    margin: 0;
    font-size: clamp(1.12rem, 1.85vw, 1.32rem);
    line-height: 1.55;
    color: #1e293b !important;
    max-width: 560px;
    font-weight: 400;
    opacity: 1;
}

.why-different-badge {
    display: inline-block;
    margin: 0 auto 1.75rem;
    padding: 0.52rem 1.3rem;
    border-radius: 999px;
    background: #cc6a31;
    color: #0f172a !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.3;
}

.why-different-title,
.why-different-title .why-different-line {
    color: #111827 !important;
}

.why-different-title {
    font-size: clamp(2.1rem, 5vw, 2.95rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 0 0 1.35rem;
}

.why-different-line {
    display: block;
}

.why-different-sub {
    margin: 0;
    font-size: clamp(1.12rem, 2.3vw, 1.22rem);
    font-weight: 400;
    line-height: 1.55;
    color: #1e293b !important;
}

@media (max-width: 480px) {
    .why-different-badge {
        font-size: 0.8rem;
        padding: 0.48rem 1.05rem;
        margin-bottom: 1.35rem;
    }
}

.contact-item {
    background: #0f172a;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.contact-details p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.social-contact {
    background: #0f172a;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px) scale(1.05);
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
}

/* Contact Form */
.contact-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-form-container > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-large i {
    margin-right: 0.5rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #0f172a;
}

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

.map-placeholder {
    background: #1e293b;
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.map-placeholder p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #1e293b;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
}

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

.service-detailed-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.service-header {
    background: #1e293b;
    color: #f8fafc;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-icon-large {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 1.2rem;
    color: white;
}

.service-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #f8fafc;
}

.service-content {
    padding: 1rem 1.5rem 1.5rem;
}

.service-image-large {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 1rem;
}

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

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

.service-content > p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-features,
.service-benefits {
    margin-bottom: 2rem;
}

.service-features h4,
.service-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #f8fafc;
}

.service-features ul,
.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-features li,
.service-benefits li {
    padding: 0.3rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1rem;
    font-size: 0.85rem;
}

.service-features li::before,
.service-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #0f172a;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: #1e293b;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.process-step p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid,
    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual-large i {
        font-size: 10rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
        padding-left: 2rem;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .video-container {
        padding: 0 1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .marquee-header h3 {
        font-size: clamp(1.2rem, 4vw, 1.55rem);
    }
    
    .team-logo img {
        width: 70px;
        height: 70px;
    }
    
    .team-logo {
        margin: 0 15px;
    }
    
    .contact-hero-content h1,
    .services-hero-content h1,
    .about-hero-title,
    body.page-neden-biz .why-different .about-hero-title,
    body.page-hizmetler .hizmetler-hero .about-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-section .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-section .social-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 2rem;
    }
    
    .service-header {
        padding: 1.5rem;
    }
    
    .contact-hero-content h1,
    .services-hero-content h1,
    .about-hero-title,
    body.page-neden-biz .why-different .about-hero-title,
    body.page-hizmetler .hizmetler-hero .about-hero-title {
        font-size: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Ana sayfa — cover-in arka planlı tanıtım bandı (index → anasayfa) */
.home-cover-band {
    position: relative;
    background-color: #0a0a0a;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
}

.home-cover-band::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Görsel + metin dengesi */
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.66) 48%,
        rgba(0, 0, 0, 0.88) 100%
    );
    pointer-events: none;
}

.home-cover-band__inner {
    position: relative;
    z-index: 1;
}

.home-cover-band__text {
    width: 100%;
    max-width: none;
    text-align: left;
}

.home-cover-band__cta-row {
    display: flex;
    justify-content: flex-start;
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.home-cover-band__text p:last-of-type {
    margin-bottom: 0;
}

.home-cover-band__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3.6vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff !important;
}

.home-cover-band__text p {
    margin: 0 0 0.95rem;
    font-size: clamp(0.98rem, 1.7vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92) !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.home-cover-band__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: #fff;
    color: #0f172a !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-cover-band__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* Hizmetler — giriş (görsel üstü metin) */
.hizmetler-hero {
    position: relative;
    margin-top: 56px;
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    background-color: #0f172a;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(2.25rem, 6vw, 3.5rem);
    overflow: hidden;
}

.hizmetler-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.35) 0%,
        rgba(15, 23, 42, 0.55) 45%,
        rgba(15, 23, 42, 0.82) 100%
    );
    pointer-events: none;
}

body.page-hizmetler .hizmetler-hero .container.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left));
    width: 100%;
}

body.page-hizmetler .hizmetler-hero .about-hero-title,
body.page-hizmetler .hizmetler-hero .about-hero-title .about-hero-line {
    color: #ffffff !important;
}

body.page-hizmetler .hizmetler-hero .about-hero-title {
    font-size: clamp(2.6rem, 5.6vw, 4.1rem);
    max-width: 560px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin: 0 0 1.125rem;
}

body.page-hizmetler .hizmetler-hero .about-hero-line {
    display: block;
}

body.page-hizmetler .hizmetler-hero .about-hero-lead {
    margin: 0;
    font-size: clamp(1.12rem, 1.85vw, 1.32rem);
    line-height: 1.55;
    color: #ffffff;
    max-width: 560px;
    font-weight: 400;
    opacity: 0.96;
}

@media (max-width: 768px) {
    .hizmetler-hero {
        min-height: calc(100vh - 56px);
        align-items: center;
        background-attachment: scroll;
    }
}