/* Root Variables */
:root {
  --primary-color: #006400;
  --secondary-color: #ffd700;
  --tertiary-color: #ffc800;
  --tertiary-color_hover: #ffc800;
}

/* Global Styles */
body {
  font-family: "Montserrat", sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
}

/* Navigation Bar */
.navbar {
  background-color: transparent;
  padding: 15px 0;
  transition: all 0.3s;
}

.navbar.scrolled {
  background-color: rgb(33, 32, 32);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .navbar .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .navbar .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .navbar .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .navbar .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .navbar .container {
    max-width: 1320px;
  }
}

.navbar-brand {
  color: #fff;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  transition: all 0.3s;
  padding: 0;
  margin: 0;
  margin-right: 2rem;
}

.navbar-brand:hover {
  color: var(--tertiary-color) !important;
  transform: translateY(-2px);
}

.navbar-profile-pic {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
}

.navbar-profile-pic:hover {
  border-color: var(--tertiary-color);
  transform: scale(1.1);
}

/* Reservations Page Styles */
.reservations-section {
  padding: 100px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/slider/slider 1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

.reservations-container {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid #444;
  margin-top: 3rem;
}

/* Sidebar Styles */
.reservations-sidebar {
  background: #ffffff;
  height: 100%;
  border-right: 1px solid #444;
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #444;
}

.sidebar-header h4 {
  color: #ffffff;
  font-weight: 600;
}

.sidebar-nav {
  padding: 10px 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  color: #000000;
  text-align: left;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.sidebar-item:hover {
  background-color: rgba(0, 100, 0, 0.2);
  color: #ffffff;
  border-left-color: var(--primary-color);
}

.sidebar-item.active {
  background-color: rgba(0, 100, 0, 0.3);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  font-weight: 600;
}

.sidebar-item i {
  margin-right: 12px;
  font-size: 18px;
}

.sidebar-item span {
  flex-grow: 1;
}

.sidebar-item .badge {
  font-size: 12px;
  padding: 4px 8px;
}

/* Content Styles */
.reservations-content {
  padding: 30px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #444;
}

.content-header h3 {
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

.content-actions .btn {
  padding: 8px 16px;
  font-size: 14px;
}

/* Reservation Cards */
.reservation-card {
  background: #ffffff;
  border: 1px solid #555;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.reservation-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.3);
}

.reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  border-bottom: 1px solid #555;
}

.reservation-code {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

.reservation-code i {
  margin-right: 8px;
}

.reservation-status .badge {
  font-size: 12px;
  padding: 6px 12px;
}

.reservation-body {
  padding: 20px;
}

.reservation-info {
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #000000;
}

.info-item i {
  margin-right: 10px;
  width: 20px;
  color: var(--primary-color);
}

.reservation-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.reservation-actions .btn {
  padding: 6px 12px;
  font-size: 14px;
}

/* Empty State */
.reservations-list .text-center {
  color: #ccc;
}

.reservations-list .text-center i {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.reservations-list .text-center h5,
.reservations-list .text-center p {
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .reservations-sidebar {
    border-right: none;
    border-bottom: 1px solid #555;
    height: auto;
  }

  .sidebar-nav {
    display: flex;
    overflow-x: auto;
    padding: 0;
  }

  .sidebar-item {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 16px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .sidebar-item.active {
    border-left: none;
    border-bottom-color: var(--primary-color);
  }

  .sidebar-item:hover {
    border-left: none;
  }

  .reservations-content {
    padding: 20px;
  }

  .content-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #555;
  }
}

@media (max-width: 576px) {
  .reservation-actions {
    flex-direction: column;
  }

  .reservation-actions .btn {
    width: 100%;
  }

  .iziToast.iziToast-question {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .iziToast.iziToast-question .iziToast-header {
    background: var(--primary-color);
    color: white;
    border-radius: 12px 12px 0 0;
  }

  .iziToast.iziToast-question .iziToast-buttons {
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
  }

  .iziToast.iziToast-question .iziToast-buttons button {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .iziToast.iziToast-question .iziToast-buttons button:first-child {
    background: var(--primary-color);
    color: white;
  }

  .iziToast.iziToast-question .iziToast-buttons button:first-child:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
  }

  .iziToast.iziToast-question .iziToast-buttons button:last-child {
    background: #6c757d;
    color: white;
  }

  .iziToast.iziToast-question .iziToast-buttons button:last-child:hover {
    background: #5a6268;
  }
}

.navbar-collapse {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.navbar-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}

.nav-btn {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
  margin-left: 1rem;
}

@media (min-width: 992px) {
  .navbar-nav {
    padding: 0 120px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    width: calc(100% - 30px);
    z-index: 1000;
  }

  .navbar-nav-wrapper {
    flex-direction: column;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 0;
    margin-bottom: 0.5rem;
  }

  .nav-link {
    padding: 0.75rem 0;
    width: 100%;
    display: block;
  }

  .nav-btn {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
  }

  .reservation-btn {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0.75rem;
    display: inline-block;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  font-size: clamp(14px, 3vw, 16px);
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--tertiary-color) !important;
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--tertiary-color) !important;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--tertiary-color);
  border-radius: 1px;
}

.reservation-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 25px;
  border-radius: 30px;
  transition: all 0.3s;
  font-size: clamp(14px, 3vw, 16px);
  white-space: nowrap;
}

.reservation-btn:hover {
  border: 2px solid var(--tertiary-color_hover);
  background-color: transparent;
  color: var(--tertiary-color_hover);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: visible;
  margin-bottom: 20px;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.5)
  );
}

