/* Custom Travel Theme Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slider Styles */
.slider-container {
  height: 80vh;
}

.slider-item {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.slider-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
}

.slider-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Admin Dashboard Styles */
.stat-card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  opacity: 0.8;
}

.quick-action-card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
  border: none;
}

.quick-action-card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.quick-action-card .btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 15px;
}

/* Admin Sidebar */
.admin-sidebar {
  background-color: #2c3e50;
  color: white;
  height: 100vh;
  position: fixed;
  overflow-y: auto;
  z-index: 1000;
}

.admin-sidebar .nav-link {
  color: #bdc3c7;
  padding: 12px 20px;
  border-radius: 4px;
  margin: 4px 10px;
  transition: all 0.3s;
}

.admin-sidebar .nav-link:hover, 
.admin-sidebar .nav-link.active {
  background-color: #34495e;
  color: white;
}

.admin-sidebar .nav-link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.admin-main {
  margin-left: 250px;
  padding: 20px;
}

.admin-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  padding: 15px 20px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.admin-header .nav-item .nav-link {
  color: #2c3e50;
}

/* Admin Tables */
.table-card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: none;
}

.table-card .card-header {
  background-color: #2c3e50;
  color: white;
  border-radius: 10px 10px 0 0 !important;
  padding: 10px 20px;
}

.table-card .card-header h3 {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  margin-top: 5px;
}

.table-card .card-body {
  padding: 20px;
}

.table-card .table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border: none;
}

.table-card .table thead tr {
  background-color: #f1f1f1;
}

.table-card .table thead th {
  border: none;
  padding: 15px;
  font-weight: 600;
  color: #2c3e50;
  vertical-align: middle;
}

.table-card .table tbody td {
  padding: 15px;
  vertical-align: middle;
  border-top: 1px solid #eee;
}

.table-card .table tbody tr:hover {
  background-color: #f9f9f9;
}

.table-card .table tbody tr:first-child td {
  border-top: none;
}

/* DataTables Customization */
.dataTables_wrapper .dt-buttons {
  margin-bottom: 15px;
}

.dataTables_wrapper .dt-button {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.dataTables_wrapper .dt-button:hover {
  background-color: #1a252f;
}

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
  width: 200px;
}

.dataTables_wrapper .dataTables_length select {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 6px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #2c3e50 !important;
  background-color: #fff !important;
  border: 1px solid #ddd !important;
  padding: 8px 12px !important;
  margin: 0 2px;
  border-radius: 5px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background-color: #2c3e50 !important;
  color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background-color: #2c3e50 !important;
  color: white !important;
  border-color: #2c3e50 !important;
}

/* Pluto Login/Registration Forms */
.pluto-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(120deg, #ffffff, #6e7b3d);
    padding: 20px;
}
.pluto-form-card {
  width: 100%;
  max-width: 450px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.pluto-form-header {
  background: #2c3e50;
  color: white;
  padding: 25px;
  text-align: center;
}

.pluto-form-header h3 {
  margin: 0;
  font-weight: 600;
}

.pluto-form-body {
  padding: 30px;
}

.pluto-form-group {
  margin-bottom: 20px;
}

.pluto-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.pluto-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.pluto-form-control:focus {
  border-color: #2c3e50;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

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

.pluto-form-control::-moz-placeholder {
  color: #999;
}

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

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

.pluto-form-control::placeholder {
  color: #999;
}

.pluto-form-checkbox {
  display: flex;
  align-items: center;
}

.pluto-form-checkbox input {
  margin-right: 10px;
}

.pluto-form-checkbox label {
  margin-bottom: 0;
}

.pluto-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 5px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
  width: 100%;
}

.pluto-btn-primary {
  color: #fff;
  background-color: #2c3e50;
  border-color: #2c3e50;
}

.pluto-btn-primary:hover {
  color: #fff;
  background-color: #1a252f;
  border-color: #1a252f;
}

.pluto-btn-link {
  color: #2c3e50;
  background-color: transparent;
  border-color: transparent;
  font-weight: 400;
  text-decoration: none;
  width: auto;
  padding: 5px 10px;
  font-size: 14px;
}

.pluto-btn-link:hover {
  color: #1a252f;
  text-decoration: underline;
}

.pluto-alert {
  position: relative;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 5px;
}

.pluto-alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.pluto-alert-danger ul {
  margin: 0;
  padding-left: 20px;
}

.pluto-alert-danger li {
  margin-bottom: 5px;
}

.pluto-alert-danger li:last-child {
  margin-bottom: 0;
}

.pluto-form-footer {
  text-align: center;
  margin-top: 20px;
}

.pluto-form-footer a {
  color: #2c3e50;
  text-decoration: none;
}

.pluto-form-footer a:hover {
  text-decoration: underline;
}

/* Booking Cards */
.booking-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.booking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.booking-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.booking-card .card-body {
  padding: 1.5rem;
}

.booking-card .btn {
  width: 100%;
  font-weight: 600;
}

/* Features Section */
.features-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
  margin: 3rem 0;
}

.feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0d6efd;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
}

.testimonial-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 1rem;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 3rem 0;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.social-icons a {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  .admin-main {
    margin-left: 0;
  }
  
  .admin-header {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
  
  .table-card .table thead th,
  .table-card .table tbody td {
    padding: 10px;
  }
  
  .pluto-form-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-content h1,
  .slider-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p,
  .slider-content p {
    font-size: 1.2rem;
  }
  
  .hero-section,
  .slider-container {
   height: 60vh;
  }
  
  .slider-content {
    padding: 1rem;
    margin: 0 1rem;
  }
  
  .stat-card {
    margin-bottom: 1rem;
  }
  
  .dataTables_wrapper .dt-buttons {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  
  .dataTables_wrapper .dt-button {
    margin-bottom: 5px;
    margin-right: 0;
  }
  
  .dataTables_wrapper .dataTables_filter {
    text-align: left;
    margin-top: 10px;
  }
  
  .dataTables_wrapper .dataTables_filter input {
    width: 100%;
    margin-top: 5px;
  }
}

/* Static Pages */
.page-header {
 background-color: #ffffff;
  color: #1b1b1b;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.page-header h2 {
 margin: 0;
 font-weight: 600;
}

.card-header.bg-primary {
 background-color: #86915d !important;
}

.card-header.bg-primary h2,
.card-header.bg-primary h3 {
 margin: 0;
 font-weight: 600;
}

/* Contact Page Specific Styles */
.contact-icon {
 color: #007bff;
 margin-right: 10px;
}

.form-control:focus {
 border-color: #007bff;
 box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #6e7b3d;
    border-color: #000;
}

.btn-primary:hover {
 background-color: #0069d9;
 border-color: #0062cc;
}

/* Footer Policy Links */
.footer .list-inline-item:not(:last-child)::after {
 content: " | ";
 margin-left: 5px;
}

.footer .list-inline-item a {
 color: #adb5bd;
 text-decoration: none;
}

.footer .list-inline-item a:hover {
 color: white;
 text-decoration: underline;
}
.container-fluid{ 
    margin-top: 15px;
}
.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(255 255 255) !important;
}
.nav-link{
    color: black;
    font-size: 16px;
    font-weight: 700;
    font-family: sans-serif;
    margin: 0px;
    padding: 10px;
}

.nav-link:focus, .nav-link:hover {
    color: rgb(110 123 61);
}
/* About Page Specific Styles */
.about-hero {
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.about-hero h1 {
  font-weight: 700;
}

.about-hero p {
  font-size: 1.25rem;
}

.stat-number {
  font-weight: 700;
  color: #ffffff;
}

.team-member img {
  border: 5px solid #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  margin: 0 auto 20px;
}
/* Improved Footer Styles */
.modern-footer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                url('/images/iwtcab/iwt12.jpeg') center/cover no-repeat;
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top: 3px solid #6e7b3d;
}

.modern-footer:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)), 
                url('/images/iwtcab/iwt12.jpeg') center/cover no-repeat;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0px;
  background: #ffffff;
}

