/* ============================================
   METALFORCE – AÇIK / FERAH KURUMSAL TEMAssss
   ============================================ */

:root {
    --primary: #0a2540;
    --primary-light: #163a60;
    --secondary: #e07b00;
    --secondary-light: #f59e0b;
    --bg: #f5f7fa;
    --bg2: #ffffff;
    --bg3: #eef1f6;
    --surface: #ffffff;
    --border: #dde3ec;
    --text: #1e293b;
    --text-muted: #5a6a7e;
    --text-dim: #94a3b8;
    --white: #ffffff;
    --success: #059669;
    --font-display: 'Bebas Neue', sans-serif;
    --font-cond: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(10,37,64,0.08);
    --shadow-md: 0 8px 32px rgba(10,37,64,0.12);
    --shadow-lg: 0 20px 60px rgba(10,37,64,0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 90px 0;
}

.center {
    text-align: center;
}

/* TOP BAR */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 9px 0;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar i {
    margin-right: 6px;
    color: var(--secondary);
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
    }

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-metal {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--primary);
}

.logo-force {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-left: 2px;
}

.logo-sub {
    font-family: var(--font-cond);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin-top: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-links a {
        font-family: var(--font-cond);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.8px;
        color: var(--text-muted);
        text-transform: uppercase;
        position: relative;
        transition: color var(--transition);
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width var(--transition);
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }

            .nav-links a:hover::after, .nav-links a.active::after {
                width: 100%;
            }

        .nav-links a.btn-nav {
            background: var(--secondary);
            color: #fff;
            padding: 9px 22px;
            border-radius: var(--radius);
            font-weight: 700;
        }

            .nav-links a.btn-nav::after {
                display: none;
            }

            .nav-links a.btn-nav:hover {
                background: var(--primary);
                color: #fff;
            }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

    .slide.active {
        opacity: 1;
    }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,37,64,0.80) 0%, rgba(10,37,64,0.50) 55%, rgba(10,37,64,0.18) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Sola yaslar */
    text-align: left; /* Metni sola yaslar */
    padding-top: 80px;
    padding-bottom: 40px;
    max-width: 100%; /* Sabit genişliği kaldırdık, slider kadar açılabilir */
    width: 100%; /* Alanı tam kullanmasını sağlar */
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224,123,0,0.18);
    border: 1px solid rgba(224,123,0,0.45);
    color: #fbbf24;
    font-family: var(--font-cond);
    font-size: 13px;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    width: fit-content;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

    .hero-title .line {
        font-family: var(--font-display);
        font-size: clamp(52px, 8vw, 118px);
        letter-spacing: 3px;
        color: #fff;
        line-height: 0.95;
        opacity: 0;
    }

        .hero-title .line[data-line="1"] {
            animation: fadeUp 0.8s 0.5s forwards;
        }

        .hero-title .line[data-line="2"] {
            animation: fadeUp 0.8s 0.7s forwards;
            color: #fbbf24;
        }

        .hero-title .line[data-line="3"] {
            animation: fadeUp 0.8s 0.9s forwards;
        }

/* 2. Açıklama metninin (data-desc) kısıtlamasını kaldırıyoruz */
.hero-desc {
    width: 100%; /* Alanın tamamına yayılmaya çalışır */
    max-width: 1200px; /* Slider genişliğine kadar (veya istersen 100% yap) gitmesini sağlar */
    font-size: clamp(16px, 1.8vw, 22px); /* Yazıyı biraz daha büyütebilirsin */
    color: rgba(255,255,255,0.9);
    margin-bottom: 38px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s forwards;
    /* Yazının slider boyutuna kadar gidip sonra alta kayması için: */
    display: block;
    word-wrap: break-word; /* Çok uzun kelime olursa bölerek aşağı atar */
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 1.3s forwards;
}

/* COUNTER BAR */
.hero-counter-bar {
    position: relative;
    z-index: 10;
    background: #fff;
    border-top: 4px solid var(--secondary);
    box-shadow: 0 4px 20px rgba(10,37,64,0.1);
}

    .hero-counter-bar .container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

.hcb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px;
    border-right: 1px solid var(--border);
}

    .hcb-item:last-child {
        border-right: none;
    }

    .hcb-item strong {
        font-family: var(--font-display);
        font-size: 46px;
        color: var(--primary);
        letter-spacing: 1px;
        line-height: 1;
    }

    .hcb-item span {
        font-family: var(--font-cond);
        font-size: 12px;
        letter-spacing: 1.5px;
        color: var(--text-muted);
        margin-top: 4px;
        text-transform: uppercase;
    }

/* MARQUEE */
.marquee-band {
    background: var(--primary);
    overflow: hidden;
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

    .marquee-track span {
        font-family: var(--font-cond);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        color: rgba(255,255,255,0.65);
        flex-shrink: 0;
    }

    .marquee-track .dot-sep {
        color: var(--secondary);
    }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-cond);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 30px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(224,123,0,0.35);
    }

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}

    .btn-ghost:hover {
        background: #fff;
        color: var(--primary);
        border-color: #fff;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 11px 28px;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
}

    .btn-outline:hover {
        background: var(--primary);
        color: #fff;
    }

