/* ==========================================================================
   ARHERA HIRDAVAT - Kurumsal Web Sitesi Stilleri
   ========================================================================== */

:root {
  --st-navy: #1a1f2e;
  --st-navy-dark: #0f131c;
  --st-orange: #f97316;
  --st-orange-dark: #c2410c;
  --st-gray: #f4f6f9;
  --st-text: #3c4858;
  --st-radius: 0.5rem;
  --st-shadow: 0 0.5rem 1.5rem rgba(26, 31, 46, 0.08);
  --st-shadow-lg: 0 1rem 2.5rem rgba(26, 31, 46, 0.18);
}

/* ---------- Genel ---------- */

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--st-text);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--st-navy);
  font-weight: 700;
}

a {
  color: var(--st-orange);
}

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

.btn-st-orange {
  background-color: var(--st-orange);
  border-color: var(--st-orange);
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 50rem;
  transition: all 0.25s ease;
}

.btn-st-orange:hover,
.btn-st-orange:focus {
  background-color: var(--st-orange-dark);
  border-color: var(--st-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(249, 115, 22, 0.35);
}

.btn-st-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 50rem;
  transition: all 0.25s ease;
}

.btn-st-outline:hover {
  background-color: #fff;
  color: var(--st-navy);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--st-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-title .title-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--st-orange), #ffb074);
  border-radius: 2px;
  display: inline-block;
}

.bg-st-gray {
  background-color: var(--st-gray);
}

.bg-st-navy {
  background-color: var(--st-navy);
}

/* ---------- Üst Bilgi Çubuğu ---------- */

.topbar {
  background-color: var(--st-navy-dark);
  color: #c2cede;
  font-size: 0.85rem;
  padding: 0.45rem 0;
}

.topbar a {
  color: #c2cede;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--st-orange);
}

.topbar .bi {
  color: var(--st-orange);
  margin-right: 0.35rem;
}

/* ---------- Navbar ---------- */

.navbar-st {
  background-color: var(--st-navy);
  padding: 0.9rem 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar-st.scrolled {
  padding: 0.45rem 0;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.35);
}

.navbar-st .navbar-brand {
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.navbar-st .navbar-brand .brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 38px;
  width: auto;
  display: block;
}

.navbar-st .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.navbar-st .nav-link:hover,
.navbar-st .nav-link:focus,
.navbar-st .nav-link.active {
  color: var(--st-orange);
}

.navbar-st .dropdown-menu {
  border: none;
  border-radius: 0.6rem;
  box-shadow: var(--st-shadow-lg);
  padding: 0.5rem;
  margin-top: 0.75rem;
}

.navbar-st .dropdown-item {
  border-radius: 0.4rem;
  padding: 0.55rem 1rem;
  font-weight: 500;
  color: var(--st-navy);
}

.navbar-st .dropdown-item:hover,
.navbar-st .dropdown-item.active {
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--st-orange);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.4);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Ana Slider ---------- */

.hero-slider .carousel-item {
  height: 78vh;
  min-height: 480px;
  max-height: 760px;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 19, 28, 0.82) 0%, rgba(15, 19, 28, 0.45) 50%, rgba(15, 19, 28, 0.15) 100%);
}

.hero-slider .carousel-caption {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  z-index: 2;
  padding-left: 8%;
  padding-right: 35%;
}

.hero-slider .caption-badge {
  display: inline-block;
  background-color: rgba(249, 115, 22, 0.9);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1.1rem;
  border-radius: 50rem;
  margin-bottom: 1.25rem;
}

.hero-slider h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-slider p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 36px;
  height: 5px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  transition: background-color 0.3s, width 0.3s;
}

.hero-slider .carousel-indicators .active {
  background-color: var(--st-orange);
  width: 52px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 58px;
  height: 58px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 1.5rem;
  opacity: 1;
  transition: background-color 0.3s;
  z-index: 3;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  background-color: var(--st-orange);
}

/* ---------- Özellik Kutuları ---------- */

.feature-strip {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.feature-card {
  background: #fff;
  border-radius: var(--st-radius);
  box-shadow: var(--st-shadow);
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.feature-card .icon-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--st-orange), #ff9a55);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: #7a8699;
}