/* Hero Content Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
  opacity: 0;
  padding: 0 15px;
}

.carousel-item.active .hero-content {
  animation: fadeInUp 1s ease forwards;
}

/* Hero Text Styles */
.hero-subtitle {
  font-size: clamp(14px, 3vw, 18px);
  letter-spacing: 3px;
  margin-bottom: clamp(15px, 3vw, 20px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: clamp(30px, 4vw, 40px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-address {
  font-size: 1.1rem;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-section {
    height: 75vh;
    margin-bottom: 60px;
  }

  .hero-slide {
    height: 75vh;
  }

  .hero-content {
    width: 95%;
  }

  .hero-subtitle {
    letter-spacing: 2px;
  }
}

/* Package Info Styles */
.package-info {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.package-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--tertiary-color),
    var(--primary-color)
  );
}

.package-header {
  margin-bottom: 30px;
}

.package-header h3 {
  color: var(--primary-color);
  font-size: clamp(28px, 4vw, 32px);
  margin-bottom: 15px;
  font-weight: 700;
}

.operating-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 100, 0, 0.293);
  padding: 8px 20px;
  border-radius: 30px;
  color: var(--primary-color);
  font-weight: 500;
}

.operating-hours i {
  color: var(--tertiary-color);
  font-size: 18px;
}

.package-price {
  margin: 10px 0 30px 0;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  display: inline-block;
}

