/* ==========================================================================
   🌅 HAZARFEN VERSION 2 — SUNSET AERO LUXURY TRAVEL PORTAL
   ========================================================================== */

:root {
  --bg-hero: linear-gradient(140deg, #0F172A 0%, #1E1B4B 40%, #31103F 75%, #4A121A 100%);
  --bg-body: #F8FAFC;
  --bg-card-light: #FFFFFF;
  --bg-card-dark: rgba(15, 23, 42, 0.85);

  --accent-coral: #F15B27;
  --accent-orange: #F15B27;
  --accent-gold: #FBB03B;
  --accent-purple: #8B5CF6;
  --accent-cyan: #06B6D4;

  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  --border-light: #E2E8F0;
  --shadow-soft: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  --shadow-hero: 0 30px 70px -10px rgba(0, 0, 0, 0.5);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* --- HEADER --- */
.header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.header-v2.scrolled {
  height: 70px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-brand img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-orange);
}

.btn-sunset-cta {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
  color: #FFFFFF;
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
  transition: var(--transition);
}

.btn-sunset-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.45);
}

/* --- SUNSET HERO SECTION --- */
.hero-sunset {
  background: var(--bg-hero);
  color: #FFFFFF;
  padding-top: 150px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
}

.hero-sunset::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, rgba(255, 51, 102, 0.1) 50%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3rem auto;
}

.badge-sunset {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-gold);
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #FBB03B, #F15B27);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* --- FLOATING LIGHT SEARCH CARD --- */
.search-card-light {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-hero);
  margin-bottom: 3.5rem;
  position: relative;
  color: var(--text-dark);
}

.search-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.search-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.search-tab.active {
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
}

#present__form, #choose__form {
  width: 100%;
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- QUICK SEARCH PILLS --- */
.quick-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.pill-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.pill-item:hover {
  background: #FFFFFF;
  color: var(--text-dark);
}

/* --- SECTION GENERAL --- */
.section-v2 {
  padding: 100px 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-title-wrap h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.6rem;
}

/* --- LOW FARE CALENDAR --- */
.calendar-card-light {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card-light {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  text-align: center;
  transition: var(--transition);
}

.step-card-light:hover {
  border-color: var(--accent-orange);
  transform: translateY(-3px);
}

.step-badge-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 0.8rem auto;
}

.step-card-light h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.step-card-light p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

#calendar__form {
  width: 100%;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- DESTINATIONS GRID --- */
.dest-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dest-card-v2 {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  min-height: 220px;
}

.dest-card-v2:hover {
  border-color: var(--accent-coral);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(255, 90, 95, 0.2);
}

/* --- ADVANTAGES SUNSET GRID --- */
.advantages-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.adv-card-v2 {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.adv-card-v2:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

.adv-card-v2.span-2 {
  grid-column: span 2;
}

.adv-icon-v2 {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.adv-card-v2 h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.adv-card-v2 p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* --- FAQ ACCORDION --- */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  padding: 1.4rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  padding: 0 1.8rem 1.4rem 1.8rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- HAZARFEN LEGEND STORY CARD V2 --- */
.legend-card-v2 {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 60%, #31103F 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.legend-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-coral), var(--accent-gold));
}

.legend-content-v2 h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.legend-content-v2 p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.legend-quote-v2 {
  border-left: 3px solid var(--accent-orange);
  padding-left: 1.2rem;
  font-style: italic;
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 700;
}

.legend-badge-v2-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.legend-badge-v2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.2), rgba(255, 90, 95, 0.05));
  border: 2px stroke var(--accent-orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(255, 107, 0, 0.25);
  animation: pulseGlow 4s infinite alternate;
}

.legend-badge-v2 i {
  font-size: 3.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.legend-badge-v2 span {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 107, 0, 0.2); }
  100% { transform: scale(1.05); box-shadow: 0 0 60px rgba(255, 107, 0, 0.5); }
}

/* --- FOOTER V2 --- */
.footer-v2 {
  background: #0F172A;
  color: #FFFFFF;
  padding: 80px 0 40px 0;
  margin-top: 80px;
}

.footer-inner-v2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-v2 p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-top: 1.2rem;
  max-width: 320px;
}

.footer-col-v2 h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.footer-col-v2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-v2 a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col-v2 a:hover {
  color: var(--accent-orange);
}

.footer-bottom-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748B;
  font-size: 0.88rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.7rem; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .dest-grid-v2 { grid-template-columns: 1fr 1fr; }
  .advantages-grid-v2 { grid-template-columns: 1fr; }
  .adv-card-v2.span-2 { grid-column: span 1; }
  .footer-inner-v2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 2.1rem; }
  .nav-links { display: none; }
  .dest-grid-v2 { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-inner-v2 { grid-template-columns: 1fr; }
  .footer-bottom-v2 { flex-direction: column; gap: 1rem; text-align: center; }
}

/* --- MODAL DIALOG V2 --- */
.modal-overlay-v2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.modal-overlay-v2.active {
  display: flex !important;
  opacity: 1 !important;
}

.modal-card-v2 {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  color: var(--text-dark);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(100, 116, 139, 0.1);
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
}

.modal-card-v2 h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-card-v2 h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.modal-card-v2 p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* --- COOKIE CONSENT BANNER V2 --- */
.cookie-banner-v2 {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  width: calc(100% - 3rem);
  max-width: 860px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  z-index: 998;
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner-v2.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.cookie-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.cookie-text p {
  font-size: 0.86rem;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0;
}

.cookie-text a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  color: #FFFFFF;
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(241, 91, 39, 0.3);
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(241, 91, 39, 0.45);
}

.btn-cookie-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}



