/* ===============================
   # style.css
   =============================== */

/* ================================
   Copyright 2022 Oracle Brain
   ================================ */


/* ================================
   Custom Properties
   ================================ */


:root {

  /* colors  */

  --united-nations-blue: #0B4C84;
  --bright-navy-blue: #01AFD1;
  --spanish-gray: #999999;
  --black-coral: #636774;
  --oxford-blue: #02213C;
  --yale-blue: #3CC2F5;
  --blue-ncs: #0084B8;
  --gunmetal: #223544;
  --gainsboro: #F7F7F7;
  --cultured: #87DCF0;
  --white: #DBE5FF;
  --black: #000000;
  --onyx: #404040;
  --jet: #333333;
  --gold: #c9a14a;

  /* typography  */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1vw);
  --fs-3: calc(14px + 0.3vw);
  --fs-4: 14px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /* transition  */

  --transition: 0.25s ease-in-out;

  /* spacing  */

  --section-padding: 60px;

  /* border-radius  */

  --radius-15: 15px;
  --radius-25: 25px;

}





/* ===============================
   # RESET
   =============================== */


*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
label,
button,
ion-icon { display: block; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

html { overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--gainsboro);
  overflow-x: hidden;
}



/* ===============================
   # REUSED STYLE
   =============================== */


.container { padding-inline: 20px; }

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-primary:is(:hover, :focus) {
  background: #e0b95a;
  border-color: #e0b95a;
}

.btn-secondary { border-color: var(--white); }
.btn-secondary {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-secondary:is(:hover, :focus) {
  background: var(--gold);
  color: var(--black);
}

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 { color: var(--gainsboro); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-subtitle {
  color: var(--gold);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  margin-bottom: 8px;
}

.section-title { margin-bottom: 15px; }

.section-text {
  color: var(--gainsboro);
  margin-bottom: 30px;
}

.card-text {
  color: var(--gainsboro);
  font-size: var(--fs-5);
}





/* ===============================
   # HEADER
   =============================== */


.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  transition: var(--transition);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-block: 15px;
  z-index: 1;
}

.header.active .header-top {
  position: fixed;
  background: var(--black);
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}

.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background: var(--gold);
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

.header-top .logo { margin-inline: auto; }

.header-top .logo img { max-width: 110px; max-height: 58px; width: auto; height: auto; object-fit: contain; }

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 24px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-btn:is(:hover, :focus) {
  opacity: 0.9;
  transform: scale(1.05);
  color: var(--white);
}

.nav-open-btn {
  font-size: 30px;
  color: inherit;
}

.header-bottom {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-top: 12px;
}

.header-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 26px 20px;
}

/* Sayfa başında sadece menü; kaydırınca çıkan barda sosyal + buton da görünsün */
.header-bottom .header-bottom-social,
.header-bottom .header-cta { display: none; }

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color: var(--white);
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.2); }

.header .btn { --padding: 4px 20px; }

.header .navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3;
}
@media (max-width: 991px) {
  .header .navbar {
    background: #0a0a0a;
  }
  .navbar-link { color: var(--gainsboro); }
  .navbar-link:is(:hover, :focus),
  .navbar-link.active { color: var(--gold); }
  .navbar-list { border-top-color: rgba(255,255,255,0.1); }
  .navbar-list li { border-bottom-color: rgba(255,255,255,0.1); }
  .nav-close-btn { color: var(--gold); }
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px;
}

.navbar-top .logo img { width: 150px; max-height: 75px; height: auto; object-fit: contain; }

.nav-close-btn {
  font-size: 20px;
  color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }

