/* ===================================
   HERO BANNER SECTION
   =================================== */

.hero-banner {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 130px; */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgb(254 224 188 / 0.6%) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
}

.hero-title {
  font-family: "eicons";
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-shadow: 0px 2px 11px rgb(0 0 0 / 60%);
}

h6.hero-sub-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  display: block;
  font-weight: 400;
  width: 700px;
  color: #fff;
  margin: auto;
  text-transform: none;
  letter-spacing: 0;
  text-shadow: 0px 2px 11px rgb(0 0 0 / 60%);
}

.hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* ===================================
     TABS NAVIGATION SECTION
     =================================== */

.tabs-navigation-section {
  background-color: #f6f6f6;
  position: relative;
  z-index: 50;
  margin-top: -60px;
}

.tabs-navigation {
  padding: 0;
}

.tabs-navigation .nav-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tabs-navigation .nav-item {
  flex: 1;
  /* max-width: 300px; */
}

.tabs-navigation .nav-link {
  background-color: #f8f8f8;
  border: none;
  border-right: 1px solid #e0e0e0;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.tabs-navigation .nav-link i {
  color: #ffcc05;
  font-size: 18px;
}

.tabs-navigation .nav-link:hover {
  background-color: #fff;
  color: #333;
}

.tabs-navigation .nav-link.active {
  background-color: #fff;
  color: #333;
  position: relative;
}

.tabs-navigation .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #ffcc05;
  display: none;
}

.tabs-navigation .nav-item:last-child .nav-link {
  border-right: none;
}

/* ===================================
     GOLF COURSE CONTENT SECTION
     =================================== */

.golf-course-content {
  padding: 60px 0 80px;
  background-color: #fff;
}

.golf-course-content .container-fluid {
  max-width: 1400px;
}

/* Content Section */
.content-section {
  background-color: #fff;
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
  font-family: "eicons";
}

.subsection-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px;
}

/* Info Meta */
.info-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.meta-item i {
  color: #ffcc05;
  font-size: 16px;
}

