/* =============================================
   KAYA PANEL - Custom Styles
   Font: Roboto (body), Poppins (headings)
   Primary: #dd3333 | Dark: #232323
============================================= */

:root {
  --red:    #dd3333;
  --dark:   #232323;
  --gray:   #828282;
  --light:  #f7f7f7;
  --border: #e4e4e4;
}

* { box-sizing: border-box; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6,
.poppins { font-family: 'Poppins', sans-serif; }

h1, h2, h3 { color: var(--red); }

a { text-decoration: none; }
a:hover { color: var(--red); }

img { max-width: 100%; }

/* ---- TOP BAR ---- */
#topbar {
  background: #ffffff;
  color: #ccc;
  font-size: 13px;
  padding: 7px 0;
}
#topbar a { color: #fff; }
#topbar a:hover { color: #fff; }
#topbar .social-icon {
     display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid #444;
    border-radius: 3px;
    margin-right: 4px;
    font-size: 12px;
    transition: .2s;
    background: black;
}
#topbar .social-icon:hover { background: var(--red); border-color: var(--red); color: #fff; }

.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 500;
}
.btn-whatsapp:hover { background: #1ebe5d; }

.btn-siparis {
  background: #444;
  color: #fff !important;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-left: 6px;
}
.btn-siparis:hover { background: #555; }

/* ---- NAVBAR ---- */
#mainNav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: 0;
}
#mainNav .navbar-brand img { height: 112px; }
#mainNav .nav-link {
  color: var(--dark) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 28px 16px !important;
  transition: color .2s;
}
#mainNav .nav-link:hover,
#mainNav .nav-item.active .nav-link { color: var(--red) !important; }
#mainNav .dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-radius: 0 0 6px 6px;
  border-top: 2px solid var(--red);
  min-width: 220px;
}
#mainNav .dropdown-item {
  font-size: 13px;
  padding: 9px 20px;
  color: var(--dark);
}
#mainNav .dropdown-item:hover { background: var(--light); color: var(--red); }

.btn-nav-red {
  background: var(--red);
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 4px;
  margin-left: 8px;
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-nav-red:hover { background: #c02929; color: #fff !important; }

/* ---- HERO CAROUSEL ---- */
#heroCarousel { margin-top: 0; }
#heroCarousel .carousel-item img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 46px; height: 46px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  bottom: auto;
  margin: 0 20px;
  opacity: 1;
}
#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover { background: var(--red); }
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon { width: 16px; height: 16px; }

/* ---- SECTIONS ---- */
section { padding: 80px 0; }
section.bg-light-custom { background: var(--light); }

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 24px;
}
.section-title.dark { color: var(--dark); }

/* ---- BIZ SECTION ---- */
.video-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.video-wrapper img { width: 100%; display: block; }
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .2s, background .2s;
}
.video-wrapper:hover .video-play-btn { background: var(--red); color: #fff; transform: translate(-50%, -50%) scale(1.1); }

/* ---- NEWS CARDS ---- */
.news-card {
  border: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.14); }
.news-card img { width: 100%; height: 220px; object-fit: cover; }
.news-card .card-body { padding: 20px; }
.news-meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
}
.badge-cat {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 3px;
  margin-left: 6px;
}
.news-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}
.news-card h5:hover { color: var(--red); }

/* ---- BRANDS ---- */
.brand-card {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: box-shadow .3s;
}
.brand-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}
.brand-name span { color: var(--red); }
.brand-subtitle { font-size: 12px; color: var(--gray); margin: 6px 0 16px; }
.btn-incele {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 4px;
  transition: .2s;
}
.btn-incele:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: #aaa;
  font-size: 13px;
}
footer h6 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
footer a { color: #aaa; }
footer a:hover { color: var(--red); }
footer .footer-link {
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
}
footer .contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
}
footer .contact-item i { color: var(--red); margin-top: 2px; min-width: 14px; }
.footer-bottom {
  background: #1a1a1a;
  padding: 18px 0;
  font-size: 12px;
  color: #666;
}
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid #444;
  border-radius: 4px;
  color: #aaa;
  font-size: 13px;
  margin-right: 6px;
  transition: .2s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---- SCROLL TOP ---- */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  display: none;
  align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 999;
  transition: background .2s;
}
#scrollTop:hover { background: #c02929; }
#scrollTop.show { display: flex; }

/* ---- MODAL ---- */
.modal-video iframe { border-radius: 6px; }