.package-price .price {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.package-price .per-day {
  font-size: clamp(16px, 3vw, 18px);
  margin-left: 5px;
  color: #666;
  display: block;
  margin-top: 5px;
}

.package-features {
  margin: 10px 0;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}

.package-features li {
  color: #444;
  font-size: clamp(16px, 3vw, 18px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(0, 100, 0, 0.03);
  border-radius: 10px;
  transition: all 0.3s;
}

.package-features li:hover {
  background: rgba(0, 100, 0, 0.06);
  transform: translateX(5px);
}

.package-features li i {
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .package-info {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .package-features ul {
    grid-template-columns: 1fr;
  }

  .package-features li {
    padding: 8px;
  }
}

/* Number Input Styles */
.number-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

.number-input button {
  width: 40px;
  height: 40px;
  background: var(--tertiary-color);
  border: none;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.number-input button:hover {
  background: var(--tertiary-color_hover);
}

.number-input .quantity {
  width: 100%;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 18px;
  margin: 0;
  padding: 0;
  background: #fff;
}

.number-input .quantity::-webkit-outer-spin-button,
.number-input .quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Form Styles */
.form-label {
  color: #333;
  font-weight: 500;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
  border-radius: 5px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 100, 0, 0.25);
}

/* Password toggle button styling */
.input-group .btn-outline-secondary {
  border-color: #dee2e6;
  color: #6c757d;
  border-left: 0;
}

.input-group .btn-outline-secondary:hover {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
}

.input-group .btn-outline-secondary:focus {
  box-shadow: none;
}

.input-group .form-control:focus + .btn-outline-secondary {
  border-color: var(--primary-color);
}

.forgot-password,
.signup-link,
.login-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.forgot-password:hover,
.signup-link:hover,
.login-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.login-btn,
.signup-btn,
.verify-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.75rem;
  font-weight: 500;
  transition: all 0.3s;
}

.login-btn:hover,
.signup-btn:hover,
.verify-btn:hover {
  background-color: var(--tertiary-color_hover);
  color: black;
}

/* For Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Sign Up and Login Page Styles */
.signup-section {
  padding-top: 120px;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/slider/slider 1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.signup-form-container {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.signup-form-container h2 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .signup-section {
    padding: 100px 15px;
  }

  .signup-form-container {
    padding: 1.5rem;
  }
}

.btn-close:focus {
  box-shadow: none;
  outline: none;
  border: none;
}

/* Services Section */
.services-section {
  padding: 50px 0;
  background-color: #f8f9fa;
  position: relative;
  scroll-margin-top: 80px;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.section-title {
  color: white;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--tertiary-color);
}

.section-subtitle {
  color: #666;
  font-size: clamp(16px, 3vw, 18px);
  margin-bottom: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tertiary-color);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-image {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 25px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-image {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--primary-color);
  font-size: clamp(18px, 3vw, 20px);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  font-size: clamp(14px, 2.5vw, 16px);
  margin: 0;
  line-height: 1.6;
}

.hero-content .book-now-btn {
  background-color: var(--tertiary-color);
  color: #000;
  border: none;
  padding: 16px 45px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 18px);
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hero-content .book-now-btn:hover {
  background-color: var(--tertiary-color_hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-content .book-now-btn i {
  transition: transform 0.3s ease;
  font-size: 20px;
}

.hero-content .book-now-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .hero-content .book-now-btn {
    padding: 14px 35px;
    font-size: clamp(15px, 3vw, 16px);
  }
}

/* Booking Section Styles */
.booking-section {
  padding: 100px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/slider/slider 1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

.booking-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.package-card {
  position: sticky;
  top: 100px;
}

.package-card .package-info {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.9);
}

.package-card .section-title {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  text-align: center;
  color: #fff;
  width: 100%;
}

/* Calendar Styles */
.fc {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.fc .fc-toolbar-title {
  font-size: 1.5em;
  color: var(--primary-color);
  font-weight: 600;
}

.fc .fc-button-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 8px 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.fc .fc-button-primary:hover {
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: #000;
  transform: translateY(-2px);
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: #000;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(0, 100, 0, 0.1);
}

.fc .fc-daygrid-day-number {
  color: #666;
  text-decoration: none;
  font-weight: 500;
}

/* Past dates */
.fc .fc-daygrid-day.fc-day-past {
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.7;
  cursor: not-allowed !important;
}

/* Future dates */
.fc .fc-daygrid-day.fc-day-future {
  cursor: pointer;
  transition: all 0.3s;
}

.fc .fc-daygrid-day.fc-day-future:hover {
  background-color: rgba(0, 100, 0, 0.05);
}

/* Today */
.fc .fc-daygrid-day.fc-day-today {
  cursor: pointer;
}

/* Disable cursor for booked dates */
.fc .fc-daygrid-day.fc-day-booked {
  cursor: not-allowed !important;
  background-color: rgba(255, 215, 0, 0.2) !important;
}

/* Disable cursor for closed dates */
.fc .fc-daygrid-day.fc-day-closed {
  cursor: not-allowed !important;
  background-color: rgba(220, 53, 69, 0.2) !important;
  position: relative;
}

.fc .fc-daygrid-day.fc-day-closed::after {
  content: "✕";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #dc3545;
  font-size: 16px;
  font-weight: bold;
  z-index: 1;
}

/* Style for dates beyond 3 months */
.fc .fc-daygrid-day.fc-day-beyond-limit {
  background-color: rgba(0, 0, 0, 0.05) !important;
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.fc .fc-daygrid-day.fc-day-beyond-limit .fc-daygrid-day-number {
  color: #999 !important;
}

/* Style for selected date */
.fc .fc-daygrid-day.fc-day-selected {
  background-color: rgba(0, 100, 0, 0.2) !important;
}

/* Available dates */
.fc .fc-daygrid-day.fc-day-available {
  cursor: pointer;
}

/* Booking Form Styles */
.booking-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.booking-form .form-label {
  color: #444;
  font-weight: 500;
  margin-bottom: 8px;
}

.booking-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.9);
}

.booking-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 100, 0, 0.1);
  background: #fff;
}

.booking-form .form-control[readonly] {
  background-color: rgba(0, 0, 0, 0.05);
  cursor: not-allowed;
}

.booking-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.booking-form .book-now-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-form .book-now-btn:hover {
  background-color: var(--tertiary-color);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .booking-section {
    padding: 60px 0;
  }

  .package-card {
    position: static;
    margin-bottom: 30px;
  }

  .booking-container {
    padding: 20px;
  }

  .fc {
    padding: 15px;
  }
}

/* About Section Styles */
.about-section {
  padding: 50px 0;
  background-color: #f8f9fa;
  position: relative;
  scroll-margin-top: 80px;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-image .carousel {
  border-radius: 15px;
  overflow: hidden;
}

.about-image .carousel-item {
  height: 400px;
}

.about-image .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image .carousel-control-prev,
.about-image .carousel-control-next {
  width: 10%;
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image:hover .carousel-control-prev,
.about-image:hover .carousel-control-next {
  opacity: 0.8;
}

.about-image .carousel-control-prev-icon,
.about-image .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 50%;
}

.about-image .carousel-indicators {
  margin-bottom: 1rem;
}

.about-image .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}

.about-image .carousel-indicators button.active {
  background-color: var(--tertiary-color);
}

@media (max-width: 991px) {
  .about-image .carousel-item {
    height: 300px;
  }
}

.about-content {
  padding: 30px;
}

.about-content h3 {
  color: var(--primary-color);
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  color: #666;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 24px;
  color: var(--tertiary-color);
  background: rgba(255, 215, 0, 0.1);
  padding: 15px;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-item h4 {
  color: var(--primary-color);
  font-size: clamp(18px, 3vw, 20px);
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-item p {
  color: #666;
  font-size: clamp(14px, 2.5vw, 16px);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding: 20px 0;
  }

  .about-image {
    margin-bottom: 30px;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 50px 0;
  background-color: #fff;
  position: relative;
  scroll-margin-top: 80px;
}

.contact-info {
  display: grid;
  gap: 25px;
  padding: 30px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-item i {
  font-size: 24px;
  color: var(--tertiary-color);
  background: rgba(255, 215, 0, 0.1);
  padding: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  background: var(--tertiary-color);
  color: #fff;
}

.contact-item h4 {
  color: var(--primary-color);
  font-size: clamp(18px, 3vw, 20px);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item p {
  color: #666;
  font-size: clamp(14px, 2.5vw, 16px);
  margin: 0;
  line-height: 1.6;
}

.map-container {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 991px) {
  .contact-info {
    margin-bottom: 30px;
    height: auto;
  }

  .contact-item {
    height: auto;
  }

  .map-container {
    height: 350px;
  }
}

/* Footer Styles */
.footer {
  background-color: rgb(33, 32, 32);
  color: #fff;
  padding: 80px 0 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--tertiary-color),
    var(--primary-color)
  );
}

.footer h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--tertiary-color);
}

.footer-about p {
  color: #999;
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--tertiary-color);
  color: #000;
  transform: translateY(-3px);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-links ul li a i {
  color: var(--tertiary-color);
  margin-right: 10px;
  font-size: 12px;
}

.footer-links ul li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact ul li i {
  color: var(--tertiary-color);
  font-size: 20px;
  margin-right: 15px;
  margin-top: 3px;
}

.footer-contact ul li span {
  color: #999;
  line-height: 1.6;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  margin-top: 60px;
}

.footer-bottom p {
  margin: 0;
  color: #999;
  font-size: 14px;
}

.footer-bottom .developer {
  text-align: right;
}

.footer-bottom .developer i {
  color: #ff4444;
  margin: 0 5px;
}

@media (max-width: 991px) {
  .footer {
    padding: 60px 0 0 0;
  }

  .footer-bottom .developer {
    text-align: left;
    margin-top: 10px;
  }
}

/* Account Settings Styles */
.account-settings-section {
  padding: 100px 0;
  background:
    linear-gradient(rgba(100, 100, 100, 0.566), rgba(103, 103, 103, 0.664)),
    url("../img/slider/slider 1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

.account-card {
  margin-top: 3rem;
  background: #000000;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #444;
  color: #fff;
}

.account-card .card-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 20px 30px;
  border-bottom: none;
}

.account-card .card-body {
  padding: 40px;
}

.profile-photo-section {
  position: relative;
}

.profile-photo-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.profile-photo-container:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.profile-photo-container:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay .btn {
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.profile-photo-container:hover .photo-overlay .btn {
  transform: translateY(0);
}

/* Form Styles */
.account-settings-section .form-label {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.account-settings-section .form-control {
  border: 2px solid #555;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #444;
  color: #fff;
}

.account-settings-section .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 100, 0, 0.25);
}

.account-settings-section .btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
}

.account-settings-section .btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
}

.account-settings-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 100, 0, 0.3);
}

