/* ================================
    RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================================
    HEADER & NAVIGATION
================================ */
.site-header {
  background: #0f1923;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.site-header .main-nav > ul > li > a {
  color: white;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo a {
  display: block;
  width: 120px;
  height: 120px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu li {
  position: relative;
}

.menu a {
  padding: 8px 0;
  font-weight: 500;
}


/* ================================
    SLIDER (CORRECTED)
================================ */
.homepage-slider {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #0f1923;
  line-height: 0;
}

.slider {
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
}

.slider img {
  width: 100%;
  height: auto !important;
  object-fit: contain;
}

/* Slider Controls */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 10;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  opacity: 1;
  transform: scale(1.2);
}

/* ================================
    SECTIONS & GRIDS
================================ */
section {
  padding: 70px 0;
}

section h2 {
  margin-bottom: 40px;
  font-size: 28px;
  text-align: center;
}

.product-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* PRODUCT CARD */
.product-card {
  border: 1px solid #eee;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-card img {
  height: 260px;
  object-fit: cover;
  background: #f5f5f5;
}

.product-card h3 {
  padding: 15px;
  font-size: 18px;
}

.product-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: #ff7a00;
  transition: 0.3s;
}

.product-card:hover::after { width: 100%; }
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* BLOG CARD */
.blog-card {
  border: 1px solid #eee;
  padding: 25px;
  transition: 0.3s;
}

.blog-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ================================
    DUAL SECTION & REFERENCES
================================ */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.home-products, .home-references {
  background: white;
  padding: 25px;
  border-radius: 6px;
  border-bottom: 4px solid #ff7a00;
}

.home-references { overflow: hidden; }

.logo-slider {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================
    PROMO BANNERS
================================ */
.promo-banners .promo-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.promo-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ================================
    CONTACT BUBBLES
================================ */
.contact-bubbles {
  background: #f8f8f8;
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.contact-bubbles::before, .contact-bubbles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,122,0,0.08);
  animation: blobMove 18s infinite linear;
}

.contact-bubbles::before { width: 420px; height: 420px; top: -120px; left: -120px; }
.contact-bubbles::after { width: 350px; height: 350px; bottom: -120px; right: -120px; animation-duration: 22s; }

.bubble-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.bubble {
  background: white;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  border: 1px solid #eee;
  transition: 0.4s;
  animation: float 5s ease-in-out infinite;
}

.bubble:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: #ff7a00;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes blobMove {
  0% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(40px); }
  100% { transform: rotate(360deg) translateY(0); }
}

