@charset "utf-8";
/* inc/style.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200..800&family=Quintessential&display=swap');

:root{
  --brand:#5d2784;
  --navH: 96px;          /* JS otomatik güncelliyor */
  --heroExtra: 44px;     /* hero içerik için ekstra boşluk */
}

body{
  font-family:'Roboto',sans-serif;
  background-color:#fff;
  color:#333;
  overflow-x:hidden !important;
}

/* TOPBAR */
#topbar{
  background: var(--brand);
  color:#e5e7eb;
  font-size:.92rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#topbar a{color:#e5e7eb;text-decoration:none}
#topbar a:hover{color:#fff}
.topbar-logo{height:18px;width:auto;vertical-align:middle}
.social-icons a{
  width:34px;height:34px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;
}
.social-icons a:hover{background:rgba(255,255,255,.08)}

/* NAVBAR (white glass) */
.navbar-glass{
  background: rgba(255,255,255,.62);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 0;
}

/* Sticky-top ile overlay: navbarın kapladığı alanı geri al */
.nav-overlay{
  margin-bottom: calc(var(--navH) * -1);
  z-index: 1030;
}
.page-head{
  padding-top: calc(var(--navH) + 32px);
  padding-bottom: 32px;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
/* Scroll state */
.nav-scrolled{
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.nav-scrolled .brand-logo--main{display:none}
.nav-scrolled .brand-logo--scroll{display:block}

/* Logo */
.navbar-brand{gap:.75rem}
.brand-logo{height:80px;width:auto;display:block}
.brand-logo--scroll{display:none}
@media (max-width: 992px){
  .brand-logo{height:56px}
}

/* Navbar link colors */
.navbar .nav-link{
  color:#1f2937;
  font-weight:400;
  font-size:18px;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus{
  color: var(--brand);
}

/* Dropdown */
.dropdown-menu{
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
  padding:.5rem;
}
.dropdown-item{
  border-radius:10px;
  font-weight:600;
  padding:.55rem .75rem;
  color:#1f2937;
}
.dropdown-item:hover{
  background:rgba(93,39,132,.08);
  color:var(--brand);
}
.dropdown-item:active{
  background:rgba(93,39,132,.16);
  color:var(--brand);
}
.navbar .dropdown-toggle::after {
  display: none !important;
}
.nav-caret{
  display:inline-block;
  font-size:.75rem;
  margin-left:8px;
  opacity:.7;
  transform-origin:center;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-link:hover .nav-caret{
  opacity:1;
  transform: translateY(1px);
}

/* AÇIKKEN 180° */
.navbar .nav-link[aria-expanded="true"] .nav-caret{
  transform: rotate(180deg);
  opacity:1;
}

/* Sosyal ikon hover */
.social-icons a {
  transition: transform .25s ease, opacity .25s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  opacity: .85;
    text-decoration: none;
}

/* Navbar scroll durumunda caret rengi */
.navbar.scrolled .nav-caret {
  --fa-primary-color: var(--brand);
  --fa-secondary-color: var(--brand);
}

/* CTA */
.btn-danger{
  background:var(--brand);
  border-color:var(--brand);
}
.btn-danger:hover{filter:brightness(.95)}

/* HERO CAROUSEL */
.hero-carousel{position:relative}

.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item{
  height: 100vh;
  min-height: 560px;
}

.hero-slide-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 88% 48%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(2,6,23,.10), rgba(2,6,23,.78));
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  padding-top: calc(var(--navH) + var(--heroExtra));
  padding-bottom: 48px;
  color:#fff;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.4rem .75rem;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-weight:800;
  letter-spacing:.04em;
  text-transform: uppercase;
  font-size:.78rem;
}

.hero-title{
  margin-top:.9rem;
  margin-bottom:.9rem;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.05;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.hero-text{
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  max-width: 60ch;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  color: rgba(255,255,255,.85);
  font-weight:700;
}
.hero-meta i{margin-right:.35rem}

/* Indicators */
.hero-carousel .carousel-indicators [data-bs-target]{
  width:10px;height:10px;
  border-radius:999px;
}

/* Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next{
  width:10%;
  min-width:64px;
}

footer { border-top: 5px solid var(--brand); }

/* Responsive */
@media (max-width: 992px){
  :root{ --heroExtra: 34px; }
  .hero-carousel .carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item{
    min-height: 520px;
  }
}
@media (max-width: 576px){
  .hero-meta{gap:.6rem;font-size:.95rem}
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next{
    width: 14%;
  }
}


/* FOOTER */
footer.footer{
  border-top: 5px solid var(--brand);
  background: #0b1220;
  color: rgba(255,255,255,.86);
}

.footer-map{
  width:100%;
  height: 360px;
  min-height: 320px;
}

.footer-panel{
  padding: 42px 34px;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(93,39,132,.25), transparent 60%),
    radial-gradient(800px 520px at 85% 70%, rgba(255,255,255,.06), transparent 55%),
    #0b1220;
}

.footer-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -.02em;
}

.footer-sub{
  color: rgba(255,255,255,.72);
}

.footer-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.footer-icon{
  width:40px;height:40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color:#fff;
  flex: 0 0 auto;
}

.footer-label{
  font-size: .86rem;
  color: rgba(255,255,255,.62);
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-text{
  color: rgba(255,255,255,.88);
  line-height: 1.4;
}

.footer-link{
  color:#fff;
  text-decoration:none;
  font-weight: 800;
}
.footer-link:hover{color: rgba(255,255,255,.88); text-decoration: none;}

.footer-soc{
  width:38px;height:38px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
}
.footer-soc:hover{
  background: rgba(255,255,255,.14);
}
.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.footer-social a{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(93,39,132,.08);
  color: #FFF;
  font-size: 1.1rem;
  transition: all .25s ease;
}
/* Footer dark background helpers */
.footer .footer-icon i,
.footer .footer-social i { color:#fff; }

.footer .footer-social a { display:inline-flex; align-items:center; justify-content:center; opacity:.92; }
.footer .footer-social a:hover { opacity:1; }

.footer .footer-icon { line-height:1; }
.footer .footer-link { color:rgba(255,255,255,.92); text-decoration:none; }
.footer .footer-link:hover { color:#fff; text-decoration:none; }
.footer .footer-text, .footer .footer-sub { color:rgba(255,255,255,.78); }
.footer .footer-label { color:rgba(255,255,255,.95); font-weight:700; }

.footer-social a:hover{
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.footer .footer-social a {
  text-decoration: none !important;
}

.footer .footer-social a:hover {
  text-decoration: none !important;
}
/* COOKIE POPUP – bottom right */
#cookies{
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  font-size: .95rem;
  color:#1f2937;
  z-index: 9999;

  /* animasyon */
  transform: translateY(30px);
  opacity: 0;
  animation: cookieIn .5s ease forwards;
}

/* Metin */
#cookies a{
  color: var(--brand);
  font-weight:600;
  text-decoration:none;
}
#cookies a:hover{text-decoration:none}

/* Kabul butonu */
#cookies .accept-btn{
  display:inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--brand);
  color:#fff !important;
  border-radius: 999px;
  font-weight:700;
  font-size:.9rem;
}
#cookies .accept-btn:hover{
  filter: brightness(.95);
  text-decoration:none;
}

