:root{
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --text: #1b1b1b;
  --text-light: #6b6b6b;
  --gold: #c8a96b;
  --gold-dark: #a78646;
  --line: #e8e4db;
  --shadow: 0 12px 40px rgba(0,0,0,0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1240px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Outfit', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
select{
  font-family:inherit;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */
.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.header-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand-logo{
  height:56px;
  width:auto;
  object-fit:contain;
}

.header-contact{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.contact-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-weight:600;
}

.chip-icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold), #e2c58f);
  color:#111;
  font-size:14px;
}

.header-wa{
  padding:12px 18px;
  background:var(--gold);
  color:#151515;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}

.header-wa:hover{
  background:var(--gold-dark);
  transform:translateY(-2px);
}

/* HERO */
.hero{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(to right, rgba(16,16,16,0.72), rgba(16,16,16,0.38)),
    url("images/hero.jpg") center center / cover no-repeat;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(200,169,107,0.22), transparent 35%);
  pointer-events:none;
}

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

.hero-badge{
  display:inline-flex;
  align-items:center;
  padding:10px 18px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
  color:#f4e1b8;
}

.hero h1{
  max-width:780px;
  font-size:clamp(36px, 5vw, 68px);
  line-height:1.05;
  font-weight:800;
  margin-bottom:16px;
  letter-spacing:-0.02em;
}

.hero p{
  max-width:720px;
  font-size:18px;
  color:rgba(255,255,255,0.86);
  margin-bottom:28px;
}

.hero-features{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:36px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(8px);
  font-weight:500;
}

.feature-icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--gold);
  color:#141414;
  font-weight:800;
}

/* BOOKING */
.booking-card{
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(255,255,255,0.3);
  box-shadow:var(--shadow);
  border-radius:24px;
  padding:22px;
  max-width:1180px;
}

.booking-grid{
  display:grid;
  grid-template-columns: 1.2fr 1.6fr .8fr .7fr;
  gap:16px;
}

.field-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.field-group label{
  font-size:14px;
  font-weight:700;
  color:#3d3d3d;
}

.field-group select{
  height:60px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:0 16px;
  font-size:16px;
  color:#222;
  outline:none;
  transition:.2s ease;
}

.field-group select:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(200,169,107,0.16);
}

.action-field{
  justify-content:flex-end;
}

.gold-btn{
  height:60px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg, #d7bb84, #b89252);
  color:#141414;
  font-size:17px;
  font-weight:800;
  padding:0 28px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(200,169,107,0.25);
  transition:.25s ease;
}

.gold-btn:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg, #e1c68f, #aa7f3b);
}

/* HIGHLIGHTS */
.highlights{
  padding:34px 0 24px;
  background:#fff;
}

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

.highlight-card{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  display:flex;
  align-items:center;
  gap:14px;
  min-height:120px;
}

.highlight-thumb{
  width:74px;
  height:74px;
  border-radius:14px;
  overflow:hidden;
  flex:0 0 74px;
}

.highlight-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.highlight-card h3{
  font-size:18px;
  margin-bottom:6px;
}

.highlight-card p{
  color:var(--text-light);
  font-size:14px;
}

/* SECTIONS */
.destinations{
  padding:74px 0;
  background:#fff;
}

.section-head{
  margin-bottom:28px;
}

.section-kicker{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin-bottom:10px;
}

.section-head h2{
  font-size:clamp(28px, 3.2vw, 46px);
  line-height:1.1;
  margin-bottom:12px;
}

.section-head p{
  max-width:740px;
  color:var(--text-light);
  font-size:16px;
}

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