.btn-dark {
    background: var(--primary);
    color: #fff;
}

    .btn-dark:hover {
        background: var(--primary-light, #163a60);
        transform: translateY(-2px);
    }

.full-width {
    width: 100%;
    justify-content: center;
}

/* SECTION TYPOGRAPHY */
.section-tag {
    font-family: var(--font-cond);
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 54px;
}

    .section-header h2 {
        font-family: var(--font-display);
        font-size: clamp(34px, 4.5vw, 60px);
        letter-spacing: 1px;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 17px;
        color: var(--text-muted);
    }

h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 52px);
    letter-spacing: 1px;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 14px;
}

    h2 em {
        font-style: normal;
        color: var(--secondary);
    }

p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ABOUT STRIP */
.about-strip {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-strip-text p {
    margin-bottom: 28px;
    font-size: 17px;
}

.about-strip-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.av-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .av-box::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--secondary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition);
    }

    .av-box:hover {
        background: var(--white);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: transparent;
    }

        .av-box:hover::after {
            transform: scaleX(1);
        }

    .av-box i {
        font-size: 26px;
        color: var(--secondary);
    }

    .av-box strong {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary);
    }

    .av-box span {
        font-size: 13px;
        color: var(--text-muted);
    }

/* SERVICES */
.services-section {
    background: var(--bg3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.srv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .srv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .srv-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-6px);
        border-color: transparent;
    }

        .srv-card:hover::before {
            transform: scaleX(1);
        }

.srv-icon {
    width: 54px;
    height: 54px;
    background: rgba(224,123,0,0.1);
    border: 1px solid rgba(224,123,0,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}

.srv-card:hover .srv-icon {
    background: var(--secondary);
    border-color: var(--secondary);
}

.srv-icon i {
    font-size: 22px;
    color: var(--secondary);
    transition: var(--transition);
}

.srv-card:hover .srv-icon i {
    color: #fff;
}

.srv-content h3 {
    font-family: var(--font-cond);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.srv-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

.srv-list {
    padding: 0;
}

    .srv-list li {
        font-size: 13px;
        color: var(--text-muted);
        padding: 5px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .srv-list li::before {
            /* '›' karakteri yerine onun Unicode karşılığı olan \203A kodunu kullanıyoruz */
            content: '\203A';
            color: var(--secondary);
            font-size: 16px;
            font-weight: 700;
        }

.srv-number {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 72px;
    color: rgba(10,37,64,0.04);
    line-height: 1;
    pointer-events: none;
}

/* WHY US – lacivert zemin, kontrast bölüm */
.why-us {
    background: var(--primary);
}

    .why-us .section-tag {
        color: #fbbf24;
    }

    .why-us h2 {
        color: #fff;
        margin-bottom: 54px;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

    .why-item:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-4px);
        border-color: rgba(224,123,0,0.4);
    }

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(224,123,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    background: var(--secondary);
}

.why-icon i {
    font-size: 24px;
    color: var(--secondary);
    transition: var(--transition);
}

.why-item:hover .why-icon i {
    color: #fff;
}

.why-item h4 {
    font-family: var(--font-cond);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* REFERENCES */
.references-section {
    background: var(--bg);
}

.table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .styled-table thead tr {
        background: var(--primary);
    }

    .styled-table th {
        padding: 16px 20px;
        text-align: left;
        font-family: var(--font-cond);
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.8);
        font-weight: 600;
    }

    .styled-table td {
        padding: 15px 20px;
        color: var(--text-muted);
        border-bottom: 1px solid var(--border);
    }

    .styled-table tbody tr {
        transition: background var(--transition);
    }

        .styled-table tbody tr:last-child td {
            border-bottom: none;
        }

        .styled-table tbody tr:hover {
            background: rgba(10,37,64,0.03);
        }

    .styled-table strong {
        color: var(--primary);
    }

.ref-no {
    font-family: var(--font-cond);
    font-weight: 700;
    color: var(--text-dim) !important;
    letter-spacing: 1px;
}

.tag {
    display: inline-block;
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

    .tag.done {
        background: rgba(5,150,105,0.1);
        color: var(--success);
        border: 1px solid rgba(5,150,105,0.25);
    }

    .tag.progress {
        background: rgba(224,123,0,0.1);
        color: var(--secondary);
        border: 1px solid rgba(224,123,0,0.25);
    }

/* CONTACT */
.contact-section {
    background: var(--bg2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 14px;
}

.contact-info > p {
    margin-bottom: 36px;
    font-size: 17px;
}

.cinfo-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .cinfo-item i {
        width: 44px;
        height: 44px;
        background: rgba(224,123,0,0.1);
        border: 1px solid rgba(224,123,0,0.2);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        font-size: 16px;
        flex-shrink: 0;
    }

    .cinfo-item div {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .cinfo-item strong {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary);
    }

    .cinfo-item span {
        font-size: 14px;
        color: var(--text-muted);
    }

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

    .form-group label {
        font-family: var(--font-cond);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .form-group input, .form-group textarea, .form-group select {
        background: var(--bg3);
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        padding: 12px 16px;
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--text);
        outline: none;
        transition: border-color var(--transition), background var(--transition);
        width: 100%;
    }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--secondary);
            background: var(--white);
        }

    .form-group select {
        appearance: none;
        cursor: pointer;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: var(--text-dim);
        }

/* FOOTER */
.main-footer {
    background: var(--primary);
}

.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    margin-bottom: 16px;
}

    .footer-logo .logo-metal {
        font-family: var(--font-display);
        font-size: 26px;
        letter-spacing: 3px;
        color: #fff;
    }

    .footer-logo .logo-force {
        font-family: var(--font-display);
        font-size: 26px;
        letter-spacing: 3px;
        color: var(--secondary);
    }

.brand-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--secondary);
            color: #fff;
            border-color: var(--secondary);
        }