.modern-footer h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.modern-footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #00b4d8;
  border-radius: 3px;
}

.modern-footer p {
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modern-footer .footer-logo {
  max-width: 300px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
}

.modern-footer:hover .footer-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7));
}

.modern-footer .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.modern-footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modern-footer .social-icons a:hover {
  background: #00b4d8;
  transform: translateY(-3px);
}

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

.modern-footer .footer-links li {
  margin-bottom: 0.75rem;
}

.modern-footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

.modern-footer .footer-links a:hover {
  color: #6e7b3d;
  transform: translateX(3px);
  background: rgba(110, 123, 61, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.modern-footer .contact-info li {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.modern-modal .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modern-modal .modal-header {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  border: none;
  padding: 1.5rem;
}

.modern-modal .modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.modern-modal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modern-modal .modal-body {
  padding: 0rem;
}

.modern-modal .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.modern-modal .form-control {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.modern-modal .form-control:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
  background-color: #fff;
}

.modern-modal .form-control::placeholder {
  color: #94a3b8;
}

.modern-modal .form-check-input {
  border: 2px solid #cbd5e1;
}

.modern-modal .form-check-input:checked {
  background-color: #00b4d8;
  border-color: #00b4d8;
}

.modern-modal .form-check-label {
  color: #64748b;
}

.modern-modal .btn-primary {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.modern-modal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.modern-modal .btn-link {
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
}

.modern-modal .btn-link:hover {
  color: #00b4d8;
  text-decoration: underline;
}

.modern-modal .btn-outline-secondary {
  border: 2px solid #cbd5e1;
  color: #64748b;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Color Scheme and Typography Updates */
:root {
  --primary-color: #0077b6;
  --primary-light: #00b4d8;
  --primary-dark: #005f8d;
  --secondary-color: #2a9d8f;
  --accent-color: #e9c46a;
  --text-dark: #333333;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  --border-color: #dee2e6;
  --success-color: #2a9d8f;
  --warning-color: #e9c46a;
  --danger-color: #e76f51;
}

/* Updated Typography */
body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 800;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
}

/* Updated Button Styles */
.btn {
  padding: 5px 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border: none;
  padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

/* Updated Card Styles */
.card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 12px rgb(0 0 0 / 32%);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.card-header {
    background: #86915d !important;
    color: white;
    border: none;
    font-weight: 600;
    padding: 10px;
}

.card-body {
  padding: 1.5rem;
}

/* Updated Navigation */
/* .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem; 
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
} */

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgb(180 180 180 / 10%);
}

/* Updated Form Styles */
.form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
/* Additional Responsive Adjustments */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .display-1 {
    font-size: 3rem;
  }
  
  .display-2 {
    font-size: 2.5rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .modern-footer .policy-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .newsletter-form .form-control {
    width: 100%;
  }
  
  .newsletter-form .btn-subscribe {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .card-body {
    padding: 1.25rem;
  }
  
  .modern-footer {
    text-align: center;
    
/* Contact Page Specific Styles */
.contact-info-list .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.map-section {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

/* Additional responsive adjustments for contact page */
@media (max-width: 992px) {
  .contact-info-list .icon-box {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .contact-info-list .icon-box {
    width: 40px;
    height: 40px;
  }
  
  .contact-form .btn {
    padding: 0.75rem;
  }
/* Additional responsive adjustments for contact page */
@media (max-width: 992px) {
  .contact-page .hero-section {
    height: 50vh;
  }
  
  .contact-info-list .icon-box {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .contact-page .hero-section {
    height: 40vh;
  }
  
  .contact-info-list .icon-box {
/* Split Layout Modal Styles */
.split-modal {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.split-modal .modal-image {
  flex: 1;
  background: linear-gradient(rgba(0, 119, 182, 0.8), rgba(0, 180, 216, 0.8)), url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1080&q=80') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.split-modal .modal-image .content {
  max-width: 300px;
}

.split-modal .modal-image h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.split-modal .modal-image p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.split-modal .modal-form {
  flex: 1;
  padding: 2rem;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-modal .modal-header {
  background: none;
  padding: 0 0 1.5rem 0;
  border: none;
  color: var(--text-dark);
}

.split-modal .modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.split-modal .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.split-modal .form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.split-modal .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
  background-color: #fff;
}

.split-modal .form-control::placeholder {
  color: #94a3b8;
}

.split-modal .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.split-modal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.split-modal .form-check-input {
  border: 2px solid #cbd5e1;
}

.split-modal .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.split-modal .form-check-label {
  color: #64748b;
}

.split-modal .modal-footer {
  background: none;
  border: none;
  padding: 1.5rem 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.split-modal .modal-footer .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.split-modal .modal-footer .btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.split-modal .modal-footer .btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.split-modal .alert-danger {
  background-color: #fee2e2;
  border: none;
  border-radius: 8px;
  color: #991b1b;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.split-modal .alert-danger ul {
  margin: 0;
  padding-left: 1.25rem;
}

.split-modal .text-center p {
  color: #64748b;
  margin-bottom: 1rem;
}

.split-modal .btn-outline-secondary {
  border: 2px solid #cbd5e1;
  color: #64748b;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.split-modal .btn-outline-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: rgba(0, 119, 182, 0.05);
}

/* Responsive adjustments for split modals */
@media (max-width: 992px) {
  .split-modal {
    flex-direction: column;
  }
  
  .split-modal .modal-image {
    min-height: 200px;
    padding: 1.5rem;
  }
  
  .split-modal .modal-form {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .split-modal .modal-image {
    min-height: 150px;
  }
  
  .split-modal .modal-form {
    padding: 1.25rem;
  }
  
  .split-modal .modal-title {
    font-size: 1.5rem;
  }
}
    width: 40px;
    height: 40px;
  }
  
  .contact-form .btn {
    padding: 0.75rem;
  }
  
  .map-section {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-page .hero-section {
    height: 35vh;
  }
  
  .contact-form .form-group {
    margin-bottom: 1rem;
  }
}
}
  }
  
  .modern-footer .social-icons {
    justify-content: center;
  }
  
  .modern-footer .contact-info li {
    justify-content: center;
  }
  
  .modern-footer h5 {
    font-size: 1.1rem;
    padding: 0.8rem;
  }
  
  .modern-footer .footer-logo {
    max-width: 140px;
  }
  
  .modern-footer .footer-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .modern-footer .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .modern-footer .copyright::after {
    font-size: 0.75rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .display-1 {
    font-size: 2.5rem;
  }
  
  .display-2 {
    font-size: 2rem;
  }
  
  .display-3 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
  }
  
  .form-control {
    padding: 0.6rem 0.8rem;
  }
}
}

/* Updated Alert Styles */
.alert {
  border-radius: 8px;
  border: none;
  padding: 1rem 1.25rem;
}

.alert-danger {
  background-color: #fff5f5;
  color: var(--danger-color);
}

.alert-success {
  background-color: #f0fff4;
  color: var(--success-color);
}

.alert-warning {
  background-color: #fffbeb;
  color: var(--warning-color);
}

/* Updated List Styles */
.list-unstyled li {
  margin-bottom: 0.75rem;
}

.list-unstyled a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.list-unstyled a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* Updated Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-right: 0.75rem;
}

.social-icons a:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 180, 216, 0.3);
}
.modern-modal .btn-outline-secondary:hover {
  border-color: #00b4d8;
  color: #00b4d8;
  background-color: rgba(0, 180, 216, 0.05);
}

.modern-modal .alert-danger {
  background-color: #fee2e2;
  border: none;
  border-radius: 8px;
  color: #991b1b;
}

.modern-modal .alert-danger ul {
  margin: 0;
  padding-left: 1.25rem;
}

.modern-modal .text-center p {
  color: #64748b;
  margin-bottom: 1rem;
}


.modern-footer .contact-info span {
  color: #ffffff;
  line-height: 1.6;
}
.modern-footer .contact-info li i{
    font-size: 26px;
    margin-right: 10px;
    margin-top: 10px;
    color: #ffffff;
}
.modern-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  position: relative;
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.modern-footer .policy-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.modern-footer .policy-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.modern-footer .policy-links a:hover {
  color: #00b4d8;
}

/* Newsletter Form */
.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #00b4d8;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
  color: #fff;
}

.newsletter-form .form-control::placeholder {
  color: #a0aec0;
}

.newsletter-form .btn-subscribe {
  background: #00b4d8;
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form .btn-subscribe:hover {
  background: #0096c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}
/* Gallery Page Styles */
.gallery-page {
  padding: 3rem 0;
}

.gallery-page .hero-section {
  margin-bottom: 0;
}

.gallery-container {
  padding: 2rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 250px;
}

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

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

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

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 119, 182, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-content {
/* Policy Pages Styles */
.policy-page .hero-section {
  margin-bottom: 0;
}

.policy-content {
  padding: 3rem 0;
}

.policy-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.policy-card .card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  font-weight: 600;
  padding: 1.5rem;
}

.policy-card .card-body {
  padding: 2rem;
}

.policy-card h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(0, 119, 182, 0.1);
}

.policy-card h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-card ul {
  padding-left: 1.5rem;
}

.policy-card ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.policy-card .list-check {
  list-style: none;
  padding-left: 0;
}

.policy-card .list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.policy-card .list-check li:before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.policy-card hr {
  margin: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-card .card-body > p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.policy-card .card-body > p:last-child {
  margin-bottom: 0;
}

.policy-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.policy-card a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* Responsive adjustments for policy pages */
/* Auth Pages Styles */
.auth-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-background {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-header {
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  margin: -1px -1px 0 -1px;
  border-radius: 15px 15px 0 0;
}

.auth-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.auth-body {
  padding: 2rem;
}

.auth-body .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.auth-body .form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.auth-body .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
  background-color: #fff;
}

.auth-body .form-control::placeholder {
  color: #94a3b8;
}

.auth-body .input-group-text {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 8px 0 0 8px;
}

.auth-body .input-group .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.auth-body .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.auth-body .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.auth-body .btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0;
}

.auth-body .btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.auth-body .form-check-input {
  border: 2px solid #cbd5e1;
}

.auth-body .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.auth-body .form-check-label {
  color: #64748b;
}

.auth-footer {
  padding: 1rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-footer p {
  margin: 0.5rem 0;
  color: #64748b;
}

.auth-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.alert-danger {
  background-color: #fee2e2;
  border: none;
  border-radius: 8px;
  color: #991b1b;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.alert-danger ul {
  margin: 0;
  padding-left: 1.25rem;
}

/* Responsive adjustments for auth pages */
@media (max-width: 992px) {
  .auth-background {
    padding: 1rem;
  }
  
  .auth-card {
    margin: 1rem;
  }
  
  .auth-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .auth-page {
    padding: 1rem;
  }
  
  .auth-card {
    margin: 0;
    border-radius: 10px;
  }
  
  .auth-header {
    padding: 1.5rem 1.5rem 1rem;
    border-radius: 10px 10px 0 0;
  }
  
  .auth-header h2 {
    font-size: 1.5rem;
  }
  
  .auth-body {
    padding: 1.5rem;
  }
  
  .auth-footer {
    padding: 1rem 1.5rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .auth-background {
    padding: 0.5rem;
  }
  
  .auth-header {
    padding: 1rem;
  }
  
  .auth-header h2 {
    font-size: 1.35rem;
  }
  
  .auth-body {
    padding: 1rem;
  }
  
  .auth-footer {
    padding: 0.75rem 1rem 1rem;
  }
}
@media (max-width: 992px) {
  .policy-content {
    padding: 2rem 0;
  }
  
  .policy-card .card-body {
    padding: 1.5rem;
  }
  
  .policy-card h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .policy-content {
    padding: 1.5rem 0;
  }
  
  .policy-card .card-body {
    padding: 1.25rem;
  }
  
  .policy-card h2 {
    font-size: 1.5rem;
  }
  
  .policy-card h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .policy-content {
    padding: 1rem 0;
  }
  
  .policy-card .card-body {
    padding: 1rem;
  }
  
  .policy-card h2 {
    font-size: 1.35rem;
  }
  
  .policy-card h4 {
    font-size: 1.15rem;
  }
}
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
}

.close-lightbox:hover {
  color: #00b4d8;
}

.lightbox-caption {
  text-align: center;
  color: white;
  padding: 10px;
  font-size: 18px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

/* Responsive adjustments for gallery */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }
  
  .gallery-item {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  .gallery-page {
    padding: 1.5rem 0;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item {
    height: 140px;
  }
  
  .lightbox-content {
    max-width: 95%;
  }
  
  .close-lightbox {
    font-size: 30px;
    top: 10px;
    right: 15px;
  }
}
/* Additional enhancements for modal forms */
.modern-modal .split-modal {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modern-modal .modal-image {
  background: linear-gradient(rgba(0, 119, 182, 0.9), rgba(0, 180, 216, 0.9)), url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1080&q=80') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.modern-modal .modal-image .content {
  max-width: 300px;
}

.modern-modal .modal-image h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modern-modal .modal-image p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.modern-modal .modal-form {
  padding: 2rem;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modern-modal .modal-header {
  background: none;
  padding: 0 0 0 0;
  border: none;
  color: var(--text-dark);
}

.modern-modal .modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.modern-modal .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.modern-modal .form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.modern-modal .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
  background-color: #fff;
}

.modern-modal .form-control::placeholder {
  color: #94a3b8;
}

/* .modern-modal .input-group-text {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 8px 0 0 8px;
} */

.modern-modal .input-group .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.modern-modal .btn-primary {
  /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); */
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.modern-modal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.modern-modal .form-check-input {
  border: 2px solid #cbd5e1;
}

.modern-modal .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.modern-modal .form-check-label {
  color: #64748b;
}

.modern-modal .modal-footer {
  background: none;
  border: none;
  padding: 1.5rem 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modern-modal .modal-footer .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.modern-modal .modal-footer .btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  background-color: #b0e0e6;
}

.modern-modal .modal-footer .btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.modern-modal .alert-danger {
  background-color: #fee2e2;
  border: none;
  border-radius: 8px;
  color: #991b1b;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.modern-modal .alert-danger ul {
  margin: 0;
  padding-left: 1.25rem;
/* Additional vibrant colors and visual elements for modals */
.modern-modal {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modern-modal .modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  padding: 1.5rem;
  border-radius: 12px 12px 0 0;
}

.modern-modal .modal-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
}

.modern-modal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

.modern-modal .btn-close:hover {
  opacity: 1;
}

.modern-modal .modal-body {
  padding: 2rem;
}

.modern-modal .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.modern-modal .form-control {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.modern-modal .form-control:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
  background-color: #fff;
}

.modern-modal .form-control::placeholder {
  color: #94a3b8;
}

.modern-modal .input-group-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 8px 0 0 8px;
}

.modern-modal .input-group .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.modern-modal .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.modern-modal .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.modern-modal .form-check-input {
  border: 2px solid #cbd5e1;
}

.modern-modal .form-check-input:checked {
  background-color: #00b4d8;
  border-color: #00b4d8;
}

.modern-modal .form-check-label {
  color: #64748b;
}

.modern-modal .modal-footer {
  background: #f1f5f9;
  border: none;
  padding: 1.5rem 2rem;
/* Additional responsive adjustments for modals */
@media (max-width: 576px) {
  .modern-modal .modal-header {
    padding: 1rem;
  }
  
  .modern-modal .modal-title {
    font-size: 1.25rem;
  }
  
  .modern-modal .modal-body {
    padding: 1.5rem;
  }
  
  .modern-modal .form-control {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .modern-modal .input-group-text {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .modern-modal .btn-primary {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .modern-modal .modal-footer {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
  }
  
  .modern-modal .modal-footer .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .modern-modal .modal-body {
    padding: 1rem;
  }
  
  .modern-modal .form-label {
    font-size: 0.9rem;
  }
  
  .modern-modal .input-group {
    flex-direction: column;
  }
  
  .modern-modal .input-group-text {
    border-radius: 8px 8px 0 0;
    border-bottom: none;
  }
  
  .modern-modal .input-group .form-control {
    border-left: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
  }
}
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 12px 12px;
}

.modern-modal .modal-footer .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.modern-modal .modal-footer .btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.modern-modal .modal-footer .btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.modern-modal .alert-danger {
  background-color: #fee2e2;
  border: none;
  border-radius: 8px;
  color: #991b1b;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.modern-modal .alert-danger ul {
  margin: 0;
  padding-left: 1.25rem;
}

.modern-modal .text-center p {
  color: #64748b;
  margin-bottom: 1rem;
}

.modern-modal .btn-outline-secondary {
  border: 2px solid #cbd5e1;
  color: #64748b;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.modern-modal .btn-outline-secondary:hover {
  border-color: #00b4d8;
  color: #00b4d8;
  background-color: rgba(0, 180, 216, 0.05);
}
}

.modern-modal .text-center p {
  color: #64748b;
  margin-bottom: 1rem;
}

.modern-modal .btn-outline-secondary {
  border: 2px solid #cbd5e1;
  color: #64748b;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.modern-modal .btn-outline-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: rgba(0, 119, 182, 0.05);
}

/* Responsive adjustments for modern modals */
@media (max-width: 992px) {
  .modern-modal .split-modal {
    flex-direction: column;
  }
  
  .modern-modal .modal-image {
    min-height: 200px;
    padding: 1.5rem;
  }
  
  .modern-modal .modal-form {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .modern-modal .modal-image {
    min-height: 150px;
  }
  
  .modern-modal .modal-form {
    padding: 1.25rem;
  }
  
  .modern-modal .modal-title {
    font-size: 1.5rem;
  }
}

/* .card-title{
  float: left;
} */
/* .card-tools a{
    float: right;
    border: 1px solid white;
    color: white;
    padding: 5px 5px;
    font-size: 14px;
} */

.bg-theme{
    background-color: #6e7b3d;
    color: white;
    font-size: 18px;
}
.bg-theme-stag{
   background-color: #476a1b;
}
.ratio-16x9 {
    --bs-aspect-ratio: 20.25%;
}
.btn-primary {
    background: #6e7b3d;
    border: none;
    padding: 5px 15px;
    font-size: 14px;
}
.btn-secondary {
    background-color: #272500;
    padding: 5px 10px;
    font-size: 12px;
}

.btn-pluto-secondary{
    background-color: azure;
}

.card-tools {
    float: right;
}
.btn-pluto-primary{
    background-color: #a8e4ff;
}
.badge{
  color: #000;
}
.booking-breakdown-card{
  background-color: #f4f4f4;
  padding: 10px;  
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: none;
  margin-bottom: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-title{
  color: #000000 !important;
  font-family: 'DM Sans';
  line-height: 30px;
  text-transform: uppercase;
}
.item-card .card{
  background-image: conic-gradient(#ffffff, yellow, #f1c51e, #ffc107, #ffffff);
}
.bookNowBtn{
  width: 45%;
  background-color: #3d3e3b;
  border: none;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.card-text{
  font-size: 14px;
  color: #000000;
}
.bookingPrice{
  font-size: 20px;
  color: #000000 !important;
  font-weight: 900;
}
.bookNowBtn:hover
 {
    background: #6e7b3d;
    transform: translateY(0px);
    box-shadow:none;
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: pulse 2s infinite;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    min-width: 200px;
    justify-content: center;
    gap: 8px;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-link i {
    font-size: 20px;
    margin-right: 5px;
}

.whatsapp-text {
    font-size: 13px;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        padding: 10px 14px;
        min-width: 180px;
        font-size: 13px;
    }
    
    .whatsapp-text {
        font-size: 12px;
    }
}