.destination-card{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.destination-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.destination-info{
  padding:18px 18px 20px;
  background:#fff;
}

.destination-info h3{
  font-size:22px;
  margin-bottom:6px;
}

.destination-info p{
  color:var(--text-light);
}

/* ABOUT */
.about-strip{
  padding:70px 0;
  background:linear-gradient(180deg, #fbfaf7, #f4f1ea);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.about-strip-inner{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:28px;
  align-items:center;
}

.about-strip h2{
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.1;
}

.about-strip p{
  color:var(--text-light);
  font-size:17px;
}

/* FOOTER */
.footer{
  background:#111111;
  color:#ffffff;
}

.footer-inner{
  padding:70px 0 40px;
  display:grid;
  grid-template-columns:1.3fr .9fr .9fr .9fr;
  gap:34px;
}

.footer-logo{
  height:58px;
  width:auto;
  object-fit:contain;
  margin-bottom:18px;
  filter:brightness(1.05);
}

.footer-brand-col p{
  color:rgba(255,255,255,0.72);
  max-width:420px;
  margin-bottom:20px;
}

.footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
}

.footer-col h4{
  font-size:20px;
  margin-bottom:16px;
  color:#fff;
}

.footer-col ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-col li,
.footer-col a,
.footer-col span{
  color:rgba(255,255,255,0.76);
  font-size:15px;
}

.footer-col a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.footer-bottom p{
  color:rgba(255,255,255,0.68);
  font-size:14px;
}



.floating-whatsapp span{
  display:none;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .booking-grid{
    grid-template-columns:1fr 1fr;
  }

  .highlight-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .destination-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .footer-inner{
    grid-template-columns:repeat(2, 1fr);
  }

  .about-strip-inner{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .container{
    width:min(100% - 20px, 100%);
  }

  .header-inner{
    min-height:auto;
    padding:14px 0;
    flex-direction:column;
    align-items:flex-start;
  }

  .brand-logo{
    height:50px;
  }

  .header-contact{
    width:100%;
    justify-content:flex-start;
  }

  .contact-chip{
    width:100%;
    justify-content:center;
  }

  .header-wa{
    width:100%;
    text-align:center;
  }

  .hero{
    min-height:auto;
  }

  .hero-content{
    padding:56px 0 42px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
  }

  .hero-features{
    flex-direction:column;
    align-items:flex-start;
  }

  .feature-item{
    width:100%;
  }

  .booking-card{
    padding:16px;
    border-radius:20px;
  }

  .booking-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .field-group select,
  .gold-btn{
    height:56px;
  }

  .highlight-grid{
    grid-template-columns:1fr;
  }

  .destinations{
    padding:56px 0;
  }

  .destination-grid{
    grid-template-columns:1fr;
  }

  .destination-card img{
    height:220px;
  }

  .footer-inner{
    grid-template-columns:1fr;
    padding:52px 0 28px;
  }

  .floating-whatsapp{
    width:58px;
    height:58px;
    left:14px;
    bottom:14px;
  }
}
.announcement-bar{
  width:100%;
  overflow:hidden;
  background:linear-gradient(135deg, #d7bb84, #b89252);
  color:#1b1b1b;
  border-top:1px solid rgba(0,0,0,0.05);
  border-bottom:1px solid rgba(0,0,0,0.05);
  padding:12px 0;
  position:relative;
  z-index:5;
}

.announcement-track{
  display:flex;
  align-items:center;
  width:max-content;
  animation:announcementMove 28s linear infinite;
}

.announcement-track span{
  display:inline-block;
  white-space:nowrap;
  font-size:15px;
  font-weight:700;
  padding-right:80px;
  letter-spacing:0.2px;
}

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

@media (max-width:768px){
  .announcement-bar{
    padding:10px 0;
  }

  .announcement-track span{
    font-size:13px;
    padding-right:50px;
  }
}
.review-section{
  padding:80px 0;
  background:
    radial-gradient(circle at top left, rgba(200,169,107,0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}

.review-card{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:28px;
  padding:42px;
  border-radius:28px;
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(200,169,107,0.22);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.review-glow{
  position:absolute;
  top:-80px;
  right:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(200,169,107,0.22), transparent 70%);
  pointer-events:none;
}

.review-left,
.review-right{
  position:relative;
  z-index:2;
}

.review-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(200,169,107,0.12);
  color:#a78646;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.review-left h2{
  font-size:clamp(30px, 3.2vw, 48px);
  line-height:1.08;
  letter-spacing:-0.02em;
  margin-bottom:14px;
  color:#171717;
}

.review-left p{
  max-width:650px;
  color:#666;
  font-size:17px;
  line-height:1.75;
  margin-bottom:22px;
}

.review-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.review-point{
  padding:12px 16px;
  border-radius:999px;
  background:#faf7f1;
  border:1px solid #ece4d6;
  color:#454545;
  font-size:14px;
  font-weight:600;
}

.review-right{
  display:flex;
  align-items:center;
  justify-content:center;
}

.review-rating-box{
  width:100%;
  max-width:360px;
  padding:30px 24px;
  border-radius:24px;
  background:linear-gradient(180deg, #fffdf9 0%, #f8f1e5 100%);
  border:1px solid rgba(200,169,107,0.28);
  box-shadow:0 12px 32px rgba(0,0,0,0.06);
  text-align:center;
}

.review-stars{
  font-size:28px;
  letter-spacing:4px;
  color:#c8a96b;
  margin-bottom:14px;
}

.review-rating-box strong{
  display:block;
  font-size:22px;
  line-height:1.3;
  color:#1c1c1c;
  margin-bottom:10px;
}

.review-rating-box span{
  display:block;
  font-size:15px;
  color:#6c6c6c;
  line-height:1.6;
  margin-bottom:22px;
}

.review-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:56px;
  padding:14px 22px;
  border-radius:16px;
  background:linear-gradient(135deg, #d9be89 0%, #b98f4c 100%);
  color:#171717;
  font-size:16px;
  font-weight:800;
  box-shadow:0 10px 24px rgba(200,169,107,0.24);
  transition:all .25s ease;
}

.review-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(200,169,107,0.30);
  background:linear-gradient(135deg, #e3ca96 0%, #ab7f39 100%);
}

/* Tablet */
@media (max-width: 992px){
  .review-card{
    grid-template-columns:1fr;
    padding:32px 24px;
  }

  .review-rating-box{
    max-width:100%;
  }
}

/* Mobil */
@media (max-width: 768px){
  .review-section{
    padding:55px 0;
  }

  .review-card{
    gap:20px;
    padding:24px 16px;
    border-radius:22px;
  }

  .review-label{
    font-size:11px;
    padding:8px 12px;
    margin-bottom:12px;
  }

  .review-left h2{
    font-size:28px;
    line-height:1.15;
  }

  .review-left p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
  }

  .review-points{
    flex-direction:column;
    gap:10px;
  }

  .review-point{
    width:100%;
    border-radius:14px;
    font-size:13px;
    padding:12px 14px;
  }

  .review-rating-box{
    padding:24px 16px;
    border-radius:20px;
  }

  .review-stars{
    font-size:24px;
    letter-spacing:3px;
  }

  .review-rating-box strong{
    font-size:19px;
  }

  .review-rating-box span{
    font-size:14px;
    margin-bottom:18px;
  }

  .review-btn{
    min-height:52px;
    font-size:15px;
    border-radius:14px;
  }
}
.google-text{
  font-weight:800;
  background:linear-gradient(
    90deg,
    #4285F4,
    #34A853,
    #FBBC05,
    #EA4335
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
}

.google-text::after{
  content:"Google";
  position:absolute;
  left:0;
  top:0;
  filter:blur(8px);
  opacity:0.3;
  background:inherit;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  z-index:-1;
}
.review-hub-section{
  padding:80px 0;
  background:
    radial-gradient(circle at top left, rgba(200,169,107,0.10), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
}

.review-hub-card{
  position:relative;
  overflow:hidden;
  padding:42px;
  border-radius:30px;
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(200,169,107,0.22);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.review-hub-glow{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.review-hub-glow-1{
  top:-90px;
  right:-70px;
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(200,169,107,0.18), transparent 70%);
}

.review-hub-glow-2{
  bottom:-100px;
  left:-80px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(0,0,0,0.04), transparent 70%);
}

.review-hub-head{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:900px;
  margin:0 auto 34px;
}

.review-hub-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(200,169,107,0.12);
  color:#a78646;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.review-hub-head h2{
  font-size:clamp(30px, 3.4vw, 50px);
  line-height:1.1;
  letter-spacing:-0.02em;
  color:#171717;
  margin-bottom:14px;
}

.review-hub-head p{
  color:#666;
  font-size:17px;
  line-height:1.75;
}

.review-platform-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.review-platform-card{
  position:relative;
  overflow:hidden;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(180deg, #fffdf9 0%, #f8f3ea 100%);
  border:1px solid rgba(200,169,107,0.22);
  box-shadow:0 12px 32px rgba(0,0,0,0.06);
}

.platform-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}

.platform-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.google-chip{
  background:rgba(66,133,244,0.08);
  color:#4285F4;
  border:1px solid rgba(66,133,244,0.12);
}

.tripadvisor-chip{
  background:rgba(0,175,135,0.08);
  color:#00AF87;
  border:1px solid rgba(0,175,135,0.14);
}

.platform-stars{
  color:#c8a96b;
  font-size:22px;
  letter-spacing:3px;
  line-height:1;
}

.review-platform-card h3{
  font-size:28px;
  line-height:1.2;
  margin-bottom:12px;
  color:#1a1a1a;
}

.review-platform-card p{
  color:#6b6b6b;
  font-size:16px;
  line-height:1.75;
  margin-bottom:22px;
}

.platform-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:56px;
  padding:14px 22px;
  border-radius:16px;
  font-size:16px;
  font-weight:800;
  transition:all .25s ease;
}

.google-btn{
  background:linear-gradient(135deg, #d9be89 0%, #b98f4c 100%);
  color:#171717;
  box-shadow:0 10px 24px rgba(200,169,107,0.24);
}

.google-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(200,169,107,0.30);
  background:linear-gradient(135deg, #e3ca96 0%, #ab7f39 100%);
}

.tripadvisor-btn{
  background:linear-gradient(135deg, #111111 0%, #222222 100%);
  color:#ffffff;
  box-shadow:0 10px 24px rgba(0,0,0,0.16);
}

.tripadvisor-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,0.22);
  background:linear-gradient(135deg, #1b1b1b 0%, #303030 100%);
}

/* Google yazısı */
.google-text{
  font-weight:800;
  background:linear-gradient(
    90deg,
    #4285F4 0%,
    #34A853 30%,
    #FBBC05 60%,
    #EA4335 100%
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* Tripadvisor yazısı */
.tripadvisor-text{
  font-weight:800;
  background:linear-gradient(
    90deg,
    #00AF87 0%,
    #34E0A1 100%
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* Tablet */
@media (max-width: 992px){
  .review-platform-grid{
    grid-template-columns:1fr;
  }

  .review-hub-card{
    padding:30px 24px;
  }
}

/* Mobil */
@media (max-width: 768px){
  .review-hub-section{
    padding:55px 0;
  }

  .review-hub-card{
    padding:24px 16px;
    border-radius:22px;
  }

  .review-hub-head{
    margin-bottom:22px;
  }

  .review-hub-badge{
    font-size:11px;
    padding:8px 12px;
    margin-bottom:12px;
  }

  .review-hub-head h2{
    font-size:28px;
    line-height:1.15;
  }

  .review-hub-head p{
    font-size:15px;
    line-height:1.7;
  }

  .review-platform-grid{
    gap:16px;
  }

  .review-platform-card{
    padding:20px 16px;
    border-radius:20px;
  }

  .platform-top{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:14px;
  }

  .platform-stars{
    font-size:20px;
    letter-spacing:2px;
  }

  .review-platform-card h3{
    font-size:22px;
    margin-bottom:10px;
  }

  .review-platform-card p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
  }

  .platform-btn{
    min-height:52px;
    font-size:15px;
    border-radius:14px;
  }
}
.lang-switcher{
  position:relative;
  z-index:1201;
  flex:0 0 auto;
}

#langBtn{
  min-width:56px;
  height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid var(--gold);
  background:#fff;
  color:#111;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

#langBtn:hover{
  border-color:var(--gold-dark);
}

.lang-dropdown{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  display:none;
  flex-direction:column;
  min-width:160px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 14px 34px rgba(0,0,0,0.12);
  overflow:hidden;
  z-index:1300;
}

.lang-dropdown span{
  display:block;
  width:100%;
  padding:12px 14px;
  cursor:pointer;
  font-size:14px;
  font-weight:600;
  color:#1b1b1b;
  background:#fff;
}

.lang-dropdown span:hover{
  background:#f8f6f1;
}

.lang-switcher.active .lang-dropdown{
  display:flex;
}

/* MOBİL DÜZELTME */
@media (max-width:768px){
  .header-contact{
    position:relative;
    overflow:visible;
  }

  .lang-switcher{
    width:100%;
    position:relative;
  }

  #langBtn{
    width:72px;
  }

  .lang-dropdown{
    left:0;
    right:auto;
    top:calc(100% + 8px);
    min-width:140px;
    max-width:calc(100vw - 40px);
  }
}
@media (max-width:768px){
  .contact-chip{
    display:none !important;
  }
}
@media (max-width:768px){

  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    padding:12px 0;
    position:relative;
  }

  .brand-logo{
    height:44px;
  }

  /* EN BUTONU SAĞ ÜSTE */
  .lang-switcher{
    position:absolute;
    top:10px;
    right:0;
    width:auto;
  }

  #langBtn{
    height:36px;
    padding:0 14px;
    font-size:13px;
  }

  /* HEADER BOŞLUĞU AZALT */
  .topbar{
    padding:6px 0;
  }
}
.header-inner{
  position:relative;
}
@media (max-width:768px){

  .lang-switcher{
    position:absolute;
    top:8px;
    right:10px;
    z-index:2000;
  }

  #langBtn{
    height:34px;
    padding:0 12px;
    font-size:13px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--gold);
  }

}
@media (max-width:768px){

  .header-wa{
    margin-top:10px;
  }

}
@media (max-width:768px){

  .header-inner{
    padding-top:10px;
  }

  .header-wa{
    margin-top:16px;
  }

}
@media (max-width:768px){

  .topbar{
    padding:0;
  }

  .header-inner{
    position:relative;
    display:block;
    padding:12px 0 10px;
    min-height:auto;
  }

  .brand{
    display:block;
    width:max-content;
  }

  .brand-logo{
    height:44px;
  }

  .header-contact{
    display:block;
    width:100%;
    margin-top:10px;
  }

  .lang-switcher{
    position:absolute !important;
    top:6px;
    right:0;
    width:auto !important;
    margin:0 !important;
    z-index:3000;
  }

  #langBtn{
    height:34px;
    min-width:58px;
    padding:0 14px;
    font-size:13px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--gold);
    box-shadow:0 4px 14px rgba(0,0,0,0.06);
  }

  .lang-dropdown{
    top:calc(100% + 6px);
    right:0;
    left:auto;
    min-width:120px;
  }

  .contact-chip{
    display:none !important;
  }

  .header-wa{
    display:block;
    width:100%;
    margin-top:0;
    text-align:center;
    border-radius:999px;
    padding:14px 18px;
  }
}
@media (max-width:768px){
  .lang-switcher{
    top:-50px !important;
  }
}
.price-cta-section{
  padding:26px 0 20px;
  background:#fff;
}

