/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
#error-message,
#date-error {
    font-size: 18px;
    font-weight: bold;
    color: #e60000; /* sharp red */
    animation: shake-error 0.4s ease-in-out;
    animation-iteration-count: 1;
}

@keyframes shake-error {
    0% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}


/* ====================== */
/* NEW FLOATING ADMIN PANEL STYLES */
/* ====================== */
.admin-access-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.admin-lock {
    cursor: pointer;
    font-size: 15px;
    background: #fff;
    width: 5px;
    height: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.admin-lock:hover {
    transform: scale(1.1);
    background: #f0f0f0;
}

.admin-panel {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 300px;
    max-height: 70vh;
    overflow-y: auto;
    display: none; /* Initially hidden */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.admin-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: none; /* Remove old fadeIn animation */
}

/* ====================== */
/* EXISTING STYLES (Preserved) */
/* ====================== */

/* Form Elements */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.form-input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Buttons */
.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background-color: #3a80d2;
}

.btn-warning {
    background-color: #f0ad4e;
    color: white;
}

.btn-warning:hover {
    background-color: #ec971f;
}

.btn-danger {
    background-color: #d9534f;
    color: white;
}

.btn-danger:hover {
    background-color: #c9302c;
}

.btn-secondary {
    background-color: #777;
    color: white;
}

.btn-secondary:hover {
    background-color: #666;
}

/* Error Message */
/* Change this: */
/* .error-message { ... } */

/* To this (add one line): */
.error-message {
    color: #d9534f;
    font-size: 14px;
    margin-top: 5px;
    padding: 5px;
    border-radius: 3px;
    display: block; /* Ensures it takes full width available in its container & appears on its own line */
}

/* Change this: */
/* .hidden { */
/*     display: none; */
/* } */

/* To this (optional, but stronger): */
.hidden {
    display: none !important;
}

/* Booking Container */
.booking-container {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 30px; /* Added spacing from admin panel */
}

/* Disabled Dates List */
.disabled-dates-list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.disabled-dates-list h4 {
    margin-bottom: 10px;
    color: #555;
}

#disabled-dates-container {
    list-style-type: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
}

#disabled-dates-container li {
    padding: 8px 10px;
    border-bottom: 1px solid #f0f0f0;
}

