/* Travel Theme Color Variables */
:root {
  /* Primary Travel Colors */
  --ocean-blue: #0077be;
  --deep-sea: #003d5c;
  --tropical-teal: #00a8a8;
  --sunset-orange: #ff6b35;
  --coral-pink: #ff8a80;
  --sky-blue: #87ceeb;
  --sand-beige: #f5e6d3;
  --forest-green: #2d5016;
  --golden-yellow: #ffd700;
  
  /* Gradients */
  --ocean-gradient: linear-gradient(135deg, #0077be 0%, #00a8a8 100%);
  --sunset-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8a80 100%);
  --sky-gradient: linear-gradient(135deg, #87ceeb 0%, #0077be 100%);
  --tropical-gradient: linear-gradient(135deg, #00a8a8 0%, #2d5016 100%);
  --golden-gradient: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  
  /* Background Gradients */
  --main-bg: linear-gradient(135deg, #0077be 0%, #87ceeb 50%, #00a8a8 100%);
  --section-bg: rgba(255, 255, 255, 0.95);
  --card-bg: rgba(255, 255, 255, 0.98);
  
  /* Shadows */
  --card-shadow: 0 8px 25px rgba(0, 119, 190, 0.15);
  --card-shadow-hover: 0 15px 35px rgba(0, 119, 190, 0.25);
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* * {
  outline: 1px solid red !important;
} */

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: whitesmoke;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/*Typography */
h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--deep-sea);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  /* background: var(--ocean-gradient); */
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
}

h2 {
  font-size: 2rem;
  color: var(--ocean-blue);
}

/* Navigation Enhancement */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 119, 190, 0.1);
  border: none;
  transition: all 0.3s ease;
  padding: 0.4rem 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--ocean-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--deep-sea) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 0.2rem;
  padding: 0.50rem 0.75rem !important;
  border-radius: 25px;
}

.navbar-nav .nav-link:hover {
  color: var(--ocean-blue) !important;
  /* background: rgba(0, 119, 190, 0.1); */
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 5px;
  left: 50%;
  background: var(--sunset-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}


.img-thumbnail {
  max-width:150px;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.logo-image {
  /* width: 180px; */
  max-height:62px;
  object-fit: cover;
}

/*Hero Section - FIXED CONTENT VISIBILITY */
.hero-section {
  height: 800px;
  overflow: hidden;
  top: -100px;
  position: relative;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 119, 190, 0.2);
  margin: 0;
  width: 100%;
  margin-left: calc(-50vw + 50%);
  padding: 0 !important;
}

.carousel-item {
  height: 800px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(1.1) contrast(1.1);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 190, 0.3) 0%, rgba(0, 168, 168, 0.2) 100%);
}

.carousel-caption {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 2rem;
  bottom: 20%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  width: 600px;
  text-align: center;
}

.carousel-caption h1 {
  color: white;
  font-weight: 800;
  text-shadow: var(--text-shadow);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.carousel-caption p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: var(--text-shadow);
  margin-bottom: 1.5rem;
}

/*  BUTTON SIZING - Made smaller*/
.btn {
  border-radius: 20px;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--ocean-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 190, 0.4);
  background: var(--ocean-gradient);
  color: white;
}

.btn-success {
  background: var(--tropical-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 168, 168, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 168, 0.4);
  background: var(--tropical-gradient);
  color: white;
}

.btn-warning {
  background: var(--sunset-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: var(--sunset-gradient);
  color: white;
}

/*Sections */
section {
  background: var(--section-bg);
  backdrop-filter: blur(20px);
  margin: 3rem;
  padding: 4rem 2rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 119, 190, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sunset-gradient);
  border-radius: 30px 30px 0 0;
}

section:first-of-type {
  margin-top: 0;
  border-radius: 0 0 30px 30px;
}

section:last-of-type {
  margin-bottom: 0;
  border-radius: 30px 30px 0 0;
}

/*Service Cards */
.service-card {
  border-radius: 25px;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  height: 100%;
  padding: 2rem;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--tropical-teal);
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--tropical-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.1) 0%, rgba(45, 80, 22, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  border: 3px solid rgba(0, 168, 168, 0.2);
  position: relative;
}

.service-card:hover .service-icon-wrapper {
  background: var(--tropical-gradient);
  transform: scale(1.1) rotate(5deg);
  border-color: var(--tropical-teal);
}