.price-cta-btn{
  width:100%;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px 24px;

  border-radius:12px;

  /* GOLD GRADIENT */
  background:linear-gradient(135deg, #e0c48a, #b89252);
  color:#1a1a1a;

  font-size:20px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.02em;

  box-shadow:0 12px 28px rgba(184, 146, 82, 0.25);

  transition:all .25s ease;
  position:relative;
  overflow:hidden;
}

/* IŞIK EFEKTİ */
.price-cta-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:60%;
  height:100%;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.1)
  );
  transition:all .6s ease;
}

.price-cta-btn:hover::before{
  left:120%;
}

/* OK İKONU */
.price-cta-btn::after{
  content:"›";
  display:inline-block;
  margin-left:12px;
  font-size:26px;
  color:#1a1a1a;
}

/* HOVER */
.price-cta-btn:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg, #e8cc95, #c19a5f);
  box-shadow:0 16px 34px rgba(184, 146, 82, 0.35);
}

/* ACTIVE */
.price-cta-btn:active{
  transform:scale(0.98);
}

/* TABLET */
@media (max-width:992px){
  .price-cta-btn{
    font-size:17px;
    min-height:54px;
    padding:14px 18px;
  }
}

/* MOBİL */
@media (max-width:768px){

  .price-cta-section{
    padding:18px 0 14px;
  }

  .price-cta-btn{
    min-height:48px;
    font-size:13px;
    line-height:1.4;
    padding:12px 14px;
    border-radius:10px;
  }

  .price-cta-btn::after{
    margin-left:8px;
    font-size:20px;
  }
}
/* TÜRSAB alanı */
.footer-badge-col{
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
}

