/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:       #d40000;
    --red-dark:  #a80000;
    --gold:      #c9a84c;
    --dark:      #111111;
    --mid:       #444444;
    --light:     #f5f5f5;
    --white:     #ffffff;

    --ff-head:   'Montserrat', sans-serif;
    --ff-body:   'Inter', sans-serif;

    --radius:    14px;
    --shadow:    0 12px 40px rgba(0,0,0,.12);
    --transition: all .3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    opacity: 0;
    animation: pageFade 1s ease forwards;
}

@keyframes pageFade {
    to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-head);
    letter-spacing: .4px;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

section { scroll-margin-top: 90px; }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--red);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--mid);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 50px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-hero-primary {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .5px;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-hero-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212,0,0,.35);
    color: #fff;
}

.btn-hero-outline {
    display: inline-block;
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid rgba(255,255,255,.6);
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.btn-view {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1.5px solid var(--red);
    padding-bottom: 1px;
    transition: var(--transition);
}
.btn-view:hover {
    color: var(--red);
}

.btn-primary-dark {
    display: inline-block;
    background: var(--dark);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-primary-dark:hover {
    background: #333;
    transform: translateY(-3px);
    color: #fff;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    padding: .6rem 10rem;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.navbar-img {
    width: 140px;
    transition: width .3s;
}
.navbar.scrolled .navbar-img {
    width: 115px;
}

.navbar .nav-link {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .8px;
    color: #fff;
    padding: 6px 14px;
    transition: color .2s;
    text-transform: uppercase;
}
.navbar.scrolled .nav-link {
    color: var(--dark);
}
.navbar .nav-link:hover,
.navbar.scrolled .nav-link:hover {
    color: var(--red);
}

/* Dropdown */
.cat-menu {
    background: rgba(15,15,15,.95);
    backdrop-filter: blur(12px);
    border: none;
    border-radius: 12px;
    padding: 8px;
    margin-top: 10px;
    min-width: 200px;
}
.cat-menu .dropdown-item {
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: .88rem;
    transition: background .2s;
}
.cat-menu .dropdown-item:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

/* Search */
.nav-search {
    position: relative;
}
.nav-search input {
    border: 1.5px solid rgba(255,255,255,.5);
    background: rgba(0,0,0,.25);
    color: #fff;
    border-radius: 30px;
    padding: 6px 34px 6px 14px;
    font-size: .8rem;
    outline: none;
    transition: .25s;
    width: 160px;
}
.nav-search input::placeholder { color: rgba(255,255,255,.7); }
.nav-search input:focus { width: 200px; }
.navbar.scrolled .nav-search input {
    border-color: #ddd;
    background: #f5f5f5;
    color: #222;
}
.nav-search button {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255,255,255,.85);
}
.navbar.scrolled .nav-search button { color: #555; }

/* Social */
.social-icons a {
    color: #fff;
    font-size: 1.05rem;
    transition: var(--transition);
}
.navbar.scrolled .social-icons a { color: var(--dark); }
.social-icons a:hover {
    color: var(--red) !important;
    transform: scale(1.2) rotate(-5deg);
}

/* Language */
.lang-wrapper { cursor: pointer; }
.lang-icon { color: #fff; transition: .2s; }
.navbar.scrolled .lang-icon { color: var(--dark); }
.lang-icon:hover { opacity: .7; }

.lang-dropdown {
    position: absolute;
    top: 34px; right: 0;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.18);
    width: 170px;
    padding: 6px 0;
    display: none;
    z-index: 2000;
}
.navbar.scrolled .lang-dropdown {
    background: rgba(255,255,255,.95);
    border-color: #eee;
}
.lang-item {
    padding: 10px 16px;
    font-size: .88rem;
    font-weight: 500;
    color: #fff;
    transition: .15s;
    cursor: pointer;
    border-radius: 8px;
    margin: 2px 6px;
}
.navbar.scrolled .lang-item { color: var(--dark); }
.lang-item:hover { background: rgba(255,255,255,.15); }

/* Toggler */
.navbar-toggler { z-index: 9999; border: none; }
.toggler-icon { font-size: 1.9rem; color: #fff; transition: transform .3s; }
.navbar-toggler[aria-expanded="true"] .toggler-icon { transform: rotate(90deg); }

/* ============================================================
   MOBILE NAVBAR
============================================================ */
@media (max-width: 991px) {
    .navbar { 
        /*background: rgba(212,0,0,.97);*/
    padding-right: .7rem !important;
        padding-left: .7rem !important;
        padding-top: 0;
            padding-bottom: 0;
    }
    .navbar-img { width: 110px !important; }

    .navbar-collapse {
        position: fixed;
        inset: 0;
        background: rgba(10,10,10,.97);
        backdrop-filter: blur(16px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform .4s cubic-bezier(.77,0,.175,1);
        padding: 0;
        height: 100vh;
    }
    .navbar-collapse.show { transform: translateY(0); }

    .navbar-nav {
        flex-direction: column;
        gap: 1.2rem;
        margin: 0;
    }
    .navbar-nav .nav-link {
        color: #fff !important;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 2px;
    }
    .navbar-nav .nav-link:hover { color: var(--red) !important; }

    .navbar-right {
        flex-direction: column;
        margin-top: 2.5rem;
        gap: 1.5rem;
    }
    .nav-search { display: none !important; }

    .social-icons { gap: 2rem; }
    .social-icons a { font-size: 1.6rem; color: #fff; }

    .lang-icon { color: #fff !important; font-size: 1.4rem !important; }
    .lang-item { color: #fff; font-size: 1rem; }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.carousel, .carousel-inner, .carousel-item {
    height: 100%;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* img varsa tam kapla */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(0,0,0,.72) 0%,
            rgba(0,0,0,.35) 50%,
            rgba(0,0,0,.15) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10vw;
    max-width: 1000px;
}

.hero-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
    opacity: 0;
    animation: heroUp 1s ease .2s forwards;
}

.hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0;
    animation: heroUp 1s ease .4s forwards;
}
.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0;
    animation: heroUp 1s ease .6s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroUp 1s ease .8s forwards;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: scrollBounce 2s infinite;
}
.hero-scroll-hint i { font-size: 1.2rem; }

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

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   MARQUEE STRIP
============================================================ */
.marquee-strip {
    background: var(--dark);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 60px;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track span {
    color: #aaa;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORY GRID (Mosaic)
============================================================ */
.category-grid-section {
    padding: 90px 0 0;
}

.cg-header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
}

.category-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 420px;
    gap: 4px;
}

/* Büyük kart sol sütun tamamı */
.cg-card.cg-large {
    grid-row: 1 / 3;
}

/* Tam genişlik alt kart */
.cg-card.cg-wide {
    grid-column: 1 / 3;
}

.cg-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.cg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}

.cg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.2) 50%,
            transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 36px;
    transition: background .4s;
}

.cg-card:hover .cg-img { transform: scale(1.06); }
.cg-card:hover .cg-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.35) 50%, transparent 100%);
}

