/* =========================================================
   Simya Zemin — Ana Stil Dosyası
   ========================================================= */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Stack+Sans+Text:wght@200;300;400;500;600;700&display=swap');

/* ---------- ROOT VARIABLES ---------- */
:root {
    /* Colors — Simya Zemin Market marka renkleri (logo: koyu antrasit + gold/bronz + gümüş) */
    --primary: #B8863C;
    --primary-hover: #D4A75C;
    --primary-darker: #14171D;
    --secondary: #7C828B;
    --background: #FFFFFF;
    --section: #F5F7FA;
    --heading: #1E1E1E;
    --text: #6C757D;
    --border: #E5E7EB;

    /* Typography */
    --font-heading: 'Stack Sans Text', sans-serif;
    --font-body: 'Stack Sans Text', sans-serif;
    --font-desc: 'Poppins', sans-serif;

    /* Layout */
    --container-width: 1320px;
    --header-height: 80px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-full: 999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

body.mobile-nav-locked {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    line-height: 1.2;
    font-weight: 400; /* Stack Sans Text destekliyor: 200-700 arası ağırlıklar kullanılabilir */
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

p {
    font-family: var(--font-desc);
    color: var(--text);
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section--alt {
    background-color: var(--section);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: background-color var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

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

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

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

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

.btn i,
.btn svg {
    width: 18px;
    height: 18px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.site-header.scrolled {
    background-color: #fff;
    border-bottom-color: var(--border);
    box-shadow: 0 8px 28px rgba(6, 20, 48, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

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

.logo-img.logo-scrolled {
    display: none;
}

.site-header.scrolled .logo-img.logo-default {
    display: none;
}

.site-header.scrolled .logo-img.logo-scrolled {
    display: block;
}

/* Main Nav */
.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    transition: color var(--transition-fast);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.site-header.scrolled .main-nav a {
    color: var(--secondary);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: var(--primary);
}

.site-header.scrolled .main-nav a.active::after {
    background-color: var(--primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: var(--radius-full);
}

/* Dil değiştirici (TR / EN / FR) — Google Translate'i tetikler */
.lang-switcher {
    display: none;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-full);
}

.lang-switcher button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.75);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.lang-switcher button:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.site-header.scrolled .lang-switcher {
    border-color: var(--border);
}

.site-header.scrolled .lang-switcher button {
    color: var(--secondary);
}

.site-header.scrolled .lang-switcher button:hover {
    color: var(--primary);
    background-color: rgba(184, 134, 60, 0.12);
}

@media (min-width: 992px) {
    .lang-switcher {
        display: flex;
    }
}

/* Mobil menüdeki dil değiştirici */
.lang-switcher--mobile {
    display: flex;
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-switcher--mobile button {
    font-size: 0.85rem;
    padding: 6px 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.header-contact i {
    color: #fff;
    width: 18px;
    height: 18px;
}

.site-header.scrolled .header-contact {
    color: var(--secondary);
}

.site-header.scrolled .header-contact i {
    color: var(--primary);
}

/* Header CTA — sticky beyaz zeminde lacivert dolu buton */
.site-header.scrolled .btn-header {
    background-color: var(--primary);
    color: #fff;
}

.site-header.scrolled .btn-header:hover {
    background-color: var(--primary-hover);
}

.site-header.scrolled .nav-toggle {
    color: var(--secondary);
}

/* Header CTA — transparan zemin üzerinde beyaz pill buton */
.btn-header {
    display: none;
    background-color: #fff;
    color: var(--primary);
}

@media (min-width: 576px) {
    .btn-header {
        display: inline-flex;
    }
}

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

/* Mobile nav toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
}

.nav-toggle i,
.nav-toggle svg {
    width: 26px;
    height: 26px;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
    .header-contact {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
}

/* Mobile nav panel — tam ekran overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-darker);
    background-image:
        radial-gradient(circle at 15% 20%, rgba(212, 167, 92, 0.30), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(212, 167, 92, 0.22), transparent 45%);
    overflow-y: auto;
    padding: 32px 24px;
}

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

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    color: #fff;
    background: transparent;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-nav-close:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
}

.mobile-nav-close i,
.mobile-nav-close svg {
    width: 20px;
    height: 20px;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.mobile-nav-logo img {
    height: 72px;
    width: auto;
}

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

.mobile-nav-links a {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
    color: #fff;
    border-bottom-color: var(--primary-hover);
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none !important;
    }
}

/* =========================================================
   HERO SECTION (ortak yapı — her sayfada ayrı ayrı çağrılır)
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    background-color: var(--primary); /* görsel yüklenene kadar / fallback */
    overflow: hidden;
}

/* Anasayfa dışındaki sayfalarda kullanılan, daha kısa hero varyantı */
.hero--inner {
    min-height: 46vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, rgba(20, 23, 29, 0.90) 0%, rgba(20, 23, 29, 0.55) 45%, rgba(184, 134, 60, 0.28) 100%),
        linear-gradient(to top, rgba(4, 15, 38, 0.55) 0%, rgba(4, 15, 38, 0) 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero-content {
        margin-left: 96px;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 16px;
}

.hero-title {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    min-height: 1.2em; /* placeholder space until content is added */
}

.hero-description {
    font-size: 1.05rem;
    font-family: var(--font-desc);
    font-weight: 600;
    max-width: 560px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    min-height: 1.6em; /* placeholder space until content is added */
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions .btn {
    font-weight: 700;
}

/* Hero içindeki outline buton — foto arkaplan üzerinde okunaklı olacak şekilde */
.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.hero .btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Hero sağ kenar — dikey sosyal medya şeridi (yalnızca geniş ekranlarda) */
.hero-social {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-social a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.hero-social a:hover {
    color: #fff;
}

@media (min-width: 992px) {
    .hero-social {
        display: flex;
    }
}

/* =========================================================
   PAGE CONTENT (hero altındaki sayfaya özel alan)
   ========================================================= */
.page-content {
    background-color: var(--background);
    min-height: 40vh;
    padding: 80px 0;
}

/* =========================================================
   SECTION HEADER / EYEBROW (ortak, sayfa içi bölümlerde kullanılır)
   ========================================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.eyebrow i,
.eyebrow svg {
    width: 16px;
    height: 16px;
    color: var(--primary-hover);
}

.section-header {
    max-width: 720px;
    margin-bottom: 56px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header h2 {
    font-weight: 600;
}

/* =========================================================
   ABOUT SECTION (Hakkımızda)
   ========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

.about-media {
    position: relative;
}

.about-media-main {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-media-main img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.about-media-small {
    display: none;
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 42%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--background);
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.18);
}

.about-media-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 576px) {
    .about-media-small {
        display: block;
    }
}

/* PRODUCT GALLERY (3-image showcase) */
.product-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 16px;
}

.product-gallery-grid .product-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(6, 20, 48, 0.08);
}

.product-gallery-grid .product-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.product-gallery-grid .product-gallery-item:hover img {
    transform: scale(1.04);
}

@media (min-width: 576px) {
    .product-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-text h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 28px;
}

/* =========================================================
   VIDEO SHOWCASE (Ürün / üretim videoları)
   ========================================================= */
.video-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #0a0f1c;
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.15);
}

.video-frame video {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.video-showcase-single {
    max-width: 900px;
    margin: 0 auto;
}

.video-pair-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .video-pair-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-desc);
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.98rem;
    margin-bottom: 16px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
}

.check-icon i,
.check-icon svg {
    width: 14px;
    height: 14px;
}

/* =========================================================
   WORKING PROCESS SECTION (kutulanmış maddeler)
   ========================================================= */
.process-box-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .process-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .process-box-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-box {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.process-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(6, 20, 48, 0.1);
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: var(--section);
    color: var(--primary);
}

.process-icon i,
.process-icon svg {
    width: 30px;
    height: 30px;
}

.process-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-box p {
    font-size: 0.94rem;
}

/* =========================================================
   CONTACT INFO SECTION
   ========================================================= */
.contact-info-section .section-header p {
    margin-top: 12px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-item {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.08);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(184, 134, 60, 0.12);
    color: var(--primary);
}

.contact-info-icon i,
.contact-info-icon svg {
    width: 26px;
    height: 26px;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 0.95rem;
    word-break: break-word;
}

/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-form-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 72px;
    }
}

.contact-form-text h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-form-card h3 {
    margin-bottom: 24px;
    font-weight: 600;
}

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

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

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: var(--section);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-family: var(--font-desc);
    font-size: 0.95rem;
    color: var(--heading);
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: var(--background);
    border-color: var(--primary);
}

.btn-dark {
    align-self: flex-start;
    background-color: var(--heading);
    color: #fff;
}

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

/* =========================================================
   MAP SECTION
   ========================================================= */
.contact-map-section {
    line-height: 0;
}

.contact-map-section iframe {
    display: block;
}

/* =========================================================
   HOME ABOUT / INTRO SECTION
   ========================================================= */
.home-about-section .about-grid {
    margin-bottom: 64px;
}

.btn-gradient {
    background-image: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
}

.btn-gradient:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #fff;
}

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

@media (min-width: 768px) {
    .feature-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(6, 20, 48, 0.1);
}

.feature-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-card-top h3 {
    font-weight: 600;
    max-width: 65%;
}

.feature-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    color: var(--primary);
}

