@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   SGM İçecek — Ana Stil Dosyası
   Renk Paleti: #313a4b (Koyu Lacivert) + Beyaz + Teal Vurgu
   ============================================================ */

:root {
    /* Ana Renkler */
    --primary:        #313a4b;   /* Koyu lacivert — header, footer, koyu bölümler */
    --primary-light:  #3d4861;   /* Biraz açık ton — hover */
    --primary-dark:   #232c3b;   /* Biraz koyu ton */
    --primary-ultra:  #1a2130;   /* En koyu — footer bottom */

    /* Teal Vurgu (logodan) */
    --teal:           #2ab8cc;   /* Metalik teal — butonlar, vurgular */
    --teal-dark:      #1e9ab0;   /* Hover teal */
    --teal-light:     #e6f9fc;   /* Açık teal bg */

    /* Nötr */
    --white:          #ffffff;
    --gray-50:        #f8fafc;
    --gray-100:       #f1f5f9;
    --gray-200:       #e2e8f0;
    --gray-300:       #cbd5e1;
    --gray-400:       #94a3b8;
    --gray-500:       #64748b;
    --gray-600:       #475569;
    --gray-700:       #334155;
    --gray-800:       #1e293b;
    --gray-900:       #0f172a;

    /* Gölgeler */
    --shadow-sm:   0 1px 3px rgba(49,58,75,.08);
    --shadow-md:   0 4px 16px rgba(49,58,75,.12);
    --shadow-lg:   0 10px 40px rgba(49,58,75,.18);
    --shadow-teal: 0 4px 20px rgba(42,184,204,.3);

    /* Kenar Yuvarlaklıklar */
    --radius-xl:  1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--gray-600); line-height: 1.75; }

.container   { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 5rem 0; }
.section-sm  { padding: 3rem 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .2s ease;
    white-space: nowrap;
}

/* Ana buton: teal vurgu */
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    box-shadow: var(--shadow-teal);
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(42,184,204,.4);
    background: linear-gradient(135deg, var(--teal-dark), #1888a0);
}

/* İkincil buton: beyaz + koyu border */
.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

/* Outline (koyu bg üzerinde kullanılır) */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.45);
}
.btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.8);
}

/* Koyu buton */
.btn-dark {
    background: var(--primary);
    color: var(--white);
    border: none;
}
.btn-dark:hover { background: var(--primary-light); }

.btn-sm  { padding: .5rem 1.25rem; font-size: .75rem; }
.btn-lg  { padding: 1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .85rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.badge-teal   { background: var(--teal-light); color: var(--teal-dark); border: 1px solid rgba(42,184,204,.25); }
.badge-dark   { background: var(--primary); color: var(--white); }
.badge-white  { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.3); }
/* Eski badge isimleri (geriye dönük uyumluluk) */
.badge-orange { background: var(--teal-light); color: var(--teal-dark); border: 1px solid rgba(42,184,204,.25); }
.badge-amber  { background: rgba(42,184,204,.1); color: var(--teal-dark); border: 1px solid rgba(42,184,204,.2); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(49,58,75,.07);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s ease, transform .3s ease;
    overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* ============================================================
   HEADER — Koyu #313a4b, Beyaz yazılar
   ============================================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 2px 16px rgba(0,0,0,.2);
}

/* Üst bar: daha koyu + teal accent çizgi */
.header-top {
    background: var(--primary-ultra);
    border-bottom: 1px solid rgba(42,184,204,.25);
    padding: .4rem 0;
    font-size: .75rem;
    color: rgba(255,255,255,.8);
}
.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.header-top a { color: rgba(255,255,255,.8); }
.header-top a:hover { color: var(--teal); }
.header-top-info { display: flex; align-items: center; gap: 1.5rem; }
.header-top-info span { display: flex; align-items: center; gap: .3rem; }

