/* =============================================
   Özeliş Plastik - Ana Stil Dosyası
   Renk Paleti: Lacivert #0a1628 + Turuncu #e85d04
============================================= */

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

/* ---- CSS Değişkenleri ---- */
:root {
  --primary: #0a1628;
  --primary-light: #112240;
  --accent: #e85d04;
  --accent-dark: #c44d03;
  --accent-light: #ff7a2f;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

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


a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}


/* ---- Utility ---- */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 50px 0;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-primary {
  background: var(--primary) !important;
}

.bg-accent {
  background: var(--accent) !important;
}

.bg-light-gray {
  background: var(--gray-50) !important;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 4, .35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn-white-custom:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Section Başlık ---- */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--accent);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 12px;
}

.title-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* ---- NAVBAR ---- */
.navbar-main {
  background: var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.navbar-top-bar {
  background: var(--primary-light);
  padding: 6px 0;
  font-size: 13px;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.navbar-top-bar a {
  color: var(--gray-400);
}

.navbar-top-bar a:hover {
  color: var(--accent);
}

.navbar-brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}

.navbar-brand-text span {
  color: var(--accent);
}

.nav-link-custom {
  color: rgba(255, 255, 255, .85) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 22px 16px !important;
  position: relative;
  transition: color var(--transition);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  transition: all var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--white) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  left: 0;
  right: 0;
}

.dropdown-menu-custom {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 10001;
}

.dropdown-menu-custom .dropdown-item {
  color: rgba(255, 255, 255, .8);
  padding: 10px 20px;
  font-size: 14px;
  transition: all var(--transition);
}

.dropdown-menu-custom .dropdown-item:hover {
  background: rgba(232, 93, 4, .15);
  color: var(--accent);
}

.dropdown-menu-custom .dropdown-item.active {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600;
}

.dropdown-menu-lang {
  min-width: 80px !important;
  text-align: center;
}

.dropdown-menu-lang .dropdown-item {
  padding: 8px 12px;
}

.whatsapp-nav-btn {
  background: #25d366;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.whatsapp-nav-btn:hover {
  background: #1db954;
}

.whatsapp-nav-btn::after {
  display: none !important;
}

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1.05);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, .85) 0%, rgba(10, 22, 40, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, .2);
  border: 1px solid rgba(232, 93, 4, .4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 32px;
  max-width: 550px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, .5) !important;
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  width: 30px !important;
  border-radius: 5px !important;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--accent);
  padding: 24px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  margin-top: 4px;
}

/* ---- ABOUT SECTION ---- */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  right: -12px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge-float .num {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 93, 4, .1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
}

/* ---- PRODUCT CARDS ---- */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-card-img {
  height: 220px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-img .no-img {
  font-size: 48px;
  color: var(--gray-400);
}

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

.product-card-cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 14px;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 16px;
}

.product-card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card-link:hover {
  gap: 10px;
}

/* ---- CATEGORY CARDS ---- */
.cat-card {
  background: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  transition: all var(--transition);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .4;
  transition: transform var(--transition);
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.06);
  opacity: .55;
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .9) 0%, transparent 60%);
}

.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: var(--white);
  width: 100%;
}

.cat-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cat-card-count {
  font-size: 13px;
  color: var(--accent-light);
}

/* ---- BLOG CARDS ---- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat-badge {
  display: inline-block;
  background: rgba(232, 93, 4, .1);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}

.blog-card-meta {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ---- CERTIFICATE SECTION ---- */
.cert-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.cert-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.cert-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin: 0 auto 16px;
}

.cert-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.cert-inst {
  font-size: 13px;
  color: var(--text-light);
}

/* ---- DISTRIBUTOR CTA ---- */
.distributor-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.distributor-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 4, .15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

/* ---- CONTACT SECTION ---- */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 93, 4, .2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-control-custom {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, .12);
  outline: none;
}

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

/* ---- FOOTER ---- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, .75);
  padding: 60px 0 0;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand span {
  color: var(--accent);
}

.footer-desc {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232, 93, 4, .4);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), gap var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

/* ---- WHATSAPP FIXED ---- */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37, 211, 102, .5);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-fixed:hover {
  background: #1db954;
  color: var(--white);
  transform: scale(1.12);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, .8);
  }
}

/* ---- BREADCRUMB ---- */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(232, 93, 4, .08);
  border-radius: 50%;
  bottom: -100px;
  right: -50px;
}

.breadcrumb-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.breadcrumb-custom {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  font-size: 14px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, .65);
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item.active {
  color: var(--accent);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

/* ---- PAGINATION ---- */
.pagination-custom {
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-link-custom {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
  font-size: 14px;
}

.page-link-custom:hover,
.page-link-custom.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ---- ALERT FLASH ---- */
.flash-alert {
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 500;
}

/* ---- MAP EMBED ---- */
.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius);
}

/* ---- AOS overrides ---- */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .navbar-collapse .dropdown-menu {
    position: static !important;
    background: rgba(255, 255, 255, 0.03) !important;
    box-shadow: none !important;
    border: none !important;
    margin-top: 0;
    padding-left: 1rem;
  }
  .navbar-collapse .nav-link-custom {
    padding: 12px 16px !important;
  }
}
@media (max-width: 768px) {
  .section-pad {
    padding: 50px 0;
  }

  .hero-slide {
    min-height: 480px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .about-badge-float {
    right: 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    min-height: 380px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 22px;
    font-size: 14px;
  }
}