.service-icon {
  font-size: 2.2rem;
  color: var(--tropical-teal);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  color: white;
  transform: scale(1.1);
}

.service-card .btn {
  transition: all 0.3s ease;
  border-radius: 20px;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  border: 2px solid var(--tropical-teal);
  color: var(--tropical-teal);
  background: transparent;
}

.service-card:hover .btn {
  background: var(--tropical-gradient);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 168, 168, 0.3);
}

/*Package Cards */
.package-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  position: relative;
}

.package-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--ocean-blue);
}

.package-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 119, 190, 0.05) 0%, rgba(135, 206, 235, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.package-card:hover::after {
  opacity: 1;
}

.package-image {
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(1.05);
}

.package-card:hover .package-image {
  transform: scale(1.08);
}

.trending-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--sunset-gradient);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.card-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #555;
  line-height: 1.6;
}

.card-text-revieww {
  -webkit-line-clamp: 7 !important;
  -webkit-box-orient: vertical;
}

/*Review Cards */
.review-card {
  height: 100%;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

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

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--golden-yellow);
}

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

.review-avatar {
  width: 70px;
  height: 70px;
  background: var(--golden-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  margin-bottom: 1rem;
}

/*Star Rating */
.star-rating {
  margin: 0.5rem 0;
}

.star-rating .fas {
  color: var(--golden-yellow);
  font-size: 1.2rem;
  margin-right: 2px;
  filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.3));
}

.star-rating .far {
  color: #e2e2e2;
  font-size: 1.2rem;
  margin-right: 2px;
}

/*Admin Panel */
.sidebar {
  max-width: 280px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--deep-sea) 0%, var(--ocean-blue) 100%);
  border-radius: 0 25px 25px 0;
  box-shadow: 5px 0 20px rgba(0, 119, 190, 0.2);
  position: relative;
  overflow: hidden;
}

.sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="travel" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23travel)"/></svg>');
}

.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 1.0rem;
  border-radius: 15px;
  margin: 0.3rem 0.2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.sidebar .nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar .nav-link.active {
  color: white;
  background: var(--sunset-gradient);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.sidebar .nav-link i {
  width: 24px;
  text-align: center;
  margin-right: 18px;
  font-size: 1.4rem;
}

/* CLOSE BUTTON VISIBILITY */
.modal-backdrop {
  background-color: rgba(0, 61, 92, 0.6);
  backdrop-filter: blur(5px);
}

.modal-content {
  border: none;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 119, 190, 0.3);
  overflow: hidden;
}

.modal-header {
  background: var(--ocean-gradient);
  color: white;
  padding: 1.5rem 2rem;
  border: none;
  position: relative;
}

/* FIXED CLOSE BUTTON */
.modal-header .btn-close {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  opacity: 1;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  font-weight: bold;
}

.modal-header .btn-close:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-header .btn-close::before {
  content: "×";
  font-size: 1.5rem;
  line-height: 1;
}

.modal-body {
  padding: 1rem;
  background: white;
}



.confirm-delete-modal .modal-header {
  background: var(--sunset-gradient);
  color: white;
}

/* FIXED FOOTER*/
footer {
  background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 50%, var(--tropical-teal) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  padding: 4rem 0 2rem;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><path d="M0,0 Q250,50 500,25 T1000,0 L1000,100 L0,100 Z"/></svg>');
  background-size: cover;
}

footer::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transform: skewY(-2deg);
}

footer .container {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  margin: 0 auto;
  border-radius: 0;
}

footer h3,
footer h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

footer h3::after,
footer h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--sunset-gradient);
  border-radius: 2px;
}

footer .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer .hover-text-white:hover {
  color: var(--coral-pink) !important;
  transition: color 0.3s ease;
  transform: translateX(5px);
}

footer a {
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

footer a:hover {
  color: var(--coral-pink);
  transform: translateX(8px);
}

footer .d-flex.gap-3 a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

footer .d-flex.gap-3 a:hover {
  background: var(--sunset-gradient);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  border-color: transparent;
}

/* FIXED FOOTER */
footer form {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 100%;
}

footer form .input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

footer form .form-control {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  flex: 1;
  font-size: 0.9rem;
  min-width: 0;
}

footer form .form-control:focus {
  background: white;
  border-color: var(--coral-pink);
  box-shadow: 0 0 0 0.2rem rgba(255, 138, 128, 0.25);
}

footer form .btn {
  border-radius: 20px;
  background: var(--sunset-gradient);
  border: none;
  transition: all 0.3s ease;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

footer form .btn:hover {
  background: var(--sunset-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: white;
}


#packageDetailsModal .card-body ul li {
  text-align: left;
}
/* Custome manual section end */


.package-hero {
  height: 450px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow-hover);
}

.package-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05);
}

