/* ==========================================================================
   Design Tokens & CSS Variables (Ottoman Jewel & Bosphorus Gold Konsepti)
   ========================================================================== */
:root {
  /* Color Palette */
  --turquoise-deep: #0E7C85;
  --turquoise-dark: #0A5C63;
  --turquoise-light: #EAF6F7;
  --royal-red: #A62B2B;
  --royal-red-hover: #C0392B;
  --gold-primary: #C5A880;
  --gold-metallic: #D4AF37;
  --gold-dark: #AA771C;
  --navy-deep: #0B132B;
  --navy-dark: #060B18;
  --cream-bg: #FAF6F0;
  --cream-soft: #F5EBE6;
  --white: #FFFFFF;

  /* Text Colors */
  --text-dark: #1A2530;
  --text-light: #FAF6F0;
  --text-muted: #64748B;
  --text-gold: #C5A880;

  /* Font Families */
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-decor: 'Cinzel Decorative', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;

  /* Custom Cursors (Hidden on mobile) */
  --cursor-width: 32px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  /* Subtle overlay of Ottoman Iznik tile pattern */
  background-image: radial-gradient(circle, rgba(250, 246, 240, 0.94) 30%, rgba(245, 235, 230, 0.97) 100%),
    url('../images/tile-pattern.svg');
  background-repeat: repeat;
  background-attachment: fixed;
}

/* Hide Default Cursor on hoverable desktops */
@media (min-width: 1024px) {
  body {
    cursor: none;
  }

  a,
  button,
  select,
  input,
  textarea,
  .compass-trigger,
  .tour-card,
  .gallery-item {
    cursor: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

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

/* ==========================================================================
   Custom Custom Cursor (Imperial Brass Pointer)
   ========================================================================== */
.custom-cursor {
  width: var(--cursor-width);
  height: var(--cursor-width);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-metallic);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10001;
}

.custom-cursor.hover {
  width: 50px;
  height: 50px;
  border-color: var(--gold-metallic);
  background-color: rgba(197, 168, 128, 0.1);
}

.custom-cursor.explore::after {
  content: 'KEŞFET';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--gold-metallic);
  font-weight: bold;
}

@media (max-width: 1023px) {

  .custom-cursor,
  .custom-cursor-dot {
    display: none;
  }
}

@media (pointer: coarse) {
  .custom-cursor,
  .custom-cursor-dot {
    display: none !important;
  }
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.header-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.logo-img {
  width: 390px;
  height: auto;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-primary);
  white-space: nowrap;
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-left: -48px;
}

/* WhatsApp Icon SVG Styling */
.whatsapp-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* Header Action Button */
.quick-call-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  background-color: rgba(11, 19, 43, 0.3);
  backdrop-filter: blur(10px);
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-call-btn:hover {
  background-color: var(--gold-primary);
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  background-color: rgba(11, 19, 43, 0.3);
  backdrop-filter: blur(10px);
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.lang-switch-btn:hover {
  background-color: var(--gold-primary);
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
  transform: translateY(-2px);
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenburns 20s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}


@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(11, 19, 43, 0.8) 0%,
      rgba(11, 19, 43, 0.45) 50%,
      rgba(11, 19, 43, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 50px;
}

.hero-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.3s;
}

.badge-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.badge-line:last-of-type {
  background: linear-gradient(270deg, transparent, var(--gold-primary));
}

.badge-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
}

.hero-title {
  font-family: var(--font-decor);
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeInUp 1s forwards 0.6s;
  background: linear-gradient(180deg, var(--white) 60%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream-soft);
  max-width: 650px;
  margin: 0 auto 40px auto;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.9s;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 1s forwards 1.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Royal Buttons */
.btn-royal {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.btn-royal.primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.btn-royal.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  color: var(--white);
}

.btn-royal.secondary {
  border: 1px solid rgba(250, 246, 240, 0.3);
  background-color: rgba(250, 246, 240, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-royal.secondary:hover {
  border-color: var(--gold-primary);
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

.btn-royal.full-width {
  width: 100%;
  text-align: center;
}

/* Mouse Scroll Animation */
.scroll-helper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.scroll-helper:hover {
  opacity: 1;
}

.mouse-icon {
  width: 25px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 12px;
  display: block;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 12px);
    opacity: 0;
  }
}

/* ==========================================================================
   Endless Marquee Section
   ========================================================================== */
.marquee-section {
  background-color: var(--navy-deep);
  border-top: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  gap: 40px;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 40px;
  animation: marquee 25s infinite linear;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: var(--gold-primary);
  font-weight: 700;
  white-space: nowrap;
}

.marquee-star {
  color: var(--royal-red);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 40px));
  }
}

