/* NAVBAR */
.navbar {
  transition: all .4s ease;
  padding: 20px 0;
}

.navbar-transparent {
  background: transparent;
}

.navbar-scrolled {
  background: #020617;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.navbar-brand img {
  height: 42px;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-left: 18px;
}

.dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* SLIDER */
.carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.6);
}

.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  z-index: 2;
}

.carousel-caption h1 {
  font-size: 56px;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 20px;
  opacity: .9;
}

/* SLIDER ANIMATIONS */
.carousel-caption h1,
.carousel-caption p,
.carousel-caption .btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease;
}

.carousel-item.active .carousel-caption h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s;
}

.carousel-item.active .carousel-caption p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .5s;
}

.carousel-item.active .carousel-caption .btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .8s;
}

/* MOBILE */
@media(max-width:768px) {
  .carousel-caption h1 {
    font-size: 34px;
  }
}



/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: all .3s ease;
}

.float-btn img {
  width: 22px;
  height: 22px;
}

/* WHATSAPP */
.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37,211,102,.5);
}

/* CALL */
.float-btn.call {
  background: #0ea5e9;
}

.float-btn.call:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(14,165,233,.5);
}

/* PULSE ANIMATION */
.float-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  animation: pulse 2.5s infinite;
  opacity: .4;
}

.float-btn.whatsapp::after {
  background: rgba(37,211,102,.4);
}

.float-btn.call::after {
  background: rgba(14,165,233,.4);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* MOBILE */
@media(max-width:768px) {
  .float-btn span {
    display: none;
  }

  .float-btn {
    padding: 16px;
    border-radius: 50%;
  }
}


/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background: #f8fafc;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #020617;
}

.section-title p {
  font-size: 18px;
  color: #475569;
  margin-top: 10px;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  transition: all .4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.service-card .icon {
  font-size: 46px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #020617;
}

.service-card p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.6;
}

/* HIGHLIGHT SERVICE */
.service-card.highlight {
  background: linear-gradient(135deg, #020617, #020617);
  color: #fff;
}

.service-card.highlight h3,
.service-card.highlight p {
  color: #fff;
}


/* WHY US SECTION */
.why-us-section {
  padding: 100px 0;
  background: #ffffff;
}

.why-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  transition: all .4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.why-card .icon {
  font-size: 44px;
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #020617;
}

.why-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* HIGHLIGHT CARD */
.why-card.highlight {
  background: linear-gradient(135deg, #020617, #020617);
  color: #fff;
}

.why-card.highlight h4,
.why-card.highlight p {
  color: #fff;
}


/* REGIONS SECTION */
.regions-section {
  padding: 100px 0;
  background: #f8fafc;
}

.region-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  transition: all .4s ease;
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.region-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #020617;
}

.region-card p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.6;
}


/* TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
  background: #ffffff;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  transition: all .4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.testimonial-card .stars {
  color: #facc15;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

.testimonial-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #020617;
}

.testimonial-card span {
  font-size: 14px;
  color: #64748b;
}

/* HIGHLIGHT */
.testimonial-card.highlight {
  background: linear-gradient(135deg, #020617, #020617);
  color: #fff;
}

.testimonial-card.highlight p,
.testimonial-card.highlight h5,
.testimonial-card.highlight span {
  color: #fff;
}

/* FINAL CTA */
.final-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #020617, #020617);
  color: #ffffff;
}

.final-cta-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.final-cta-section p {
  font-size: 18px;
  opacity: .9;
  max-width: 720px;
  margin: 0 auto;
}

.cta-buttons .btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  transition: all .3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media(max-width:768px) {
  .final-cta-section h2 {
    font-size: 30px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* FOOTER */
.footer-section {
  background: #020617;
  color: #cbd5f5;
  padding: 80px 0 30px;
}

.footer-logo {
  height: 46px;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
}

.footer-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-contact a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* MAP */
.map-wrapper iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 12px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

/* MOBILE */
@media(max-width:768px) {
  .footer-section {
    text-align: center;
  }

  .map-wrapper iframe {
    height: 180px;
  }
}

/* PAGE HEADER */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #020617, #020617);
  color: #fff;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
}

.page-header p {
  font-size: 18px;
  opacity: .9;
}

/* ABOUT */
.about-section {
  padding: 100px 0;
}

.about-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #020617;
}

/* IMAGE */
.about-image {
  height: 360px;              /* NET yükseklik */
  overflow: hidden;
  border-radius: 24px;        /* ŞIK yuvarlak */
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* KIRP, UZATMA */
  object-position: center;
  display: block;
}



/* MINI CTA */
.mini-cta {
  padding: 80px 0;
  background: #f8fafc;
}

.mini-cta h3 {
  font-size: 32px;
  font-weight: 600;
}

/* MOBILE */
@media(max-width:768px) {
  .page-header h1 {
    font-size: 34px;
  }

  .about-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .about-image {
    height: 260px;
    border-radius: 18px;
  }
}


