/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #0F3D3E;
  /* Dark Teal */
  --secondary-color: #C19B76;
  /* Gold/Beige */
  --text-color: #333333;
  --light-text: #666666;
  --background-color: #F9FAFB;
  --white: #FFFFFF;
  --border-color: #E5E7EB;
  --accent-gold: #A67C52;
  --gradient-card: linear-gradient(135deg, #5B2C2C 0%, #8B4513 100%);
  --font-main: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  font-family: var(--font-main);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 600;
}

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

ul {
  list-style: none;
}

/* Layout */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Common Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.main-header {
  background: linear-gradient(180deg, rgba(0, 76, 84, 0.7) 0%, rgba(0, 76, 84, 0) 100%);
  box-shadow: none;
  /* Removed shadow to blend better with transparent gradient */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  /* Remove horizontal padding, keep vertical */
  width: 100%;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  justify-self: start;
  /* Grid alignment */
  margin: 0;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Center Wrapper */
.header-center-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  /* Spacing between Nav and Right Buttons */
  justify-self: center;
  /* True Center in Grid */
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  /* Removed explicit margins */
}

.nav-links a {
  position: relative;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:first-child {
  border-bottom: 2px solid white;
  /* Mimic the underline in image */
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-icon {
  cursor: pointer;
  color: white;
  font-size: 1.1rem;
}

.lang-selector {
  padding: 0.4rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2F4F4F;
  cursor: pointer;
}

.loyalty-btn {
  padding: 0.4rem 1.2rem;
  border: 1px solid white;
  background: transparent;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.rez-btn {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: 'Silk Serif', serif;
  /* Exception as requested */
}

.rez-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}

.menu-toggle {
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  justify-self: end;
  /* Forces it to the far right in the grid layout */
}

/* Sub Navigation (Loyalty Links) */
.sub-nav {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

.sub-nav-container {
  background-color: #93736473;
  /* Taupe/Muted Brown color */
  padding: 1rem 3rem;
  border-radius: 50px;
  display: flex;
  gap: 1.5rem;
  box-shadow: none;
  align-items: center;
}

.sub-nav-item {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.4rem 2rem;
  border: 1px solid white;
  /* White outline */
  border-radius: 30px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.sub-nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sub-nav-item.active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

/* Booking Bar Redesign */
.pap-booking-bar {
  background-color: #F8F9FA;
  margin: 0 auto 2rem auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 0.5rem 1rem;
  gap: 1.5rem;
}

.pap-booking-group {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
}

.pap-booking-group > label {
    font-size: 0.70rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    padding-left: 0.8rem;
}

.pap-input-wrapper {
  position: relative;
  width: 100%;
}

.pap-booking-input {
  background-color: white;
  border: 1px solid #E0E0E0;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  outline: none;
  width: 100%;
  color: #333;
  font-size: 0.85rem;
}

.pap-booking-input:focus {
    border-color: #0F4C5C;
}

.pap-hotel-select {
    appearance: none;
    cursor: pointer;
}

.pap-custom-select-wrapper::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
}

.pap-counter-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
}

.pap-counter-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #CCC;
    background-color: transparent;
    color: #333;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s;
}

.pap-counter-btn:hover {
    border-color: #0F4C5C;
    color: #0F4C5C;
}

.pap-counter-value {
    font-size: 1rem;
    font-weight: 600;
    width: 35px;
    text-align: center;
    color: #333;
    background: white;
    border: 1px solid #CCC;
    border-radius: 50px;
    padding: 0.3rem 0;
}

.pap-child-counter-wrapper {
    position: relative;
}

.pap-child-ages-popup {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 100;
    min-width: 200px;
}

.pap-child-age-group {
    margin-bottom: 0.8rem;
}

.pap-child-age-group:last-child {
    margin-bottom: 0;
}

.pap-child-age-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.3rem;
    display: block;
    text-transform: uppercase;
}

.pap-child-age-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #CCC;
    border-radius: 20px;
    font-size: 0.8rem;
    text-align: center;
    outline: none;
}

.pap-booking-btn {
  background-color: #0F4C5C;
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(15, 76, 92, 0.2);
  transition: all 0.2s;
  height: auto;
  align-self: center;
}

.pap-booking-btn:hover {
  background-color: #0d3f4d;
  transform: translateY(-1px);
}

/* Main Content Layout */
.main-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  gap: 3rem;
  width: 100%;
}

/* Sidebar */
/* Sidebar */
.sidebar {
  width: 250px;
  flex-shrink: 0;
  margin-top: 4rem;
}

.user-name {
  font-size: 1.8rem;
  margin-bottom: 0rem;
  padding-left: 0.5rem;
  color: #111;
  font-weight: 500;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #E2E8E9;
  /* Light teal-grey from image */
  padding: 2rem 0;
  border-radius: 20px;
}

.sidebar-item {
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #0F4C5C;
  /* Darker teal text */
  transition: background 0.3s;
  font-weight: 400;
}

.sidebar-item:hover {
  color: #4A9099;
}