.feature-card-icon i,
.feature-card-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* =========================================================
   STATS / FIGURES SECTION (tam ekran)
   ========================================================= */
.stats-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--primary);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(4, 15, 38, 0.25) 0%, rgba(4, 15, 38, 0.75) 65%, rgba(4, 15, 38, 0.94) 100%);
}

.stats-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 96px 24px 64px;
}

.stats-top {
    max-width: 680px;
    margin-bottom: 56px;
}

.stats-top h2 {
    color: #fff;
    font-weight: 700;
}

.eyebrow--light {
    color: #fff;
}

.eyebrow--light i,
.eyebrow--light svg {
    color: var(--primary-hover);
}

.stats-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: end;
}

@media (min-width: 992px) {
    .stats-bottom {
        grid-template-columns: 1fr repeat(3, 1fr);
        gap: 32px;
    }
}

.stats-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 340px;
    font-weight: 500;
}

.stat-item {
    color: #fff;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

.stat-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 16px;
}

.stat-item p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   FEATURED PRODUCTS SECTION (Ürünlerimiz)
   ========================================================= */
.featured-products-section {
    background-color: var(--section);
}

.product-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .product-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    color: inherit;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(6, 20, 48, 0.1);
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px 40px 40px;
}

.product-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.product-card-top h3 {
    font-weight: 600;
    max-width: 65%;
}