.footer-col h4 {
    font-family: var(--font-cond);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

    .footer-col ul li a {
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        transition: color var(--transition);
    }

        .footer-col ul li a:hover {
            color: var(--secondary);
        }

.footer-contact-list {
    gap: 14px !important;
}

    .footer-contact-list li {
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .footer-contact-list li i {
            color: var(--secondary);
            width: 14px;
        }

.footer-bottom {
    padding: 22px 0;
}

    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom p {
        font-size: 13px;
        color: rgba(255,255,255,0.3);
    }

/* PAGE HEADER */
.page-header {
    background: var(--primary);
    padding: 90px 0 60px;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 50px 50px;
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        font-family: var(--font-display);
        font-size: clamp(40px, 7vw, 88px);
        letter-spacing: 3px;
        color: #fff;
        line-height: 1;
    }

        .page-header h1 span {
            color: var(--secondary);
        }

    .page-header p {
        font-size: 17px;
        color: rgba(255,255,255,0.65);
        margin-top: 10px;
    }

.ph-breadcrumb {
    font-family: var(--font-cond);
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}

    .ph-breadcrumb a {
        color: #fbbf24;
    }

/* GALERİ */
.gallery-section {
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,37,64,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

    .gallery-overlay i {
        font-size: 28px;
        color: #fff;
        opacity: 0;
        transform: scale(0.5);
        transition: var(--transition);
    }

.gallery-item:hover .gallery-overlay {
    background: rgba(10,37,64,0.5);
}

    .gallery-item:hover .gallery-overlay i {
        opacity: 1;
        transform: scale(1);
    }

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,37,64,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

    .lightbox.open {
        display: flex;
    }

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
    z-index: 10000;
}

    .lightbox-close:hover {
        color: var(--secondary);
    }

/* ABOUT PAGE */
.about-section {
    background: var(--bg);
}

.about-text-block {
    max-width: 820px;
    margin: 0 auto 80px;
    text-align: center;
}

    .about-text-block p {
        font-size: 17px;
        margin-bottom: 16px;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .value-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

    .value-card h4 {
        font-family: var(--font-cond);
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .value-card h4 i {
            color: var(--secondary);
        }

    .value-card p {
        font-size: 15px;
    }

.stats-band {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-band-item {
    padding: 16px;
    border-right: 1px solid var(--border);
}

    .stat-band-item:last-child {
        border-right: none;
    }

    .stat-band-item .num {
        font-family: var(--font-display);
        font-size: 60px;
        color: var(--primary);
        letter-spacing: 1px;
        line-height: 1;
    }

    .stat-band-item .lbl {
        font-family: var(--font-cond);
        font-size: 13px;
        letter-spacing: 2px;
        color: var(--text-muted);
        text-transform: uppercase;
        margin-top: 6px;
    }

.team-section {
    background: var(--bg2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .team-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-6px);
    }

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(10,37,64,0.07);
    border: 2px solid rgba(10,37,64,0.15);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--primary);
}

.team-card h4 {
    font-family: var(--font-cond);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 13px;
    color: var(--secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-cond);
    font-weight: 600;
}

.team-card p {
    font-size: 14px;
    margin-top: 10px;
}

.cta-band {
    background: var(--secondary);
    padding: 60px 0;
    text-align: center;
}

    .cta-band h2 {
        color: #fff;
        margin-bottom: 12px;
    }

    .cta-band p {
        color: rgba(255,255,255,0.85);
        font-size: 18px;
        margin-bottom: 32px;
    }

/* ANİMASYONLAR */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .about-strip-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .hero-counter-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-band-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-band-item {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 65px 0;
    }

    .top-bar-right {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 112px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 28px 24px;
        gap: 18px;
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 2px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .nav-links a {
            font-size: 19px;
            color: var(--primary);
        }

    .hamburger {
        display: flex;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-strip-visual {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .hcb-item strong {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-counter-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-strip-visual {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 22px;
    }

    .stats-band-grid {
        grid-template-columns: 1fr 1fr;
    }
}


.hero-content {
    /* Masaüstündeki o devasa 600px boşluğu telefonlarda sıfırlıyoruz */
    padding-right: 25px !important;
    padding-left: 25px !important;
    max-width: 100% !important;
    width: 100% !important;
    align-items: flex-start !important;
    justify-content: center !important;
}