/* Content Body */
.content-body {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Course Details */
.course-details {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 5px;
  margin-top: 30px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item strong {
  color: #333;
  font-weight: 600;
}

.detail-item span {
  color: #666;
}

/* Facilities, Restaurant, Guide Sections */
.facilities-section,
.restaurant-section,
.guide-section,
.hotel-section {
  margin-top: 30px;
}

.facilities-content,
.guide-content {
  color: #666;
  line-height: 1.8;
}

/* Reviews Summary */
.reviews-summary {
  margin-bottom: 30px;
  padding-bottom: 30px;
  /* border-bottom: 1px solid #e0e0e0; */
  margin-top: 30px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.star-rating i {
  color: #ffcc05;
  font-size: 18px;
}

.rating-text {
  margin-left: 10px;
  color: #999;
  font-size: 14px;
}

/* Tour Info & Location Info */
.tour-info,
.location-info,
.airport-info {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 5px;
  margin-bottom: 30px;
}

/* Map Container */
.map-container {
  margin-top: 30px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Video Container */
.video-container {
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Reviews List */
.reviews-list {
  margin-bottom: 40px;
}

.review-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-info strong {
  color: #333;
  font-size: 16px;
}

.review-date {
  color: #999;
  font-size: 13px;
  display: block;
  margin-top: 5px;
}

.review-rating i {
  color: #ffcc05;
  font-size: 14px;
}

.review-body {
  color: #666;
  line-height: 1.8;
}

/* Add Review Section */
.add-review-section {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 5px;
}

.rating-input {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.rating-input i {
  color: #ddd;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.rating-input i:hover,
.rating-input i.active {
  color: #ffcc05;
}

span.golf-course-fee-item-label {
  font-family: "Font Awesome 5 Free";
  font-size: 25px;
  color: #1e1c1c;
  font-weight: 600;
}

.golf-course-fee-item-label-label {
  color: #a5a5a5;
  font-size: 13px;
}

span.golf-course-fee-item {
  display: block;
}

/* ===================================
     BOOKING SIDEBAR
     =================================== */

.booking-sidebar {
  padding-left: 30px;
}

.booking-form-wrapper {
  background-color: #f8f8f8;
  overflow: hidden;
}

.sticky-sidebar {
  position: sticky;
  top: 130px;
}

.price-box {
  background: linear-gradient(135deg, #ffcc05 0%, #f5d5a8 100%);
  padding: 25px;
  text-align: center;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  display: block;
}

.price-label {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 5px;
}

.booking-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  padding: 25px 25px 15px;
  margin: 0;
  text-align: center;
}

.booking-form {
  padding: 0 25px 25px;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffcc05;
  font-size: 16px;
}

.booking-form .form-control {
  padding: 12px 15px 12px 45px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.booking-form .form-control:focus {
  border-color: #ffcc05;
  box-shadow: 0 0 0 0.2rem rgba(254, 224, 188, 0.25);
}

.booking-form textarea.form-control {
  padding: 12px 15px;
  resize: vertical;
}

.btn-booking {
  width: 100%;
  background-color: #ffcc05;
  color: #333;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-booking:hover {
  background-color: #f5d5a8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 224, 188, 0.4);
}

.golf-course-name-and-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* ===================================
     MORE INFORMATION TABLE
     =================================== */

.more-information-golf-course {
  margin-top: 40px;
}

.info-table {
  width: 100%;
}

.info-row {
  display: flex;
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
}

.info-row:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.info-label {
  flex: 0 0 35%;
  padding-right: 30px;
}

.info-label h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: "eicons";
}

.info-value {
  flex: 1;
}

.info-value p {
  color: #999;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* Included List */
.included-list,
.not-included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.included-item,
.not-included-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.included-item i {
  color: #ffcc05;
  font-size: 14px;
  width: 16px;
}

.not-included-item i {
  color: #999;
  font-size: 14px;
  width: 16px;
}

.included-item span,
.not-included-item span {
  color: #999;
  font-size: 15px;
}

/* All Utilities List - showing all options with checked/unchecked state */
.all-utilities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility-item.selected i {
  color: #ffcc05;
  font-size: 16px;
}

.utility-item.not-selected i {
  color: #ddd;
  font-size: 16px;
}

.utility-item.selected span {
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.utility-item.not-selected span {
  color: #999;
  font-size: 15px;
}

/* ===================================
     HERO BANNER RESPONSIVE
     =================================== */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }

  .hero-description {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .hero-banner {
    height: 450px;
    margin-top: -110px;
    padding-top: 110px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-description {
    font-size: 14px;
    max-width: 700px;
  }

  .golf-course-content {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 400px;
    margin-top: -100px;
    padding-top: 100px;
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 13px;
    max-width: 600px;
    line-height: 1.6;
  }

  .golf-course-content {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 350px;
    margin-top: -90px;
    padding-top: 90px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: 0;
  }

  .hero-description {
    font-size: 12px;
    max-width: 100%;
    padding: 0 20px;
  }

  .golf-course-content {
    padding: 40px 0;
  }
}

/* ===================================
     TABS & BOOKING RESPONSIVE
     =================================== */

@media (max-width: 992px) {
  .tabs-navigation .nav-item {
    max-width: 200px;
  }

  .tabs-navigation .nav-link {
    font-size: 12px;
    padding: 15px 10px;
  }

  .tabs-navigation .nav-link i {
    font-size: 16px;
  }

  .content-section {
    padding: 30px 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .booking-sidebar {
    padding-left: 0;
    padding-top: 30px;
  }

  .sticky-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .tabs-navigation .nav-item {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .tabs-navigation .nav-link {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }

  .tabs-navigation .nav-item:nth-child(even) .nav-link {
    border-right: none;
  }

  .tabs-navigation .nav-link span {
    font-size: 11px;
  }

  .content-section {
    padding: 25px 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .subsection-title {
    font-size: 18px;
  }

  .info-meta {
    gap: 15px;
  }

  .meta-item {
    font-size: 13px;
  }

  .course-details,
  .tour-info,
  .location-info,
  .airport-info {
    padding: 20px;
  }

  .detail-item {
    flex-direction: column;
    gap: 5px;
  }

  .price {
    font-size: 36px;
  }

  .booking-title {
    font-size: 20px;
  }

  .info-row {
    flex-direction: column;
    padding: 25px 0;
  }

  .info-label {
    padding-right: 0;
    margin-bottom: 15px;
  }

  .info-label h4,
  .info-label h6 {
    font-size: 17px;
  }

  .included-list,
  .not-included-list,
  .all-utilities-list {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .tabs-navigation .nav-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tabs-navigation .nav-link {
    border-right: none;
  }

  .tabs-navigation .nav-link span {
    font-size: 12px;
  }

  .content-section {
    padding: 20px 15px;
  }

  .section-title {
    font-size: 22px;
  }

  .info-meta {
    flex-direction: column;
    gap: 10px;
  }

  .price {
    font-size: 32px;
  }

  .booking-form .form-control {
    padding: 10px 10px 10px 40px;
    font-size: 13px;
  }

  .btn-booking {
    padding: 12px;
    font-size: 14px;
  }

  .info-row {
    flex-direction: column;
    padding: 20px 0;
  }

  .info-label {
    padding-right: 0;
    margin-bottom: 15px;
  }

  .info-label h4,
  .info-label h6 {
    font-size: 16px;
  }

  .included-list,
  .not-included-list,
  .all-utilities-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===================================
     LOCATION TAB - NEW STYLES
     =================================== */

/* Subsection Title */
.subsection-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subsection-title i {
  color: #ffcc05;
  font-size: 1.3rem;
}

/* Location Basic Info Cards */
.location-basic-info {
  margin-bottom: 30px;
}

.info-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #ffcc05;
}

.info-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffcc05 0%, #debe97 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.info-card-content {
  flex: 1;
}

.info-card-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.info-card-content p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Nearby Facilities Section */
.nearby-facilities {
  margin-bottom: 30px;
}

.facility-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #ffcc05;
}

.facility-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffcc05 0%, #debe97 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.facility-info h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.facility-info p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.facility-time {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 12px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #000;
  font-weight: 500;
}

.facility-time i {
  margin-right: 5px;
}

/* Directions Section */
.directions-section {
  margin-bottom: 30px;
}

.directions-content {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
}

.directions-box {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.directions-box p {
  margin-bottom: 15px;
}

.directions-box p:last-child {
  margin-bottom: 0;
}

.directions-box ul,
.directions-box ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.directions-box li {
  margin-bottom: 8px;
}

/* Map Section */
.map-section {
  margin-bottom: 20px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Responsive for Location Tab */
@media (max-width: 768px) {
  .info-card {
    padding: 20px;
    gap: 15px;
  }

  .info-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .info-card-content h4 {
    font-size: 1rem;
  }

  .info-card-content p {
    font-size: 0.9rem;
  }

  .facility-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .facility-info h5 {
    font-size: 0.95rem;
  }

  .facility-info p {
    font-size: 0.85rem;
  }

  .subsection-title {
    font-size: 1.3rem;
  }

  .directions-content {
    padding: 15px;
  }

  .directions-box {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .subsection-title {
    font-size: 1.1rem;
    flex-direction: column;
    gap: 5px;
  }

  .facility-card {
    padding: 15px;
  }

  .directions-content {
    padding: 15px;
  }
}

/* ===================================
     GALLERY TAB - MASONRY GRID
     =================================== */

/* Gallery Grid - Masonry Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 10px;
  gap: 15px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

/* Masonry auto height */
/* .gallery-item:nth-child(1) {
    grid-row-end: span 30;
  }
  .gallery-item:nth-child(2) {
    grid-row-end: span 25;
  }
  .gallery-item:nth-child(3) {
    grid-row-end: span 35;
  }
  .gallery-item:nth-child(4) {
    grid-row-end: span 28;
  }
  .gallery-item:nth-child(5) {
    grid-row-end: span 32;
  }
  .gallery-item:nth-child(6) {
    grid-row-end: span 26;
  }
  .gallery-item:nth-child(7) {
    grid-row-end: span 30;
  }
  .gallery-item:nth-child(8) {
    grid-row-end: span 33;
  }
  .gallery-item:nth-child(9) {
    grid-row-end: span 27;
  }
  .gallery-item:nth-child(10) {
    grid-row-end: span 31;
  }
  .gallery-item:nth-child(11) {
    grid-row-end: span 29;
  }
  .gallery-item:nth-child(12) {
    grid-row-end: span 34;
  }
  .gallery-item:nth-child(13) {
    grid-row-end: span 28;
  } */

/* Overlay */
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(254 224 188 / 49%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: #fff;
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay i {
  transform: scale(1);
}

/* No Gallery Message */
.no-gallery-message {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 30px;
}

.no-gallery-message i {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 15px;
  display: block;
}

.no-gallery-message p {
  font-size: 1.1rem;
  color: #999;
  margin: 0;
}

/* ===================================
     LIGHTBOX
     =================================== */

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 65%);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.active {
  display: flex;
}

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

#lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

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

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

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

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

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Lightbox Counter */
.lightbox-counter {
  margin-top: 20px;
  color: #fff;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

#lightbox-current {
  font-weight: 600;
  color: #ffcc05;
}

/* ===================================
     RESPONSIVE - GALLERY
     =================================== */

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

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

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    font-size: 0.95rem;
    padding: 6px 15px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
  }

  .gallery-item-overlay i {
    font-size: 2rem;
  }

  #lightbox-image {
    max-height: 70vh;
  }
}

/* ===================================
     TOUR PLAN TAB - GOLF TRIP ITINERARY
     =================================== */

/* Golf Trip Tabs Wrapper - Horizontal Scroll */
.golf-trip-tabs-wrapper {
  margin-bottom: 40px;
  position: relative;
}

/* Golf Trip Tabs Navigation */
#golf-trip-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ffcc05 #f0f0f0;
}

#golf-trip-tabs::-webkit-scrollbar {
  height: 6px;
}

#golf-trip-tabs::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

#golf-trip-tabs::-webkit-scrollbar-thumb {
  background: #ffcc05;
  border-radius: 10px;
}

#golf-trip-tabs::-webkit-scrollbar-thumb:hover {
  background: #f5d5a8;
}

#golf-trip-tabs .nav-item {
  flex: 0 0 auto;
}

#golf-trip-tabs .nav-link {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px 20px;
  color: #666;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
  min-width: fit-content;
}

#golf-trip-tabs .nav-link:hover {
  background-color: #fff;
  border-color: #ffcc05;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#golf-trip-tabs .nav-link.active {
  background: linear-gradient(135deg, #ffcc05 0%, #f5d5a8 100%);
  border-color: #ffcc05;
  color: #333;
  box-shadow: 0 6px 16px rgba(254, 224, 188, 0.35);
}

/* Trip Tab Header */
.trip-tab-header {
  display: flex;
  align-items: center;
}

.trip-tab-title {
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}

#golf-trip-tabs .nav-link.active .trip-tab-title {
  color: #1a1a1a;
  font-weight: 700;
}

/* Trip Tab Meta - Days and Price on same line */
.trip-tab-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: inherit;
  font-family: "Poppins", sans-serif;
  justify-content: space-between;
}

.trip-tab-days,
.trip-tab-price {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trip-tab-separator {
  color: inherit;
  opacity: 0.5;
  font-weight: bold;
}

#golf-trip-tabs .nav-link.active .trip-tab-meta {
  color: #333;
}

.trip-tab-days i,
.trip-tab-price i {
  font-size: 12px;
  opacity: 0.8;
}

/* Itinerary List */
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

/* Itinerary Day Item */
.itinerary-day-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}

.itinerary-day-item:last-child {
  border-bottom: none;
}

/* Day Number Box - Yellow Square */
.day-number-box {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffcc05 0%, #f5d5a8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(254, 224, 188, 0.3);
}

.day-number {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  font-family: "Poppins", sans-serif;
}

/* Day Details */
.day-details {
  flex: 1;
  padding-top: 5px;
}

.day-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}