.cg-content { color: #fff; }

.cg-tag {
    display: inline-block;
    background: var(--red);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.cg-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.cg-content p {
    font-size: .9rem;
    opacity: .8;
    margin-bottom: 14px;
    max-width: 320px;
}

.cg-arrow {
    font-size: 1.6rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all .3s ease .1s;
    display: block;
}
.cg-card:hover .cg-arrow { opacity: 1; transform: translateX(0); }

/* Wide card layout */
.cg-card.cg-wide {
    grid-template-rows: 300px;
    height: 300px;
}
.cg-card.cg-wide .cg-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, transparent 70%);
    align-items: center;
}
.cg-card.cg-wide .cg-content { max-width: 480px; }

@media (max-width: 768px) {
    .category-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 280px);
    }
    .cg-card.cg-large  { grid-row: auto; }
    .cg-card.cg-wide   { grid-column: 1; height: 280px; }
}

/* ============================================================
   STATS
============================================================ */
.stats-section {
    background: var(--dark);
    padding: 70px 0;
}

.stat-card {
    color: #fff;
}

.stat-number {
    font-family: var(--ff-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.stat-card span:not(.stat-number) {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--red);
}

.stat-card p {
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-top: 8px;
    font-weight: 600;
}

/* ============================================================
   SPOTLIGHT (Oil Banner)
============================================================ */
.spotlight-section {
    padding: 0;
    overflow: hidden;
}

.spotlight-inner {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8vw;
    gap: 40px;
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}

.spotlight-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 480px;
}