/* Ana Header */
.header-main { padding: 1rem 0; }
.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1.1;
}
.logo-name span { color: var(--teal); }
.logo-slogan {
    font-size: .65rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Desktop Nav */
nav { display: flex; align-items: center; gap: .25rem; }
.nav-link {
    padding: .5rem .9rem;
    border-radius: .625rem;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    transition: all .2s ease;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + .75rem);
    left: 0;
    min-width: 210px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(49,58,75,.25);
    border: 1px solid rgba(49,58,75,.1);
    overflow: hidden;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: .65rem 1rem;
    font-size: .825rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all .15s;
}
.nav-dropdown-menu a:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
    padding-left: 1.25rem;
}

.header-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Mobile Nav */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary);
    z-index: 9999;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    flex-direction: column;
    gap: .5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    background: rgba(255,255,255,.1);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.mobile-nav .logo { margin-bottom: 2rem; }
.mobile-nav-link {
    display: block;
    padding: .85rem 1rem;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    transition: all .2s;
}
.mobile-nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.mobile-nav-link.active { color: var(--teal); }
.mobile-nav-sub { padding-left: 1rem; border-left: 2px solid rgba(255,255,255,.1); margin: .25rem 0 .25rem 1rem; }
.mobile-nav-sub a { display: block; padding: .5rem .75rem; color: rgba(255,255,255,.55); font-size: .9rem; border-radius: .5rem; }
.mobile-nav-sub a:hover { color: var(--teal); }

@media (max-width: 1024px) { nav, .header-top, .header-cta { display: none; } .hamburger { display: flex; } }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider { position: relative; overflow: hidden; height: 580px; }
@media (max-width: 768px) { .hero-slider { height: 480px; } }

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.slide.active { opacity: 1; }
.slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05); transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,33,48,.88) 0%, rgba(49,58,75,.6) 60%, rgba(49,58,75,.2) 100%);
}
.slide-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.slide-content .container { max-width: 700px; }

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem 1rem;
    background: rgba(42,184,204,.2);
    border: 1px solid rgba(42,184,204,.5);
    border-radius: 999px;
    color: var(--teal);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.slide-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}
.slide-subtitle {
    color: rgba(255,255,255,.75);
    font-size: clamp(.9rem, 1.5vw, 1.05rem);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider Kontroller */
.slider-nav { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); display: flex; gap: .6rem; z-index: 10; }
.slider-dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: rgba(255,255,255,.35); transition: all .3s ease; border: none; cursor: pointer;
}
.slider-dot.active { background: var(--teal); width: 28px; }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 48px; height: 48px;
    background: rgba(49,58,75,.6);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px); transition: all .2s; cursor: pointer;
}
.slider-arrow:hover { background: var(--teal); border-color: var(--teal); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: .75rem;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    display: block;
    height: 2px;
    width: 24px;
    background: currentColor;
    border-radius: 2px;
}
.section-title  { color: var(--primary); margin-bottom: .75rem; }
.section-desc   { color: var(--gray-500); max-width: 560px; margin: 0 auto; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.product-card { display: flex; flex-direction: column; }
.product-card-image { position: relative; height: 200px; overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-badges { position: absolute; top: .75rem; left: .75rem; display: flex; flex-direction: column; gap: .35rem; }
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.product-card-title {
    font-size: 1rem; font-weight: 800; color: var(--primary); line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    transition: color .2s;
}
.product-card:hover .product-card-title { color: var(--teal-dark); }
.product-card-desc {
    font-size: .8rem; color: var(--gray-500);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}
.product-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.product-card-actions .btn { justify-content: center; padding: .55rem 0; font-size: .75rem; }

/* ============================================================
   WHY US — Koyu bölüm (#313a4b)
   ============================================================ */
.why-us-section { background: var(--primary); }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-us-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: all .3s;
}
.why-us-card:hover {
    border-color: rgba(42,184,204,.4);
    background: rgba(42,184,204,.07);
    transform: translateY(-4px);
}
.why-us-icon {
    width: 52px; height: 52px;
    border-radius: .875rem;
    background: rgba(42,184,204,.15);
    border: 1px solid rgba(42,184,204,.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}
.why-us-title { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.why-us-desc  { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; }
.blog-card-category {
    display: inline-block;
    font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: var(--teal-dark); margin-bottom: .75rem;
}
.blog-card-title { font-size: 1rem; font-weight: 800; color: var(--primary); line-height: 1.4; margin-bottom: .5rem; transition: color .2s; }
.blog-card:hover .blog-card-title { color: var(--teal-dark); }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; font-size: .75rem; color: var(--gray-400); margin-top: 1rem; }

/* ============================================================
   REFERENCES
   ============================================================ */
.references-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; }
.reference-card {
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all .3s;
}
.reference-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 24px rgba(42,184,204,.15);
    transform: translateY(-3px);
}
.reference-card img { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; margin: 0 auto .75rem; }
.reference-card-name { font-size: .8rem; font-weight: 700; color: var(--primary); margin-bottom: .25rem; }
.reference-card-desc { font-size: .7rem; color: var(--gray-500); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    background: var(--teal-light);
    border: 1px solid rgba(42,184,204,.15);
    margin-bottom: .75rem;
}
.contact-info-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--white);
}
.contact-info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-500); margin-bottom: .25rem; }
.contact-info-value { font-size: .9rem; font-weight: 600; color: var(--primary); }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .8rem; font-weight: 700; color: var(--primary); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .04em; }
.form-control {
    width: 100%; padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: .875rem; color: var(--primary);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,184,204,.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; cursor: pointer; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* Alerts */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-xl); font-size: .875rem; font-weight: 600; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #dc2626; border: 1px solid #fecaca; }