.product-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: var(--section);
    color: var(--primary);
}

.product-card-icon i,
.product-card-icon svg {
    width: 34px;
    height: 34px;
}

.product-card p {
    flex: 1;
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.product-card-cta {
    margin-bottom: 24px;
}

.product-card-cta .btn {
    padding: 12px 22px;
    font-size: 0.9rem;
    pointer-events: none;
}

.product-card:hover .product-card-cta .btn-primary {
    background-color: var(--primary-hover);
}

.product-card-media {
    margin: 0;
}

.product-card-media img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* =========================================================
   CTA SECTION (Anasayfa kapanış çağrısı)
   ========================================================= */
.cta-section {
    background-color: var(--primary);
    background-image:
        radial-gradient(circle at 12% 20%, rgba(212, 167, 92, 0.35), transparent 45%),
        radial-gradient(circle at 88% 85%, rgba(212, 167, 92, 0.30), transparent 45%);
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

@media (min-width: 992px) {
    .cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
}

.cta-text h2 {
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
    max-width: 620px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-shrink: 0;
}

.cta-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cta-section .btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.12);
}

/* Ürün bölümü altı "tümünü gör" bağlantısı */
.section-footer-link {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* =========================================================
   WORKING PROCESS SECTION — staggered / numbered cards
   ========================================================= */
.process-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px 28px;
}

@media (min-width: 768px) {
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .process-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
    background-color: var(--background);
    border-radius: var(--radius-md);
    padding: 44px 28px 32px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.05);
}