.package-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 190, 0.4) 0%, rgba(0, 168, 168, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}

.itinerary-item,
.day-item {
  border-left: 5px solid var(--tropical-teal);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  background: rgba(0, 168, 168, 0.05);
  padding: 1.5rem;
  border-radius: 0 15px 15px 0;
  transition: all 0.3s ease;
}

.itinerary-item:hover,
.day-item:hover {
  background: rgba(0, 168, 168, 0.1);
  transform: translateX(10px);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 168, 168, 0.05);
}

.feature-item i {
  color: var(--tropical-teal);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

/*Forms */
.form-control {
  border: 2px solid rgba(0, 119, 190, 0.2);
  border-radius: 15px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
}

.form-control:focus {
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 119, 190, 0.25);
  background: white;
}

/*Responsive Design */
@media (max-width: 768px) {
  .hero-section,
  .carousel-item {
    height: 500px;
  }

  .carousel-caption {
    padding: 1.5rem;
    bottom: 15%;
    max-width: 95%;
    width: auto;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }

  section {
    margin: 2rem 0;
    padding: 2rem 1rem;
    border-radius: 20px;
  }

  .service-card,
  .package-card,
  .review-card {
    margin-bottom: 2rem;
  }

  footer {
    padding: 3rem 0 1.5rem;
  }

  footer .d-flex.gap-3 a {
    width: 45px;
    height: 45px;
  }

  footer form {
    padding: 1.25rem;
  }

  footer form .input-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  footer form .btn {
    width: 100%;
  }

  .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 1.75rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  section {
    padding: 1.5rem 1rem;
  }

  .btn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }

  footer form .form-control {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  footer form .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
}

/*Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.service-card,
.package-card,
.review-card {
  animation: slideInUp 0.6s ease-out;
}

/*Utility Classes */
.hover-text-white:hover {
  color: var(--ocean-blue) !important;
  transition: color 0.3s ease;
  cursor: pointer;
}

.object-fit-cover {
  object-fit: cover;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.loading-spinner::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 119, 190, 0.3);
  border-top: 4px solid var(--ocean-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*Image Upload Styles */
.image-upload-container {
  position: relative;
  width: 100%;
  height: 100px;
  border: 3px dashed var(--tropical-teal);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(0, 168, 168, 0.05);
}

.image-upload-container:hover {
  border-color: var(--ocean-blue);
  background: rgba(0, 119, 190, 0.05);
  transform: scale(1.02);
}

.review-image-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.image-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: var(--tropical-teal);
  font-weight: 600;
}

.image-upload-label i {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.image-upload-label span {
  font-size: 0.9rem;
}

.image-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
  border-radius: 12px;
}

.btn-remove-image {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--sunset-gradient);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
}

.btn-remove-image:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/*Review Gallery */
.review-gallery {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.review-gallery-item {
  width: 90px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.review-gallery-item:hover {
  border-color: var(--ocean-blue);
  transform: scale(1.05);
}

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

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

/*Admin Tables */
.admin-table {
  background: white;
  border-radius: 15px;
  overflow: auto;
  box-shadow: var(--card-shadow);
}

.admin-table th {
  white-space: nowrap;
  background: var(--ocean-gradient);
  color: white;
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 119, 190, 0.1);
}

.admin-table .action-buttons {
  white-space: nowrap;
}

/*Login Page */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-bg);
  padding: 2rem;
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 119, 190, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  max-width: 450px;
  width: 100%;
}

/*Policy and Support Pages */
.policy-content {
  line-height: 1.8;
  font-size: 1rem;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--card-shadow);
}

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5,
.policy-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--ocean-blue);
}