/* ============================================================
   PAGE HEADER — Koyu #313a4b
   ============================================================ */
.page-header {
    background: var(--primary);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(42,184,204,.12), transparent);
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.page-header .container { position: relative; z-index: 1; }
.page-header-eyebrow {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--teal); margin-bottom: .75rem;
}
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ============================================================
   FOOTER — Koyu #313a4b + Beyaz yazılar
   ============================================================ */
#site-footer { background: var(--primary); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .625rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: rgba(255,255,255,.5);
    transition: all .2s;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

.footer-col-title { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; display: flex; align-items: center; gap: .4rem; }
.footer-links a:hover { color: var(--teal); }

.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .75rem; font-size: .83rem; color: rgba(255,255,255,.5); }
.footer-contact-item strong { color: rgba(255,255,255,.35); display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .15rem; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
    background: var(--primary-ultra);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }

/* CTA Strip */
.cta-strip {
    background: var(--primary-dark);
    border-top: 2px solid rgba(42,184,204,.2);
    border-bottom: 2px solid rgba(42,184,204,.2);
    padding: 3rem 0;
}
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(1.2rem, 3vw, 1.75rem); color: var(--white); margin-bottom: .25rem; }
.cta-strip p  { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ============================================================
   QUOTE MODAL
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(26,33,48,.8);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
    background: var(--white);
    border-radius: var(--radius-3xl);
    max-width: 560px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    padding: 2.5rem; position: relative;
    animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--gray-600);
    transition: all .2s; cursor: pointer; border: none;
}
.modal-close:hover { background: var(--gray-200); }
.modal-header { margin-bottom: 1.5rem; }
.modal-title { font-size: 1.35rem; font-weight: 900; color: var(--primary); margin-bottom: .35rem; }
.modal-subtitle { font-size: .85rem; color: var(--gray-500); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 900px) { .product-detail-grid { grid-template-columns: 1fr; } }