.footer-badge-img{
  max-width:160px;
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:8px;
  background:#fff;
  padding:4px;
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
}

/* Masaüstü */
.footer-inner{
  grid-template-columns:1.3fr .9fr .9fr .9fr .8fr;
  gap:34px;
}

/* Tablet */
@media (max-width:1200px){
  .footer-inner{
    grid-template-columns:repeat(2, 1fr);
  }

  .footer-badge-col{
    justify-content:flex-start;
    align-items:flex-start;
  }
}

/* MOBİL */
@media (max-width:768px){

  .footer-inner{
    grid-template-columns:1fr !important;
    gap:22px;
    padding:44px 0 24px;
  }

  .footer-col{
    width:100%;
  }

  .footer-brand-col,
  .footer-col{
    text-align:left;
  }

  .footer-btn{
    width:100%;
    min-width:100%;
  }

  /* TÜRSAB mobilde köşeye yapışsın */
 .footer-badge-col{
  position:relative;
  justify-content:flex-start;
  align-items:flex-end;
  margin-top:4px;
}

.footer-badge-img{
  max-width:120px;
  width:120px;
  margin-left:0;
  margin-right:auto;
}

  .footer-bottom-inner{
    justify-content:flex-start;
    text-align:left;
    min-height:auto;
    padding:14px 0 18px;
  }
}
.price-cta-section{
  padding:50px 0;
  background:linear-gradient(180deg, #f8f6f1 0%, #f1ece3 100%);
  position:relative;
  overflow:hidden;
}

.price-cta-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 30%, rgba(200,169,107,0.08), transparent 60%);
  pointer-events:none;
}