.spotlight-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.spotlight-content p {
    font-size: 1.05rem;
    opacity: .85;
    line-height: 1.7;
    margin-bottom: 30px;
}

.spotlight-product {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.spotlight-product img {
    height: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
    animation: floatProduct 5s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .spotlight-inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 24px;
    }
    .spotlight-product img { height: 220px; }
    .spotlight-overlay {
        background: rgba(0,0,0,.7);
    }
}

/* ============================================================
   QUALITY SECTION (Split)
============================================================ */
.quality-section {
    display: flex;
    min-height: 620px;
}

.qs-left {
    flex: 1;
    position: relative;
    background: #f0efec;
    overflow: hidden;
}

.qs-img-stack {
    position: relative;
    height: 100%;
}

.qs-img-main {
    width: 85%;
    height: 75%;
    object-fit: cover;
    margin: 5% 0 0 5%;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.qs-img-second {
    width: 55%;
    height: 45%;
    object-fit: cover;
    position: absolute;
    bottom: 5%;
    right: 0;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 4px solid #fff;
}

.qs-right {
    flex: 1;
    padding: 80px 8vw 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qs-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.qs-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.qs-feature i {
    font-size: 1.6rem;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.qs-feature strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}

.qs-feature span {
    font-size: .9rem;
    color: #777;
}

@media (max-width: 991px) {
    .quality-section {
        flex-direction: column;
    }
    .qs-left {
        height: 420px;
    }
    .qs-right {
        padding: 50px 30px;
    }
}

/* ============================================================
   NEWS SECTION
============================================================ */
.news-section {
    padding: 90px 0;
    background: #f8f8f8;
}

.news-card-modern {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.ncm-img {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform .5s ease;
}

.news-card-modern:hover .ncm-img { transform: scale(1.04); }

.ncm-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--red);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
}

.ncm-tag--green  { background: #2e7d32; }
.ncm-tag--amber  { background: #e65100; }

.ncm-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ncm-date {
    font-size: .75rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.ncm-body h5 {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.ncm-body p {
    font-size: .88rem;
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.ncm-link {
    font-weight: 700;
    font-size: .85rem;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.ncm-link:hover { gap: 10px; color: var(--red); }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #ff4444 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,...") center/400px;
    opacity: .04;
    pointer-events: none;
}

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

.cta-banner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-banner .btn-hero-primary {
    background: #fff;
    color: var(--red);
    border-color: #fff;
}
.cta-banner .btn-hero-primary:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}
.reveal-bottom { transform: translateY(60px); }
.reveal-left    { transform: translateX(-60px); }
.reveal-right   { transform: translateX(60px); }
.reveal.show    { opacity: 1; transform: translate(0,0); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #1b232c;
    color: #ccc;
    font-size: .9rem;
}

.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-logo { width: 110px; }

.footer-about {
    font-size: .88rem;
    line-height: 1.7;
    color: #888;
    margin-bottom: 16px;
    max-width: 320px;
}

.footer-address {
    font-style: normal;
    font-size: .85rem;
    color: #777;
    line-height: 1.8;
}
.footer-address a { color: #aaa; transition: color .2s; }
.footer-address a:hover { color: #fff; }

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: #aaa;
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #888;
    font-size: .875rem;
    transition: color .2s, padding-left .2s;
    display: block;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-certs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: #aaa;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    padding: 6px 12px;
    border-radius: 8px;
}
.cert-badge i { color: var(--gold); }

.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,.3);
    font-size: .8rem;
    color: #555;
}
.footer-bottom a { color: #666; transition: color .2s; }
.footer-bottom a:hover { color: #aaa; }

/* ============================================================
   MOBILE GENERAL
============================================================ */
@media (max-width: 768px) {
    .footer-about { max-width: 100%; }
    .footer-social { justify-content: center; }

    .stats-section .row { gap: 0; }

    body { font-size: .95rem; }
}

@media (max-width: 992px) {
    html, body { overflow-x: hidden; }
}
/* ── HERO CONTROLS & INDICATORS ─────────────────── */
.hero-control {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-control:hover {
    background: var(--red);
    border-color: var(--red);
}
.hero-control i {
    font-size: 1.4rem;
    color: #fff;
}
.carousel-control-prev.hero-control { left: 0; right: auto; }
.carousel-control-next.hero-control { right: 0; left: auto; }

.hero-indicators {
    bottom: 60px;
    gap: 8px;
    margin: 0;
}
.hero-indicators button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.4);
    border: none;
    opacity: 1;
    transition: width .4s ease, background .3s;
}
.hero-indicators button.active {
    width: 56px;
    background: var(--red);
}

/* Slide içeriği sağa hizalamak için */
.hero-content--right {
    margin-left: auto;
    margin-right: 8vw;
    text-align: right;
    align-items: flex-end;
}
.hero-content--right .hero-cta-group {
    justify-content: flex-end;
}
/* ============================================================
   GLOBAL REACH SECTION
============================================================ */
.global-section {
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a2e 60%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.global-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 70% 50%, rgba(196,17,27,.18) 0%, transparent 55%),
            radial-gradient(circle at 10% 80%, rgba(255,255,255,.03) 0%, transparent 40%);
    pointer-events: none;
}

.global-inner {
    display: flex;
    align-items: center;
    min-height: 680px;
    gap: 0;
}

/* ── Sol İçerik ───────────────────────────────────── */
.global-content {
    flex: 1;
    padding: 80px 60px 80px 8vw;
    position: relative;
    z-index: 2;
}

.global-content .section-eyebrow {
    color: rgba(196,17,27,.9);
    border-color: rgba(196,17,27,.3);
    background: rgba(196,17,27,.08);
}

.global-content .section-title {
    color: #fff;
    margin-bottom: 20px;
}

.global-desc {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 36px;
}

/* ── Bayrak Grid ──────────────────────────────────── */
.flag-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    max-width: 520px;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 10px 6px 8px;
    cursor: default;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.flag-item:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-4px) scale(1.05);
}

.flag-item span {
    font-size: 1.55rem;
    line-height: 1;
}

.flag-item small {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    white-space: nowrap;
}

.flag-item--more {
    background: rgba(196,17,27,.2);
    border-color: rgba(196,17,27,.4);
}

.flag-item--more span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--red);
    font-family: var(--ff-head);
}