#disabled-dates-container li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .admin-access-container {
        top: 10px;
        right: 10px;
    }

    .admin-panel {
        width: 280px;
        max-height: 60vh;
        position: fixed;
        right: 10px;
        top: 60px;
    }

    .booking-container {
        padding: 15px;
        margin-top: 80px; /* More space for mobile */
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Animation (kept for other potential uses) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Style for disabled dates on the calendar */
.date-cell.disabled {
    color: #ccc !important; /* Faded text */
    background-color: #eee !important; /* Optional: Faded background */
    cursor: not-allowed !important; /* Indicate it's not selectable */
    /* Add any other visual cues you want */
}
/* Main form styles (optional) */
body {
    font-family: Arial, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="email"],
input[type="date"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

.faq-btn {
  width: 70px;
  height: 70px;
  font-size: 15px;
  background-color: #ff9800;
  color: white;
  border: none;
  border-radius: 50%;
  position: fixed;
  bottom: 250px;
  right: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatDown 8s cubic-bezier(0.2, 0.7, 0.4, 1) forwards;
}

@keyframes floatDown {
  0% {
    transform: translateY(-100vh) rotate(-15deg);
    opacity: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  20% {
    transform: translateY(-80vh) rotate(-10deg);
    opacity: 0.2;
  }
  40% {
    transform: translateY(-60vh) rotate(-5deg);
    opacity: 0.4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  60% {
    transform: translateY(-40vh) rotate(0deg);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-20vh) rotate(2deg);
    opacity: 0.9;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  }
  90% {
    transform: translateY(-5vh) rotate(0deg);
    opacity: 1;
  }
  95% {
    transform: translateY(2vh) rotate(0deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* Animation Sets */
.faq-btn.float-rotate {
  animation: float 4s ease-in-out infinite, 
             rotate 5s ease-in-out infinite;
}

.faq-btn.float-pulse {
  animation: float 3s ease-in-out infinite,
             pulse 3s ease infinite;
}

.faq-btn.float-shake {
  animation: float 5s ease-in-out infinite,
             shake 8s ease infinite;
}

.faq-btn.full-animation {
  animation: float 4s ease-in-out infinite,
             rotate 7s ease-in-out infinite,
             pulse 3s ease infinite,
             colorPulse 5s ease infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-15px) translateX(3px); }
  50% { transform: translateY(5px) translateX(-3px); }
  75% { transform: translateY(-10px) translateX(2px); }
}

@keyframes rotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(1deg); }
}

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

@keyframes colorPulse {
  0%, 100% { background-color: #ff9800; }
  50% { background-color: #ffab28; }
}

@keyframes shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: translate(-3px, -1px) rotate(-1deg); }
  20%, 40%, 60%, 80% { transform: translate(3px, 1px) rotate(1deg); }
}

@keyframes attention {
  0%, 100% { transform: scale(1) rotate(0deg); background-color: #ff9800; }
  25% { transform: scale(1.15) rotate(5deg); background-color: #ffab28; }
  50% { transform: scale(1.05) rotate(-5deg); background-color: #ff9800; }
  75% { transform: scale(1.2) rotate(3deg); background-color: #ffc107; }
}

.faq-btn:hover {
  background-color: #e68900;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  animation-play-state: paused;
}

/* FAQ Container Styles (keep your existing styles) */
.faq-container {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 70vh;
  overflow-y: auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 999;
  animation: fadeIn 0.3s ease-out;
}

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

/* Existing CSS (keep all your current styles below this line) */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
}

/* ... rest of your existing CSS ... */body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Keeps content aligned at the top */
  height: auto;
}

.time-note {
  color: #888;
  font-size: 0.9em;
}

#hotel-name::placeholder,
#whatsapp::placeholder,
#email::placeholder,
#full-name::placeholder,
#remark::placeholder {
  color: #888;
  font-size: 0.9em;
}

.note {
  color: #888;
  font-size: 0.9em;
  display: block;
  margin-top: 5px;
}

.wrapper {
  display: flex;
  align-items: stretch; /* Ensures both elements stretch to the same height */
  gap: 20px; /* Space between the form and the image */
  max-width: 750px;
  width: 100%;
}



.tour-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Product Container */
.product-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Product Logo */
.product-logo {
    width: 150px;
    height: auto;
    border: px solid #c6c8d0;
    border-radius: 5px;
}

/* Star Rating */
.stars {
    margin: 0;
    font-size: 1.2em;
    color: #FFD700;
}

/* Half Star Effect */
.half-star {
    position: relative;
    display: inline-block;
}

.half-star::before {
    content: "★";
    position: absolute;
    width: 50%;
    overflow: hidden;
    color: #FFD700;
}

.half-star::after {
    content: "★";
    color: #ccc;
}

/* Review Text */
.review-text {
    margin: 0;
    color: #555;
    font-size: 0.9em;
}
.package-box {
  display: inline-block;
  text-align: center;
  margin: 10px;
  position: relative;
}

input[type="radio"] {
  display: none; /* Hide the default radio button */
}

.package-content {
  display: block;
  cursor: pointer;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

input[type="radio"]:checked + .package-content {
  border-color: #007bff; /* Highlight selected package */
  background-color: #f0f8ff;
}

.image-box {
  width: 185px; /* Box width */
  height: 135px; /* Box height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid #ddd;
}

.image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Makes sure the image fits inside */
  transition: transform 0.3s ease-in-out;
}

.package-content:hover .image-box img {
  transform: scale(1.05); /* Subtle zoom effect */
}

.package-info {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

.package-name {
  font-weight: bold;
  display: block;
}

.package-price {
  color: #007bff;
  display: block;
}

.time-note {
  color: #777;
  font-size: 12px;
}
.package-price, .extra-price {
  color: #007bff;
  display: block;
}
.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
  width: 80%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.button-group {
  display: flex;
  gap: 10px;
}

.button-group label {
  padding: 10px 15px;
  border: 2px solid #007bff;
  border-radius: 5px;
  cursor: pointer;
  background-color: white;
  transition: 0.3s;
  display: inline-block;
}

.button-group input[type="radio"] {
  display: none;
}

.button-group input[type="radio"]:checked + label {
  background-color: #007bff;
  color: white;
}

button {
  width: 100%;
  padding: 15px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
/* Ensuring the image matches the text size */
.label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Space between text and image */
}

.label-with-icon img {
  width: 1.5em; /* Matches font size */
  height: 1.5em; /* Keeps it proportional */
  vertical-align: middle;
}
/* Ensuring the image matches the text size */
.label-with-icon1 {
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Space between text and image */
}

.label-with-icon1 img {
  width: 1.5; /* Matches font size */
  height: 1.5em; /* Keeps it proportional */
   transform: translateY(7px); /* Moves the image up */
}



.logo {
  text-align: center;
  margin-bottom: 10px;
}

.logo img {
  max-width: 100%;
  height: auto;
}

#adult-quantity,
#children-quantity,
#infant-quantity {
  width: 50px;
  padding: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}



#booking-summary {
  width: 100%;
  margin-top: 15px;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  text-align: left;
}

#booking-summary p {
  font-size: 1em;
  line-height: 1.5em;
color: #555; /* Dark Gray */
}

#booking-summary p.red-note {
  color: red;
  font-weight: bold;
}

#hotel-name-container {
  display: none;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .form-container,
  .tour-image {
    width: 100%;
  }

  .tour-image img {
    height: auto;
  }

  button {
    width: 100%;
  }
}
.form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 85%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 1150px; /* Adjust this value as needed */
}

