/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/montserrat-v31-latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
  scrollbar-gutter: stable;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", "Segoe UI", Roboto, Arial, sans-serif;
}

header{
  width:100%;
  background:rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow:0 4px 20px rgba(0, 119, 255, 0.08);
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid rgba(0,119,255,0.1);
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  height:85px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-family: "Montserrat", sans-serif;
}

/* LOGO */
.logo img{
  height:75px;
  /* filter: drop-shadow(0 2px 5px rgba(0,119,255,0.2)); */
}

/* MENU */
nav ul{
  list-style:none;
  display:flex;
  gap:35px;
}

nav ul li a{
  text-decoration:none;
  color:#003366;
  font-weight:600;
  font-size:16px;
  position:relative;
  transition:0.3s ease;
}

/* Hover alt çizgi animasyonu */
nav ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:linear-gradient(to right,#00bfff,#0077ff);
  transition:0.3s ease;
}

nav ul li a:hover{
  color:#0077ff;
}

nav ul li a:hover::after{
  width:100%;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
  color:#0077ff;
  transition:0.3s;
}

.hamburger:hover{
  transform:scale(1.1);
}

/* MOBILE */
@media(max-width:768px){

  nav{
      position:absolute;
      top:85px;
      left:0;
      width:100%;
      background:linear-gradient(to bottom,#ffffff,#f0f8ff);
      max-height:0;
      overflow:hidden;
      transition:0.4s ease;
      box-shadow:0 10px 25px rgba(0,119,255,0.08);
      border-top:1px solid rgba(0,119,255,0.1);
  }

  nav.active{
      max-height:500px;
  }

  nav ul{
      flex-direction:column;
      padding:25px;
      gap:25px;
  }

  nav ul li a{
      font-size:16px;
  }

  .hamburger{
      display:block;
  }
}



/* HERO SLIDER */
.hero-slider {
  width: 100%;
  aspect-ratio: 16 / 7; /* Alan baştan rezerve edilir → CLS olmaz */
  max-height: 700px;
  position: relative;
  overflow: hidden;
}

/* Swiper internal fix */
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

/* Image */
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Overlay content */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.35);
  padding: 20px;
}

.slide-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 18px;
}

/* Responsive */
@media (max-width:768px) {
  .hero-slider {
    aspect-ratio: 16 / 10;
  }

  .slide-content h1 {
    font-size: 26px;
  }

  .slide-content p {
    font-size: 14px;
  }
}


 /* SECTION GENEL */
/* SECTION */
.container__holder{
  padding:60px 20px;
  background:linear-gradient(to bottom,#f4fbff,#ffffff);
  font-family: "Montserrat", sans-serif;
}

/* WRAPPER */
.services-container{
  max-width:1200px;
  margin:0 auto;
}

/* TITLE */
.services-container h2{
  text-align:center;
  font-size:32px;
  font-weight:700;
  color:#003366;
  margin-bottom:50px;
  position:relative;
}

.services-container h2::after{
  content:"";
  width:80px;
  height:4px;
  background:linear-gradient(to right,#00bfff,#0077ff);
  display:block;
  margin:15px auto 0;
  border-radius:5px;
}

/* GRID */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  align-items:stretch; /* tüm kartlar eşit */
}

/* CARD */
.card{
  background:#fff;
  border-radius:18px;
  padding:30px 25px;
  box-shadow:0 8px 25px rgba(0,119,255,0.08);
  border:1px solid rgba(0,119,255,0.08);

  display:flex;
  flex-direction:column;
  justify-content:flex-start;

  min-height:260px; /* yükseklik sabit → CLS önler */
  position:relative;
  overflow:hidden;

  transition:transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}

/* üst çizgi */
.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(to right,#00bfff,#0077ff);
}

/* hover sadece transform → layout değişmez */
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,119,255,0.15);
}

/* ICON WRAPPER */
.icon{
  width:80px;
  height:80px;
  margin-bottom:20px;
  flex-shrink:0; /* küçülmez */
}

/* IMAGE → CLS SAFE */
.icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  transition:transform .35s ease;
}

/* hover animasyonu */
.card:hover .icon img{
  transform:scale(1.08);
}

/* TITLE */
.title{
  font-size:18px;
  font-weight:700;
  color:#003366;
  margin-bottom:15px;
}

/* TEXT */
.card p{
  font-size:14px;
  line-height:1.6;
  color:#555;
  margin:0;
}

/* RESPONSIVE */
@media (max-width:768px){

  .services-container h2{
    font-size:26px;
  }

  .card{
    padding:25px 20px;
  }

}