/* ==========================================================================
   Section Header Styling
   ========================================================================== */
.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 4px;
  color: var(--turquoise-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 15px;
}

.section-description {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Dark Mode Overrides for Specific Sections */
.planning-section .section-title,
.heritage-section .section-title,
.galeri-section .section-title {
  color: var(--white);
}

.planning-section .section-subtitle,
.heritage-section .section-subtitle,
.galeri-section .section-subtitle {
  color: var(--gold-primary);
}

.planning-section .section-description,
.galeri-section .section-description {
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Turlar (Showcase) Section
   ========================================================================== */
.turlar-section {
  position: relative;
  padding: 0;
}

/* Asymmetric Editorial Grid */
.turlar-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-top: 0;
}

/* Asymmetric Tour Card styling */
.tour-card {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 12vh 5% 0 5%;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-primary);
}

.tour-card:last-child {
  border-bottom: none;
}

/* Alternating positioning for asymmetry */
.tour-card:nth-child(odd) {
  justify-content: flex-start;
}

.tour-card:nth-child(even) {
  justify-content: flex-end;
}

/* Full bleed image positioned behind the card */
.tour-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-img {
  transform: scale(1.05);
}

/* Custom dark gradient overlay for text readability */
/* For odd cards (text on left) */
.tour-card:nth-child(odd) .tour-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(11, 19, 43, 0.95) 0%,
      rgba(11, 19, 43, 0.6) 40%,
      rgba(11, 19, 43, 0.2) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

/* For even cards (text on right) */
.tour-card:nth-child(even) .tour-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(11, 19, 43, 0.95) 0%,
      rgba(11, 19, 43, 0.6) 40%,
      rgba(11, 19, 43, 0.2) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.tour-card:hover .tour-img-overlay {
  opacity: 0.95;
}

/* The glassmorphic content box */
.tour-info {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  background: rgba(11, 19, 43, 0.65);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 8px;
  padding: 40px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.tour-card:hover .tour-info {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(197, 168, 128, 0.15);
}

.tour-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-primary);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.tour-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 1.5px solid rgba(197, 168, 128, 0.3);
  padding-bottom: 10px;
}

.tour-short {
  font-size: 1.05rem;
  color: var(--cream-soft);
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn-explore {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding-bottom: 5px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-explore::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

.btn-explore:hover {
  color: var(--white);
}

.btn-explore:hover::after {
  width: 100%;
  background-color: var(--white);
}



/* ==========================================================================
   Galeri Section
   ========================================================================== */
.galeri-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 140px;
  background-image: linear-gradient(to bottom, rgba(11, 19, 43, 0.72), rgba(6, 11, 24, 0.78)), url('../images/bg-gallery-bosphorus.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.galeri-section .container {
  position: relative;
  z-index: 3;
}



/* Gallery Transition Waves Styles */
.gallery-waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery-waves {
  position: relative;
  width: 100%;
  height: 70px;
  margin-bottom: -1px;
}

.wave-layers>use {
  animation: move-wave 14s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.wave-layers>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 8s;
}

.wave-layers>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 11s;
}

.wave-layers>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 14s;
}

.wave-layers>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 22s;
}

@keyframes move-wave {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 0;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Grid sizes for asymmetry */
.gallery-item.size-h {
  grid-row: span 2;
}

.gallery-item.size-w {
  grid-column: span 2;
}

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

/* ==========================================================================
   İletişim & Rezervasyon Section
   ========================================================================== */
.iletisim-section {
  position: relative;
  background-color: var(--navy-deep);
  color: var(--white);
}

.bottom-decor {
  /* Waves reversed at bottom boundary */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 20" width="120" height="20"><path d="M0,10 Q15,20 30,10 T60,10 T90,10 T120,10" fill="none" stroke="%23A58B5E" stroke-width="1.5"/></svg>');
  opacity: 0.25;
}

.contact-box {
  background-color: rgba(6, 11, 24, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 8px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 25px;
}

.contact-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream-soft);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding-top: 30px;
}