/* Giriş animasyonu */
@keyframes cookieIn{
  to{
    transform: translateY(0);
    opacity:1;
  }
}

/* Mobil */
@media (max-width: 576px){
  #cookies{
    right: 12px;
    left: 12px;
    max-width: unset;
    bottom: 12px;
  }
}
/* =========================
   GOOGLE MAPS ADVANCED MARKER
   (inc/style.css sonuna ekle)
========================= */

/* Marker container */
.map-marker{
  position: relative;
  transform: translateY(-10px);
  cursor: pointer;
  user-select: none;
}

/* Pin (damla) */
.map-marker .pin{
  width: 34px;
  height: 34px;
  border-radius: 18px 18px 18px 0;
  transform: rotate(-45deg);
  background: var(--brand);
  border: 2px solid rgba(255,255,255,.95);
  box-shadow:
    0 10px 22px rgba(0,0,0,.28),
    0 2px 6px rgba(0,0,0,.18);
  position: relative;
}

/* İç nokta */
.map-marker .pin::after{
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

/* Dış pulse halkası */
.map-marker::before{
  content:"";
  position:absolute;
  inset:-16px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(93,39,132,.22), rgba(93,39,132,0) 60%);
  transform: translateY(10px);
  opacity: .9;
  pointer-events: none;
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse{
  0%{ transform: translateY(10px) scale(.75); opacity:.75; }
  70%{ transform: translateY(10px) scale(1.15); opacity:.15; }
  100%{ transform: translateY(10px) scale(1.25); opacity:0; }
}

/* Bounce (click ile) */
.map-marker.bounce{
  animation: bounce .55s cubic-bezier(.2,.8,.25,1);
}

@keyframes bounce{
  0%{ transform: translateY(-10px); }
  35%{ transform: translateY(-26px); }
  70%{ transform: translateY(-10px); }
  100%{ transform: translateY(-12px); }
}

/* İstersen küçük "F" rozet */
.map-marker .badge-f{
  position:absolute;
  top:-8px;
  right:-10px;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#fff;
  color: var(--brand);
  font-weight: 900;
  font-size: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 18px rgba(0,0,0,.20);
  border:1px solid rgba(0,0,0,.08);
}
/* Services + News cards */
.service-card, .news-card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  background: #fff;
  color: inherit;
}
.service-card:hover, .news-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border-color: rgba(93,39,132,.20);
}