.sidebar-item.active {
  font-weight: 700;
  background-color: transparent;
  color: #0F4C5C;
  position: relative;
}

/* Side Tabs */
.left-tabs {
  position: fixed;
  left: 0;
  top: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
  /* Ensure on top */
}

.side-tab-left {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 1.5rem 0.6rem;
  background-color: #D1D8DB;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #555;
  cursor: pointer;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.right-tab {
  position: fixed;
  right: 0;
  top: 30%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 2rem 0.8rem;
  background-color: #0F3D3E;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: white;
  cursor: pointer;
  z-index: 100;
  text-align: center;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Page Content */
.content-area {
  flex: 1;
  background-color: var(--white);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.page-title {
  text-align: center;
  font-size: 3rem;
  color: #111;
  margin-bottom: 0;
  font-family: 'Silk Serif', serif;
  font-weight: 500;
}

.page-subtitle {
  text-align: center;
  color: #111111;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Progress Bar */
.progress-container {
  max-width: 100%;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.progress-bar-wrapper {
  height: 30px;
  background-color: #F0F0F0;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
}

.progress-fill {
  width: 35%;
  height: 100%;
  background-color: var(--primary-color);
  background-image: repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 10px,
      transparent 10px,
      transparent 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

.progress-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #111111;
}

/* Content Grid */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  /* Remove margin, spacing handled by padding/border */
  position: relative;
  border-bottom: 1px solid #B0BEC5;
  /* Horizontal line 1 */
  padding-bottom: 0;
}

.card-section {
  padding-right: 3rem;
  border-right: 1px solid #B0BEC5;
  /* Vertical dividing line */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}

.offers-section {
  padding-left: 3rem;
}

.card-section h3,
.offers-section h3 {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Offers Table */
.offers-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #B0BEC5;
  border-radius: 12px;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 400;
}

.offers-table td {
  padding: 0.8rem 1.5rem;
  border-right: 1px solid #B0BEC5;
  border-bottom: 1px solid #B0BEC5;
  color: #111;
}

.offers-table tr:last-child td {
  border-bottom: none;
}

.offers-table td:last-child {
  border-right: none;
  text-align: center;
  font-weight: 700;
  width: 80px;
}

.offers-table tr:nth-child(odd) {
  background-color: transparent;
}

.offers-table tr:nth-child(even) {
  background-color: #E2E8E9;
}

/* Bottom Stats */
.bottom-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
  /* Add horizontal padding */
  border-bottom: 1px solid #B0BEC5;
  /* Horizontal line 2 */
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 3rem;
  /* Spacing before Hero */
}

.bottom-stats div:first-child {
  font-weight: 500;
  line-height: 1.5;
  color: #111;
}

.stat-pill {
  background-color: #CFD8DC;
  /* Muted teal-grey */
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: #111;
  font-size: 1rem;
}

.stats-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  font-size: 0.9rem;
  color: #333;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bullet-teal {
  color: #004D40;
  font-size: 1.2rem;
  /* Larger bullet */
  line-height: 0;
}

.bullet-brown {
  color: #5D4037;
  font-size: 1.2rem;
  line-height: 0;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2rem;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: white;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
    padding: 1rem;
  }

  .sidebar {
    width: 100%;
  }

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

  .main-header {
    padding: 1rem;
  }

  .nav-links {
    display: none;
    /* Hide for mobile for now */
  }
}

/* Update Details Form Styles */
.form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #B0BEC5;
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  color: #333;
}

.form-input::placeholder {
  color: #999;
}

.form-btn {
  background-color: #0F4C5C;
  /* Dark Teal */
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: 1rem;
  transition: background 0.2s;
}

.form-btn:hover {
  background-color: #0d3f4d;
}


/* Konaklama Page Styles */
.booking-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}

.booking-item {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #E0E8EA;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(15, 76, 92, 0.06);
}

.booking-item:hover {
  box-shadow: 0 8px 24px rgba(15, 76, 92, 0.14);
  transform: translateY(-2px);
}

/* Hotel name section */
.bi-hotel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.6rem 2rem;
  min-width: 190px;
  background: linear-gradient(135deg, #0F3D3E 0%, #1a5e5f 100%);
  align-self: stretch;
}

.bi-hotel-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.bi-hotel-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.bi-room-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-top: 0.1rem;
}

/* Vertical divider */
.bi-divider {
  width: 1px;
  background: #E0E8EA;
  align-self: stretch;
  flex-shrink: 0;
}

/* Date chips */
.bi-dates {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  flex-shrink: 0;
}

.bi-date-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: #F4F8F9;
  border: 1px solid #DDE8EA;
  border-radius: 12px;
  padding: 0.6rem 1.1rem;
  min-width: 110px;
}

.bi-date-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0F3D3E;
}

.bi-date-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.bi-arrow {
  font-size: 1.3rem;
  color: #B0BEC5;
  flex-shrink: 0;
}

/* Tags */
.bi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.4rem 1.5rem 1.4rem 0.5rem;
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
}