div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 100px;
  background: linear-gradient(to bottom, #f4fbff, #ffffff);;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: calc(25% - 20px);
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  div.gallery-item {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 480px) {
  div.gallery-item {
    width: calc(100% - 20px);
  }
}

/* WHY US SECTION */
.why-us {
  padding: 80px 20px;
  background: linear-gradient(to bottom,#f4fbff,#ffffff);
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.why-us h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0d3b66;
}

.subtitle {
  color: #555;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

/* Animasyon aktif */
.why-card.show {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: translateY(-10px);
}

.icon2 {
  color: #00b4d8;
  transition: 0.3s;
}

.why-card:hover .icon2 {
  transform: scale(1.2) rotate(5deg);
  color: #0077b6;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #111;
}

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

/* TABLET */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-us h2 {
    font-size: 24px;
  }
}

.contact {
  padding: 100px 20px;
  background: linear-gradient(to bottom,#f4fbff,#ffffff);
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0d3b66;
}

.subtitle {
  margin-bottom: 40px;
  color: #555;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00b4d8;
  outline: none;
  box-shadow: 0 0 5px rgba(0,180,216,0.3);
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #0d3b66;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0077b6;
}

/* Mobile */
@media (max-width: 576px) {
  .contact h2 {
    font-size: 24px;
  }
}

.review-section{
  padding:90px 20px;
  background:linear-gradient(to bottom,#f4fbff,#ffffff);
  text-align:center;
  font-family: "Montserrat", sans-serif;
}

.review-section h2{
  font-size:32px;
  margin-bottom:60px;
  color: #0d3b66;
}

.review-swiper{
  max-width:1200px;
  margin:auto;
  padding-bottom:40px;
}

.review-item{
  background:#fff;
  padding:40px;
  border-radius:25px;
  box-shadow:0 15px 35px rgba(0,0,0,0.07);
  transition:.4s;
  opacity:.4;
  transform:scale(.9);
}

.swiper-slide-active{
  opacity:1 !important;
  transform:scale(1) !important;
}

.review-stars{
  color:#ffc107;
  font-size:18px;
  margin-bottom:20px;
}

.review-item p{
  font-size:15px;
  line-height:1.6;
  color:#555;
}

.review-item h4{
  margin-top:20px;
  color:#007bff;
}

.modern-footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 80px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-box h2,
.footer-box h3 {
  margin-bottom: 20px;
  position: relative;
}

.footer-box h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #00f5a0;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

.footer-box p a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ccc;
  transition: 0.3s;
}

.footer-box ul li i {
  margin-right: 8px;
  color: #00f5a0;
}

.footer-box ul li:hover {
  transform: translateX(5px);
  color: #fff;
}

.footer-box ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #00f5a0;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: 0.4s;
  backdrop-filter: blur(5px);
}

.social-icons a:hover {
  background: #00f5a0;
  color: #000;
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-footer {
    padding: 60px 20px 20px;
  }

  .footer-box {
    text-align: center;
  }

  .footer-box h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* Ortak Stil */
.call-float,
.whatsapp-float {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Telefon Butonu */
.call-float {
    bottom: 100px; /* WhatsApp'ın üstünde */
    background: #007BFF;
}

/* WhatsApp Butonu */
.whatsapp-float {
    bottom: 25px;
    background: #25D366;
}

/* Hover Efekti */
.call-float:hover,
.whatsapp-float:hover {
    transform: scale(1.1);
}


.about {
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(to bottom,#f4fbff,#ffffff);
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0d3b66;
}

.about-content p {
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  margin-bottom: 10px;
  font-weight: 500;
}

.about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  opacity: 0.85;
}

/* Responsive */
@media(max-width: 992px) {
  .about-wrapper {
      flex-direction: column;
      text-align: center;
  }
}

.regions {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f4fbff, #ffffff);
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.regions-container {
  max-width: 1200px;
  margin: auto;
}

.regions h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0d3b66;
}

.subtitle {
  color: #666;
  margin-bottom: 50px;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.region-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}

/* Hover Efekti */
.region-card:hover {
  transform: translateY(-8px);
  background: #009ee3;
  color: white;
  box-shadow: 0 15px 35px rgba(0,158,227,0.25);
}

/* Scroll Animasyonu */
.region-card.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-map-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f4fbff, #ffffff);
  font-family: "Montserrat", sans-serif;
}

.map-inner {
  max-width: 1200px;
  margin: auto;
}

.map-header {
  text-align: center;
  margin-bottom: 50px;
}

.map-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0d3b66;
  margin-bottom: 12px;
}

.map-header p {
  color: #5f6c7b;
  font-size: 16px;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.08);
  transition: 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 102, 204, 0.12);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 300px;
  }

  .map-header h2 {
    font-size: 24px;
  }
}