.service-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(93,39,132,.10);
  color: var(--brand);
  font-size: 22px;
}

.fw-black{ font-weight: 900; }



/* News thumbnails */
.news-thumb{
  width: 100px;
  height: 120px;
  flex: 0 0 100px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.news-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-title h3{
  line-height: 1.3;
}

.news-desc{
  font-size: .95rem;
  line-height: 1.45;
}
.news-thumb-float{
  float: left;
  width: 100px;
  height: 120px;
  margin: 0 12px 8px 0; /* sağ ve alt boşluk */
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.news-thumb-float img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-desc{
  line-height: 1.45;
  font-size: .95rem;
}

.fw-black{font-weight:900}

/* HERO */
.page-hero{min-height: clamp(280px, 34vw, 420px); background:#0b1220}
.page-hero-bg{
  position:absolute; inset:0;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.page-hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 85% 35%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(2,6,23,.18), rgba(2,6,23,.78));
}
.page-hero-inner{position:absolute; inset:0; display:flex; align-items:flex-end}
.page-hero-card{
  margin: 0 0 18px 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-kicker{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.35rem .7rem;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:.78rem;
}
.hero-badges{display:flex; flex-wrap:wrap; gap:.5rem}
.badge-pill{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.35rem .65rem;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-weight:700;
  font-size:.85rem;
}

/* Highlight (brand + logo accent) */
.highlight-box{
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background:
    linear-gradient(90deg,
      rgba(93,39,132,.10),
      rgba(220,50,45,.08),
      rgba(245,160,40,.08),
      rgba(245,210,45,.10)
    ),
    #fff;
}

.feature-card{
  border-radius: 18px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.feature-ico{
  width:44px; height:44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(93,39,132,.10);
  color: var(--brand);
  font-size: 1.2rem;
}

.service-detail{
  border-radius: 18px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.detail-head{display:flex; align-items:flex-start; gap:.75rem; flex-wrap:wrap}

.detail-chip{
  display:inline-flex; align-items:center; justify-content:center;
  height: 30px;
  padding: 0 .75rem;
  border-radius: 999px;
  font-weight:900;
  letter-spacing:.02em;
}
.chip-ftl{background: rgba(220,50,45,.12); color:#b11f1b; border:1px solid rgba(220,50,45,.22)}
.chip-ltl{background: rgba(245,160,40,.14); color:#a05a00; border:1px solid rgba(245,160,40,.24)}

.icon-list li{display:flex; gap:.5rem; align-items:flex-start; padding:.35rem 0}
.icon-list i{color: var(--brand); margin-top:.1rem}

.cta-band{
  border-radius: 18px;
  padding: 18px;
  background: rgba(93,39,132,.06);
  border: 1px solid rgba(93,39,132,.12);
}
.cta-kicker{color: var(--brand)}