.bi-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.28rem 0.75rem;
  white-space: nowrap;
}

.bi-tag-night {
  background: #E8F4F2;
  color: #0F6B5C;
  border: 1px solid #C0DDD8;
}

.bi-tag-room {
  background: #EEF2FF;
  color: #3730A3;
  border: 1px solid #C7D2FE;
}

.bi-tag-board {
  background: #FFF7ED;
  color: #9A3412;
  border: 1px solid #FED7AA;
}


.load-more-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.load-more-btn {
  background: transparent;
  border: 1px solid #0F4C5C;
  color: #0F4C5C;
  padding: 0.8rem 3rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.load-more-btn:hover {
  background-color: #0F4C5C;
  color: white;
}

/* FAQ Page Styles */
.faq-search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.faq-search-input {
  width: 100%;
  padding: 1rem 3rem;
  border: 1px solid #CFD8DC;
  border-radius: 50px;
  outline: none;
  font-size: 0.95rem;
  color: #555;
  background-color: transparent;
}

.search-icon-faq {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #0F4C5C;
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: #E2E8E9;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item[open] {
  border-radius: 30px;
}

.faq-item summary {
  padding: 1rem 2rem;
  cursor: pointer;
  font-weight: 700;
  color: #111;
  list-style: none;
  font-size: 0.95rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: '�';
  color: #555;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  vertical-align: middle;
}

.faq-content {
  padding: 0 2rem 1.5rem 3.5rem;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
}


/* FAQ Icon Styling */
.faq-item summary {
  display: flex;
  align-items: center;
}

/* Remove old pseudo-elements */
.faq-item summary::before {
  display: none;
}

.q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #546E7A;
  /* Dark Slate Icon Color */
  transform: rotate(45deg);
  /* Diamond shape */
  margin-right: 1.5rem;
  border-radius: 4px;
  /* Soften corners slightly */
  flex-shrink: 0;
}

.q-icon i {
  transform: rotate(-45deg);
  /* Straighten the question mark */
  color: white;
  font-size: 0.8rem;
}


.q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #455A64;
  /* Darker Blue Grey matching image */
  transform: rotate(45deg);
  /* Diamond shape */
  margin-right: 1.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.q-icon i {
  transform: rotate(-45deg);
  color: white;
  font-size: 0.75rem;
  /* Slightly smaller */
}


.faq-icon-img {
  width: 24px;
  height: 24px;
  margin-right: 1.5rem;
  flex-shrink: 0;
}


/* FAQ Icon */
.faq-icon-svg {
  width: 6px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}/* Responsive / Mobil Uyum Ayarları */
@media (max-width: 900px) {
  /* Ana Konteyner ve İçerik Alanı */
  .main-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .content-area {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }

  .page-title {
    font-size: 2rem;
  }

  /* Header */
  .main-header {
    padding: 1rem;
  }
  
  .nav-links {
    display: none; /* Mobilde hamburger menüye geçiş için gizlendi */
  }

  /* Yan Menü (Sidebar) - Yatay Kaydırılabilir Yapı */
  .sidebar {
    width: 100%;
    margin-top: 1rem;
  }
  
  .sidebar-menu {
    flex-direction: row;
    overflow-x: auto;
    padding: 1rem;
    gap: 0.5rem;
    -ms-overflow-style: none; /* IE ve Edge için scrollbar gizleme */
    scrollbar-width: none; /* Firefox için scrollbar gizleme */
  }
  
  .sidebar-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari ve Opera için scrollbar gizleme */
  }
  
  .sidebar-item {
    white-space: nowrap;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
  }

  /* Rezervasyon Çubuğu (Booking Bar) */
  .pap-booking-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .pap-booking-group {
    width: 100%;
  }
  
  .pap-booking-btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Detaylar ve Teklifler Grid Yapısı */
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .card-section {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #B0BEC5;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .offers-section {
    padding-left: 0;
  }
  
  .offers-table {
    font-size: 0.85rem;
  }
  
  .offers-table td {
    padding: 0.8rem;
  }

  /* İstatistikler (Bottom Stats) */
  .bottom-stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem 0;
  }
  
  .stats-right {
    align-items: center;
  }

  /* Konaklama (Booking Items) Sayfası */
  .booking-item {
    flex-direction: column;
  }
  
  .bi-hotel {
    min-width: 100%;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
  
  .bi-divider {
    width: 100%;
    height: 1px;
  }
  
  .bi-dates {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 1rem;
  }
  
  .bi-arrow {
    transform: rotate(90deg); /* Oku mobilde aşağıya döndürür */
  }
  
  .bi-tags {
    justify-content: center;
    width: 100%;
    padding: 1rem;
    margin-left: 0;
  }

  /* SSS (FAQ) Sayfası */
  .faq-search-input {
    padding: 1rem 1rem 1rem 2.5rem;
  }

  /* Sabit Yan Sekmeler (Mobilde Görüntüyü Bozmaması İçin Gizlendi) */
  .left-tabs, 
  .right-tab {
    display: none;
  }
}