:root {
  --primary-color: #0f172a;
  --secondary-color: #f97316;
  --text-dark: #333333;
  --text-light: #f8f9fa;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

/* Header */
.top-bar {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 0.9rem;
}

.top-bar a {
  color: var(--text-light);
  text-decoration: none;
}

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

.navbar-brand {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.5rem;
}

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

.nav-link {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 10px 15px !important;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--secondary-color);
}

.btn-primary-custom {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background-color: #ea580c;
  border-color: #ea580c;
  color: #fff;
}

/* Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 80vh;
  min-height: 500px;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Sections */
.section-title {
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  margin-top: 10px;
}

/* Products */
.product-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Form */
.quote-form-section {
  background-color: var(--primary-color);
  color: #fff;
  padding: 60px 0;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

/* Footer */
footer {
  background-color: #0b1120;
  color: #94a3b8;
  padding: 60px 0 20px;
}

footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--secondary-color);
}

/* Partners Marquee */
.partners-section {
  padding: 50px 0;
  background-color: #fff;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.partners-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.partners-slider {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.partner-logo {
  width: 250px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-logo img {
  max-width: 160px;
  max-height: 70px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s ease;
  object-fit: contain;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Google Reviews Marquee */
.reviews-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.reviews-slider {
  display: flex;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
}

.reviews-slider:hover {
  animation-play-state: paused;
}

.review-item {
  width: 350px;
  padding: 0 15px;
  flex-shrink: 0;
}

@keyframes reviews-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sticky Product Image (Product Detail) */
@media (min-width: 992px) {
  .sticky-product-img {
    position: sticky;
    top: 100px; /* Header yüksekliğine göre ayarlandı */
    z-index: 10;
    transition: all 0.3s ease;
  }
}

.product-image-wrapper {
  overflow: hidden;
}

.product-image-wrapper img {
  transition: transform 0.5s ease;
}

.product-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Map Section Adjustment */
.map-section iframe {
  filter: grayscale(20%);
  transition: all 0.3s;
}
.map-section:hover iframe {
  filter: grayscale(0%);
}
/* Blog Post Widget */
.blog-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.rts__single__blog__post {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  background: var(--primary-color);
  height: 100%;
}

.rts__single__blog__post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.rts__single__blog__post__header {
  position: relative;
  overflow: hidden;
}

.rts__single__blog__post__header:hover .hover-scale-1-1 {
  transform: scale(1.1);
}

.hover-scale-1-1 {
  transition: all 0.5s ease;
}

.rts__single__blog__post__date {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px;
  margin: 15px;
  text-align: center;
  font-weight: 700;
  z-index: 2;
  color: #fff;
  background: var(--secondary-color);
  border-radius: 4px;
}

.rts__single__blog__post__date h4 {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 1;
  color: #fff;
}

.rts__single__blog__post__date span {
  font-size: 12px;
  text-transform: uppercase;
  display: block;
}

.rts__single__blog__post__footer {
  padding: 30px;
  background: var(--primary-color);
  position: relative;
  min-height: 140px;
}

.rts__single__blog__post__footer h6 a {
  color: #fff;
  text-transform: uppercase;
  line-height: 1.5;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.3s;
}

.rts__single__blog__post__footer h6 a:hover {
  color: var(--secondary-color);
}

.triangle-bottomright-dark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 50px solid;
  border-color: #ea580c; /* secondary dark */
  border-left: 50px solid transparent;
}

.blog-grid-item {
  display: flex;
  flex-wrap: wrap;
}
/* Counter Section */
.counter-section {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.ls-1 {
  letter-spacing: 1px;
}

.counter-number {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
}

.counter-title {
  display: block;
  font-weight: 600;
  color: #94a3b8 !important;
}

.counter-icon i {
  transition: transform 0.3s ease;
}

.counter-item:hover .counter-icon i {
  transform: translateY(-5px);
  color: #fff !important;
}

@media (max-width: 991px) {
  .counter-number {
    font-size: 2.5rem;
  }
}

/* Animated Icons for Product Cards */
.icon-animated {
  width: 100px;
  height: 100px;
  background: rgba(249, 115, 22, 0.08); /* Hafif turuncu arka plan */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}

.icon-animated i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  animation: floating 3s ease-in-out infinite; /* Sürekli yüzen hareket */
  transition: all 0.4s ease;
}

.product-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border-radius: 12px;
}

.product-card:hover {
  background: #fff;
  border-color: var(--secondary-color) !important;
  transform: translateY(-5px);
}

.product-card:hover .icon-animated {
  background: var(--secondary-color);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.product-card:hover .icon-animated i {
  color: #fff;
  animation: none;
  transform: scale(1.2);
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.stretched-link::after {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  content: "";
}
/* Instagram Gallery */
.insta-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.insta-item:hover img {
  transform: scale(1.15);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}