/* ---- PAGE HERO BANNER ---- */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding: 40px 0 0;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,20,20,.72);
}
.page-hero-watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,.08);
  letter-spacing: -8px;
  user-select: none;
  line-height: 1;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 28px 0 0;
}
.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.page-hero-breadcrumb {
  padding: 9px 0;
  position: relative;
  z-index: 1;
}
/* Inside dark hero overlay */
.page-hero .page-hero-breadcrumb {
  background: rgba(0,0,0,.35);
  margin-top: 20px;
}
.page-hero-breadcrumb a,
.page-hero-breadcrumb span {
  font-size: 12px;
  color: #777;
}
/* When inside dark hero, override to light */
.page-hero .page-hero-breadcrumb a,
.page-hero .page-hero-breadcrumb span { color: rgba(255,255,255,.65); }
.page-hero-breadcrumb a:hover { color: var(--red); }
.page-hero-breadcrumb .sep { margin: 0 6px; color: #bbb; }
.page-hero .page-hero-breadcrumb .sep { color: rgba(255,255,255,.35); }
.page-hero-breadcrumb .current { color: #444; }
.page-hero .page-hero-breadcrumb .current { color: #fff; }

/* ---- MISYON / VIZYON ---- */
.mv-card {
  padding: 32px;
  background: var(--light);
  border-left: 3px solid var(--red);
  height: 100%;
}
.mv-card h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.mv-card p { font-size: 13px; color: #666; line-height: 1.8; margin: 0; }

/* ---- STATS ---- */
.stat-item { text-align: center; padding: 30px 20px; }
.stat-item .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
}
.stat-item .stat-label { font-size: 13px; color: var(--gray); margin-top: 6px; }
.stat-divider { border-right: 1px solid var(--border); }

/* ---- ACHIEVEMENT BANNER ---- */
.achievement-banner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 50px;
}
.achievement-banner .sub-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 10px;
}
.achievement-banner .main-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  text-transform: uppercase;
}
.btn-tanitim {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  padding: 14px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.3;
  white-space: nowrap;
  transition: background .2s;
}
.btn-tanitim:hover { background: #c02929; color: #fff; }
.btn-tanitim .play-icon {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ---- PAGE HERO - HEADLINE VARIANT ---- */
.page-hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 900;
  color: rgba(255,255,255,.18);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0;
  position: absolute;
  bottom: 36px;
  left: 0;
  padding: 0 24px;
  pointer-events: none;
  user-select: none;
}

/* ---- PRODUCT GRID ---- */
.shop-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 13px;
  color: var(--gray);
}
.shop-bar select {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 5px 28px 5px 10px;
  font-size: 13px;
  color: #555;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
.product-card {
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow .2s, transform .2s;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
  color: var(--red);
}
.product-card .prod-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--light);
}
.product-card .prod-body {
  padding: 12px 10px;
  border-top: 1px solid var(--border);
}
.product-card .prod-name {
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
  margin: 0;
  transition: color .2s;
}
.product-card:hover .prod-name { color: var(--red); }
.product-card .prod-stars {
  color: #f5a623;
  font-size: 11px;
  margin-top: 4px;
}

/* ---- PAGINATION ---- */
.shop-pagination .page-link {
  border: 1px solid var(--border);
  color: #555;
  font-size: 13px;
  padding: 6px 13px;
  border-radius: 0 !important;
}
.shop-pagination .page-item.active .page-link {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.shop-pagination .page-link:hover { background: var(--light); color: var(--red); }

/* ---- BRAND LINKS (hakkimizda inline) ---- */
.brand-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  margin-right: 28px;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.brand-links a:hover { color: var(--red); }
.brand-links a span { color: var(--red); }

/* ---- PRODUCT LIST ---- */
.product-list li {
  padding: 9px 0;
  font-size: 13px;
  color: #555;
  border-bottom: 1px solid var(--border);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- İLETİŞİM SAYFASI ---- */
.contact-info-card {
  background: var(--light);
  border-left: 3px solid var(--red);
  padding: 36px 32px;
  height: 100%;
}
.contact-info-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-row .icon {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row .info-text { font-size: 13px; color: #555; line-height: 1.7; }
.contact-row .info-text strong { display: block; font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px; }
.contact-row .info-text a { color: #555; } .contact-row .info-text a:hover { color: var(--red); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
}
.contact-form-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  padding: 10px 14px;
  color: #555;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(221,51,51,.08);
}
.contact-form-card label { font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.btn-form-submit {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 11px 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .2s;
  cursor: pointer;
}
.btn-form-submit:hover { background: #c02929; }

.map-wrapper { width: 100%; height: 380px; border: 1px solid var(--border); }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

.footer-social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #777;
  font-size: 13px;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  #heroCarousel .carousel-item img { height: 320px; }
  section { padding: 55px 0; }
  #mainNav .nav-link { padding: 12px 16px !important; }
  .btn-nav-red { margin: 0 0 6px 0; display: block; text-align: center; }
}
@media (max-width: 768px) {
  #heroCarousel .carousel-item img { height: 220px; }
  .section-title { font-size: 1.5rem; }
  #topbar .d-md-flex { display: none !important; }
}