.detail-row {
  margin-bottom: 25px;
}

.detail-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.detail-val {
  font-size: 1.1rem;
  font-weight: 300;
}

.detail-val.link {
  color: var(--white);
  border-bottom: 1px dashed var(--gold-primary);
  display: inline-block;
}

.detail-val.link:hover {
  color: var(--gold-metallic);
  border-color: var(--gold-metallic);
}

/* Quick WhatsApp Tour Buttons */
.quick-whatsapp-tours {
  margin-top: 40px;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding-top: 30px;
}

.quick-whatsapp-tours h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.quick-buttons-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-tour-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--cream-soft);
  background-color: rgba(250, 246, 240, 0.05);
  transition: var(--transition-fast);
}

.quick-tour-btn:hover {
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
  background-color: rgba(197, 168, 128, 0.15);
}

/* Contact/Request Form Panel */
.contact-form-panel {
  background-color: rgba(250, 246, 240, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 6px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--white);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  padding-bottom: 10px;
}

.form-helper {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream-soft);
  margin-bottom: 30px;
  opacity: 0.8;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(11, 19, 43, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.25);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-metallic);
}

/* Styling Dropdown arrow */
.form-group select option {
  background-color: var(--navy-deep);
  color: var(--white);
}

/* ==========================================================================
   Compass Navigation (Marine floating element)
   ========================================================================== */
.compass-nav {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
}

.compass-trigger {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #253342 0%, #0F1824 100%);
  border: 3px solid var(--gold-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease, border-color 0.5s ease;
  z-index: 1002;
}

.compass-trigger:hover {
  border-color: var(--gold-metallic);
  transform: rotate(15deg) scale(1.05);
}

.compass-outer {
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  border: 1px dashed rgba(197, 168, 128, 0.4);
}

/* Needle (brass pin in compass center) */
.compass-needle {
  width: 4px;
  height: 50px;
  background: linear-gradient(180deg, var(--royal-red) 50%, var(--gold-metallic) 50%);
  position: relative;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

.compass-needle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  border: 1px solid var(--navy-deep);
}

.compass-text {
  position: absolute;
  bottom: -22px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Circular pop-out menu links */
.compass-menu {
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  z-index: 1001;
  pointer-events: none;
}

.compass-menu li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0);
  /* Hide inside trigger initially */
}

/* Rotate items outwards in an arc */
/* Menünün açıldığında alacağı konumları JS ile '.active' sınıfında tetikleyeceğiz */
.compass-nav.active .compass-menu {
  pointer-events: auto;
}

.compass-nav.active .compass-menu li {
  /* Dynamic calculation of rotation based on index - aligned perfectly in upper-left quadrant */
  transform: rotate(calc(-95deg - (20deg * (var(--i) - 1)))) translate(115px) rotate(calc(95deg + (20deg * (var(--i) - 1))));
}

.compass-item {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, #253342 0%, #111E2E 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.compass-item span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.1;
  color: var(--cream-soft);
  padding: 2px;
}

.compass-item:hover {
  background: var(--gold-primary);
  border-color: var(--gold-metallic);
  transform: scale(1.15);
}

.compass-item:hover span {
  color: var(--navy-deep);
}

/* Turn trigger active */
.compass-nav.active .compass-trigger {
  transform: rotate(45deg);
  border-color: var(--royal-red);
}

.compass-nav.active .compass-needle {
  transform: rotate(180deg);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
  background-color: var(--navy-dark);
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  color: var(--cream-soft);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand-col .footer-logo {
  width: 325px;
  height: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-links-col h4,
.footer-social-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-links-col ul {
  list-style: none;
}

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

.footer-links-col a {
  opacity: 0.85;
}

.footer-links-col a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
  opacity: 1;
}

.footer-social-col p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
}