.flag-item--more small { color: rgba(196,17,27,.8); }

/* ── Sağ Harita Paneli ────────────────────────────── */
.global-map-panel {
    flex: 1.1;
    position: relative;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,17,27,.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.map-img {
    width: 100%;
    max-width: 750px;
    filter: drop-shadow(0 0 30px rgba(196,17,27,.3));
    animation: mapFloat 8s ease-in-out infinite;
}

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

/* Fallback Globe */
.map-fallback {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

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

.globe-visual > i {
    font-size: 9rem;
    color: rgba(255,255,255,.15);
    position: relative;
    z-index: 2;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196,17,27,.25);
    animation: ringPulse 4s ease-in-out infinite;
}
.globe-ring--1 { width: 200px; height: 200px; animation-delay: 0s; }
.globe-ring--2 { width: 320px; height: 320px; animation-delay: .8s; }
.globe-ring--3 { width: 440px; height: 440px; animation-delay: 1.6s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1);   opacity: .6; }
    50%       { transform: scale(1.04); opacity: 1; }
}

/* ── Floating Stat Kartları ───────────────────────── */
.map-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 14px 20px;
    color: #fff;
    z-index: 3;
    animation: statFloat 6s ease-in-out infinite;
}

.map-stat--tl { top: 14%;  left: 8%;  animation-delay: 0s; }
.map-stat--br { bottom: 14%; right: 8%; animation-delay: 1.5s; }

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

.map-stat i {
    font-size: 1.6rem;
    color: var(--red);
}

.map-stat strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--ff-head);
    line-height: 1;
}

.map-stat span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 991px) {
    .global-inner {
        flex-direction: column;
        min-height: auto;
    }

    .global-content {
        padding: 60px 24px 40px;
        width: 100%;
    }

    .global-desc { max-width: 100%; }

    .flag-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 100%;
    }

    .global-map-panel {
        width: 100%;
        height: 320px;
    }

    .map-stat--tl { top: 10%; left: 5%; }
    .map-stat--br { bottom: 10%; right: 5%; }
}

@media (max-width: 480px) {
    .flag-grid { grid-template-columns: repeat(4, 1fr); }
    .flag-item span { font-size: 1.3rem; }
    .globe-ring--3 { width: 280px; height: 280px; }
}
/* ============================================================
   PRODUCTS SECTION
============================================================ */
.products-section {
    padding: 90px 0;
    background: #fafafa;
}