.cta-slider{
  position:relative;
  width:100%;
  overflow:hidden;
  margin-bottom:22px;
  z-index:2;
}

/* kenarlara yumuşak geçiş */
.cta-slider::before,
.cta-slider::after{
  content:"";
  position:absolute;
  top:0;
  width:90px;
  height:100%;
  z-index:3;
  pointer-events:none;
}

.cta-slider::before{
  left:0;
  background:linear-gradient(to right, #f5f2eb 0%, rgba(245,242,235,0) 100%);
}

.cta-slider::after{
  right:0;
  background:linear-gradient(to left, #f5f2eb 0%, rgba(245,242,235,0) 100%);
}

.cta-track{
  display:flex;
  align-items:center;
  gap:18px;
  width:max-content;
  animation:ctaSlide 28s linear infinite;
  will-change:transform;
}

.cta-track img{
  width:300px;
  height:170px;
  object-fit:cover;
  border-radius:16px;
  flex-shrink:0;
  background:#e9e3d7;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
}

.cta-track img:hover{
  transform:scale(1.04);
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

@keyframes ctaSlide{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(calc(-50% - 9px));
  }
}

.price-cta-btn{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  width:100%;
  max-width:680px;
  margin:0 auto;
  min-height:60px;
  padding:0 22px;
  border-radius:999px;
  background:linear-gradient(135deg, #c8a96b, #e2c791);
  color:#1a1a1a;
  font-size:15px;
  font-weight:800;
  letter-spacing:0.02em;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.price-cta-btn::after{
  content:"›";
  display:inline-block;
  margin-left:10px;
  font-size:22px;
  line-height:1;
}

.price-cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 35px rgba(0,0,0,0.20);
  background:linear-gradient(135deg, #d4b476, #ecd3a1);
}

@media (max-width:1200px){
  .cta-track img{
    width:280px;
    height:160px;
  }
}

@media (max-width:992px){
  .price-cta-section{
    padding:42px 0;
  }

  .cta-track{
    gap:14px;
  }

  .cta-track img{
    width:250px;
    height:145px;
  }

  .price-cta-btn{
    max-width:620px;
    min-height:56px;
    font-size:14px;
  }

  .cta-slider::before,
  .cta-slider::after{
    width:60px;
  }
}

@media (max-width:768px){
  .price-cta-section{
    padding:35px 0;
  }

  .cta-slider{
    margin-bottom:18px;
  }

  .cta-track{
    gap:12px;
    animation-duration:24s;
  }

  .cta-track img{
    width:220px;
    height:130px;
    border-radius:14px;
  }

  .price-cta-btn{
    min-height:52px;
    font-size:14px;
    line-height:1.35;
    padding:0 16px;
    max-width:100%;
  }

  .price-cta-btn::after{
    margin-left:8px;
    font-size:18px;
  }

  .cta-slider::before,
  .cta-slider::after{
    width:28px;
  }
}
.flight-divider{
  position:relative;
  width:100%;
  height:90px;
  overflow:hidden;
  margin:30px 0;
}

.flight-divider-line{
  position:absolute;
  left:0;
  right:0;
  top:50%;
  transform:translateY(-50%);
  height:2px;
  background:linear-gradient(90deg, transparent 0%, #c8a96b 15%, #d9be89 50%, #c8a96b 85%, transparent 100%);
  opacity:0.9;
}

.flight-plane{
  position:absolute;
  left:-60px;
  top:50%;
  transform:translateY(-50%);
  font-size:28px;
  color:#c8a96b;
  animation:planeFly 8s ease-in-out infinite;
  filter:drop-shadow(0 6px 12px rgba(0,0,0,0.12));
}

@keyframes planeFly{
  0%{
    left:-60px;
    top:58%;
    transform:translateY(-50%) rotate(8deg);
    opacity:0;
  }
  10%{
    opacity:1;
  }
  30%{
    top:52%;
    transform:translateY(-50%) rotate(3deg);
  }
  55%{
    top:46%;
    transform:translateY(-50%) rotate(-2deg);
  }
  80%{
    top:40%;
    transform:translateY(-50%) rotate(-8deg);
    opacity:1;
  }
  100%{
    left:110%;
    top:34%;
    transform:translateY(-50%) rotate(-12deg);
    opacity:0;
  }
}

@media (max-width:768px){
  .flight-divider{
    height:70px;
    margin:20px 0;
  }

  .flight-plane{
    font-size:22px;
  }
}
.hotel-optional-wrap{
  grid-column:1 / -1;
}

.hotel-optional-wrap.hidden{
  display:none;
}

@media (max-width:768px){
  .hotel-optional-wrap{
    grid-column:auto;
  }
}
.wa-fixed{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99999;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.wa-fixed svg{
  display: block;
  width: 58px;
  height: 58px;
}

.wa-fixed:hover{
  transform: scale(1.08);
  transition: transform .2s ease;
}

@media (max-width:768px){
  .wa-fixed{
    left: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .wa-fixed svg{
    width: 54px;
    height: 54px;
  }
}
/* HERO WHATSAPP YEŞİL */
.header-wa{
  background: #25D366 !important;
  color: #ffffff !important;
}

.header-wa:hover{
  background: #1ebe5d !important;
}
.wa-fixed svg{
  filter: drop-shadow(0 8px 20px rgba(37,211,102,0.5));
}
.social-card:nth-child(4) .social-icon {
  color: #ff0000;
}