/* ===================================================
   KurumsalCMS - Main Stylesheet
   Primary: #e03257 | Dark: #1a1a2e | Light: #f8f9fa
   =================================================== */

:root {
  --primary: #e03257;
  --primary-dark: #c0254a;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --light: #f8f9fa;
  --light-2: #e9ecef;
  --gray: #6c757d;
  --text: #333344;
  --white: #ffffff;
  --font: 'Titillium Web', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,.15);
  --transition: all .3s ease;
}

/* ─── Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  background: #fff;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--dark); line-height: 1.3; }
p { margin-bottom: 1rem; }
.section-py { padding: 80px 0; }
.section-py-sm { padding: 50px 0; }
.bg-light-custom { background: #f5f7fa; }
.bg-dark-custom { background: var(--dark); }

/* ─── Buttons ─────────────────────────────────────── */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: .5rem 1.5rem;
  border-radius: 30px;
  transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,50,87,.4);
}
.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  padding: .5rem 1.5rem;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-dark-custom {
  background: var(--dark);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  padding: .5rem 1.5rem;
  border: none;
}
.btn-dark-custom:hover {
  background: var(--dark-3);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Top Bar ──────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: #ccc;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-contact a {
  color: #ccc;
  font-size: 12px;
}
.topbar-contact a:hover { color: var(--primary); }
.topbar-contact i { color: var(--primary); margin-right: 4px; }
.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}
.topbar-social {
  color: #aaa;
  font-size: 13px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.topbar-social:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.15);
  margin: 0 4px;
}
.topbar .dropdown-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: #ccc;
  font-size: 12px;
  padding: 2px 8px;
}
.topbar .dropdown-toggle:hover { border-color: var(--primary); color: var(--primary); }
.topbar-btn {
  color: #ccc;
  font-size: 13px;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}
.topbar-btn:hover { color: var(--primary); border-color: var(--primary); }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Main Header ─────────────────────────────────── */
.main-header {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.navbar-brand { padding: 10px 0; }
.logo-img { max-height: 55px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.logo-main span { color: var(--primary); }
.logo-sub {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .5px;
}
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  padding: 8px 14px !important;
  position: relative;
  letter-spacing: .3px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary);
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
  width: 60%;
}
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 200px;
  border-top: 3px solid var(--primary);
}
.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  color: var(--dark);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 26px;
}

/* ─── Breadcrumb ─────────────────────────────────── */
.breadcrumb-bar {
  background: var(--light);
  padding: 12px 0;
  border-bottom: 1px solid var(--light-2);
}
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: var(--gray); font-size: 13px; }
.breadcrumb-item.active { color: var(--primary); font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gray); }

/* ─── Section Titles ─────────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .tag {
  display: inline-block;
  background: rgba(224,50,87,.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 16px;
}
.section-title-left {
  text-align: left;
  margin-bottom: 30px;
}
.section-title-left h2::after { left: 0; transform: none; }

/* ─── Hero Slider ────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 580px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="30" fill="rgba(224,50,87,0.08)"/><circle cx="20" cy="80" r="20" fill="rgba(224,50,87,0.05)"/></svg>') no-repeat center/cover;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px 0;
}
.hero-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
}
.carousel-indicators .active { background: var(--primary); }
.carousel-control-prev, .carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: .7;
  border: 1px solid rgba(255,255,255,.2);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--primary);
  opacity: 1;
}

/* ─── About Section ─────────────────────────────── */
.about-section { padding: 80px 0; }
.about-img-wrap {
  position: relative;
  padding-right: 20px;
}
.about-img-main {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  height: 420px;
}
.about-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  width: 130px;
  box-shadow: 0 8px 25px rgba(224,50,87,.4);
}
.about-badge .num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.about-badge .label { font-size: 12px; margin-top: 4px; }
.about-features { margin-top: 24px; }
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(224,50,87,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* ─── Service Cards ──────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--primary);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(224,50,87,.1), rgba(224,50,87,.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}
.service-card h5 { font-size: 18px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; margin: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}
.service-link:hover { gap: 10px; }