.faq-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 5px;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #fff;
    border-left: 3px solid #28a745;
    margin-top: 5px;
}

.faq-item.active .faq-answer {
    display: block;
}
.slideshow-container {
    position: relative;
    width: 100%;
    height: 200px; /* Adjust this height */
    overflow: hidden;
    border-radius: 15px; /* Curved edges */
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Smooth fade transition */
}

.slides img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 95%; /* Start below */
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes panUp {
    from {
        top: 95%;
    }
    to {
        top: 50%;
    }
}

/* New fade-out effect */
.fade-out {
    opacity: 0 !important;
    transition: opacity 2s ease-in-out;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}


body {
  display: flex;
  display-content: flex-end;
  align-items: flex-end;
  min-height: 50vh;
  background: #333;
}

footer {
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 50px;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer .social_icon, footer .menu {
  position: relative;
  display: flex;
  justify-content:center;
  align-items:center;
  margin: 10px 0;
}

footer .social_icon li, footer .menu li {
  list-style: none;
}
footer .social_icon li a {
  font-size: 2em;
  color: #ccc;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
footer .social_icon li a:hover {
  transform: translateY(-15px);
  color: blue;
}

footer .menu li a {
  font-size: 1.0em;
  color: #ccc;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
}
footer .menu li a:hover {
  opacity: 1;
  color: #fff;
}
p {
  color : #eee;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

/*wave and animation*/
footer .wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 70px;
  background: url(https://i.ibb.co/rZt4Nhg/wave.png);
  background-size: 500px 50px;
}

footer .wave#wave1 {
  z-index: 900;
  opacity: 1;
  bottom: 0;
  animation: animateWave 12s linear infinite;
}

footer .wave#wave2 {
  z-index: 899;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave_02 7s linear infinite;
}
footer .wave#wave3 {
  z-index: 700;
  opacity: 0.2;
  bottom: 0;
  animation: animateWave 6s linear infinite;
}