/* ================================
    FOOTER
================================ */
.site-footer {
  background: #0f1923;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-nav { margin-top: 10px; }
.footer-nav a { margin: 0 10px; color: #ccc; font-size: 14px; }

/* ================================
    RESPONSIVE (CONSOLIDATED)
================================ */
@media (max-width: 900px) {

  
  .product-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bubble-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .logo a { width: 60px; height: 60px; }
  
  section { padding: 40px 0; }
  section h2 { margin-bottom: 20px; }
  .dual-grid { gap: 20px; }
}

@media (max-width: 600px) {
  .product-grid, .blog-grid, .bubble-grid {
    grid-template-columns: 1fr;
  }

  .homepage-slider, .slider, .slide {
    height: auto !important;
  }

  .bubble { width: 150px; height: 150px; }

  section { padding: 30px 0; }
  
  .promo-banners .promo-grid { gap: 20px; }

  .logo a { width: 50px; height: 50px; }
}

.main-nav.active .menu{
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
}
/* HAMBURGER BUTON STİLİ */
.menu-toggle {
    display: none; /* Masaüstünde gizle */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* ================================
   MOBILE HAMBURGER - RIGHT ALIGN
================================ */
@media (max-width: 900px) {
    /* Header düzenini sağa-sola yasla */
    .header-wrapper {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 5% !important;
    }

    /* Logoyu sola sabitle */
    .logo {
        margin: 0 !important;
    }

    /* Hamburger butonunu sağa al ve görünür yap */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        width: 30px;
        height: 3px;
        background-color: white; /* Header arka planın koyu olduğu için beyaz */
        transition: 0.3s;
    }

    /* Menü açıldığında tam genişlik kaplasın */
    .main-nav {
        display: none; /* JS ile .active gelince açılacak */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f1923;
        padding: 20px 0;
        z-index: 1000;
        border-top: 1px solid #333;
    }

    .main-nav.active {
        display: flex !important;
    }

    .main-nav .menu {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100%;
    }

    /* Hamburger animasyonu (JS ile .is-active eklendiğinde) */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}


.fade-up{
opacity:0;
transform:translateY(40px);
transition:0.6s;
}

.fade-up.active{
opacity:1;
transform:translateY(0);
}
.home-intro{
background:linear-gradient(180deg,#f8f8f8,#ffffff);
text-align:center;
padding:80px 0;
position:relative;
overflow:hidden;
}

/* dekoratif arka plan şekilleri */
.home-intro::before,
.home-intro::after{
content:"";
position:absolute;
border-radius:50%;
background:rgba(255,122,0,0.08);
z-index:0;
}

.home-intro::before{
width:320px;
height:320px;
top:-120px;
left:-120px;
}

.home-intro::after{
width:260px;
height:260px;
bottom:-120px;
right:-120px;
}

.home-intro .container{
position:relative;
z-index:1;
max-width:800px;
}

.home-intro h2{
font-size:32px;
margin-bottom:25px;
color:#0f1923;
position:relative;
display:inline-block;
}

/* başlık alt çizgi efekti */
.home-intro h2::after{
content:"";
display:block;
width:60px;
height:3px;
background:#ff7a00;
margin:10px auto 0;
border-radius:2px;
}

.home-intro p{
font-size:17px;
line-height:1.8;
margin:18px auto;
color:#444;
}

/* hafif kart efekti */
.home-intro .container{
background:white;
padding:40px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* ================================
WHY US SECTION
================================ */

.why-us{
padding:90px 0;
background:#ffffff;
position:relative;
}

.why-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;
}

.why-header h2{
font-size:32px;
margin-bottom:15px;
color:#0f1923;
}

.why-header p{
font-size:17px;
line-height:1.7;
color:#555;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.why-card{
background:#fff;
padding:35px;
border-radius:10px;
border:1px solid #eee;
text-align:center;
transition:0.3s;
position:relative;
overflow:hidden;
}

.why-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:3px;
background:#ff7a00;
transform:scaleX(0);
transform-origin:left;
transition:0.3s;
}

.why-card:hover::before{
transform:scaleX(1);
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.why-icon{
font-size:36px;
margin-bottom:15px;
}

.why-card h3{
font-size:20px;
margin-bottom:10px;
color:#0f1923;
}

.why-card p{
font-size:15px;
color:#555;
line-height:1.6;
}

/* responsive */

@media (max-width:900px){

.why-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.why-grid{
grid-template-columns:1fr;
}

}
.local-seo{
padding:70px 0;
background:#f9f9f9;
}

.local-seo .container{
max-width:850px;
text-align:center;
}

.local-seo h2{
font-size:28px;
margin-bottom:20px;
color:#0f1923;
}

.local-seo p{
font-size:16px;
line-height:1.7;
margin:15px auto;
color:#555;
}
/* ================================
   FAQ SECTION - NATURAL TRANSITION & SOFT COLORS
================================ */
.faq-section {
    padding: 80px 0;
    background: #f8f8f8; /* Contact Bubbles ile aynı ton */
    position: relative;
    overflow: hidden;
}

/* Dekoratif bloblar */
.faq-section::before,
.faq-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,122,0,0.05); /* Daha yumuşak opacity */
    z-index: 0;
    animation: blobMove 22s infinite linear;
}

.faq-section::before { width: 400px; height: 400px; top: -150px; left: -150px; }
.faq-section::after { width: 350px; height: 350px; bottom: -130px; right: -130px; animation-duration: 28s; }

/* Container */
.faq-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
}