/* Modern Tabs */
.modern-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.mtab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: transparent;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: .83rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    transition: var(--transition);
}

.mtab:hover {
    border-color: var(--red);
    color: var(--red);
}

.mtab.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.mtab i { font-size: 1rem; }

/* Tab Panels */
.mtab-pane { display: none; }
.mtab-pane.active { display: block; }

/* Product Card */
.product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .35s ease, box-shadow .35s ease;
    opacity: 0;
    transform: translateY(40px);
}

.product-card.animate {
    animation: fadeUp .8s ease forwards;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.product-card img {
    height: 180px;
    width: 100%;
    object-fit: contain;
    transition: transform .4s ease;
    margin-bottom: 12px;
}

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

.product-card h6 {
    font-weight: 600;
    font-size: .88rem;
    color: #222;
    margin-bottom: 10px;
    flex: 1;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.product-card[data-delay="1"] { animation-delay: .1s; }
.product-card[data-delay="2"] { animation-delay: .2s; }
.product-card[data-delay="3"] { animation-delay: .3s; }
.product-card[data-delay="4"] { animation-delay: .4s; }
.product-card[data-delay="5"] { animation-delay: .5s; }
.product-card[data-delay="6"] { animation-delay: .6s; }
/* ============================================================
   TRUST & SUSTAINABILITY SECTION
============================================================ */
.trust-section {
    background: #0a0a0a;
    padding: 100px 5vw;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,17,27,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Başlık ─────────────────────────────────────── */
.trust-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.trust-header-desc {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 16px;
}

/* ── 3 Sütun ────────────────────────────────────── */
.trust-pillars {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 64px;
    align-items: start;
}

.trust-pillar {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 40px 32px;
    transition: border-color .3s, transform .3s;
}

.trust-pillar:hover {
    border-color: rgba(196,17,27,0.3);
    transform: translateY(-6px);
}

/* Merkez sütun */
.trust-pillar--center {
    background: rgba(196,17,27,0.06);
    border-color: rgba(196,17,27,0.2);
    padding: 48px 36px;
}

.trust-pillar--center:hover {
    border-color: rgba(196,17,27,0.5);
}

.pillar-center-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,17,27,0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* İkon */
.pillar-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(196,17,27,0.3);
    animation: trustRing 3s ease-in-out infinite;
}

@keyframes trustRing {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.15); opacity: 1;   }
}

.pillar-icon-wrap > i {
    font-size: 1.8rem;
    color: var(--red);
    position: relative;
    z-index: 1;
    background: rgba(196,17,27,0.12);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pillar içerik */
.pillar-body h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: var(--ff-head);
}

.pillar-body p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Badges listesi */
.pillar-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pillar-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
}

.pillar-badges li i {
    color: var(--red);
    font-size: 0.85rem;
}

/* Stat çifti (merkez) */
.pillar-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.pillar-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
}

.pillar-stat strong {
    display: inline;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--red);
    font-family: var(--ff-head);
    line-height: 1;
}

.pillar-stat span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
}

/* ── Progress Barlar ─────────────────────────────── */
.trust-progress-wrap {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 40px 48px;
}

.trust-progress-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 32px;
}

.trust-progress-title i {
    color: var(--red);
    font-size: 1rem;
}

.trust-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tp-bar-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tp-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    min-width: 220px;
    white-space: nowrap;
}

.tp-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 99px;
    overflow: visible;
    position: relative;
}