/* ---------- Ürün Kartları ---------- */

.product-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: var(--st-radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--st-shadow-lg);
}

.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.product-card .img-wrap .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 19, 28, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .img-wrap .overlay {
  opacity: 1;
}

.product-card .card-body {
  padding: 1.4rem;
}

.product-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
  color: #7a8699;
  margin-bottom: 0.9rem;
}

.product-card .more-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card .more-link .bi {
  transition: transform 0.25s ease;
}

.product-card .more-link:hover .bi {
  transform: translateX(5px);
}

/* ---------- Hakkımızda Önizleme ---------- */

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: var(--st-radius);
  box-shadow: var(--st-shadow-lg);
}

.about-img-wrap .experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--st-orange), #ff9a55);
  color: #fff;
  border-radius: var(--st-radius);
  padding: 1.4rem 1.7rem;
  text-align: center;
  box-shadow: var(--st-shadow-lg);
}

.about-img-wrap .experience-badge .num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-wrap .experience-badge .label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-check-list {
  list-style: none;
  padding-left: 0;
}

.about-check-list li {
  padding: 0.4rem 0;
  font-weight: 500;
}

.about-check-list .bi {
  color: var(--st-orange);
  margin-right: 0.6rem;
}

/* ---------- Sayaçlar ---------- */

.stats-section {
  background: linear-gradient(rgba(15, 19, 28, 0.92), rgba(15, 19, 28, 0.92)), url("../img/slider-1.jpg") center/cover fixed;
  color: #fff;
  padding: 4.5rem 0;
}

.stat-item .bi {
  font-size: 2.5rem;
  color: var(--st-orange);
}

.stat-item .counter {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
}

.stat-item .stat-label {
  color: #aebacb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* ---------- İş Ortakları ---------- */

.partner-chip {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 0.6rem;
  padding: 1.1rem 0.75rem;
  text-align: center;
  font-weight: 700;
  color: #5a6b81;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-chip:hover {
  border-color: var(--st-orange);
  color: var(--st-orange);
  transform: translateY(-4px);
  box-shadow: var(--st-shadow);
}

/* ---------- CTA ---------- */

.cta-section {
  background: linear-gradient(135deg, var(--st-orange) 0%, #ff8b45 100%);
  border-radius: var(--st-radius);
  padding: 3.5rem 3rem;
  color: #fff;
}

.cta-section h3 {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
}

.cta-section .btn-light {
  font-weight: 700;
  color: var(--st-orange);
  border-radius: 50rem;
  padding: 0.7rem 1.8rem;
}

/* ---------- Sayfa Başlığı (İç Sayfalar) ---------- */

.page-header {
  background: linear-gradient(rgba(15, 19, 28, 0.85), rgba(26, 31, 46, 0.85)), url("../img/slider-1.jpg") center/cover;
  padding: 5.5rem 0 4.5rem;
  color: #fff;
}

.page-header h1 {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
}

.page-header .breadcrumb {
  margin-bottom: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: #aebacb;
  text-decoration: none;
}

.page-header .breadcrumb-item.active {
  color: var(--st-orange);
  font-weight: 600;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #6c7d93;
}

/* ---------- İçerik Kartları (Kurumsal) ---------- */

.value-card {
  background: #fff;
  border-radius: var(--st-radius);
  border: 1px solid #e8edf3;
  padding: 2.25rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--st-shadow-lg);
  border-color: rgba(249, 115, 22, 0.4);
}

.value-card .icon-circle {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  color: var(--st-orange);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--st-orange), #ff9a55);
  color: #fff;
}

.value-card h5 {
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #7a8699;
  margin-bottom: 0;
}

/* ---------- Misyon / Vizyon ---------- */

.mission-card {
  border-radius: var(--st-radius);
  padding: 2.75rem 2.5rem;
  height: 100%;
  color: #fff;
}