.account-settings-section .btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
}

.account-settings-section .btn-outline-secondary:hover {
  background-color: #6c757d;
  transform: translateY(-2px);
}

.account-settings-section .text-muted {
  color: #ccc !important;
}

/* Password Toggle Button Styles */
.account-settings-section .input-group .btn-outline-secondary {
  border-left: none;
  color: #6c757d;
}

.account-settings-section .input-group .btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}

.account-settings-section .input-group .form-control {
  border-right: none;
}

.account-settings-section .input-group .form-control:focus {
  border-right: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 100, 0, 0.25);
}

/* Dropdown Menu Active States */
.dropdown-menu .dropdown-item.active {
  border-left: 4px solid var(--primary-color);
  background-color: rgba(0, 100, 0, 0.15);
  color: var(--primary-color);
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.dropdown-menu .dropdown-item.active:hover {
  background-color: rgba(0, 100, 0, 0.25);
  color: var(--primary-color);
}

/* Dropdown Menu Hover Effects */
.dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .account-card .card-body {
    padding: 20px;
  }

  .profile-photo-container {
    width: 150px;
    height: 150px;
  }

  .account-settings-section .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Login button locked/disabled state */
.login-btn:disabled,
.login-btn.disabled {
  opacity: 0.75 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  display: block !important;
  visibility: visible !important;
  background-color: #555 !important;
  color: #fff !important;
}

/* Verify/Send buttons - loading state */
.verify-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
}

.verify-btn:disabled {
  opacity: 0.75 !important;
  cursor: not-allowed !important;
  display: flex !important;
  visibility: visible !important;
  background-color: var(--primary-color) !important;
  color: #fff !important;
}