.tp-fill {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    background: linear-gradient(90deg, #c4111b, #ff4d57);
    position: relative;
    transition: width 1.4s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 0 12px rgba(196,17,27,0.4);
}

.tp-pct {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(calc(100% + 8px), -50%);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--red);
    white-space: nowrap;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
    .trust-pillars {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .trust-pillar--center {
        order: -1;
    }

    .trust-progress-wrap {
        padding: 28px 24px;
    }

    .tp-label {
        min-width: 140px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .trust-section { padding: 72px 5vw; }
    .pillar-stats { grid-template-columns: 1fr; }
    .tp-bar-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .tp-label { min-width: unset; }
    .tp-track { width: 100%; }
}
/* ============================================================
   SPOTLIGHT VARIANTS
============================================================ */

/* Ürün görseli yüzen animasyon */
.spotlight-product--float img {
    animation: spFloat 4s ease-in-out infinite;
}

@keyframes spFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%       { transform: translateY(-18px) rotate(2deg); }
}

/* Reverse layout — ürün solda, içerik sağda */
.spotlight-section--reverse .spotlight-inner {
    flex-direction: row-reverse;
}

/* ── Overlay varyantları ─────────────────────────── */
.spotlight-overlay--dark {
    background: linear-gradient(
            105deg,
            rgba(10,10,10,0.88) 0%,
            rgba(10,10,10,0.65) 50%,
            transparent 100%
    );
}

.spotlight-overlay--cream {
    background: linear-gradient(
            105deg,
            rgba(20,12,5,0.82) 0%,
            rgba(20,12,5,0.55) 55%,
            transparent 100%
    );
}

.spotlight-overlay--blue {
    background: linear-gradient(
            105deg,
            rgba(5,15,35,0.9) 0%,
            rgba(5,15,35,0.65) 55%,
            transparent 100%
    );
}

/* ── Badges ──────────────────────────────────────── */
.spotlight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
}

.spotlight-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 99px;
    text-transform: uppercase;
}

.spotlight-badges span i {
    color: var(--red);
    font-size: 0.8rem;
}

/* ── İstatistik Üçlüsü (Dairy) ───────────────────── */
.spotlight-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 22px 0 30px;
}

.sp-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-stat strong {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: var(--ff-head);
}

.sp-stat span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.sp-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

/* ── Frost inner (Frozen) ────────────────────────── */
.spotlight-inner--frost {
    background-color: #061525;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .spotlight-section--reverse .spotlight-inner {
        flex-direction: column;
    }

    .spotlight-stats {
        gap: 14px;
    }

    .sp-stat strong { font-size: 1.4rem; }

    .spotlight-badges {
        gap: 8px;
    }

    .spotlight-badges span {
        font-size: 0.68rem;
        padding: 5px 10px;
    }
}
/* ============================================================
   ABOUT US PAGE
============================================================ */

/* ── Hero ───────────────────────────────────────── */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            160deg,
            rgba(5,5,5,0.82) 0%,
            rgba(5,5,5,0.65) 50%,
            rgba(196,17,27,0.15) 100%
    );
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 0 24px;
}

.about-hero__title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 16px 0 24px;
    font-family: var(--ff-head);
}

.about-hero__sub {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 40px;
}

.about-hero__scroll {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: .5; }
    50%       { transform: translateY(6px); opacity: 1; }
}

/* Floating stat kartları */
.about-hero__stat-card {
    position: absolute;
    z-index: 3;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.about-hero__stat-card i {
    font-size: 1.5rem;
    color: var(--red);
}

.about-hero__stat-card strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    font-family: var(--ff-head);
}

.about-hero__stat-card span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.about-hero__stat-card--1 { bottom: 15%; left: 6%; }
.about-hero__stat-card--2 { bottom: 15%; right: 6%; }

/* ── Our Story ──────────────────────────────────── */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 5vw;
}

.about-story__img {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-story__img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.about-story__img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--red);
    color: #fff;
    border-radius: 20px;
    padding: 20px 28px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(196,17,27,0.4);
}

.about-story__img-badge strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    font-family: var(--ff-head);
    line-height: 1;
}

.about-story__img-badge span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

.about-story__text p {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-story__facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.about-story__fact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    /*color: rgba(255,255,255,0.7);*/
}

.about-story__fact i {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Stats Bar ──────────────────────────────────── */
.about-stats {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 56px 5vw;
    flex-wrap: wrap;
}

.about-stats__item {
    text-align: center;
    padding: 0 56px;
}

.about-stats__item strong {
    display: inline;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.55);
    font-family: var(--ff-head);
}

.about-stats__item span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    margin-top: 8px;
}

.about-stats__divider {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.1);
}

/* ── Timeline ───────────────────────────────────── */
.about-timeline {
    padding: 120px 5vw;
    background: #0a0a0a;
}

.about-timeline__header {
    text-align: center;
    margin-bottom: 80px;
}

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

/* Dikey çizgi */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
            to bottom,
            transparent,
            rgba(196,17,27,0.4) 10%,
            rgba(196,17,27,0.4) 90%,
            transparent
    );transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 48px);
    margin-bottom: 56px;
}

.timeline__item--right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 48px);
}