.social-link:hover {
  background-color: var(--gold-primary);
  color: var(--navy-dark);
  border-color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ==========================================================================
   Immersive Tour Modal (Popup Panel)
   ========================================================================== */
.tour-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 19, 43, 0.75);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.modal-card {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  max-height: 650px;
  background-color: var(--cream-bg);
  background-image: radial-gradient(circle, rgba(250, 246, 240, 0.95) 40%, rgba(245, 235, 230, 0.98) 100%),
    url('../images/tile-pattern.svg');
  border: 1px solid var(--gold-primary);
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: var(--navy-deep);
  z-index: 5;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--royal-red);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  width: 100%;
  height: 100%;
}

.modal-image-pane {
  position: relative;
  height: 100%;
  overflow: hidden;
}

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

.modal-image-pane::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(250, 246, 240, 0.8) 0%, transparent 40%);
}

.modal-content-pane {
  padding: 50px;
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-overflow-scrolling: touch;
}

.modal-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--turquoise-deep);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 20px;
}

.modal-description {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 25px;
}

.modal-highlights h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.modal-highlights ul {
  list-style: none;
  margin-bottom: 30px;
}

.modal-highlights li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.modal-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--royal-red);
}

.modal-cta-box {
  background-color: rgba(14, 124, 133, 0.05);
  border: 1px solid rgba(14, 124, 133, 0.2);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
}

.modal-cta-box p {
  font-size: 0.9rem;
  color: var(--navy-deep);
  margin-bottom: 15px;
  font-weight: bold;
}



/* ==========================================================================
   Scroll Animation (Fade In Up on scroll)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Planning & Packages Section (Planlama ve Paketler)
   ========================================================================== */