.mission-card.mission {
  background: linear-gradient(135deg, var(--st-navy) 0%, #1d4470 100%);
}

.mission-card.vision {
  background: linear-gradient(135deg, var(--st-orange) 0%, #ff8b45 100%);
}

.mission-card h3 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.mission-card .bi {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  line-height: 1.8;
}

/* ---------- Kalite Politikası ---------- */

.policy-item {
  background: #fff;
  border-radius: var(--st-radius);
  border: 1px solid #e8edf3;
  padding: 1.6rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.policy-item:hover {
  box-shadow: var(--st-shadow);
  border-color: rgba(249, 115, 22, 0.4);
}

.policy-item .num-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, var(--st-navy), #1d4470);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-item p {
  margin-bottom: 0;
}

/* ---------- İK & İletişim Formları ---------- */

.form-card {
  background: #fff;
  border-radius: var(--st-radius);
  box-shadow: var(--st-shadow);
  padding: 2.5rem;
}

.form-card .form-control,
.form-card .form-select {
  border-radius: 0.55rem;
  padding: 0.7rem 1rem;
  border-color: #dde4ec;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--st-orange);
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.15);
}

.contact-info-card {
  background: var(--st-navy);
  border-radius: var(--st-radius);
  color: #fff;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h4 {
  color: #fff;
  margin-bottom: 1.75rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-info-item .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.7rem;
  background: rgba(249, 115, 22, 0.18);
  color: var(--st-orange);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item h6 {
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  color: #aebacb;
  margin-bottom: 0;
  font-size: 0.92rem;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--st-orange);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--st-radius);
  box-shadow: var(--st-shadow);
}

/* ---------- İK Kartları ---------- */

.hr-step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--st-radius);
  border: 1px solid #e8edf3;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hr-step-card .step-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(26, 31, 46, 0.07);
}

.hr-step-card .bi {
  font-size: 2.2rem;
  color: var(--st-orange);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- Footer ---------- */

.footer {
  background-color: var(--st-navy-dark);
  color: #aebacb;
  padding-top: 4.5rem;
}

.footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background-color: var(--st-orange);
  border-radius: 2px;
}

.footer p {
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer ul li {
  margin-bottom: 0.65rem;
}

.footer ul a {
  color: #aebacb;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer ul a:hover {
  color: var(--st-orange);
  padding-left: 5px;
}

.footer .bi {
  color: var(--st-orange);
  margin-right: 0.5rem;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  margin-right: 0.5rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer .social-links a:hover {
  background: var(--st-orange);
  transform: translateY(-3px);
}

.footer .social-links a .bi {
  color: #fff;
  margin-right: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0;
  margin-top: 3.5rem;
  font-size: 0.85rem;
}

/* ---------- Yukarı Çık Butonu ---------- */

.scroll-top-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 0.7rem;
  background: var(--st-orange);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 1050;
  box-shadow: 0 0.5rem 1rem rgba(249, 115, 22, 0.4);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--st-navy);
}

/* ---------- WhatsApp Yüzen Buton ---------- */

.whatsapp-float-btn {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  z-index: 1050;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: whatsapp-pulse 2s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float-btn:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-float-btn {
    left: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.55rem;
  }
}

/* ---------- Kaydırma Animasyonları ---------- */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
  .hero-slider .carousel-caption {
    padding-right: 10%;
  }

  .hero-slider h1 {
    font-size: 2.2rem;
  }

  .feature-strip {
    margin-top: 2rem;
  }

  .navbar-st .navbar-collapse {
    background: var(--st-navy-dark);
    border-radius: 0.6rem;
    padding: 1rem;
    margin-top: 0.75rem;
  }

  .navbar-st .lang-nav-item,
  .navbar-st .navbar-nav > .nav-item:has(.btn-st-orange) {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-slider .carousel-item {
    height: 70vh;
  }

  .hero-slider h1 {
    font-size: 1.7rem;
  }

  .hero-slider p {
    font-size: 1rem;
  }

  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    display: none;
  }

  .section-padding {
    padding: 3.25rem 0;
  }

  .cta-section {
    padding: 2.5rem 1.75rem;
  }

  .about-img-wrap .experience-badge {
    right: 0.5rem;
    padding: 1rem 1.2rem;
  }
}

