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

:root {
    --red:     #CC0000;
    --red-dark:#A00000;
    --black:   #111111;
    --dark:    #1e1e1e;
    --gray:    #555555;
    --light:   #f7f7f7;
    --white:   #ffffff;
    --shadow:  0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --radius:  14px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

* { cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='26' font-size='26'>🥚</text></svg>") 16 16, auto; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    padding: 12px 0;
    backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
    transition: height var(--transition);
}

.navbar.scrolled .nav-logo img { height: 70px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a { color: var(--dark); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--red) !important; }

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 40%, rgba(204,0,0,0.14) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 90%, rgba(204,0,0,0.08) 0%, transparent 60%);
}


.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px 100px;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(204,0,0,0.20);
    color: #ff6666;
    border: 1px solid rgba(204,0,0,0.40);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-content h1 em {
    font-style: normal;
    color: #AA0000;
}

.hero-content > p {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.68);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 90px;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(204,0,0,0.40);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(204,0,0,0.50);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.35);
    transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}


.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}


.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.55;
    display: block;
}

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
}

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

/* ===================== STATS ===================== */
.stats {
    background: var(--white);
    padding: 60px 0;
}

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

.stat-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border-top: 3px solid var(--red);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--gray);
    font-weight: 500;
}

/* ===================== ABOUT ===================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
    background: var(--black);
}

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

.slider-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.slider-img.active { opacity: 1; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 42px; height: 42px;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.slider-btn:hover { background: rgba(204,0,0,0.75); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

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

.slider-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
    background: var(--red);
    transform: scale(1.25);
}

.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 10px;
}

.about-text h2, .section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.feat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.90rem;
    font-weight: 500;
    color: var(--dark);
    transition: background var(--transition);
}

.feat:hover { background: #fee; }
.feat-icon { font-size: 1.2rem; }

/* ===================== VALUES ===================== */
.values {
    padding: 100px 0;
    background: var(--light);
}

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

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

.mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border-bottom: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--red);
}

.mv-card.featured {
    background: linear-gradient(135deg, var(--black) 0%, #2d0000 100%);
    color: var(--white);
    border-bottom-color: var(--red);
}

.mv-card.featured p { color: rgba(255,255,255,0.78); }
.mv-card.featured h3 { color: var(--white); }

.mv-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mv-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-icon { background: rgba(204,0,0,0.10); }
.vision-icon  { background: rgba(204,0,0,0.20); }

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
}

.mv-card p {
    color: var(--gray);
    font-size: 0.96rem;
    line-height: 1.75;
}

/* ===================== CONTACT ===================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--light);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border-left: 4px solid transparent;
}

.contact-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
    background: #fff5f5;
    border-left-color: var(--red);
}

.cc-icon { font-size: 1.6rem; }

.cc-body h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 4px;
}

.cc-body p {
    font-size: 0.96rem;
    color: var(--dark);
    line-height: 1.5;
}

.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 300px;
}

.map-wrap iframe { display: block; }

/* ===================== FOOTER ===================== */
.footer {
    background: var(--black);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 72px;
    width: auto;
    background: var(--white);
    border-radius: 10px;
    padding: 6px 14px;
}

.footer-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.50);
    line-height: 1.6;
    text-align: center;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--red); }

/* ===================== PRODUCTION ===================== */
.production {
    padding: 100px 0;
    background: var(--light);
}

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

.process-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 4px solid var(--red);
}

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

.process-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(204,0,0,0.10);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.process-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-list li {
    position: relative;
    padding-left: 18px;
    color: var(--gray);
    font-size: 0.91rem;
    line-height: 1.6;
}

.process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

/* ===================== PARTNERS ===================== */
.partners {
    padding: 100px 0;
    background: var(--white);
}

.partner-card {
    background: linear-gradient(135deg, var(--black) 0%, #2d0000 100%);
    border-radius: 24px;
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 52px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.partner-logo-wrap {
    margin-bottom: 24px;
}

.partner-logo {
    height: 56px;
    width: auto;
    background: white;
    border-radius: 10px;
    padding: 6px 14px;
    display: block;
}

.partner-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.partner-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.partner-btn {
    display: inline-block;
    margin-top: 10px;
}

.partner-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pstat-card {
    background: rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.10);
    transition: background var(--transition);
}

.pstat-card:hover { background: rgba(204,0,0,0.20); }

.pstat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 4px;
}

.pstat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.60);
    font-weight: 500;
    line-height: 1.4;
}

/* Webmail gizli link — footer'da küçük nokta */
.webmail-link {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
    transition: background 0.3s;
    cursor: pointer;
}
.webmail-link:hover { background: rgba(255,255,255,0.22); }

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .hero-content { padding: 60px 24px; }

    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 460px; margin: 0 auto; width: 100%; }
    .mv-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .ges-card { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; width: 100%; }
    .partner-card { grid-template-columns: 1fr; gap: 36px; padding: 40px 36px; }
    .contact-cards-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-info p { text-align: center; }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: rgba(17,17,17,0.97);
        flex-direction: column;
        gap: 0;
        padding: 16px 0 24px;
        backdrop-filter: blur(12px);
    }

    .nav-links.open { display: flex; }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: block;
        padding: 14px 28px;
        font-size: 1rem;
        color: var(--white) !important;
    }

    .nav-links a::after { display: none; }

    .nav-cta {
        margin: 8px 24px 0;
        display: block;
        text-align: center;
        border-radius: var(--radius);
        padding: 14px 24px !important;
    }

    .hamburger { display: flex; }

    .stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .contact-cards-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 80px 0 60px; }
    .about { padding: 70px 0; }
    .values, .production, .partners, .contact { padding: 70px 0; }
    .process-grid { grid-template-columns: 1fr; }
    .ges-card { max-width: 100%; grid-column: auto; }
    .process-card { padding: 28px 24px; }
    .partner-card { padding: 28px 20px; }
    .partner-stats-grid { grid-template-columns: 1fr 1fr; }
}