.planning-section {
  padding: 100px 0;
  background-image: linear-gradient(to bottom, rgba(11, 19, 43, 0.82), rgba(6, 11, 24, 0.88)), url('../images/bg-packages.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.tab-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.tab-buttons {
  display: inline-flex;
  background-color: rgba(6, 11, 24, 0.4);
  padding: 6px;
  border-radius: 40px;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: none;
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  background-color: var(--gold-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.35);
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: tabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.package-card {
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.25);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.package-card.featured {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--gold-primary);
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(197, 168, 128, 0.15);
}

.package-header {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.package-tag {
  display: inline-block;
  background-color: rgba(11, 19, 43, 0.06);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.package-tag.gold {
  background-color: var(--gold-primary);
  color: var(--white);
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 5px;
}

.package-subtitle {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.package-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.package-features li {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--navy-light);
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
  font-size: 1.1rem;
}

.package-card .btn-royal {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 20px 40px rgba(197, 168, 128, 0.2);
}

.timeline-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 0;
  padding: 80px max(20px, calc((100vw - 850px) / 2));
  background-image: linear-gradient(rgba(11, 19, 43, 0.8), rgba(11, 19, 43, 0.85)), url('../images/bg-timeline.webp');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(197, 168, 128, 0.25);
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-container .timeline-title {
  color: var(--gold-primary);
}

.timeline-container .timeline-subtitle {
  color: var(--cream-soft);
}

.timeline-container .timeline-badge {
  background-color: var(--gold-primary);
  color: var(--navy-deep);
  border: 2px solid var(--white);
  box-shadow: 0 0 12px rgba(197, 168, 128, 0.4);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.timeline-subtitle {
  font-family: var(--font-serif);
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 50px;
}

.timeline-flow {
  position: relative;
  padding-left: 50px;
}

.timeline-line {
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-primary) 80%, transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -50px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--navy-deep);
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

.timeline-panel {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 20px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--gold-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.timeline-panel h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.timeline-panel p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.timeline-item:hover .timeline-panel {
  transform: translateX(5px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

.proposal-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.proposal-card {
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 60px 50px;
  max-width: 900px;
  width: 100%;
  border: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.proposal-badge {
  display: inline-block;
  background-color: rgba(166, 43, 43, 0.08);
  color: var(--royal-red);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.proposal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy-deep);
  margin-bottom: 15px;
}

.proposal-desc {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-deep);
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.proposal-grid-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: rgba(250, 246, 240, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

.detail-icon {
  font-size: 2rem;
  margin-right: 20px;
  line-height: 1;
}

.detail-text h6 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 5px;
}

.detail-text p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.detail-item:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--gold-primary);
}

.menus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.menu-detail-card {
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.menu-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
}

.menu-detail-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.menu-intro {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--navy-deep);
  margin-bottom: 30px;
  line-height: 1.6;
}

.menu-hover-details {
  text-align: left;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  padding-top: 25px;
}

.menu-hover-details h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-hover-details ul {
  list-style: none;
}

.menu-hover-details ul li {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--navy-light);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 20px;
}

.menu-hover-details ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.menu-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  border-color: var(--gold-primary);
}

.planning-disclaimer {
  max-width: 1000px;
  margin: 50px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px 30px;
  border: 1px solid rgba(197, 168, 128, 0.25);
}

.planning-disclaimer p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

/* ==========================================================================
   Heritage Section (Mirasımız)
   ========================================================================== */
.heritage-section {
  padding: 100px 0;
  background-image: linear-gradient(to bottom, rgba(11, 19, 43, 0.8), rgba(11, 19, 43, 0.8)), url('../images/bg-heritage.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.heritage-content {
  display: flex;
  flex-direction: column;
}

.divider-gold {
  width: 60px;
  height: 2px;
  background-color: var(--gold-primary);
  margin: 20px 0 30px 0;
}

.heritage-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.heritage-quote {
  position: relative;
  padding-left: 35px;
  border-left: 3px solid var(--gold-primary);
  margin-top: 25px;
  margin-bottom: 10px;
}

.quote-mark {
  position: absolute;
  left: 10px;
  top: -15px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(197, 168, 128, 0.15);
  line-height: 1;
}

.heritage-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

/* Overlapping Polaroid Collage */
.heritage-gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heritage-collage {
  position: relative;
  width: 100%;
  height: 620px;
}

.collage-item {
  position: absolute;
  background-color: var(--white);
  padding: 12px 12px 28px 12px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.img-caption {
  display: block;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-top: 10px;
}

.collage-item.item-1 {
  width: 290px;
  height: 360px;
  top: 10px;
  left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

.collage-item.item-2 {
  width: 340px;
  height: 260px;
  top: 30px;
  right: 0;
  transform: rotate(3deg);
  z-index: 1;
}

.collage-item.item-3 {
  width: 330px;
  height: 250px;
  bottom: 20px;
  left: 20px;
  transform: rotate(2deg);
  z-index: 3;
}

.collage-item.item-4 {
  width: 290px;
  height: 380px;
  bottom: 10px;
  right: 15px;
  transform: rotate(-3deg);
  z-index: 4;
}

.collage-item:hover {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}


/* SEO FAQ Accordion Section */
.seo-faq-section {
  padding: 80px 0;
  background-color: var(--navy-dark);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(197, 168, 128, 0.1);
}
.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background-color: rgba(5, 10, 25, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover, .faq-item.active {
  border-color: var(--gold-primary);
}
.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream-soft);
  cursor: pointer;
  outline: none;
}
.faq-question span {
  font-weight: 500;
  letter-spacing: 0.5px;
}
.faq-icon {
  color: var(--gold-primary);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer p {
  padding: 0 25px 20px 25px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.8);
  line-height: 1.6;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablets and small desktops */
@media (max-width: 1024px) {
  body,
  .galeri-section,
  .planning-section,
  .heritage-section {
    background-attachment: scroll !important;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .heritage-collage {
    height: 480px;
    max-width: 580px;
    margin: 0 auto;
  }

  .collage-item.item-1 {
    width: 210px;
    height: 270px;
  }

  .collage-item.item-2 {
    width: 250px;
    height: 195px;
  }

  .collage-item.item-3 {
    width: 240px;
    height: 185px;
  }

  .collage-item.item-4 {
    width: 210px;
    height: 280px;
  }

  .tour-card,
  .tour-card:nth-child(even) {
    height: auto;
    min-height: 650px;
    padding: 60px 40px;
    justify-content: center;
  }

  .tour-card:nth-child(odd) .tour-img-overlay,
  .tour-card:nth-child(even) .tour-img-overlay {
    background: rgba(11, 19, 43, 0.75);
  }

  .tour-info {
    max-width: 100%;
    padding: 30px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-collage {
    height: 380px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .packages-grid,
  .menus-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .heritage-section {
    padding: 70px 0;
  }

  .heritage-grid {
    gap: 40px;
  }

  .heritage-collage {
    height: 380px;
  }

  .collage-item.item-1 {
    width: 160px;
    height: 200px;
    top: 5px;
  }

  .collage-item.item-2 {
    width: 190px;
    height: 145px;
    top: 15px;
  }

  .collage-item.item-3 {
    width: 180px;
    height: 140px;
    bottom: 15px;
  }

  .collage-item.item-4 {
    width: 160px;
    height: 210px;
    bottom: 5px;
  }

  .heritage-quote p {
    font-size: 1.05rem;
  }

  html {
    font-size: 14px;
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
  }

  .brand-logo {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: auto;
  }

  .logo-img {
    width: 245px;
  }

  .logo-text {
    font-size: 1.15rem;
    transform: none;
    margin-top: -5px;
    margin-left: 0;
  }

  .container {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn-royal {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 12px 25px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .tour-card,
  .tour-card:nth-child(even) {
    min-height: 550px;
    height: 550px;
    padding: 20px 15px;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    border-bottom: 2px solid var(--gold-primary);
  }

  .tour-card:nth-child(odd) {
    justify-content: flex-start;
  }

  .tour-card:nth-child(even) {
    justify-content: flex-end;
  }

  .tour-card:last-child {
    border-bottom: none;
  }

  .tour-card:nth-child(odd) .tour-img-overlay,
  .tour-card:nth-child(even) .tour-img-overlay {
    background: rgba(11, 19, 43, 0.55);
  }

  .tour-info {
    padding: 15px 12px;
    border-radius: 8px;
    max-width: 170px;
    width: 46%;
    background: rgba(11, 19, 43, 0.85);
    border: 1px solid rgba(197, 168, 128, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }

  .tour-tag {
    display: none;
  }

  .tour-name {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .tour-short {
    display: block;
    font-size: 0.72rem;
    margin-top: 4px;
    margin-bottom: 6px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.8);
  }

  .btn-explore {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

  .gallery-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.size-h,
  .gallery-item.size-w {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand-col .footer-logo {
    margin: 0 auto 20px auto;
  }

  .social-links {
    justify-content: center;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 150px 1fr;
  }

  .modal-card {
    height: 82vh;
    max-height: calc(100% - 60px);
  }

  .modal-content-pane {
    padding: 20px 20px 25px 20px;
  }

  .modal-image-pane::after {
    background: linear-gradient(180deg, rgba(250, 246, 240, 0.8) 0%, transparent 40%);
  }

  /* Make floating compass button more compact on mobile */
  .compass-nav {
    bottom: 20px;
    right: 20px;
  }

  .compass-trigger {
    width: 65px;
    height: 65px;
  }

  .compass-needle {
    height: 40px;
  }

  /* Align menu items circular path closer on mobile and keep them within upper-left quadrant */
  .compass-nav.active .compass-menu li {
    transform: rotate(calc(-95deg - (20deg * (var(--i) - 1)))) translate(85px) rotate(calc(95deg + (20deg * (var(--i) - 1))));
  }

  .tour-card .tour-img-overlay {
    background: rgba(11, 19, 43, 0.78) !important;
  }

  .tab-btn,
  .quick-call-btn,
  .lang-switch-btn,
  .btn-royal,
  .compass-trigger,
  .faq-question {
    touch-action: manipulation;
  }

  .tab-buttons {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .tab-buttons::-webkit-scrollbar {
    display: none;
  }

  .compass-item {
    width: 44px;
    height: 44px;
  }

  .compass-item span {
    font-size: 0.6rem;
  }

  /* Mobile Planning overrides */
  .planning-section {
    padding: 70px 0;
  }

  .tab-buttons {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    padding: 4px;
    border-radius: 30px;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .packages-grid,
  .menus-grid,
  .proposal-container,
  .timeline-container {
    padding: 30px 15px;
  }

  .package-card,
  .proposal-card,
  .menu-detail-card {
    padding: 30px 20px;
  }

  .proposal-grid-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .timeline-flow {
    padding-left: 35px;
  }

  .timeline-line {
    left: 12px;
  }

  .timeline-badge {
    left: -35px;
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .timeline-panel {
    padding: 15px;
  }

  .timeline-panel h5 {
    font-size: 1rem;
  }
}