footer .wave#wave4 {
  z-index: 799;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave_02 5s linear infinite;
}

@keyframes animateWave {
  0%{
    background-position-x: 500px; 
  }
  100%{
    background-position-x: 0px; 
  }
}

@keyframes animateWave_02 {
  0%{
    background-position-x: 0px; 
  }
  100%{
    background-position-x: 1000px; 
  }
}
/* Success Page - Auto Adjust to Screen Size */
#success-page {
  max-width: 100%; /* Adjust width dynamically */
  padding: 5vw; /* Responsive padding */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto; /* Center on screen */
}

/* Booking Summary - Auto Adjust to Screen Size */
#booking-summary {
  width: 100%;
  max-width: 600px; /* Prevents it from becoming too large */
  margin: 15px auto; /* Centers it on the screen */
  padding: 4vw; /* Responsive padding */
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  text-align: left;
}

/* Booking Summary Text */
#booking-summary p {
  font-size: 1em;
  line-height: 1.5em;
  color: #555; /* Dark Gray */
}

/* Red Note - Important Messages */
#booking-summary p.red-note {
  color: red;
  font-weight: bold;
}

/* Responsive Design for Small Screens */
@media (max-width: 480px) {
  #success-page {
    padding: 20px;
  }
  #booking-summary {
    padding: 15px;
  }
  #booking-summary p {
    font-size: 0.9em;
  }
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#countdown-before {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.countdown {
    font-size: 30px;
    font-weight: bold;
    color: #4a4a4a;
    transition: color 0.5s ease-in-out;
    position: relative;
    z-index: 2; /* Ensures countdown stays in front */
}

.flashing {
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Turtle animation */
#turtle {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 1;
    transition: left 3s linear, top 3s ease-in-out;
    animation: wave 4s ease-in-out infinite alternate, randomMove 3s ease-in-out infinite alternate;
}

/* Turtle waving effect */
@keyframes wave {
    0% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-55%) rotate(10deg); }
    100% { transform: translateY(-50%) rotate(0deg); }
}

/* Additional random effect */
@keyframes randomMove {
    0% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-45%) rotate(-10deg); }
    50% { transform: translateY(-50%) rotate(10deg); }
    75% { transform: translateY(-55%) rotate(-5deg); }
    100% { transform: translateY(-50%) rotate(0deg); }
}


#countdown-after {
    font-size: 1rem;
    font-weight: bold;
    color: rgba(255, 0, 0, 0.5); /* Transparent red */
    text-align: center;
    margin-top: 12px;
    text-transform: uppercase;
}
#countdown-before:first-of-type {
    font-size: 1.4rem; /* Adjust as needed */
    font-weight: bold;
}
.faded-note {
    color: Sky blue;
    font-size: 0.9rem; /* Slightly smaller */
    opacity: 0.7; /* Makes it slightly faded */
}
.section-title {
    font-size: 1rem; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 10px;
    color: #D35400; /* Dark gray */
} /* <<< ADDED THIS CLOSING BRACE */

.spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
  /* You might want to add font-size, margin-left, color here if needed */
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
  // Make sure this CSS is in your stylesheet:
/*
.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slides:first-child {
    opacity: 1;
}

.faq-container {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 70vh;
    overflow-y: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 999;
}

#expandable-section {
    overflow: hidden;
    height: 0;
    transition: height 0.5s ease, padding 0.5s ease;
    padding: 0;
}
    /* Error highlighting */
.error-field {
  border: 1px solid red !important;
}

/* FAQ styling */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item:not(.active) .faq-answer {
  display: none;
}

/* Next Button States - KEEP THIS (useful for disabled state) */
#next-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Expandable Section - KEEP THIS (necessary for form expansion) */
#expandable-section {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
button[type="submit"] {
  width: 100%;
  padding: 18px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3;
  transform: scale(1.2);
}
.label-blue {
  color: grey !important; /* Soft modern blue */
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}