/* ─── Product Cards ──────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 70%;
  background: var(--light);
}
.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.badge-new { background: var(--primary); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 700; }
.badge-sale { background: #28a745; color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 700; }
.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  padding: 10px;
  z-index: 2;
}
.product-card:hover .product-actions { bottom: 0; }
.product-action-btn {
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  cursor: pointer;
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--primary); color: #fff; }
.product-body { padding: 16px; }
.product-body h6 { font-size: 15px; margin-bottom: 8px; font-weight: 600; }
.product-body h6 a { color: var(--dark); }
.product-body h6 a:hover { color: var(--primary); }
.product-code { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-main { font-size: 18px; font-weight: 700; color: var(--primary); }
.price-old { font-size: 14px; color: var(--gray); text-decoration: line-through; }
.price-normal { font-size: 18px; font-weight: 700; color: var(--dark); }
.product-footer { padding: 0 16px 16px; }

/* ─── Category Cards ─────────────────────────────── */
.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
  cursor: pointer;
}
.category-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  transition: transform .4s ease;
}
.category-card:hover .category-card-bg { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 100%);
}
.category-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  text-align: center;
  padding: 16px;
}
.category-card-content h5 { font-size: 15px; font-weight: 700; color: #fff; margin: 0; }
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.category-card:hover::after { transform: scaleX(1); }

/* ─── Project Cards ──────────────────────────────── */
.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}
.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.project-card:hover .project-card-img { transform: scale(1.08); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.85) 0%, rgba(26,26,46,.1) 60%);
  transition: var(--transition);
}
.project-card:hover .project-card-overlay { background: linear-gradient(to top, rgba(26,26,46,.95) 0%, rgba(26,26,46,.3) 60%); }
.project-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
  transform: translateY(30px);
  transition: var(--transition);
}
.project-card:hover .project-card-content { transform: translateY(0); }
.project-card-category {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.project-card-content h5 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.project-card-content p { color: rgba(255,255,255,.75); font-size: 13px; margin: 0; opacity: 0; transition: var(--transition); }
.project-card:hover .project-card-content p { opacity: 1; }

/* ─── Package / Pricing Cards ────────────────────── */
.package-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid transparent;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.package-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #fff, #fff9fa);
}
.package-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}
.featured-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}
.package-icon {
  width: 70px;
  height: 70px;
  background: rgba(224,50,87,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 20px;
}
.package-card.featured .package-icon { background: var(--primary); color: #fff; }
.package-name { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.package-price {
  margin: 20px 0;
}
.package-price .amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.package-price .currency { font-size: 22px; font-weight: 600; color: var(--primary); vertical-align: super; }
.package-price .period { font-size: 14px; color: var(--gray); margin-top: 4px; }
.package-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}
.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-2);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-features li:last-child { border: none; }
.package-features li i { color: var(--primary); font-size: 13px; }

/* ─── Team Cards ─────────────────────────────────── */
.team-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .4s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(224,50,87,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  transition: var(--transition);
}
.team-social-btn:hover { background: #fff; color: var(--primary); }
.team-info { padding: 20px; }
.team-info h5 { font-size: 17px; margin-bottom: 4px; }
.team-info span { color: var(--primary); font-size: 13px; font-weight: 600; }

/* ─── Testimonial Cards ──────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: rgba(224,50,87,.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: #ffc107; margin-bottom: 12px; font-size: 14px; }
.testimonial-text { font-size: 14px; color: var(--gray); font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-position { font-size: 12px; color: var(--gray); }

/* ─── Statistics Counter ─────────────────────────── */
.stats-section {
  background: var(--dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(224,50,87,.05);
}
.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-size: 54px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font);
}
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  font-weight: 500;
}
.stat-icon {
  font-size: 36px;
  color: rgba(224,50,87,.4);
  margin-bottom: 12px;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.1);
  margin: auto;
}

/* ─── References ────────────────────────────────── */
.references-strip {
  background: var(--light);
  padding: 50px 0;
}
.reference-logo {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .5;
  transition: var(--transition);
  max-width: 150px;
}
.reference-logo:hover { filter: none; opacity: 1; }
.references-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.reference-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 70px;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: var(--transition);
}
.reference-item:hover { box-shadow: var(--shadow); transform: scale(1.05); }
.reference-placeholder {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  text-align: center;
}

/* ─── News Cards ─────────────────────────────────── */
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.news-img-wrap { position: relative; overflow: hidden; height: 200px; }
.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-card:hover .news-img-wrap img { transform: scale(1.06); }
.news-date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.news-body { padding: 20px; }
.news-body h5 { font-size: 16px; margin-bottom: 10px; line-height: 1.4; }
.news-body h5 a { color: var(--dark); }
.news-body h5 a:hover { color: var(--primary); }
.news-body p { color: var(--gray); font-size: 14px; margin: 0; }
.news-footer {
  padding: 12px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--light-2);
}

/* ─── Gallery ───────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 75%;
  cursor: pointer;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(224,50,87,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: #fff; }
.gallery-album-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-album-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.gallery-album-bg { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-album-card:hover .gallery-album-bg { transform: scale(1.06); }
.gallery-album-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: #fff;
}
.gallery-album-info h5 { color: #fff; font-size: 15px; margin: 0; }
.gallery-album-count { font-size: 12px; opacity: .8; }

/* ─── Dealers Map ────────────────────────────────── */
#dealersMap { height: 450px; border-radius: 12px; }

/* ─── Bank Accounts ──────────────────────────────── */
.bank-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.bank-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.bank-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bank-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-2);
  font-size: 14px;
}
.bank-info-row:last-child { border: none; }
.bank-info-label { color: var(--gray); font-weight: 500; }
.bank-info-value { font-weight: 600; color: var(--dark); }
.iban-copy-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.iban-copy-btn:hover { background: var(--primary-dark); }

/* ─── FAQ Accordion ──────────────────────────────── */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--dark);
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--primary); transition: transform .3s; font-size: 14px; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 14px;
  color: var(--gray);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 20px 18px;
}