/* ---------- İş Ortaklarımız (grayscale → renkli hover) ---------- */
.partners-section { background: #f8f9fb; border-top: 1px solid #e6e8ec; }
.brand-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e6e8ec;
  border: 1px solid #e6e8ec;
}
@media (min-width: 576px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .brand-grid { grid-template-columns: repeat(6, 1fr); } }
.brand-item {
  background: #fff;
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
}
.brand-item:hover { background: #f4f6f9; }
.brand-item > span {
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #9aa0aa;
  filter: grayscale(1);
  transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.brand-item:hover > span {
  color: var(--brand, var(--st-orange));
  filter: grayscale(0);
  transform: scale(1.08);
}
@media (min-width: 992px) { .brand-item > span { font-size: 1.9rem; } }

/* Hakkımızda ek stiller */
.about-check-list { list-style: none; padding: 0; margin: 0; }
.about-check-list li { position: relative; padding: 12px 0 12px 34px; border-bottom: 1px dashed #e6e8ec; color: #333; }
.about-check-list li:last-child { border-bottom: 0; }
.about-check-list li i { position: absolute; left: 0; top: 14px; color: var(--st-orange); font-size: 1.2rem; }
.signature { border-left: 4px solid var(--st-orange); padding: 12px 18px; background: #f8f9fb; border-radius: 4px; }
.signature a { color: var(--st-orange); text-decoration: none; }


/* ===== Ürün Detay Sayfası ===== */
.back-link{display:inline-flex;align-items:center;gap:.5rem;color:var(--st-navy);font-weight:600;font-size:.875rem;text-decoration:none;text-transform:uppercase;letter-spacing:.05em}
.back-link:hover{color:var(--st-orange)}
.product-detail-img{overflow:hidden;border:1px solid #e6e8ee;background:#f7f8fa}
.product-detail-img img{width:100%;height:auto;display:block;aspect-ratio:4/3;object-fit:cover}
.product-detail-img .carousel-control-prev,
.product-detail-img .carousel-control-next{width:2.5rem;height:2.5rem;top:50%;transform:translateY(-50%);background:rgba(26,31,46,.6);border-radius:50%;opacity:1}
.product-detail-img .carousel-control-prev{left:.75rem}
.product-detail-img .carousel-control-next{right:.75rem}
.product-gallery-thumbs{display:flex;gap:.5rem;flex-wrap:wrap}
.product-gallery-thumbs .thumb-btn{flex:1 1 calc(25% - .5rem);min-width:70px;padding:0;border:2px solid #e6e8ee;background:#fff;border-radius:6px;overflow:hidden;cursor:pointer;transition:border-color .2s}
.product-gallery-thumbs .thumb-btn.active,
.product-gallery-thumbs .thumb-btn:hover{border-color:var(--st-orange)}
.product-gallery-thumbs .thumb-btn img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.feature-box{background:#fff;border:1px solid #e6e8ee;padding:1.75rem;height:100%;transition:border-color .25s,transform .25s}
.feature-box:hover{border-color:var(--st-orange);transform:translateY(-3px)}
.feature-box i{font-size:1.75rem;color:var(--st-orange);margin-bottom:.75rem;display:block}
.feature-box h5{font-size:1rem;font-weight:700;margin-bottom:.5rem;color:var(--st-navy)}
.feature-box p{font-size:.875rem;color:#5a6070;margin:0;line-height:1.6}
.chip-list{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:.5rem}
.chip-list .chip{display:inline-flex;align-items:center;gap:.4rem;padding:.35rem .75rem;background:#f1f3f7;color:#33384a;border-radius:999px;font-size:.75rem;font-weight:500}
.chip-list .chip i{color:var(--st-orange);font-size:.75rem}
.brand-badge-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:1rem;margin-top:2rem}
.brand-badge{display:flex;align-items:center;justify-content:center;min-height:90px;padding:1rem;background:#fff;border:1px solid #e6e8ee;color:#33384a;font-weight:700;letter-spacing:.05em;text-transform:uppercase;font-size:.95rem;transition:all .25s ease}
.brand-badge:hover{border-color:var(--st-orange);color:var(--st-orange);transform:translateY(-2px);box-shadow:0 8px 20px rgba(26,31,46,.08)}
.cta-section{background:var(--st-navy);color:#fff;padding:4rem 2rem}
.cta-section h2{color:#fff}
.cta-section p{color:rgba(255,255,255,.75)}


/* --- Brand logo grid (product detail pages) --- */
.brand-logo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:18px;margin-top:24px}
.brand-logo-cell{background:#fff;border:1px solid #e6e8ee;border-radius:10px;padding:16px;display:flex;align-items:center;justify-content:center;min-height:140px;transition:border-color .2s,transform .2s}
.brand-logo-cell:hover{border-color:var(--st-orange);transform:translateY(-2px)}
.brand-logo{max-height:110px;max-width:100%;width:auto;height:auto;object-fit:contain;filter:none}

/* ---------- Google Translate & Dil Seçici ---------- */

iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-menu-frame,
.goog-te-ftab,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-gadget-icon,
.goog-logo-link,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

html.translated-ltr,
html.translated-rtl {
  margin-top: 0 !important;
}

body {
  top: 0 !important;
  margin-top: 0 !important;
  position: static !important;
}

#google_translate_element,
.goog-te-gadget {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  line-height: 1.2;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lang-btn:hover:not(:disabled) {
  color: #fff;
  border-color: var(--st-orange);
}

.lang-btn.active {
  color: #fff;
  border-color: var(--st-orange);
  background: var(--st-orange);
}

.lang-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  user-select: none;
}

.lang-nav-item {
  position: relative;
  z-index: 1050;
}

.lang-switcher.notranslate,
.lang-switcher .notranslate {
  -webkit-translate: no;
  translate: no;
}

/* ---------- İnşaat Sayfası ---------- */

.insaat-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--st-navy-dark) 0%, var(--st-navy) 100%);
  color: #fff;
  padding: 5rem 0 4.5rem;
}

.insaat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 48px 48px;
}

.insaat-hero::after {
  content: "";
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.25);
  filter: blur(60px);
}

.insaat-hero .container {
  position: relative;
  z-index: 1;
}

.insaat-hero .subtitle {
  display: inline-block;
  color: var(--st-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.insaat-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  max-width: 52rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.insaat-hero .lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.125rem;
  max-width: 40rem;
  margin-bottom: 0;
}

.insaat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid #e6e8ec;
  margin-bottom: 2.5rem;
}

.insaat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  color: #6c7d93;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.insaat-tab:hover {
  color: var(--st-navy);
}

.insaat-tab.active {
  color: var(--st-navy);
  border-bottom-color: var(--st-orange);
}

.insaat-tab .bi {
  font-size: 1rem;
}

.insaat-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--st-radius);
  border: 1px solid #e6e8ec;
  aspect-ratio: 4 / 3;
}

@media (min-width: 992px) {
  .insaat-img-wrap {
    aspect-ratio: 5 / 6;
  }
}

.insaat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insaat-img-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--st-navy);
}

.insaat-img-badge .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--st-orange);
}