.product-main-image { position: relative; border-radius: var(--radius-2xl); overflow: hidden; height: 420px; background: var(--gray-100); cursor: pointer; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: .75rem; margin-top: .75rem; overflow-x: auto; padding-bottom: .25rem; }
.product-thumb { width: 76px; height: 76px; flex-shrink: 0; border-radius: .875rem; overflow: hidden; border: 2.5px solid var(--gray-200); cursor: pointer; transition: border-color .2s; }
.product-thumb.active, .product-thumb:hover { border-color: var(--teal); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-cta-box {
    background: var(--primary);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    color: var(--white);
    border: 1px solid rgba(42,184,204,.2);
}

.product-specs-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.product-specs-table tr { border-bottom: 1px solid var(--gray-100); }
.product-specs-table td { padding: .7rem .5rem; }
.product-specs-table td:first-child { font-weight: 700; color: var(--primary); width: 45%; }
.product-specs-table td:last-child { color: var(--gray-800); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body { background: #f0f2f5; min-height: 100vh; }
.admin-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 260px;
    background: var(--primary);
    z-index: 100;
    overflow-y: auto;
    padding: 1.5rem 0;
}
.admin-sidebar-logo {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1rem;
}
.admin-nav-item {
    display: flex; align-items: center; gap: .75rem;
    padding: .7rem 1.5rem;
    font-size: .85rem; font-weight: 600;
    color: rgba(255,255,255,.5);
    transition: all .2s;
    margin: .1rem .75rem;
    border-radius: .75rem;
}
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,.08); color: var(--white); }
.admin-nav-item.active {
    background: rgba(42,184,204,.15);
    color: var(--teal);
    border: 1px solid rgba(42,184,204,.3);
}
.admin-nav-section-title { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.25); padding: 1rem 2.25rem .4rem; }

.admin-content { margin-left: 260px; padding: 2rem; min-height: 100vh; }
.admin-topbar {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem;
}
.admin-topbar h1 { font-size: 1.25rem; font-weight: 800; color: var(--primary); }

.admin-card { background: var(--white); border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(49,58,75,.06); }

.admin-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.admin-table th {
    padding: .75rem 1rem; text-align: left;
    font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
    color: var(--gray-500);
    background: var(--gray-50);
    border-bottom: 2px solid var(--gray-200);
}
.admin-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: middle; }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-table tr:last-child td { border-bottom: none; }

.admin-stat { background: var(--white); border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1rem; border: 1px solid rgba(49,58,75,.06); }
.admin-stat-icon { width: 52px; height: 52px; border-radius: .875rem; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.admin-stat-num { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.admin-stat-label { font-size: .78rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; margin-top: .2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }

/* Status badges */
.status-badge { display: inline-flex; align-items: center; gap: .3rem; padding: .25rem .75rem; border-radius: 999px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.status-pending    { background: #fef3c7; color: #92400e; }
.status-inprogress { background: #dbeafe; color: #1d4ed8; }
.status-completed, .status-replied { background: #dcfce7; color: #15803d; }
.status-unread     { background: #fee2e2; color: #dc2626; }
.status-read       { background: var(--gray-100); color: var(--gray-600); }
.status-active     { background: #dcfce7; color: #15803d; }
.status-inactive   { background: var(--gray-100); color: var(--gray-500); }

@media (max-width: 900px) {
    .admin-sidebar { display: none; }
    .admin-content { margin-left: 0; padding: 1rem; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center   { text-align: center; }
.text-teal     { color: var(--teal); }
.text-primary  { color: var(--primary); }
.text-muted    { color: var(--gray-500); }
.text-white    { color: var(--white); }
/* Eski class isimler (uyumluluk) */
.text-orange   { color: var(--teal-dark); }
.text-sm       { font-size: .875rem; }
.text-xs       { font-size: .75rem; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }   .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: .25rem; } .mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }   .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; }
.items-center  { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.grid  { display: grid; }
.w-full { width: 100%; }
.hidden { display: none; }

/* Prose (HTML içerik alanları) */
.prose h2, .prose h3 { margin: 1.5rem 0 .75rem; color: var(--primary); }
.prose p  { margin-bottom: 1rem; color: var(--gray-700); }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .4rem; color: var(--gray-700); }
.prose strong { color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-strip .container { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slide-actions { flex-direction: column; }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 888;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: transform .2s, box-shadow .2s;
    color: var(--white);
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
    50%       { box-shadow: 0 6px 36px rgba(37,211,102,.6); }
}

/* Admin form bölüm */
.admin-form-section { background: var(--white); border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid rgba(49,58,75,.06); }
.admin-form-section h3 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--gray-100); }