.navbar-list { border-top: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-list li { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-link {
  padding: 14px 18px;
  color: var(--gainsboro);
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.navbar-link:is(:hover, :focus),
.navbar-link.active { color: var(--gold); }

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}



/* ===============================
   # HERO
   =============================== */


.hero {
  background-image: url("../images/hero-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.72);
  background-blend-mode: overlay;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
  text-align: left;
  padding-top: 175px;
  padding-bottom: 80px;
}

.hero.hero-home {
  background-image: none;
  background-color: #0a0a0a;
  background-blend-mode: normal;
}

.hero-inner {
  min-height: 240px;
  padding-top: 300px;
  padding-bottom: 60px;
}

.hero-inner .hero-text-block {
  padding-bottom: 0;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-inner .hero-cta-row {
  position: static;
  transform: none;
  margin-top: 18px;
}

.hero-inner .btn-group { margin-top: 0; }

.hero-container {
  max-width: 1180px;
  margin-inline: auto;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-home .hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 0;
}

.hero-slide {
  display: none;
}

.hero-slide[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-home .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-home .hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-home .hero-slide .hero-text-block,
.hero-home .hero-slide .hero-cta-row {
  position: relative;
  z-index: 1;
}

.hero-home .hero-slide.active {
  display: flex;
}

.hero-text-block {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 120px;
}

.hero-slide {
  position: relative;
}

.hero-cta-row {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-title {
  font-size: clamp(44px, 8vw, 68px);
  margin-bottom: 12px;
  line-height: 1.15;
  min-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-home .hero-slide .hero-title {
    font-size: clamp(22px, 6vw, 36px) !important;
    line-height: 1.25;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

.hero-inner .hero-title {
  font-size: clamp(20px, 3.2vw, 28px);
  min-height: 2.4em;
  margin-bottom: 10px;
}

.hero-kicker {
  color: var(--gold);
  font-size: var(--fs-4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-inner .hero-kicker { font-size: 13px; margin-bottom: 8px; }

.hero-text {
  color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 28px;
}

.hero-inner .hero-text {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.55;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-arrow-prev { left: 32px; }
.hero-arrow-next { right: 32px; }

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.04);
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

/* Hero açılış animasyonu – logo + "Çağlam" + uçaklar (hero üzerinde overlay) */
.hero-intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  transition: opacity 0.8s ease, visibility 0.8s ease;
  pointer-events: none;
}
.hero-intro-overlay.hero-intro-done {
  opacity: 0;
  visibility: hidden;
}
.hero-intro-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-intro-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroIntroPop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: scale(0.3);
}
.hero-intro-text-wrap {
  position: relative;
  display: inline-block;
}
.hero-intro-text {
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-800);
  font-size: clamp(36px, 8vw, 72px);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px rgba(201, 161, 74, 0.5);
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.hero-intro-tagline {
  display: block;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-500);
  font-size: clamp(11px, 2.2vw, 16px);
  color: rgba(201, 161, 74, 0.85);
  text-transform: none;
  letter-spacing: 0.25em;
  margin-top: 6px;
  text-align: right;
  width: 100%;
}
/* Uçak: Ç'nin altından başlar, yukarı doğru hareket eder */
.hero-intro-plane {
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.95;
  animation: heroIntroPlaneUp 2.8s ease-out forwards;
  transform-origin: center center;
}
.hero-intro-plane ion-icon {
  width: 100%;
  height: 100%;
  --ionicon-stroke-width: 32px;
  transform: rotate(-45deg);
}
/* Güneş: m'nin üstünde, hareketli. Geniş ekranda içi boş, dar ekranda içi dolu */
.hero-intro-sun {
  position: absolute;
  right: -8px;
  top: -32px;
  width: 36px;
  height: 36px;
  color: var(--gold);
  opacity: 0.9;
  animation: heroIntroSunSpin 8s linear infinite;
}
.hero-intro-sun ion-icon {
  width: 100%;
  height: 100%;
  --ionicon-stroke-width: 40px;
}
.hero-intro-sun--filled { display: none; }
@media (max-width: 640px) {
  .hero-intro-sun--outline { display: none; }
  .hero-intro-sun--filled { display: block; }
}
@keyframes heroIntroPop {
  0% { opacity: 0; transform: scale(0.3); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes heroIntroPlaneUp {
  0% { transform: translate(0, 0) rotate(-30deg); opacity: 1; }
  70% { opacity: 0.9; }
  100% { transform: translate(80px, -160px) rotate(-10deg); opacity: 0; }
}
@keyframes heroIntroSunSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@media (max-width: 640px) {
  .hero-intro-text { font-size: clamp(28px, 7vw, 48px); }
  .hero-intro-plane { width: 32px; height: 32px; bottom: -22px; }
  .hero-intro-sun { width: 28px; height: 28px; top: -24px; right: -4px; }
  .hero-intro-sun--outline { display: none; }
  .hero-intro-sun--filled { display: block; }
}

.hero-dot.active {
  background: var(--gold);
}



/* ===============================
   # TOUR SEARCH
   =============================== */


.tour-search {
  background: #050505;
  padding-block: calc(var(--section-padding) * 0.7);
}

.tour-search-card {
  max-width: 1100px;
  margin-inline: auto;
  background: #0f0f0f;
  border-radius: 24px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tour-search-intro .section-title {
  margin-bottom: 12px;
}

.tour-search-form .input-label {
  color: var(--gainsboro);
  font-size: var(--fs-4);
  margin-left: 4px;
  margin-bottom: 6px;
}

.tour-search-form .input-field {
  background: #111111;
  padding: 11px 16px;
  font-size: var(--fs-5);
  border-radius: 999px;
  border: 1px solid #2b2b2b;
  color: var(--gainsboro);
}

.tour-search-form .input-field::placeholder { color: var(--spanish-gray); }

.tour-search-form .input-field::-webkit-datetime-edit {
  color: var(--spanish-gray);
  text-transform: uppercase;
}

.tour-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-search-form .input-wrapper {
  margin-bottom: 0;
}

.tour-search .btn {
  width: auto;
  --border-width: 1px;
  font-weight: var(--fw-600);
  margin-top: 8px;
}

.input-wrapper-full {
  grid-column: 1 / -1;
}

.tour-submit-btn {
  max-width: 180px;
  width: auto;
}

@media (min-width: 768px) {
  .tour-search-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 32px;
  }

  .tour-search-intro {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .tour-search-form {
    margin-left: 12px;
    max-width: 360px;
    padding-left: 24px;
    border-left: 1px solid var(--gold);
  }

  .tour-search-form .input-wrapper {
    flex: 1 1 auto;
  }

  .tour-submit-btn {
    align-self: flex-end;
  }
}



/* ===============================
   # POPULAR
   =============================== */


.popular { padding-block: var(--section-padding); }

.popular-list,
.popular-list > li:not(:last-child) { margin-bottom: 30px; }

.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-25);
  height: 430px;
}

.popular-card .card-img { height: 100%; }

.popular-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-25);
  padding: 20px;
}


.popular-card .card-rating {
  background: var(--gold);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 1px;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.popular-card .card-subtitle {
  color: var(--gold);
  font-size: var(--fs-6);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.popular-card .card-title { margin-bottom: 5px; }

.popular-card :is(.card-subtitle, .card-title) > a { color: inherit; }

.popular .btn { margin-inline: auto; }



/* ===============================
   # PACKAGE
   =============================== */


.package { padding-block: var(--section-padding); }

.package-list { margin-bottom: 40px; }

.package-list > li:not(:last-child) { margin-bottom: 30px; }

.package-card {
  background: #111111;
  overflow: hidden;
  border-radius: 15px;
}

.package-card .card-banner { height: 250px; }

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card .card-content { padding: 30px 20px; }

.package-card .card-title { margin-bottom: 15px; }

.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta-list {
  background: #111111;
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 50px;
}

.card-meta-item { position: relative; }

.card-meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}

.meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  color: var(--gainsboro);
  font-size: var(--fs-8);
}

.meta-box > ion-icon {
  color: var(--bright-navy-blue);
  font-size: 13px;
}

.package-card .card-price {
  background: #111111;
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.package-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}

.package-card .card-price .reviews { font-size: var(--fs-5); }

.package-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 14px;
}

.package-card .card-rating ion-icon:last-child { color: hsl(0, 0%, 80%); }

.package-card .price {
  font-size: var(--fs-2);
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-800);
  margin-bottom: 20px;
}

.package-card .price span {
  font-size: var(--fs-7);
  font-weight: initial;
}

.package .btn { margin-inline: auto; }



/* ===============================
   # GALLERY
   =============================== */


.gallery {
  padding-block: var(--section-padding);
}

/* Galeri sayfası (iç sayfa) */
.gallery-page {
  padding-block: 56px 64px;
}

.container--gallery {
  max-width: 1000px;
  margin-inline: auto;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-intro .section-subtitle { margin-bottom: 10px; }

.gallery-intro .section-title {
  margin-bottom: 20px;
  line-height: 1.25;
}

.gallery-lead {
  font-size: var(--fs-5);
  line-height: 1.75;
  color: var(--gainsboro);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}

.gallery-grid-item {
  border-radius: var(--radius-15);
  overflow: hidden;
  background: var(--eerie-black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

.gallery-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-grid-item:hover .gallery-figure img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  margin: 0;
  font-size: var(--fs-7);
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-grid-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta {
  margin-bottom: 0;
}

/* Galeri tıklanabilir (lightbox) */
.gallery-figure {
  cursor: pointer;
}

/* ========== Lightbox ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox.is-open .lightbox-content img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--eerie-black);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: calc(85vh - 40px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-15);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-counter {
  margin-top: 12px;
  font-size: var(--fs-7);
  color: var(--gainsboro);
}

@media (min-width: 768px) {
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
  .lightbox-close { top: 24px; right: 24px; }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .gallery-figure { border-radius: 0 0 var(--radius-15) var(--radius-15); }
}

/* ========== İletişim sayfası ========== */
.contact-page {
  padding-block: 56px 72px;
  background: var(--eerie-black);
}

.container--contact {
  max-width: 1040px;
  margin-inline: auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 56px;
}

.contact-subtitle {
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.14em;
}

.contact-intro .section-title {
  margin-bottom: 20px;
  line-height: 1.25;
}

.contact-lead {
  font-size: var(--fs-5);
  line-height: 1.8;
  color: var(--gainsboro);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 0;
}

.contact-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: var(--fs-6);
  color: var(--spanish-gray);
}

.contact-trust ion-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-layout {
  display: grid;
  gap: 32px;
  align-items: stretch;
}

.contact-info,
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-info:hover,
.contact-form-wrap:hover {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-info-header {
  margin-bottom: 24px;
}

.contact-info-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-700);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-info-title {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item:last-of-type { margin-bottom: 0; }

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-icon ion-icon {
  font-size: 24px;
  --ionicon-stroke-width: 36px;
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-label {
  font-size: 11px;
  font-weight: var(--fw-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--spanish-gray);
}

.contact-link,
.contact-address {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  text-decoration: none;
  font-style: normal;
  margin: 0;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-hours {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 14px;
  background: rgba(212, 175, 55, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.contact-hours ion-icon {
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-hours strong {
  display: block;
  font-size: var(--fs-7);
  color: var(--white);
  margin-bottom: 4px;
}

.contact-hours span {
  font-size: var(--fs-6);
  color: var(--gainsboro);
}

.contact-social-wrap {
  margin-top: 22px;
}

.contact-social-label {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--spanish-gray);
  margin-bottom: 10px;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gainsboro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.contact-social-link:is(:hover, :focus) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* Kart altı – her iki kartta aynı hizada buton */
.contact-card-footer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  font-weight: var(--fw-600);
  font-size: var(--fs-6);
}

/* Form kartı – kompakt, yapı iletişim kartıyla aynı */
.contact-form-header {
  margin-bottom: 24px;
  flex-shrink: 0;
}

.contact-form-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--fw-700);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-form-title {
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.3;
}

.contact-form-desc {
  font-size: var(--fs-7);
  color: var(--spanish-gray);
  margin: 0;
  line-height: 1.4;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-height: 0;
}

.contact-form .input-label {
  color: var(--gainsboro);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  margin-bottom: 6px;
  display: block;
}

.contact-form .input-label .required {
  color: var(--gold);
}

.contact-form .input-field {
  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: 10px;
  padding: 10px 14px;
  min-height: 44px;
  font-size: var(--fs-6);
  color: var(--gainsboro);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .input-field::placeholder {
  color: var(--spanish-gray);
}

.contact-form .input-field:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.contact-form .input-field--textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px 14px;
  resize: vertical;
  box-sizing: border-box;
}

.contact-form-note {
  font-size: 11px;
  color: var(--spanish-gray);
  margin: 10px 0 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 32px 28px;
  }
}

/* Ana sayfa: bölüm sırası (turlar, hizmetler, biz kimiz, galeri, cta) – sarı çizgi ve renk tonu */
main article .package { background: #0b0b0b; }
main article .popular { background: #080808; border-top: 1px solid rgba(201, 161, 74, 0.5); }
main article .about-home { background: #0b0b0b; border-top: 1px solid rgba(201, 161, 74, 0.5); }
main article .gallery-home { background: #080808; border-top: 1px solid rgba(201, 161, 74, 0.5); }
main article .cta-home { background: #0b0b0b; border-top: 1px solid rgba(201, 161, 74, 0.5); }

.about-home {
  padding-block: calc(var(--section-padding) * 0.8);
}

.about-home-container {
  max-width: 960px;
  margin-inline: auto;
}

.about-home-text {
  text-align: center;
}

.about-home-text .section-text {
  margin-inline: auto;
}

.about-home-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.about-detail-container {
  max-width: 960px;
  margin-inline: auto;
}

.about-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.about-text-block {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
}

.why-us {
  margin-top: 32px;
}

.why-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-size: var(--fs-5);
  color: var(--gainsboro);
}

.why-list strong {
  color: var(--gold);
}

/* About page (Hakkımızda) */
.about-article { padding-bottom: 0; }

.about-page {
  padding-block: 56px 64px;
}

.container--about {
  max-width: 880px;
  margin-inline: auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 56px;
}

.about-intro .section-subtitle {
  margin-bottom: 10px;
}

.about-intro .section-title {
  margin-bottom: 24px;
  line-height: 1.25;
}

.about-lead {
  font-size: var(--fs-5);
  line-height: 1.75;
  color: var(--gainsboro);
  margin-bottom: 20px;
  font-weight: var(--fw-500);
}

.about-intro .section-text {
  text-align: left;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: var(--fs-5);
  line-height: 1.78;
  color: var(--gainsboro);
}

.about-intro .section-text:last-of-type {
  margin-bottom: 0;
}

.about-motto {
  margin-top: 36px;
  padding: 20px 28px;
  border-left: 4px solid var(--gold);
  background: rgba(201, 161, 74, 0.06);
  border-radius: 0 12px 12px 0;
  display: inline-block;
}

.about-motto-text {
  font-family: var(--ff-montserrat);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: 0;
}

.about-section {
  margin-bottom: 52px;
}

.about-section .section-subtitle {
  margin-bottom: 10px;
}

.about-section .section-title {
  margin-bottom: 32px;
  text-align: center;
}

.about-section--values .section-title {
  margin-bottom: 36px;
}

.about-values {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

.about-value-card {
  background: #0f0f0f;
  border-radius: 16px;
  padding: 28px 26px;
  border: 1px solid rgba(201, 161, 74, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.about-value-card:hover {
  border-color: rgba(201, 161, 74, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.about-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(201, 161, 74, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.about-value-title {
  margin-bottom: 12px;
  color: var(--gainsboro);
  font-size: var(--fs-3);
}

.about-value-text {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.why-us-block .section-title {
  margin-bottom: 12px;
}

.why-us-desc {
  text-align: center;
  color: var(--spanish-gray);
  font-size: var(--fs-5);
  margin-bottom: 28px;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}

.why-us-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: #0d0d0d;
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  transition: background 0.2s ease;
}

.why-us-item:hover {
  background: #111;
}

.why-us-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 161, 74, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-us-item strong {
  color: var(--gainsboro);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
}

.why-us-item .why-us-content span {
  color: var(--spanish-gray);
  font-size: var(--fs-5);
  line-height: 1.55;
}

.about-page .section-cta-center {
  margin-top: 16px;
  margin-bottom: 0;
}

/* Services page (Hizmetlerimiz) */
.services-article { padding-bottom: 0; }

.services-page {
  padding-block: 56px 64px;
}

.container--services {
  max-width: 1000px;
  margin-inline: auto;
}

.services-intro {
  text-align: center;
  margin-bottom: 48px;
}

.services-intro .section-subtitle { margin-bottom: 10px; }

.services-intro .section-title {
  margin-bottom: 20px;
  line-height: 1.25;
}

.services-lead {
  font-size: var(--fs-5);
  line-height: 1.75;
  color: var(--gainsboro);
  margin-bottom: 16px;
  font-weight: var(--fw-500);
  max-width: 640px;
  margin-inline: auto;
}

.services-intro .section-text {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: var(--fs-5);
  line-height: 1.75;
  color: var(--gainsboro);
}

.services-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 52px;
}

.service-card {
  background: #0f0f0f;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 74, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(201, 161, 74, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.service-card-img {
  position: relative;
  height: 220px;
  margin: 0;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
}

.service-card-body {
  padding: 28px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-category {
  color: var(--gold);
  font-size: var(--fs-6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.service-card-title {
  color: var(--gainsboro);
  margin-bottom: 14px;
  font-size: var(--fs-3);
  line-height: 1.25;
}

.service-card-text {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}

.service-card-btn {
  align-self: flex-start;
  font-size: var(--fs-5);
}

.services-extra {
  text-align: center;
  padding: 40px 24px;
  background: rgba(201, 161, 74, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(201, 161, 74, 0.15);
  margin-bottom: 48px;
}

.services-extra .section-subtitle { margin-bottom: 8px; }

.services-extra .section-title { margin-bottom: 14px; }

.services-extra .section-text {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 24px;
  font-size: var(--fs-5);
  line-height: 1.65;
}

.services-cta { margin-bottom: 0; }

/* Tours page (Turlarımız) */
.tours-article { padding-bottom: 0; }

.tours-page {
  padding-block: 56px 64px;
}

.container--tours {
  max-width: 1000px;
  margin-inline: auto;
}

.tours-intro {
  text-align: center;
  margin-bottom: 48px;
}

.tours-intro .section-subtitle { margin-bottom: 10px; }

.tours-intro .section-title {
  margin-bottom: 20px;
  line-height: 1.25;
}

.tours-lead {
  font-size: var(--fs-5);
  line-height: 1.75;
  color: var(--gainsboro);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 0;
}

.tours-empty {
  text-align: center;
  padding: 48px 24px 56px;
  background: rgba(15, 15, 15, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(201, 161, 74, 0.12);
}

.tours-empty-text {
  font-size: var(--fs-5);
  line-height: 1.7;
  color: var(--gainsboro);
  max-width: 480px;
  margin: 0 auto 24px;
}

.tours-empty .btn { margin-top: 0; }

.tour-cards {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

/* Ana sayfa öne çıkan turlar slider (3 görünür, ok ile) */
.tours-home-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  position: relative;
}
.tours-home-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.tours-home-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.4s ease;
  will-change: transform;
}
.tours-home-page {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  flex: 0 0 33.333%;
  min-width: 33.333%;
  max-width: 33.333%;
  justify-content: flex-start;
  box-sizing: border-box;
}
.tours-home-page .tour-card {
  flex: 0 0 100%;
  min-width: 0;
}
.tours-home-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(201, 161, 74, 0.5);
  background: rgba(15, 15, 15, 0.9);
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tours-home-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0f0f0f;
}
.tours-home-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.tours-home-arrow ion-icon { font-size: 24px; }
@media (max-width: 900px) {
  .tours-home-page {
    flex: 0 0 50%;
    min-width: 50%;
    max-width: 50%;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .tours-home-slider { gap: 10px; }
  .tours-home-arrow { width: 40px; height: 40px; }
  .tours-home-arrow ion-icon { font-size: 20px; }
  .tours-home-page {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    gap: 16px;
  }
}

.tour-card {
  background: #0f0f0f;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 74, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  border-color: rgba(201, 161, 74, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.tour-card-img {
  position: relative;
  height: 240px;
  margin: 0;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: var(--fs-7);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 8px;
}

.tour-card-body {
  padding: 28px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-title {
  color: var(--gainsboro);
  margin-bottom: 14px;
  font-size: var(--fs-3);
  line-height: 1.28;
}

.tour-card-text {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.tour-card-meta {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.tour-card-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--spanish-gray);
  font-size: var(--fs-6);
}

.tour-card-meta ion-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  --ionicon-stroke-width: 40px;
}

.tour-card-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tour-card-price {
  font-family: var(--ff-montserrat);
  font-size: var(--fs-2);
  font-weight: var(--fw-800);
  color: #25D366;
  margin: 0;
}

.tour-card-price span {
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  color: var(--spanish-gray);
}

.tour-card-btn {
  flex-shrink: 0;
}

.tours-cta { margin-bottom: 0; }

/* Blog sayfası (liste) */
.blog-article { padding-bottom: 0; }
.blog-page { padding-block: 56px 64px; }
.container--blog { max-width: 1000px; margin-inline: auto; }
.container--blog-with-sidebar { max-width: 1200px; margin-inline: auto; padding-inline: 20px; }
.blog-intro { text-align: center; margin-bottom: 32px; }
.blog-categories { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.blog-cat-link { display: inline-block; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,0.08); color: var(--gainsboro); font-size: var(--fs-6); text-decoration: none; transition: background 0.2s, color 0.2s; }
.blog-cat-link:hover { background: rgba(201, 161, 74, 0.2); color: var(--gold); }
.blog-cat-link.active { background: var(--gold); color: #0f0f0f; }
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }
.blog-main { min-width: 0; }
.blog-sidebar { position: sticky; top: 100px; }
@media (max-width: 900px) { .blog-sidebar { position: static; } }
.blog-sidebar-block { background: rgba(15,15,15,0.8); border: 1px solid rgba(201,161,74,0.12); border-radius: 16px; padding: 20px; margin-bottom: 24px; }
.blog-sidebar-title { margin: 0 0 14px; font-size: var(--fs-5); font-weight: 700; color: var(--white); }
.blog-sidebar-list { list-style: none; margin: 0; padding: 0; }
.blog-sidebar-list li { margin-bottom: 10px; font-size: var(--fs-6); line-height: 1.4; }
.blog-sidebar-list li a { color: var(--gainsboro); text-decoration: none; }
.blog-sidebar-list li a:hover { color: var(--gold); }
.blog-sidebar-views { color: var(--gold); font-size: 0.85em; margin-left: 6px; }
.blog-intro .section-title { margin-bottom: 12px; }
.blog-lead { font-size: var(--fs-5); line-height: 1.75; color: var(--gainsboro); max-width: 640px; margin-inline: auto 0; }
.blog-empty { text-align: center; padding: 48px 24px; color: var(--gainsboro); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: #0f0f0f; border-radius: 20px; overflow: hidden; border: 1px solid rgba(201, 161, 74, 0.12); transition: border-color 0.2s, box-shadow 0.2s; }
.blog-card:hover { border-color: rgba(201, 161, 74, 0.3); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35); }
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card-img { margin: 0; height: 200px; overflow: hidden; background: var(--eerie-black); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-cat { display: inline-block; font-size: var(--fs-7); color: var(--gold); margin-bottom: 8px; }
.blog-card-date { font-size: var(--fs-7); color: var(--spanish-gray); display: block; margin-bottom: 10px; }
.blog-card-title { margin: 0 0 12px; font-size: var(--fs-4); line-height: 1.3; color: var(--white); }
.blog-card-excerpt { font-size: var(--fs-5); color: var(--gainsboro); line-height: 1.6; margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-views { font-size: var(--fs-7); color: var(--spanish-gray); display: block; margin-bottom: 10px; }
.blog-card-more { font-size: var(--fs-6); font-weight: var(--fw-600); color: var(--gold); }
/* Blog detay */
.blog-detail-hero { min-height: 240px; padding-top: 300px; padding-bottom: 60px; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: var(--eerie-black); position: relative; display: flex; align-items: center; }
.blog-detail-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); pointer-events: none; }
.blog-detail-hero-inner { position: relative; z-index: 1; width: 100%; }
.blog-detail-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-bottom: 12px; }
.blog-detail-cat { font-size: var(--fs-6); color: var(--gold); text-decoration: none; }
.blog-detail-cat:hover { text-decoration: underline; }
.blog-detail-date { font-size: var(--fs-6); color: var(--spanish-gray); }
.blog-detail-views { font-size: var(--fs-6); color: var(--spanish-gray); display: inline-flex; align-items: center; gap: 6px; }
.blog-detail-views ion-icon { font-size: 1.1em; }
.blog-detail-title { margin: 0; color: var(--white); font-size: clamp(1.5rem, 4vw, 2.35rem); line-height: 1.25; max-width: 800px; }
.blog-detail-page { padding-block: 48px 72px; }
.container--blog-detail { max-width: 720px; margin-inline: auto; padding-inline: 20px; }
.blog-detail-content.prose { font-size: 1.0625rem; line-height: 1.8; }
.blog-detail-content h2 { font-size: var(--fs-3); color: var(--white); margin: 2em 0 0.5em; font-weight: 700; }
.blog-detail-content h3 { font-size: var(--fs-4); color: var(--white); margin: 1.5em 0 0.5em; font-weight: 600; }
.blog-detail-content p { margin: 0 0 1.25em; }
.blog-detail-content ul, .blog-detail-content ol { margin: 0 0 1.25em; padding-left: 1.5em; }
.blog-detail-content img { max-width: 100%; height: auto; border-radius: var(--radius-10); margin: 1.5em 0; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.blog-detail-footer { margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.blog-home .blog-grid { gap: 24px; }
.blog-home .blog-card-img { height: 180px; }
.blog-home .section-cta-center { margin-top: 28px; }

/* Ana sayfa: bölüm arası çizgi (diğer bölümlerle aynı) */
.home-section-divider {
  border: none;
  border-top: 1px solid rgba(201, 161, 74, 0.5);
  margin: 0;
  max-width: 100%;
}

/* Tur detay sayfası */
.container--narrow { max-width: 820px; margin-inline: auto; padding-inline: 20px; }
.tour-detail-article .hero-tour-detail { min-height: 240px; padding-top: 300px; padding-bottom: 60px; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; display: flex; align-items: center; }
.hero-tour-detail--crisp { background-size: cover !important; background-position: center !important; }
.hero-tour-detail-overlay { position: absolute; inset: 0; z-index: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 100%); pointer-events: none; }
.hero-tour-detail .hero-container.hero-tour-detail-content { position: relative; z-index: 1; }
.tour-detail-content { padding-top: 48px; padding-bottom: 60px; max-width: 1280px; margin-inline: auto; padding-inline: 20px; }
.tour-detail-wrapper { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .tour-detail-wrapper { grid-template-columns: 1fr; } }
.tour-detail-main { min-width: 0; }
.tour-detail-sidebar { position: sticky; top: 100px; }
@media (max-width: 900px) { .tour-detail-sidebar { position: static; } }
.tour-detail-sidebar-card { background: rgba(18, 18, 18, 0.9); border: 1px solid rgba(201, 161, 74, 0.2); border-radius: var(--radius-15); overflow: hidden; }
.tour-detail-sidebar-image-trigger { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; position: relative; text-align: left; }
.tour-detail-sidebar-image-trigger:hover .tour-detail-sidebar-image-hint { opacity: 1; }
.tour-detail-sidebar-image { aspect-ratio: 4/2.6; overflow: hidden; background: var(--eerie-black); }
.tour-detail-sidebar-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.25s ease; }
.tour-detail-sidebar-image-trigger:hover .tour-detail-sidebar-image img { transform: scale(1.03); }
.tour-detail-sidebar-image-hint { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); color: var(--gold); padding: 8px 12px; border-radius: var(--radius-10); font-size: var(--fs-7); display: flex; align-items: center; gap: 6px; opacity: 0.85; transition: opacity 0.2s; }
.tour-detail-sidebar-image-hint ion-icon { font-size: 18px; }
.tour-detail-sidebar-brochure { padding: 20px; }
.tour-detail-sidebar-brochure-title { display: flex; align-items: center; gap: 8px; color: var(--gainsboro); font-size: var(--fs-5); font-weight: var(--fw-600); margin: 0 0 12px; }
.tour-detail-sidebar-brochure-title ion-icon { color: var(--gold); font-size: 20px; }
.tour-detail-sidebar-brochure-preview { margin-bottom: 14px; border-radius: var(--radius-10); overflow: hidden; background: rgba(0,0,0,0.3); min-height: 100px; }
.tour-detail-brochure-preview-pdf,
.tour-detail-brochure-preview-trigger { width: 100%; border: 0; background: none; cursor: pointer; padding: 0; font: inherit; text-align: left; }
.tour-detail-brochure-preview-pdf { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 24px; color: var(--spanish-gray); transition: color 0.2s, background 0.2s; }
.tour-detail-brochure-preview-pdf:hover { color: var(--gold); background: rgba(201, 161, 74, 0.08); }
.tour-detail-brochure-preview-pdf ion-icon { font-size: 48px; color: var(--gold); }
.tour-detail-brochure-preview-img-trigger { display: block; line-height: 0; }
.tour-detail-brochure-preview-img-trigger img { width: 100%; height: auto; max-height: 180px; object-fit: cover; display: block; transition: opacity 0.2s; }
.tour-detail-brochure-preview-img-trigger:hover img { opacity: 0.9; }
.tour-detail-sidebar-brochure-btn { width: 100%; justify-content: center; display: inline-flex; align-items: center; gap: 8px; }
/* Tur resmi lightbox */
.tour-detail-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.tour-detail-lightbox[hidden] { display: none !important; }
.tour-detail-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); cursor: pointer; }
.tour-detail-lightbox-inner { position: relative; z-index: 1; max-width: 95vw; max-height: 90vh; }
.tour-detail-lightbox-img { max-width: 100%; max-height: 90vh; width: auto; height: auto; display: block; border-radius: var(--radius-15); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.tour-detail-lightbox-close { position: fixed; top: 20px; right: 20px; z-index: 10000; width: 44px; height: 44px; border: 0; background: rgba(255,255,255,0.15); color: var(--white); font-size: 28px; line-height: 1; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0; transition: background 0.2s; }
.tour-detail-lightbox-close:hover { background: rgba(255,255,255,0.3); }
.tour-detail-lightbox--brochure .tour-detail-lightbox-inner { max-width: 95vw; max-height: 90vh; }
.brochure-lightbox-img { max-width: 95vw; max-height: 90vh; width: auto; height: auto; display: block; border-radius: var(--radius-15); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.brochure-lightbox-iframe { width: 90vw; height: 85vh; max-width: 900px; border: 0; border-radius: var(--radius-15); box-shadow: 0 20px 60px rgba(0,0,0,0.5); background: #fff; }
.hero-tour-meta { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 16px 24px; color: var(--gainsboro); font-size: var(--fs-5); }
.hero-tour-meta li { display: flex; align-items: center; gap: 8px; }
.hero-tour-meta ion-icon { color: var(--gold); font-size: 20px; --ionicon-stroke-width: 40px; }
.hero-tour-price span { font-weight: var(--fw-700); color: var(--gold); }
.tour-detail-content { padding-top: 48px; padding-bottom: 60px; }
.tour-detail-section { margin-bottom: 40px; }
.tour-detail-h2 { color: var(--gainsboro); font-size: var(--fs-3); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.tour-detail-h2 ion-icon { color: var(--gold); font-size: 26px; }
.tour-detail-text { color: var(--spanish-gray); line-height: 1.8; }
.tour-detail-brochure { display: inline-flex; align-items: center; gap: 8px; }
.tour-detail-days { list-style: none; margin: 0; padding: 0; counter-reset: day; }
.tour-detail-day { margin-bottom: 24px; padding: 20px 22px; background: rgba(15, 15, 15, 0.6); border: 1px solid rgba(201, 161, 74, 0.15); border-radius: var(--radius-15); counter-increment: day; }
.tour-detail-day-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 10px; }
.tour-detail-day-num { font-weight: var(--fw-700); color: var(--gold); font-size: var(--fs-6); }
.tour-detail-day-title { color: var(--gainsboro); font-size: var(--fs-5); }
.tour-detail-day-desc { color: var(--spanish-gray); font-size: var(--fs-5); line-height: 1.75; }
.tour-detail-section-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.tour-detail-section-head .tour-detail-h2 { margin-bottom: 0; }
.tour-detail-brochure-inline { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.tour-detail-day-extra { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); }
.tour-detail-day-accommodation { margin: 0 0 10px; color: var(--spanish-gray); font-size: var(--fs-6); }
.tour-detail-day-meals { list-style: none; margin: 0; padding: 0; }
.tour-detail-day-meals li { padding: 4px 0; color: var(--spanish-gray); font-size: var(--fs-6); line-height: 1.5; }
.tour-detail-day-meals strong { color: var(--gainsboro); }
.tour-detail-important { background: rgba(201, 161, 74, 0.06); border: 1px solid rgba(201, 161, 74, 0.2); border-radius: var(--radius-15); padding: 20px 22px; }
.tour-detail-important .tour-detail-h2 ion-icon { color: #eab308; }
.tour-detail-notes { color: var(--spanish-gray); font-size: var(--fs-5); line-height: 1.75; }
.tour-detail-disclaimer { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); color: var(--spanish-gray); font-size: var(--fs-7); line-height: 1.6; }
.tour-detail-inout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .tour-detail-inout { grid-template-columns: 1fr; } }
.tour-detail-box { padding: 22px; border-radius: var(--radius-15); border: 1px solid rgba(255,255,255,0.08); }
.tour-detail-included { background: rgba(0, 132, 184, 0.08); border-color: rgba(0, 132, 184, 0.25); }
.tour-detail-excluded { background: rgba(100, 100, 100, 0.1); border-color: rgba(255,255,255,0.06); }
.tour-detail-h3 { color: var(--gainsboro); font-size: var(--fs-5); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.tour-detail-h3 ion-icon { font-size: 20px; }
.tour-detail-included .tour-detail-h3 ion-icon { color: #4ade80; }
.tour-detail-excluded .tour-detail-h3 ion-icon { color: var(--spanish-gray); }
.tour-detail-list { list-style: none; margin: 0; padding: 0; }
.tour-detail-list li { padding: 6px 0; padding-left: 22px; position: relative; color: var(--spanish-gray); font-size: var(--fs-6); line-height: 1.5; }
.tour-detail-included .tour-detail-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.tour-detail-excluded .tour-detail-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; background: var(--spanish-gray); border-radius: 50%; }
.tour-detail-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.btn-lg { padding: 14px 28px; font-size: var(--fs-4); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; border: 1px solid #20bd5a; }
.btn-whatsapp:hover { background: #20bd5a; color: #fff; border-color: #1da851; }
.btn-whatsapp ion-icon { font-size: 22px; }

.section-cta-center {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-15);
  overflow: hidden;
}

.gallery-item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ana sayfa: Misafirlerimizden Kareler – galeri slider (5 görünür, ok ile tüm resimler) */
.gallery-home-lead { max-width: 560px; margin-inline: auto; }
.gallery-home-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  position: relative;
}
.gallery-home-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.gallery-home-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.4s ease;
  will-change: transform;
}
.gallery-home-page {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 0 0 100%;
  min-width: 100%;
  justify-content: flex-start;
}
.gallery-home-slider--responsive .gallery-home-page {
  flex: 0 0 20%;
  min-width: 20%;
}
.gallery-home-slider .gallery-home-item {
  flex: 0 0 calc((100% - 4 * 16px) / 5);
}
.gallery-home-slider--responsive .gallery-home-item {
  flex: 0 0 100%;
}
.gallery-home-slider .gallery-home-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.gallery-home-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-home-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-home-item:hover .gallery-home-figure img {
  transform: scale(1.08);
}
.gallery-home-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--gainsboro);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-home-item:hover .gallery-home-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-home-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(201, 161, 74, 0.5);
  background: rgba(15, 15, 15, 0.9);
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.gallery-home-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0f0f0f;
}
.gallery-home-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.gallery-home-arrow ion-icon {
  font-size: 24px;
}
@media (max-width: 900px) {
  .gallery-home-page { gap: 12px; }
  .gallery-home-slider .gallery-home-item { flex: 0 0 calc((100% - 2 * 12px) / 3); }
}
@media (max-width: 640px) {
  .gallery-home-slider { gap: 10px; }
  .gallery-home-arrow { width: 40px; height: 40px; }
  .gallery-home-arrow ion-icon { font-size: 20px; }
  .gallery-home-page { gap: 10px; }
  .gallery-home-slider .gallery-home-item { flex: 0 0 calc((100% - 1 * 10px) / 2); }
}
@media (max-width: 480px) {
  .gallery-home-slider .gallery-home-item { flex: 0 0 100%; }
  .gallery-home-figure { aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  .gallery-home-slider--responsive .gallery-home-page {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .gallery-home-slider--responsive .gallery-home-item {
    flex: 0 0 100%;
  }
}

/* Hakkımızda sayfası: araç galerisi (photo frame, açıklama/caption ve teknik bilgi altında) */
.about-gallery-section { padding-top: 0; }
.about-gallery-section .section-title { margin-bottom: 20px; }
.about-gallery.gallery-home-slider { margin-top: 16px; gap: 12px; }
.about-gallery .gallery-home-page { gap: 16px; align-items: stretch; }
.about-gallery .gallery-home-item { flex: 0 0 calc((100% - 3 * 16px) / 4); display: flex; flex-direction: column; min-width: 0; }
.about-gallery-card { border: none; border-radius: 0; overflow: visible; }
.about-gallery-card:hover { transform: none; box-shadow: none; }
.about-gallery-frame {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 220px;
  min-height: 180px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 3px solid rgba(201, 161, 74, 0.5);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.about-gallery-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.about-gallery-card:hover .about-gallery-frame img { transform: scale(1.04); }
.about-gallery .gallery-home-item .gallery-home-caption { display: none; }
.about-gallery-card-caption {
  margin-top: 0;
  padding: 12px 14px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  flex: 1;
}
.about-gallery-alt,
.about-gallery-caption {
  font-size: var(--fs-7);
  color: var(--gainsboro);
  line-height: 1.35;
  display: block;
}
.about-gallery-caption { color: var(--gold); font-weight: var(--fw-600); font-size: var(--fs-6); }
.about-gallery-technical {
  font-size: 11px;
  color: rgba(220, 220, 220, 0.85);
  line-height: 1.5;
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(201, 161, 74, 0.25);
}
.about-gallery-technical:empty { display: none; }
.about-gallery .gallery-home-arrow { width: 40px; height: 40px; font-size: 20px; }
@media (max-width: 900px) {
  .about-gallery .gallery-home-item { flex: 0 0 calc((100% - 2 * 16px) / 3); }
  .about-gallery-frame { max-height: 200px; min-height: 160px; }
}
@media (max-width: 640px) {
  .about-gallery .gallery-home-item { flex: 0 0 calc((100% - 16px) / 2); }
  .about-gallery-frame { max-height: 170px; min-height: 140px; }
}
@media (max-width: 400px) {
  .about-gallery .gallery-home-item { flex: 0 0 100%; }
  .about-gallery-frame { max-height: 240px; min-height: 200px; }
}


/* ===============================
   # CTA
   =============================== */


.cta {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.cta :is(.section-subtitle, .section-title, .section-text) { color: var(--white); }

.cta .section-text { font-size: var(--fs-5); }

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

.cta-form {
  max-width: 100%;
}

.cta-form-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form-inner .input-label { color: var(--white); }

.cta-form-inner .input-field {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
}

.cta-form-inner .input-field::placeholder { color: rgba(255, 255, 255, 0.7); }

.cta-form-inner .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  margin-top: 4px;
  align-self: flex-start;
}


/* ===============================
   # FOOTER
   =============================== */

.footer-top {
  background: var(--black);
  padding-block: 56px 48px;
  color: var(--gainsboro);
  border-top: 3px solid var(--gold);
}

.footer-top-inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
}

.footer-brand { margin-bottom: 0; }

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 140px;
  max-height: 70px;
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  color: var(--gold);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.footer-text {
  font-size: var(--fs-5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gainsboro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-link:is(:hover, :focus) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 161, 74, 0.08);
}

.footer-heading {
  font-family: var(--ff-montserrat);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 161, 74, 0.35);
  display: inline-block;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:is(:hover, :focus) {
  color: var(--gold);
  padding-left: 4px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gainsboro);
  font-size: var(--fs-5);
}

.footer-contact-list li ion-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  font-size: 18px;
  --ionicon-stroke-width: 40px;
}

.footer-contact-list a,
.footer-contact-list span {
  color: inherit;
  font-style: normal;
}

.footer-contact-list a:is(:hover, :focus) { color: var(--white); }

.footer-social--below-contact { margin-top: 1.25rem; }

.footer-newsletter-text {
  font-size: var(--fs-5);
  margin-bottom: 16px;
  line-height: 1.55;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-input {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  color: var(--gainsboro);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: var(--fs-5);
  transition: border-color 0.2s ease;
}

.footer-input::placeholder { color: var(--spanish-gray); }

.footer-input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-submit {
  width: 100%;
  max-width: 160px;
}

.footer-bottom {
  background: #0a0a0a;
  padding-block: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: hidden;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: visible;
  padding-inline: 12px;
  overflow-wrap: break-word;
}

.copyright-block {
  text-align: center;
  color: var(--spanish-gray);
  font-size: var(--fs-6);
  max-width: 100%;
}
.copyright-block .copyright-line {
  margin: 0 0 4px;
  line-height: 1.5;
  display: block;
}
.copyright-block .copyright-line:last-child { margin-bottom: 0; }
.copyright-block .copyright-line a { color: var(--gainsboro); }
.copyright-block .copyright-line a:is(:hover, :focus) { color: var(--gold); }
@media (min-width: 769px) {
  .copyright-block .copyright-line {
    display: inline;
    margin: 0;
  }
  .copyright-block .copyright-line:not(:last-child)::after { content: " — "; }
}
@media (max-width: 640px) {
  .copyright-block,
  .copyright-block .copyright-line,
  .copyright-block a { font-size: 12px !important; }
}
@media (max-width: 768px) {
  .footer-top-inner {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand { align-items: center; }
  .footer-brand .footer-logo,
  .footer-brand .footer-text { margin-inline: auto; }
  .footer-links { text-align: center; }
  .footer-links ul { display: flex; flex-direction: column; align-items: center; }
  .footer-contact { text-align: center; }
  .footer-contact-list { align-items: center; }
  .footer-contact-list li { justify-content: center; }
  .footer-social,
  .footer-social--below-contact { justify-content: center; }
  .footer-bottom { text-align: center; }
  .footer-bottom-inner { justify-content: center; flex-wrap: wrap; }
}

.copyright-block a,
.copyright-block span { display: inline; }
.copyright-block a {
  color: var(--gainsboro);
  transition: color 0.2s ease;
}
.copyright-block a:is(:hover, :focus) { color: var(--gold); }

.footer-credit { margin-left: 0.35em; }

.footer-webesk-link {
  text-decoration: none;
  font-weight: var(--fw-600);
}

.footer-webesk-link .footer-web { color: #3b82f6; }
.footer-webesk-link .footer-esk { color: var(--white); }

.footer-webesk-link:is(:hover, :focus) .footer-web { color: #60a5fa; }
.footer-webesk-link:is(:hover, :focus) .footer-esk { color: var(--gainsboro); }

.footer-bottom-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.footer-bottom-list > li { position: relative; }

.footer-bottom-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -10px;
  bottom: 3px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.2);
}

.footer-bottom-link {
  color: var(--gainsboro);
  font-size: var(--fs-7);
  transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) { color: var(--white); }


/* ===============================
   # GO TO TOP
   =============================== */


.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
}

.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}

.go-top:is(:hover, :focus) { opacity: 1; }



/* ===============================
   # MEDIA QUERIES
   =============================== */


/* responsive for larger than 580px screen  */

@media (min-width: 580px) {

  /*  REUSED STYLE  */

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

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text { margin-bottom: 40px; }

  .card-text { --fs-5: 15px; }



  /*  HEADER  */

  .header { padding-top: 83px; }

  .helpline-box .icon-box { padding: 14px; }

  .header-top .logo img { max-width: 175px; max-height: 85px; }

  .whatsapp-btn { font-size: 26px; width: 44px; height: 44px; }

  .nav-open-btn { font-size: 40px; }

  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }



  /*  HERO  */

  .hero {
    min-height: 860px;
    padding-top: 125px;
    padding-bottom: 100px;
  }

  .hero-inner {
    padding-top: 240px;
    min-height: 210px;
    padding-bottom: 54px;
  }

  .tour-detail-article .hero-tour-detail {
    padding-top: 240px;
    min-height: 210px;
    padding-bottom: 54px;
  }

  .blog-detail-hero {
    padding-top: 240px;
    min-height: 210px;
    padding-bottom: 54px;
  }

  .hero-text { --fs-5: 15px; }

  .btn-group { gap: 20px; }



  /*  TOUR SEARCH  */
  .tour-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .tour-search-form .input-field { padding: 16px 20px; }



  /* POPULAR  */

  .popular-card .card-content { right: auto; }



  /*  FOOTER  */

  .footer-top-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .footer-brand { grid-column: unset; }

  .footer-contact { grid-column: unset; }

  .footer-links--col2 .footer-heading { visibility: hidden; pointer-events: none; }

  .footer-bottom { text-align: left; }

  .copyright { margin-bottom: 0; }

  .footer-bottom-list { justify-content: flex-end; }

}



/*  responsive for larger than 768px screen  */

@media (min-width: 768px) {

  /*  CUSTOM PROPERTY  */

  :root {

    /*  typography  */

    --fs-5: 15px;

  }



  /* REUSED STYLE  */

  .container { max-width: 800px; }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /*  HEADER  */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list { gap: 10px; }



  /*  POPULAR  */

  .popular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .popular-list > li:not(:last-child) { margin-bottom: 0; }

  .popular-card .card-content { right: 20px; }



  /*  PACKAGE  */

  .package-list { margin-bottom: 50px; }

  .package-list > li:not(:last-child) { margin-bottom: 40px; }

  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .package-card .card-banner { height: 100%; }

  .package-card .card-content { padding: 40px; }

  /*  ABOUT PAGE  */
  .about-values { grid-template-columns: repeat(3, 1fr); }
  .about-section--values .section-title { margin-bottom: 40px; }
  .why-us-list { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-us-block .section-title { margin-bottom: 14px; }

  /*  SERVICES PAGE  */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .service-card-img { height: 200px; }

  /*  TOURS PAGE  */
  .tour-cards { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .tour-card-img { height: 220px; }

  .package-card .card-price {
    display: grid;
    place-content: center;
  }

  .package-card .card-price .wrapper { margin-bottom: 15px; }



  /*  GALLERY  */

  .gallery { padding-bottom: calc(var(--section-padding * 2)); }

  .gallery-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-image { border-radius: var(--radius-25); }



  /*  CTA  */

  .cta-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .cta-content { flex: 1; max-width: 520px; }

  .cta-form { flex: 0 0 auto; min-width: 320px; max-width: 380px; }

  .cta .section-text { margin-inline: 0; }



  /*  FOOTER  */

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .footer-form { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; }

  .footer-input { flex: 1 1 200px; margin-bottom: 0; }

  .footer-submit { width: auto; max-width: none; }

}



/*  responsive for larger than 992px screen  */

@media (min-width: 992px) {

  /*  REUSED STYLE  */

  .container { max-width: 1050px; }



  /*  HEADER  */

  /* Scroll sonrası da ana sayfayla aynı koyu navbar (tüm sayfalar tutarlı) */
  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top { display: none; }

  .header-bottom { border-bottom: none; }

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--black);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 5;
    padding-top: 12px;
  }

  .header.active .header-bottom .container {
    justify-content: space-between;
    padding-block: 24px 20px;
  }

  .header.active .header-bottom .header-bottom-social {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .header.active .header-bottom .header-cta {
    display: inline-flex;
  }
  .header-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366 !important;
    border-color: #20bd5a !important;
    color: #fff !important;
  }
  .header-cta-whatsapp:is(:hover, :focus) {
    background: #20bd5a !important;
    border-color: #1da851 !important;
    color: #fff !important;
  }
  .header-cta-whatsapp ion-icon {
    font-size: 1.35em;
  }

  .header.active .social-link {
    color: var(--white);
    border-color: hsla(0, 0%, 100%, 0.3);
  }

  .header.active .social-link:is(:hover, :focus) {
    background: hsla(0, 0%, 100%, 0.15);
    color: var(--white);
  }

  .header-bottom .container { padding-block: 24px 20px; }

  .header .navbar { all: unset; }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list li { border-bottom: none; }

  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }

  .header.active .navbar-link { color: var(--white); }

  .header.active .navbar-link:is(:hover, :focus),
  .header.active .navbar-link.active { color: var(--gold); }

  .overlay { display: none; }



  /*  HERO  */

  .hero .container { max-width: 740px; }



  /*  TOUR SEARCH  */

  .tour-search-form { grid-template-columns: repeat(5, 1fr); }

  .tour-search .btn {
    --padding: 15px;
    grid-column: unset;
    margin-top: 0;
  }



  /*  POPULAR  */

  .popular-list { grid-template-columns: repeat(3, 1fr); }



  /*  PACKAGE  */

  .meta-box { --fs-8: 13px; }

  .meta-box > ion-icon { font-size: 15px; }



  /*  CTA  */

  .cta .section-title { max-width: 25ch; }



  /*  FOOTER  */

  .footer-top-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand { grid-column: unset; }

  .footer-text { max-width: none; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .tour-cards { grid-template-columns: repeat(3, 1fr); gap: 32px; }

}





/*  responsive for larger than 1200px screen  */

@media (min-width: 1200px) {

  /*  CUSTOM PROPERTY  */

  :root {

    /*  spacing  */

    --section-padding: 100px;

  }



  /*  REUSED STYLE  */

  .container { max-width: 1180px; }

}


/* ===============================
   Çerez bildirimi (tema uyumlu)
   =============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f0f0f;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  padding: 20px 24px;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-title { margin: 0 0 8px; font-size: 1.1rem; font-weight: 600; color: var(--gold); }
.cookie-banner-desc { margin: 0; font-size: 0.9rem; color: var(--gainsboro); line-height: 1.5; }
.cookie-banner-desc a { color: var(--gold); text-decoration: underline; }
.cookie-banner-desc a:hover { color: #e0b858; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-btn { white-space: nowrap; }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal[hidden] { display: none !important; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.cookie-modal-box {
  position: relative;
  background: #0f0f0f;
  border: 1px solid rgba(201, 161, 74, 0.3);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-modal-title { margin: 0; font-size: 1.25rem; color: var(--white); }
.cookie-modal-close {
  background: none;
  border: none;
  color: #999;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.cookie-modal-close:hover { color: var(--gold); }
.cookie-modal-body { padding: 24px; }
.cookie-modal-lead { margin: 0 0 20px; color: var(--gainsboro); font-size: 0.95rem; line-height: 1.5; }
.cookie-setting { margin-bottom: 20px; }
.cookie-setting-label { display: flex; align-items: center; gap: 12px; cursor: pointer; color: var(--white); font-weight: 500; }
.cookie-setting-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); }
.cookie-setting-desc { margin: 8px 0 0 30px; font-size: 0.85rem; color: var(--spanish-gray); line-height: 1.4; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
}

/* KVKK sayfası */
.kvkk-page { padding: var(--section-padding) 0; }
.container--narrow { max-width: 720px; margin-inline: auto; padding-inline: 20px; }
.kvkk-content.prose { font-size: 1rem; line-height: 1.75; color: var(--gainsboro); }
.kvkk-content.prose h2 { font-size: var(--fs-3); color: var(--gold); margin: 2em 0 0.6em; font-weight: 700; padding-top: 0.5em; border-top: 1px solid rgba(201,161,74,0.2); }
.kvkk-content.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.kvkk-content.prose h3 { font-size: var(--fs-4); color: var(--white); margin: 1.5em 0 0.4em; font-weight: 600; }
.kvkk-content.prose p { margin: 0 0 1em; }
.kvkk-content.prose ul { margin: 0 0 1em; padding-left: 1.5em; }
.kvkk-content.prose a { color: var(--gold); text-decoration: underline; }
.kvkk-content.prose a:hover { color: #e0b858; }
.kvkk-updated { margin-top: 2em; font-size: 0.9rem; color: var(--spanish-gray); }

/* SSS sayfası */
.sss-page { padding: var(--section-padding) 0; }
.sss-list { display: flex; flex-direction: column; gap: 0; }
.sss-item { padding: 1.25em 0; border-bottom: 1px solid rgba(201, 161, 74, 0.15); }
.sss-item:first-of-type { padding-top: 0; }
.sss-question { font-size: var(--fs-4); color: var(--gold); margin: 0 0 0.5em; font-weight: 700; line-height: 1.35; }
.sss-answer { font-size: 1rem; line-height: 1.7; color: var(--gainsboro); }
.sss-answer p { margin: 0; }
.sss-cta { margin: 2em 0 0; font-size: 1rem; color: var(--gainsboro); }
.sss-cta a { color: var(--gold); text-decoration: underline; }
.sss-cta a:hover { color: #e0b858; }