.policy-content p {
  margin-bottom: 1rem;
  color: #555;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

.file-upload-container {
  border: 3px dashed var(--tropical-teal);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  background: rgba(0, 168, 168, 0.05);
}

.file-upload-container:hover {
  border-color: var(--ocean-blue);
  background: rgba(0, 119, 190, 0.05);
  transform: scale(1.02);
}

.file-upload-container .icon {
  font-size: 2.5rem;
  color: var(--tropical-teal);
  margin-bottom: 15px;
}

.file-upload-container p {
  margin-bottom: 0;
  color: var(--deep-sea);
  font-weight: 500;
}

.file-upload-container input[type="file"] {
  display: none;
}

.file-upload-container label {
  display: block;
  cursor: pointer;
  padding: 0.6rem 1.5rem;
  background: var(--tropical-gradient);
  color: white;
  border-radius: 20px;
  margin-top: 15px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.file-upload-container label:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 168, 0.3);
}

/* Print Styles */
@media print {
  body {
    background: white !important;
  }
  
}

.price-text{
  font-size: 0.7rem !important;
}


.view-details-btn 
{
  min-width: 90px !important;
  max-height: 42px !important;
  word-wrap: nowrap !important;
}

/* Sidebar responsive adjustments */
@media (min-width: 768px) and (max-width: 1199px) {  
  /* Adjust main content area */
  .col-md-9.ms-sm-auto.col-lg-10 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

/* Fix stat cards responsive behavior */
@media (min-width: 768px) and (max-width: 1199px) {
  /* Make cards 2x2 grid on medium screens */
  .row .col-md-3.mb-4 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  
  /* Reduce card padding */
  .card-body {
    padding: 1rem 0.75rem !important;
  }
  
  /* Adjust icon container size */
  .bg-success.bg-opacity-10.p-3.rounded.me-3,
  .bg-primary.bg-opacity-10.p-3.rounded.me-3,
  .bg-info.bg-opacity-10.p-3.rounded.me-3,
  .bg-warning.bg-opacity-10.p-3.rounded.me-3 {
    padding: 0.5rem !important;
    margin-right: 0.75rem !important;
  }
  
  /* Reduce icon size */
  .fa-2x {
    font-size: 1.25em !important;
  }
  
  /* card title text wrapping */
  .card-title {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.25rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  /* Adjust number display */
  .card-body h2 {
    font-size: 1.5rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  /* button sizing */
  .btn-sm {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem !important;
  }
  
  /* Adjust badge positioning */
  .badge {
    font-size: 0.65rem !important;
    margin-left: 0.25rem !important;
  }
}

/* Quick Actions buttons */
@media (min-width: 768px) and (max-width: 1199px) {
  .row .col-md-3 .btn {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }
}

/* Additional fixes range 991px-1316px */
@media (min-width: 992px) and (max-width: 1316px) {
  /* Force cards to stay in single row but with smaller text */
  .row .col-md-3.mb-4 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

.sidebar .nav-link i {
 width: auto !important;
  text-align: center;
  margin-right: 12px;
  font-size: 0.9rem;
}

  
  /* Even smaller card titles for this range */
  .card-title {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }
  
  /* Smaller card body padding */
  .card-body {
    padding: 0.75rem 0.5rem !important;
  }
  
  /* Smaller icons */
  .bg-success.bg-opacity-10.p-3.rounded.me-3,
  .bg-primary.bg-opacity-10.p-3.rounded.me-3,
  .bg-info.bg-opacity-10.p-3.rounded.me-3,
  .bg-warning.bg-opacity-10.p-3.rounded.me-3 {
    padding: 0.4rem !important;
    margin-right: 0.5rem !important;
  }
  
  .fa-2x {
    font-size: 1.1em !important;
  }
  
  /* Smaller numbers */
  .card-body h2 {
    font-size: 1.3rem !important;
  }
  
  /* Smaller buttons */
  .btn-sm {
    padding: 0.2rem 0.4rem !important;
    font-size: 0.7rem !important;
  }
}

/* Fix for mobile screens */
@media (max-width: 767.98px) {
  .sidebar {
    position: fixed !important;
    top: 0 !important;
    left: -280px !important;
    z-index: 1030 !important;
    transition: left 0.3s ease !important;
    width: 280px !important;
    height: 100vh !important;
  }
  
  .sidebar.show {
    left: 0 !important;
  }
  
  .col-md-9.ms-sm-auto.col-lg-10 {
    width: 98% !important;
    margin-left: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Stack cards vertically on mobile */
  .row .col-md-3.mb-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Ensure proper container behavior */
.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}