@media (min-width: 992px) {
    .process-card--up {
        margin-top: 64px;
    }
}

.process-card-badge {
    position: absolute;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--background);
    color: var(--heading);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(6, 20, 48, 0.12);
}

.process-card-badge--bottom {
    bottom: -23px;
}

.process-card-badge--top {
    top: -23px;
}

.process-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: var(--section);
    color: var(--primary);
}

.process-card-icon i,
.process-card-icon svg {
    width: 34px;
    height: 34px;
}

.process-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-card-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}

.process-card p {
    font-size: 0.92rem;
}

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px 28px;
    margin-bottom: 48px;
}

@media (min-width: 576px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-item {
    display: flex;
    flex-direction: column;
}

.testimonial-card {
    position: relative;
    background-color: var(--background);
    border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
    padding: 32px 28px;
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.05);
    margin-bottom: 24px;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 32px;
    width: 22px;
    height: 22px;
    background-color: var(--background);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #F5A623;
}

.testimonial-stars i,
.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #F5A623;
}

.testimonial-quote-icon {
    width: 26px;
    height: 26px;
    color: var(--primary-hover);
}

.testimonial-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.testimonial-card p {
    font-size: 0.92rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 4px;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(184, 134, 60, 0.12);
    color: var(--primary);
}

.testimonial-avatar i,
.testimonial-avatar svg {
    width: 22px;
    height: 22px;
}

.testimonial-author h4 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text);
}

.testimonials-cta {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--heading);
}

.testimonials-cta a {
    color: var(--primary);
    text-decoration: underline;
}

.testimonials-cta a:hover {
    color: var(--primary-hover);
}

/* =========================================================
   GOOGLE TRANSLATE — widget arayüzü tamamen gizlenir
   ========================================================= */
#google_translate_element,
.goog-te-gadget {
    display: none !important;
}

.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

.VIpgJd-ZVi9od-ORHb {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* =========================================================
   MİSYON & VİZYON SAYFASI
   ========================================================= */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mv-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(6, 20, 48, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(6, 20, 48, 0.1);
}

.mv-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background-color: rgba(184, 134, 60, 0.12);
    color: var(--primary);
}

.mv-card-icon i,
.mv-card-icon svg {
    width: 36px;
    height: 36px;
}

.mv-card h3 {
    font-weight: 600;
    margin-bottom: 16px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background-color: var(--primary-darker);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 24px;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    }
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

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

.footer-links span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact i,
.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #fff;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background-color var(--transition-fast);
}

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

.footer-social i,
.footer-social svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: #fff;
    stroke: currentColor;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding-top: 24px;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
}

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

/* =========================================================
   FLOATING İLETİŞİM BUTONLARI (Telefon + WhatsApp)
   Tüm sayfalarda sağ alt / sol alt sabit konumda görünür.
   ========================================================= */
.floating-contact-btn {
    position: fixed;
    bottom: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.floating-contact-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.floating-contact-btn svg {
    width: 28px;
    height: 28px;
}

.floating-phone-btn {
    right: 24px;
    background-color: var(--primary);
    color: #fff;
    animation: floatingPulsePhone 2.4s infinite;
}

.floating-phone-btn:hover {
    background-color: var(--primary-hover);
}

.floating-whatsapp-btn {
    left: 24px;
    background-color: #25D366;
    color: #fff;
    animation: floatingPulseWhatsapp 2.4s infinite;
}

.floating-whatsapp-btn:hover {
    background-color: #1ebd59;
}

@keyframes floatingPulsePhone {
    0% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 0 rgba(11,47,115,0.45); }
    70% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 12px rgba(11,47,115,0); }
    100% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 0 rgba(11,47,115,0); }
}

@keyframes floatingPulseWhatsapp {
    0% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.45); }
    70% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 480px) {
    .floating-contact-btn {
        width: 50px;
        height: 50px;
        bottom: 16px;
    }
    .floating-phone-btn { right: 16px; }
    .floating-whatsapp-btn { left: 16px; }
    .floating-contact-btn svg {
        width: 24px;
        height: 24px;
    }
}