/* Merkezdeki nokta */
.timeline__dot {
    position: absolute;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid #0a0a0a;
    box-shadow: 0 0 0 3px rgba(196,17,27,0.3);
    z-index: 2;
}

.timeline__year {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(calc(-50% - 1px));
    margin-top: 28px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--red);
    text-transform: uppercase;
    white-space: nowrap;
}

.timeline__item .timeline__year { transform: none; right: calc(50% + 22px); left: auto; }
.timeline__item--right .timeline__year { left: calc(50% + 22px); right: auto; }

.timeline__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 28px;
    max-width: 320px;
    transition: border-color .3s, transform .3s;
}

.timeline__card:hover {
    border-color: rgba(196,17,27,0.3);
    transform: translateY(-4px);
}

.timeline__card h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--ff-head);
}

.timeline__card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Core Values ────────────────────────────────── */
.about-values {
    padding: 120px 5vw;
    max-width: 1200px;
    margin: 0 auto;
}

.about-values__header {
    text-align: center;
    margin-bottom: 64px;
}

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

.value-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 36px 28px;
    transition: border-color .3s, transform .3s, background .3s;
}

.value-card:hover {
    border-color: rgba(196,17,27,0.35);
    background: rgba(196,17,27,0.04);
    transform: translateY(-6px);
}

.value-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(196,17,27,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--red);
    transition: background .3s;
}

.value-card:hover .value-card__icon {
    background: rgba(196,17,27,0.2);
}

.value-card h4 {
   
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--ff-head);
}

.value-card p {
    font-size: 0.87rem;
    line-height: 1.75;
    margin: 0;
}

/* ── Team ───────────────────────────────────────── */
.about-team {
    padding: 120px 5vw;
    background: #0a0a0a;
}

.about-team__header {
    text-align: center;
    margin-bottom: 64px;
}

.about-team__sub {
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    margin-top: 12px;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform .3s, border-color .3s;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196,17,27,0.3);
}

.team-card__img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.team-card__social {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .3s, transform .3s;
}

.team-card:hover .team-card__social {
    opacity: 1;
    transform: translateX(0);
}

.team-card__social a {
    width: 34px;
    height: 34px;
    background: rgba(196,17,27,0.9);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background .2s;
}

.team-card__social a:hover {
    background: var(--red);
}

.team-card__info {
    padding: 20px;
}

.team-card__info h5 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 4px;
    font-family: var(--ff-head);
}

.team-card__info span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--red);
    text-transform: uppercase;
}

/* ── CTA ────────────────────────────────────────── */
.about-cta {
    position: relative;
    text-align: center;
    padding: 50px 5vw;
    overflow: hidden;
    background: #1b232c;
}

.about-cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,17,27,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.about-cta h2 {
    font-size: clamp(2rem,5vw,3.5rem);
    font-weight: 900;
    color: #fff;
    margin: 12px 0 16px;
    font-family: var(--ff-head);
    line-height: 1.1;
}

.about-cta p {
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    margin-bottom: 40px;
}

.about-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .about-team__grid { grid-template-columns: repeat(2,1fr); }
    .about-values__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 5vw;
    }

    .about-story__img-badge {
        bottom: -16px;
        right: 16px;
    }

    .timeline::before { left: 24px; }

    .timeline__item,
    .timeline__item--right {
        justify-content: flex-start;
        padding-left: 64px;
        padding-right: 0;
    }

    .timeline__dot { left: 24px; }

    .timeline__item .timeline__year,
    .timeline__item--right .timeline__year {
        left: 64px;
        right: auto;
        top: -22px;
    }

    .timeline__card { max-width: 100%; }

    .about-stats {
        gap: 32px;
    }

    .about-stats__divider { display: none; }
    .about-stats__item { padding: 0 24px; }

    .about-hero__stat-card--1,
    .about-hero__stat-card--2 {
        bottom: 6%;
    }

    .about-hero__stat-card--1 { left: 4%; }
    .about-hero__stat-card--2 { right: 4%; }
}

@media (max-width: 480px) {
    .about-values__grid { grid-template-columns: 1fr; }
    .about-team__grid { grid-template-columns: 1fr; max-width: 360px; }
    .about-cta__actions { flex-direction: column; }
}
/* ============================================================
   CONTACT PAGE — Form Fields
============================================================ */