/* Başlık */
.faq-section h2 {
    font-size: 32px;
    text-align: center;
    color: #0f1923;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* FAQ Kartları */
.faq-item {
    margin-bottom: 20px;
    border-radius: 50px 20px 50px 20px / 50px 50px 20px 20px; 
    overflow: hidden;
    background: #0f1923; 
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.10);
}

/* Soru başlığı */
.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 20px 50px 20px 20px;
    background: linear-gradient(135deg, #0f1923 0%, #0f1923 100%); /* Daha pastel turuncu */
    color: #ffffff;
    border-radius: inherit;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #0f1923 0%, #0f1923 100%); /* Yumuşak hover */
}

.faq-question::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Cevap */
.faq-answer {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding: 20px;
    display: none;
    border-top: 1px solid #eee;
    background: #fff7ef; /* Kart alt kısmını hafif turuncu ton ile birleştirdik */
    border-radius: 0 0 50px 20px / 0 0 20px 20px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Responsive */
@media (max-width:900px){
    .faq-section h2 { font-size: 26px; margin-bottom: 30px; }
    .faq-question { font-size: 16px; padding: 15px 45px 15px 15px; }
    .faq-answer { font-size: 15px; padding: 12px 15px 15px 15px; }
}
/* ================================
   FOOTER
================================ */
.site-footer {
  background: #0f1923;
  color: white;
  padding: 60px 0 30px 0;
  font-size: 15px;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #ccc;
  font-size: 14px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: #ff7a00;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-social ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-social ul li a,
.footer-contact a {
  color: #ccc;
  transition: 0.3s;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover,
.footer-contact a:hover {
  color: #ff7a00;
}

.footer-contact p {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #999;
  font-size: 13px;
}

/* Responsive */
@media (max-width:900px){
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
  }
}

@media (max-width:600px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .footer-contact p {
    margin-bottom: 5px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* ================================
   CONTACT PAGE
================================ */

/* HERO */
.contact-hero {
  background: linear-gradient(135deg, #0f1923, #1a2a38);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-hero p {
  max-width: 600px;
  margin: auto;
  color: #ccc;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

/* FORM */
.contact-form {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border-bottom: 4px solid #ff7a00;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #0f1923;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7a00;
  outline: none;
}

.contact-form button {
  margin-top: 20px;
  background: #ff7a00;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e86d00;
}

/* INFO */
.contact-info {
  background: #0f1923;
  color: white;
  padding: 35px;
  border-radius: 10px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #ccc;
}

.contact-info a {
  color: #ff7a00;
}

/* MAP */
.map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
CATEGORY PAGE
================================ */

.category-hero {
  background: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

.category-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f1923;
}

.category-hero p {
  color: #555;
  max-width: 600px;
  margin: auto;
}

/* layout */
.category-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;

}

/* sidebar */
.category-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  border: 1px solid #eee;
  padding: 20px;
  background: white;
}

.category-sidebar h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #0f1923;
}

.category-menu li {
  margin-bottom: 8px;
}

.category-menu a {
  display: block;
  padding: 8px;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.category-menu a:hover {
  color: #ff7a00;
}

.category-menu li.active > a {
  font-weight: bold;
  color: #ff7a00;
}

.category-menu ul {
  margin-left: 10px;
  margin-top: 5px;
  border-left: 2px solid #eee;
  padding-left: 10px;
}

/* responsive */
@media (max-width: 900px) {
  .category-layout {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    order: -1;
  }

}

.category-sidebar {
  max-height: 80vh;
  overflow-y: auto;
}

/* ================================
    NAV & DROPDOWN SYSTEM (FINAL)
================================ */

/* Ana Menü */
.menu {
    display: flex;
    gap: 30px;
}

.menu li {
    position: relative; /* Alt menülerin konumlanması için şart */
}

/* Tüm Dropdownların Ortak Temeli */
.dropdown {
    position: absolute;
    background: white;
    min-width: 220px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

/* 1. SEVİYE: Ürünler'in altı (Aşağı açılır) */
.menu > li > .dropdown {
    top: 100%;
    left: 0;
    transform: translateY(10px);
}

/* 2. SEVİYE: Alt kategorinin yanı (SAĞA açılır) */
.dropdown .has-dropdown .dropdown {
    top: 0;
    left: 100% !important; /* Sağa yaslar */
    transform: translateX(10px);
}

/* MASAÜSTÜ HOVER EFEKTLERİ */
@media (min-width: 901px) {
    /* Sadece üzerine gelinen seviyenin dropdown'ını aç */
    .has-dropdown:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translate(0,0);
    }
}

/* Link Renkleri */
.dropdown li a {
    color: #0f1923 !important;
    padding: 12px 20px;
    display: block;
    white-space: nowrap;
}

.dropdown li a:hover {
    background: #f8f8f8;
    color: #ff7a00 !important;
}

/* ================================
    MOBİL GÖRÜNÜM (TEMİZ)
================================ */
@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f1923;
        z-index: 1000;
    }

    /* 1. Seviye Dropdown (Ürünler'e basınca açılan) */
    .menu > li > .dropdown {
        background: #1a252f; /* Ana menüden bir tık daha açık/farklı bir ton */
        border-left: 4px solid #ff7a00; /* Sol tarafa marka renginden bir şerit */
        margin: 5px 0;
    }

    /* 2. Seviye Dropdown (Aşçı Kıyafetleri'ne basınca açılan) */
    .dropdown .has-dropdown .dropdown {
        background: #22313d !important; /* Daha da açık bir ton (Derinlik hissi) */
        padding-left: 20px; /* İçeriden başlatma (Hiyerarşi) */
        border-left: 2px solid #555; /* Daha ince ve gri bir çizgi */
    }

    .main-nav.active { display: block; }

    .menu {
        flex-direction: column;
        gap: 0;
    }

    /* Mobilde her şey alt alta ve tam genişlik */
    .dropdown {
        position: static; 
        width: 100%;
        display: none; /* JS .open ile kontrol eder */
        opacity: 1;
        visibility: visible;
        background: #1a252f;
        border: none;
        box-shadow: none;
        transform: none !important;
    }

    .dropdown.open { display: block !important; }

    .site-header .dropdown a {
        color: #ddd !important;
        text-align: left !important; /* Ortalamak yerine sola yaslamak daha profesyonel durur */
        padding: 12px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 14px;
    }

    /* Aktif/Açık olan başlığı vurgula */
    .has-dropdown.open > a {
        color: #ff7a00 !important;
        font-weight: bold;
        background: rgba(255,122,0,0.1); /* Hafif bir arka plan vurgusu */
    }
}
/* --- PRODUCTS PAGE ÖZEL --- */
.breadcrumb { padding: 20px 0; background: #fdfdfd; font-size: 14px; color: #888; }
.breadcrumb a { color: #ff7a00; margin: 0 5px; }

.products-hero { text-align: center; padding: 40px 0; background: #fff; }
.products-hero h1 { font-size: 36px; color: #0f1923; margin-bottom: 10px; }

.category-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.parent-category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.category-banner-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-banner-image img {
    width: 100%; height: 100%; object-fit: cover; transition: 0.5s;
}

.banner-overlay {
    position: absolute; inset: 0;
    background: rgba(15, 25, 35, 0.6);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: white; opacity: 1;
}

.banner-overlay h2 { font-size: 24px; margin-bottom: 15px; }

.btn-view {
    padding: 8px 20px; border: 2px solid #ff7a00; color: white;
    border-radius: 20px; transition: 0.3s; font-weight: bold;
}

.btn-view:hover { background: #ff7a00; color: #fff; }

.parent-category-card:hover .category-banner-image img { transform: scale(1.1); }

.sub-category-links {
    padding: 20px; list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
}

.sub-category-links li a {
    background: #f1f1f1; padding: 6px 15px; border-radius: 15px;
    font-size: 13px; color: #555; transition: 0.3s; display: inline-block;
}

.sub-category-links li a:hover { background: #ff7a00; color: white; }

/* SEO ALANI */
.seo-content-area { background: #f9f9f9; padding: 60px 0; border-top: 1px solid #eee; }
.seo-text-wrapper { max-width: 900px; margin: auto; }
.seo-text-wrapper h2 { margin-bottom: 20px; color: #0f1923; }
.seo-text-wrapper p { margin-bottom: 15px; line-height: 1.8; color: #444; }

@media (max-width: 600px) {
    .category-banner-grid { grid-template-columns: 1fr; }
}

/* --- PRODUCTS PAGE HERO - FINAL FIX --- */

/* 1. Eski çakışan veya genel section kurallarını ezelim */
.products-page-hero {
    background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%) !important;
    padding: 80px 0 !important;
    margin: 0 !important;
    text-align: center !important;
    color: white !important;
    display: block !important;
}

/* 2. Başlığı Contact sayfasındaki gibi zarifleştirelim */
.products-page-hero h1 {
    font-size: 36px !important;
    font-weight: 600 !important; /* Kalınlığı ideal seviyeye çektik */
    color: #ffffff !important;
    margin-bottom: 15px !important;
    text-transform: none !important; /* Bağıran büyük harfler kapandı */
    letter-spacing: 0.5px !important;
}

/* 3. Alt metni yumuşatalım */
.products-page-hero p {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 650px !important;
    margin: 0 auto 20px auto !important;
    line-height: 1.7 !important;
}

/* 4. Altındaki bölümlerin beyaz kalmasını garantileyelim */
.category-banner-grid, 
.seo-content-area, 
.products-hero + section,
main > section:not(.products-page-hero) {
    background-color: #ffffff !important;
    color: #333 !important;
}

/* 5. Hero altındaki o turuncu çizgi */
.hero-line {
    width: 50px;
    height: 3px;
    background-color: #ff7a00;
    margin: 0 auto;
    border-radius: 2px;
}
/* 2026 MODERN BREADCRUMB */
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 20px;
    border-radius: 100px; /* Tam yuvarlak hatlar */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-breadcrumb:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 122, 0, 0.4);
    transform: scale(1.02); /* Hafif bir büyüme efekti */
}

.hero-breadcrumb a {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.6) !important;
    position: relative;
}

/* Linklerin altına incecik bir modern çizgi */
.hero-breadcrumb a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #ff7a00;
    transition: 0.3s;
}

.hero-breadcrumb a:hover::after {
    width: 100%;
}

.hero-breadcrumb .sep {
    color: #ff7a00;
    font-weight: bold;
    font-size: 14px;
}

.hero-breadcrumb .current {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}
/* Gizli Form Alanı - Sadece Botlar İçin */
.hidden {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
/* --- KATEGORİ ÖZEL DÜZENLEMELER (V2026) --- */


/* 2. Hero İçindeki Turuncu Çizgi ve Butonlar Arası Mesafe */
.category-hero .hero-line {
    margin: 25px auto 35px auto !important; /* Çizginin altını açtık */
}

/* 4. Bölüm Başlıkları (Aşçı Ceketleri vs.) */
.product-group-title {
    margin-bottom: 50px !important; /* Başlık ile altındaki ürünler arasını açtık */
}

.product-group-title h2 {
    font-size: 28px !important;
    font-weight: 700;
    color: #0f1923;
    text-align: left !important;
    margin-bottom: 15px !important;
}

/* 5. SEO METİN ALANI: Sayfanın en altındaki profesyonel dokunuş */
.seo-content-area {
    background: #f8f9fa; /* Hafif kırık beyaz */
    padding: 100px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.seo-text-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.seo-text-wrapper h2 {
    font-size: 26px;
    color: #0f1923;
    margin-bottom: 30px;
    text-align: left !important;
}

.seo-text-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.seo-text-wrapper strong {
    color: #ff7a00;
    font-weight: 600;
}

/* Sayfa Kayışı */
html { scroll-behavior: smooth; }

/* Filtre Butonları */
.category-quick-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}
.btn-filter {
    padding: 10px 20px;
    background: #fff;
    color: #333;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #ddd;
}
.btn-filter:hover {
    background: #ff0000; 
    color: #fff;
    border-color: #ff0000;
}

/* Ürün Grupları Arası Boşluk */
.product-group {
    padding-top: 80px; /* Anchor ile tıklandığında header'ın altında kalmaması için */
    margin-bottom: 50px;
}

/* Sayfa Kayışı */
html { scroll-behavior: smooth; }

/* Filtre Butonları */
.category-quick-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}
.btn-filter {
    padding: 10px 20px;
    background: #fff;
    color: #333;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #ddd;
}
.btn-filter:hover {
    background: #ff0000; /* Senin meşhur kırmızı */
    color: #fff;
    border-color: #ff0000;
}

/* Ürün Grupları Arası Boşluk */
.product-group {
    padding-top: 80px; /* Anchor ile tıklandığında header'ın altında kalmaması için */
    margin-bottom: 50px;
}
/* ================================
   MOBILE FILTER TOGGLE
================================ */

.filter-toggle {
  display: none;
  background: #ff7a00;
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 20px;
  cursor: pointer;
}

/* Sidebar mobilde gizli */
@media (max-width: 900px) {
  .filter-toggle {
    display: block;
  }

  .category-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: white;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    transition: 0.3s;
  }

  .category-sidebar.active {
    left: 0;
    display: block;
  }

  /* Arka karartma */
  .filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
  }

  .filter-overlay.active {
    display: block;
  }
}
/* --- PRODUCT TOP BAR (Breadcrumb Şeridi) --- */
.product-top-bar {
    background: #0f1923;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.product-top-bar .hero-breadcrumb {
    margin-bottom: 0; /* Sayfa başındaki şeridi ince tutar */
    background: transparent;
    border: none;
    padding: 0;
}

/* --- ANA LAYOUT --- */
.product-main-content {
    padding: 40px 0;
    background: #fff;
}

.product-flex-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.product-visuals {
    flex: 1.2;
    position: sticky;
    top: 100px; /* Scroll sırasında görselin sabit kalması UX artırır */
}

.main-stage {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
}

.thumb-navigation {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumb {
    width: 70px; height: 70px;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
}
.thumb.active { border: 2px solid #ff7a00; }

/* --- BİLGİ ALANI --- */
.product-actions { flex: 1; }

.product-sku { color: #888; font-size: 13px; font-weight: 600; }
.product-actions h1 { font-size: 32px; color: #0f1923; margin: 10px 0; }
.lead-text { font-size: 18px; color: #555; margin-bottom: 25px; }

.quick-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.order-box {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff7a00;
}

.btn-whatsapp-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 18px;
    border-radius: 6px;
    font-weight: 700;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-whatsapp-action:hover { background: #1eb954; transform: translateY(-3px); }

/* --- TAB STİLLERİ --- */
.product-extra-details { padding-bottom: 70px; }
.tabs-header { display: flex; gap: 30px; border-bottom: 2px solid #eee; margin-bottom: 30px; }
.tab-link {
    background: none; border: none; padding: 15px 0; font-weight: 700;
    color: #888; cursor: pointer; border-bottom: 3px solid transparent;
}
.tab-link.active { color: #ff7a00; border-bottom-color: #ff7a00; }
.tab-body { display: none; }
.tab-body.active { display: block; animation: fadeIn 0.4s; }

.specs-list li {
    display: flex; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid #f5f5f5;
}

@media (max-width: 900px) {
    .product-flex-layout { flex-direction: column; }
    .product-visuals { position: relative; top: 0; }
}
/* WhatsApp butonu içindeki ikon için */
.btn-whatsapp-action img {
    width: 50px !important; /* Burayı ihtiyacına göre 24px-30px yapabilirsin */
    height: 50px !important;
    object-fit: contain;
    display: inline-block;
    margin-right: 8px; /* Metinle arasını açar */
}
/* ================================
   ABOUT PAGE
================================ */

.about-hero {
  background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%);
  padding: 90px 0;
  text-align: center;
  color: white;
}

.about-hero h1 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #fff;
}

.about-hero p {
  max-width: 760px;
  margin: 0 auto 20px auto;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.8;
}

.about-intro {
  background: linear-gradient(180deg, #f8f8f8, #ffffff);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.section-badge {
  display: inline-block;
  background: rgba(255,122,0,0.12);
  color: #ff7a00;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-intro-content h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #0f1923;
  font-size: 34px;
}

.about-intro-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 16px;
}

.about-intro-card {
  background: #0f1923;
  color: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-bottom: 4px solid #ff7a00;
}

.about-intro-card h3 {
  color: #ff7a00;
  margin-bottom: 18px;
  font-size: 24px;
}

.about-intro-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-intro-card li {
  position: relative;
  padding-left: 22px;
  color: #ddd;
}

.about-intro-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff7a00;
  font-size: 20px;
  line-height: 1;
}

.about-story {
  background: #fff;
}

.about-section-title {
  max-width: 760px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.about-section-title h2 {
  color: #0f1923;
  margin-bottom: 16px;
  font-size: 32px;
}

.about-section-title p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.about-feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 26px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ff7a00;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

.about-feature-card:hover::before {
  transform: scaleX(1);
}

.about-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.about-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

.about-feature-card h3 {
  color: #0f1923;
  font-size: 20px;
  margin-bottom: 12px;
}

.about-feature-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.about-values {
  background: #f8f8f8;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-value-box {
  background: white;
  padding: 35px;
  border-radius: 12px;
  border-left: 5px solid #ff7a00;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.about-value-box h2 {
  text-align: left;
  margin-bottom: 18px;
  color: #0f1923;
  font-size: 28px;
}

.about-value-box p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.about-sectors {
  background: #fff;
}

.about-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-sector-card {
  background: #f8f8f8;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: #0f1923;
  transition: 0.3s;
}

.about-sector-card:hover {
  background: #0f1923;
  color: white;
  border-color: #0f1923;
  transform: translateY(-5px);
}

.about-seo-content {
  background: #f9f9f9;
}

.about-seo-content .container {
  max-width: 900px;
}

.about-seo-content h2 {
  color: #0f1923;
  font-size: 30px;
  margin-bottom: 25px;
}

.about-seo-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: center;
}

.about-seo-content strong {
  color: #ff7a00;
  font-weight: 700;
}

.about-cta {
  background: #fff;
}

.about-cta-box {
  background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%);
  border-radius: 18px;
  padding: 55px 35px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-cta-box h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 18px;
}

.about-cta-box p {
  color: rgba(255,255,255,0.78);
  max-width: 760px;
  margin: 0 auto 28px auto;
  line-height: 1.8;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: #ff7a00;
  color: white;
}

.btn-primary:hover {
  background: #e86d00;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-intro-grid,
  .about-values-grid,
  .about-feature-grid,
  .about-sector-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-intro-content h2,
  .about-cta-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .about-intro-grid,
  .about-values-grid,
  .about-feature-grid,
  .about-sector-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 70px 0;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .about-hero p,
  .about-intro-content p,
  .about-section-title p,
  .about-seo-content p {
    font-size: 15px;
  }

  .about-intro-card,
  .about-value-box,
  .about-cta-box {
    padding: 28px 22px;
  }
}
/* ================================
   WORKSHOP SECTION
================================ */

.workshop-section {
  background: #f8f8f8;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.workshop-section::before,
.workshop-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,122,0,0.06);
  z-index: 0;
}

.workshop-section::before {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -120px;
}

.workshop-section::after {
  width: 260px;
  height: 260px;
  bottom: -100px;
  right: -100px;
}

.workshop-section .container {
  position: relative;
  z-index: 1;
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 35px;
  align-items: stretch;
}

.workshop-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border-bottom: 4px solid #ff7a00;
  height: 100%;
}

.workshop-card h3 {
  font-size: 28px;
  color: #0f1923;
  margin-bottom: 18px;
}

.workshop-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.workshop-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.workshop-list li {
  position: relative;
  padding-left: 24px;
  color: #333;
  font-weight: 500;
}

.workshop-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: #ff7a00;
  font-size: 22px;
  line-height: 1;
}

.workshop-map {
  min-height: 460px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  background: #fff;
}

.workshop-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-map {
    min-height: 380px;
  }

  .workshop-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .workshop-section {
    padding: 70px 0;
  }

  .workshop-card {
    padding: 25px 20px;
  }

  .workshop-card h3 {
    font-size: 22px;
  }

  .workshop-card p {
    font-size: 15px;
  }

  .workshop-map {
    min-height: 320px;
  }
}
/* ================================
   BLOG PAGE
================================ */

.blog-page-hero {
  background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%);
  padding: 90px 0;
  text-align: center;
  color: white;
}

.blog-page-hero h1 {
  font-size: 40px;
  margin-bottom: 18px;
}

.blog-page-hero p {
  max-width: 760px;
  margin: 0 auto 20px auto;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.8;
}

.blog-page-intro {
  background: #fff;
  padding-bottom: 20px;
}

.blog-list-section {
  background: #f8f8f8;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-list-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: 0.3s;
  border: 1px solid #eee;
}

.blog-list-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.blog-list-image {
  display: block;
  overflow: hidden;
}

.blog-list-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}

.blog-list-card:hover .blog-list-image img {
  transform: scale(1.05);
}

.blog-list-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.blog-chip {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255,122,0,0.12);
  color: #ff7a00;
  font-size: 12px;
  font-weight: 700;
}

.blog-date {
  font-size: 13px;
  color: #888;
  font-weight: 600;
}

.blog-list-content h2 {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.blog-list-content h2 a {
  color: #0f1923;
}

.blog-list-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #ff7a00;
  transition: 0.3s;
}

.blog-read-more:hover {
  color: #0f1923;
}

/* BLOG DETAIL */

.blog-detail-hero {
  background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.blog-detail-hero h1 {
  font-size: 40px;
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.3;
}

.blog-detail-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-size: 17px;
}

.blog-detail-section {
  background: #f8f8f8;
}

.blog-detail-layout {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.blog-detail-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-detail-content {
  padding: 35px;
}

.blog-detail-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.blog-detail-content h2 {
  font-size: 28px;
  color: #0f1923;
  margin: 30px 0 14px 0;
}

.blog-cta-section {
  background: #fff;
}

.blog-cta-box {
  background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%);
  padding: 55px 35px;
  border-radius: 18px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-cta-box h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 16px;
}

.blog-cta-box p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-list-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-page-hero h1,
  .blog-detail-hero h1 {
    font-size: 32px;
  }

  .blog-list-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .blog-page-hero,
  .blog-detail-hero {
    padding: 70px 0;
  }

  .blog-page-hero h1,
  .blog-detail-hero h1,
  .blog-cta-box h2 {
    font-size: 28px;
  }

  .blog-list-image img {
    height: 220px;
  }

  .blog-detail-cover {
    height: 240px;
  }

  .blog-detail-content {
    padding: 24px 20px;
  }
}