/* ─── Cart ───────────────────────────────────────── */
.cart-table th { font-weight: 700; font-size: 14px; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; }
.cart-img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 30px; height: 30px;
  border: 1px solid var(--light-2);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-summary {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-2);
  font-size: 14px;
}
.cart-summary-row:last-child { border: none; font-weight: 700; font-size: 16px; }

/* ─── Contact Form ───────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-info-card {
  background: var(--dark);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(224,50,87,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────── */
.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}
.footer-top { padding: 70px 0 50px; }
.footer-widget { height: 100%; }
.footer-title {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-contact-info { margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: var(--transition);
}
.social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { color: rgba(255,255,255,.65); font-size: 14px; transition: var(--transition); }
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }
.footer-newsletter .form-control {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff;
  border-radius: 30px 0 0 30px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter .btn { border-radius: 0 30px 30px 0; }
.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 16px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-legal-link {
  color: rgba(255,255,255,.4);
  font-size: 13px;
  margin-left: 16px;
  transition: var(--transition);
}
.footer-legal-link:hover { color: var(--primary); }

/* ─── WhatsApp Float ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37,211,102,.6);
}

/* ─── Cookie Consent ─────────────────────────────── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,26,46,.97);
  color: #fff;
  padding: 16px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.cookie-consent p { font-size: 14px; margin: 0; }
.cookie-consent a { color: var(--primary); }

/* ─── Forms ──────────────────────────────────────── */
.form-control, .form-select {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: 14px;
  transition: var(--transition);
  font-family: var(--font);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224,50,87,.1);
}
.form-label { font-weight: 600; font-size: 14px; color: var(--dark); }
.form-group { margin-bottom: 20px; }

/* ─── Page Hero ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(224,50,87,.08);
}
.page-hero h1 { color: #fff; font-size: 36px; margin: 0; }
.page-hero p { color: rgba(255,255,255,.7); margin: 8px 0 0; }

/* ─── Info Request Form ──────────────────────────── */
.info-form-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.info-form-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(224,50,87,.07);
}
.info-form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.info-form-card .form-control {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.info-form-card .form-control::placeholder { color: rgba(255,255,255,.4); }
.info-form-card .form-label { color: rgba(255,255,255,.8); }
.info-form-card .form-control:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--primary);
}

/* ─── Product Detail ─────────────────────────────── */
.product-gallery-main {
  border-radius: 12px;
  overflow: hidden;
  height: 440px;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-price { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.product-detail-price .price-new { font-size: 32px; font-weight: 800; color: var(--primary); }
.product-detail-price .price-old { font-size: 20px; text-decoration: line-through; color: var(--gray); }
.product-detail-price .discount-badge {
  background: #28a745;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.viewer-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}
.viewer-dot {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.variant-btn {
  padding: 6px 16px;
  border: 2px solid var(--light-2);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
}
.variant-btn:hover, .variant-btn.active { border-color: var(--primary); color: var(--primary); }
.product-tabs .nav-tabs .nav-link { color: var(--gray); font-weight: 600; font-size: 14px; }
.product-tabs .nav-tabs .nav-link.active { color: var(--primary); border-color: var(--primary) var(--primary) #fff; }

/* ─── Auth Pages ─────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 40px 0;
}
.auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  max-width: 440px;
  margin: auto;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo h2 { color: var(--dark); }
.auth-divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  color: var(--gray);
  font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--light-2);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ─── Sidebar Filter ─────────────────────────────── */
.filter-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.filter-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-title i { color: var(--primary); }
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: var(--gray);
  font-size: 14px;
  border-bottom: 1px solid var(--light);
  transition: var(--transition);
}
.filter-list li a:hover, .filter-list li a.active { color: var(--primary); font-weight: 600; }
.filter-count { background: var(--light-2); border-radius: 20px; padding: 1px 8px; font-size: 11px; }

/* ─── Misc Utilities ─────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.border-primary-custom { border-color: var(--primary) !important; }
.rounded-12 { border-radius: 12px; }
.rounded-16 { border-radius: 16px; }
.no-image-placeholder {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 24px;
  width: 100%;
  height: 100%;
}
.stock-badge-stokta { background: rgba(40,167,69,.1); color: #28a745; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.stock-badge-stokta-yok { background: rgba(220,53,69,.1); color: #dc3545; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.loading-spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .hero-content h1 { font-size: 36px; }
  .section-title h2 { font-size: 28px; }
  .topbar { display: none; }
  .main-header { top: 0; }
  .navbar-nav .nav-link::after { display: none; }
  .stat-number { font-size: 40px; }
  .stat-divider { display: none; }
  .hero-slide { min-height: 400px; }
}
@media (max-width: 767px) {
  .hero-content h1 { font-size: 28px; }
  .section-py { padding: 50px 0; }
  .product-gallery-main { height: 280px; }
  .about-img-main { height: 280px; }
  .auth-card { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
  .package-card { padding: 28px 20px; }
  .footer-top { padding: 40px 0 30px; }
}
@media (max-width: 575px) {
  .hero-content h1 { font-size: 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
}