.insaat-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.insaat-check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.insaat-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--st-text);
}

.insaat-check-list .bi {
  color: var(--st-orange);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.insaat-panel {
  display: none;
}

.insaat-panel.active {
  display: block;
}

/* ---------- Anasayfa İnşaat Kartları ---------- */

.insaat-service-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: var(--st-radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insaat-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--st-shadow-lg);
}

.insaat-service-card .img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.insaat-service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.insaat-service-card:hover .img-wrap img {
  transform: scale(1.06);
}

.insaat-service-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 19, 28, 0.55) 100%);
  pointer-events: none;
}

.insaat-service-card .category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  background: rgba(15, 19, 28, 0.65);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.insaat-service-card .card-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.insaat-service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.insaat-service-card p {
  font-size: 0.9rem;
  color: #7a8699;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.insaat-service-card .accent-line {
  width: 3rem;
  height: 2px;
  background: var(--st-orange);
  margin-bottom: 1.25rem;
  transition: width 0.3s ease;
}

.insaat-service-card:hover .accent-line {
  width: 5rem;
}

.insaat-service-card .more-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--st-navy);
}

.insaat-service-card .more-link:hover {
  color: var(--st-orange);
}

.insaat-service-card .more-link .bi {
  transition: transform 0.25s ease;
}

.insaat-service-card .more-link:hover .bi {
  transform: translateX(5px);
}