.day-content {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
}

.day-content p {
  margin-bottom: 15px;
}

.day-content p:last-child {
  margin-bottom: 0;
}

.day-content ul,
.day-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style: none;
}

.day-content li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
}

.day-content ul li::before {
  content: "✓";
  color: #ffcc05;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* No Itinerary Message */
.no-itinerary {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  color: #999;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

/* ===================================
     RESPONSIVE - TOUR PLAN
     =================================== */

@media (max-width: 992px) {
  #golf-trip-tabs .nav-link {
    padding: 14px 18px;
  }

  .trip-tab-title {
    font-size: 14px;
  }

  .trip-tab-meta {
    font-size: 12px;
  }

  .day-number-box {
    width: 60px;
    height: 60px;
  }

  .day-number {
    font-size: 28px;
  }

  .day-title {
    font-size: 20px;
  }

  .day-content {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .golf-trip-tabs-wrapper {
    margin-bottom: 30px;
  }

  #golf-trip-tabs {
    gap: 10px;
  }

  #golf-trip-tabs .nav-link {
    padding: 12px 16px;
    gap: 6px;
  }

  .trip-tab-title {
    font-size: 13px;
  }

  .trip-tab-meta {
    font-size: 11px;
    gap: 6px;
  }

  .trip-tab-days i,
  .trip-tab-price i {
    font-size: 11px;
  }

  .itinerary-day-item {
    gap: 20px;
    padding: 20px 0;
  }

  .day-number-box {
    width: 55px;
    height: 55px;
  }

  .day-number {
    font-size: 24px;
  }

  .day-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .day-content {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #golf-trip-tabs {
    gap: 8px;
  }

  #golf-trip-tabs .nav-link {
    padding: 10px 14px;
    gap: 5px;
  }

  .trip-tab-title {
    font-size: 12px;
  }

  .trip-tab-meta {
    font-size: 10px;
    gap: 5px;
  }

  .trip-tab-days i,
  .trip-tab-price i {
    font-size: 10px;
  }

  .itinerary-day-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    align-items: center;
    text-align: center;
  }

  .day-number-box {
    width: 50px;
    height: 50px;
  }

  .day-number {
    font-size: 22px;
  }

  .day-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .day-content {
    font-size: 13px;
  }

  .day-content ul,
  .day-content ol {
    text-align: left;
  }
}
