/* ============================================
   GENERAL STYLING & RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  padding-top: 70px;
}

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.content-wrapper {
  flex: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #0c0f18, #1e2530, #747f91);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.logo img {
  max-height: 50px; /* Adjust height as needed */
  width: auto; /* Maintain aspect ratio */
  display: block;
}

/* Ensure logo aligns properly within the header */
.logo {
  display: flex;
  align-items: center;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.language-switcher form {
  display: flex;
  align-items: center;
}

.language-switcher select {
  background: #fff;
  color: #333;
  font-size: 13px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 3px;
}

/* Style for Hover Effect */
.language-switcher select:hover {
  border-color: #003580;
}

nav {
  margin-right: 45px;
  z-index: 1000;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: #f5f5f5;
  transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #cf9d58;
}

/* Style for Active Navigation Links */
.nav-links a.active {
  border-bottom: 3px solid #cf9d58; /* Gold underline */
  padding-bottom: 3px; /* Space between text and underline */
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  color: #f5f5f5 !important;
}

#mobile-menu {
  color: #f5f5f5;
}

.menu-toggle .bar {
  background: #f5f5f5 !important;
  height: 3px;
  width: 25px;
  margin: 4px 0;
}

#confirmation-message {
  list-style: none;
  padding: 10px;
  margin: 10px auto;
  max-width: 90%; /* Use a percentage for better responsiveness */
  text-align: left;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  font-size: 16px; /* Default font size */
  white-space: normal; /* Allow text to wrap */
}

/* Success Message */
#confirmation-message .success {
  background-color: #28a745; /* Green */
  color: white;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
}

/* Error Message */
#confirmation-message .error {
  background-color: #dc3545; /* Red */
  color: white;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.checkin-form input {
  padding: 10px;
  width: 250px;
  margin-right: 10px;
  border: none;
  border-radius: 5px;
}

.checkin-form button {
  padding: 10px 15px;
  border: solid 1px white;
  background: linear-gradient(90deg, #002147, #003580, #0056b3);
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

/* How to Use Modal */
.how-to-use-link {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}

.how-to-use-link a {
  color: #ffd700; /* Gold color */
  text-decoration: underline;
  font-weight: 600;
  font-size: 1rem;
}

.how-to-use-link a:hover {
  color: #ffc107; /* Lighter gold on hover */
}

/* Modal Background */
.modal {
  display: none; /* Ensure modal is hidden initially */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal Content */
.modal-content {
  background: white;
  padding: 25px;
  color: #333;
  width: 85%;
  max-width: 450px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.close:hover {
  color: #ff4500;
}

.logout-btn {
  padding: 7px 12px;
  margin-top: -10px;
  border: solid 1px white;
  background: linear-gradient(90deg, #002147, #003580, #0056b3);
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

/* Footer Styling */
footer {
  /* background: linear-gradient(90deg, #002147, #003580, #0056b3); */
  background: linear-gradient(90deg, #0c0f18, #1e2530, #262e3c);
  color: #f5f5f5;
  padding: 5px 10px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.email {
  text-decoration: none;
}

.footer-container p {
  font-size: 13px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

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

.footer-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 13px;
}

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

/* Footer Pages Styling */
.footer-page-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-page-container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.footer-page-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.footer-page-container ul {
  padding-left: 20px;
}

.footer-page-container a {
  color: #0056b3;
  text-decoration: underline;
}

.footer-page-container a:hover {
  color: #003580;
}

.email a {
  color: #f5f5f5; /* Default color */
  text-decoration: none; /* Remove underline */
}

.email a:visited {
  color: #f5f5f5; /* Ensures visited links do not change color */
}

.email a:hover {
  color: #ffd700; /* Optional: Change color on hover */
}

.email a:active {
  color: #f5f5f5; /* Ensures active/clicked state remains the same */
}

/* Privacy Policy Page */
.privacy-policy-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-policy-container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.privacy-policy-container h2 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #003580;
}

.privacy-policy-container p,
.privacy-policy-container ul {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.privacy-policy-container ul {
  padding-left: 20px;
}

.privacy-policy-container a {
  color: #0056b3;
  text-decoration: underline;
}

.privacy-policy-container a:hover {
  color: #003580;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-banner p {
  margin: 0 0 10px;
  font-size: 14px;
  text-align: center;
  padding: 0 10px;
}

.cookie-banner a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-btn-container {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
}

.cookie-btn.decline {
  background: #dc3545;
}

@media (max-width: 480px) {
  #confirmation-message {
    font-size: 13px;
    top: 5px; /* Move higher for very small screens */
    padding: 6px;
  }

  .logo {
    margin-left: -12px;
  }

  .language-switcher {
    position: absolute;
    top: 15px;
    left: 185px;
    z-index: 1000;
    width: auto;
  }

  .language-switcher form {
    margin-top: 0;
    z-index: 1000;
    width: 25%;
  }

  .language-switcher select {
    font-size: 15px;
    padding: 5px 30px 5px 10px;
    background: none;
    color: white;
    font-weight: 300;
    z-index: 1000;
    -webkit-appearance: none; /* Hide default arrow */
    -moz-appearance: none;
    position: relative;
  }

  .language-switcher select option {
    background-color: #1c232d; /* Dark blue */
    color: white;
    padding: 5px;
    font-weight: 300;
    z-index: 1000;
  }

  /* Custom arrow */
  .language-switcher::after {
    content: "▼"; /* Unicode for dropdown arrow */
    font-size: 14px;
    color: white;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevent interaction */
  }

  nav {
    margin-left: -53px;
  }

  .menu {
    font-size: 2rem;
    margin: -10px 0;
    margin-top: -11px;
    z-index: 1000;
    margin-left: 60px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo img {
    max-height: 40px; /* Slightly smaller for mobile */
  }

  /* Mobile Menu Button */
  .menu-toggle {
    display: flex;
  }

  header {
    padding-top: 13px;
    padding-bottom: 18px;
    background: linear-gradient(90deg, #10131f, #1c232d, #262e3c);
  }

  nav {
    margin-right: -120px;
  }

  /* Mobile Navigation - Hidden Initially */
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #0c0f18, #1e2530, #262e3c);
    padding: 20px;
    color: #f5f5f5;
    font-weight: 300;
    opacity: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-10px); /* Start slightly above */
    transition: opacity 1s ease, transform 0s ease, visibility 0s ease;
  }

  /* Active Class for Menu */
  .nav-links.active {
    display: flex;
    opacity: 1;
    height: auto;
    visibility: visible;
    overflow: visible;
    margin: 0;
    transform: translateY(0); /* Move to normal position */
  }

  /* Fade-in Effect */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-links li {
    margin: 3px 0;
    margin-left: 10px;
  }

  .nav-links a.active {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .logout-btn {
    margin-top: 10px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-image {
    object-position: center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-content {
    padding: 1.5rem;
    text-align: center;
    top: -30px;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .hero-content p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: 1.5rem;
  }

  #confirmation-message {
    font-size: 14px; /* Slightly smaller font for mobile */
    top: 10%; /* Adjust position */
    max-width: 95%; /* Increase width on smaller screens */
    padding: 8px; /* Reduce padding */
  }

  #confirmation-message .success,
  #confirmation-message .error {
    padding: 10px; /* Reduce padding */
    font-size: 14px; /* Smaller text for mobile */
  }

  .checkin-form input {
    padding: 12px 10px;
    width: 250px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.3rem;
  }

  .checkin-form button {
    padding: 10px 20px;
    border: solid 1px white;
    background: linear-gradient(90deg, #002147, #003580, #0056b3);
    color: white;
    font-weight: 300;
    font-size: 17px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 17px;
  }

  footer {
    background: linear-gradient(90deg, #0c0f18, #1e2530, #262e3c);
    color: #f5f5f5;
    padding: 10px 15px;
    text-align: left;
  }

  .footer-container p {
    margin: 10px 15px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: -5px;
  }

  .footer-page-container {
    margin: 0px auto;
    border-radius: 0px;
    box-shadow: none;
    margin-top: -25px;
  }

  .footer-page-container h1 {
    font-size: 1.5rem;
  }

  .footer-page-container h2 {
    font-size: 1.2rem;
  }

  .footer-page-container p,
  .footer-page-container ul {
    font-size: 1rem;
  }

  .footer-page-container ul li {
    padding-bottom: 10px;
  }

  .privacy-policy-container {
    max-width: 800px;
    margin: 0px auto;
    padding: 20px;
    /* background: white; */
    border-radius: 0px;
    box-shadow: 0;
    margin-top: -25px;
  }

  .privacy-policy-container h1 {
    font-size: 1.6rem;
  }

  .privacy-policy-container h2 {
    font-size: 1.3rem;
  }

  .privacy-policy-container p,
  .privacy-policy-container ul {
    font-size: 1rem;
  }

  .privacy-policy-container ul li {
    padding-bottom: 10px;
  }

  .cookie-banner {
    width: 95%;
    bottom: 0px;
    max-width: 400px;
  }

  .cookie-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .cookie-banner p {
    font-size: 12px;
  }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .how-to-use-link {
    margin-top: 10px;
    font-size: 1rem;
    text-align: left;
  }

  .how-to-use-link a {
    color: #ffd700; /* Gold color */
    text-decoration: underline;
    font-weight: 400;
    font-size: 1rem;
  }

  .modal {
    left: -5%;
  }

  .modal-content {
    width: 90%;
    padding: 15px;
    text-align: left;
  }

  .modal-content h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .modal-content p {
    font-size: 1rem;
    color: black;
    width: 100%;
    margin-left: 10px;
  }

  .close {
    font-size: 30px;
    top: 8px;
    right: 12px;
  }
}

/* Reviews & Awards Section */
.reviews-awards {
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.reviews-awards h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: rgb(24, 22, 22);
  margin-bottom: 15px;
}

/* Awards Styling */
.awards-container img {
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
  border-radius: 8px;
}

/* Reviews Container */
.reviews-container {
  margin-top: 20px;
}

.review {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  color: #333;
}

.review-author {
  font-weight: bold;
  margin-top: 5px;
}

.review-score {
  background: #003580;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  background: linear-gradient(90deg, #002147, #003580, #0056b3);
  border: solid 1px white;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 300;
}

.read-more-btn:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviews-awards {
    padding: 15px;
    background: #f5f5f5;
    margin-top: -4px;
    border-radius: 0;
    box-shadow: none;
  }

  .reviews-awards h2 {
    font-weight: 400;
    font-size: 1.8rem;
    font-weight: 350;
    margin-top: 35px;
  }

  .awards-container img {
    max-width: 90%;
    margin-top: 20px;
  }

  .review {
    padding: 12px;
    font-size: 0.9rem;
  }

  .read-more-btn {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

/* ============================================
   FAQ SECTION - Modern & Beautiful Design
   ============================================ */
.faq-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 20px;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0066cc 0%, #667eea 50%, #0066cc 100%);
  background-size: 200% 100%;
  animation: shimmerLine 3s linear infinite;
}

@keyframes shimmerLine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.faq-icon {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

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

.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.faq-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 2px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #e0e7ff;
  transform: translateY(-2px);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(118, 75, 162, 0.06) 100%);
  border-bottom: 1px solid #e2e8f0;
}

/* FAQ Question Icon */
.faq-q-icon {
  font-size: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* FAQ Question Text */
.faq-q-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
}

/* FAQ Arrow */
.faq-arrow {
  font-size: 20px;
  color: #64748b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: #667eea;
}

/* FAQ Answer */
.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.show {
  padding: 20px 28px 28px 28px;
  max-height: 2000px;
  opacity: 1;
}

.faq-answer p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #1e293b;
  font-weight: 600;
}

.faq-answer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* FAQ Images */
.faq-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.faq-image {
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.faq-image:hover {
  transform: scale(1.02);
}

.faq-image h3 {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  padding: 12px 16px;
  margin: 0;
  background: #ffffff;
  text-align: center;
  border-bottom: 2px solid #e2e8f0;
}

.faq-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FAQ Map Container */
.faq-map-container {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* FAQ Mobile Responsiveness */

/* iPhone 14 Pro Max and similar (428px) */
@media (max-width: 430px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-header {
    margin-bottom: 35px;
  }

  .faq-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 15px;
  }

  .faq-question {
    padding: 18px 16px;
    gap: 12px;
  }

  .faq-q-icon {
    font-size: 24px;
    width: 42px;
    height: 42px;
  }

  .faq-q-text {
    font-size: 16px;
  }

  .faq-arrow {
    font-size: 18px;
  }

  .faq-answer.show {
    padding: 16px 16px 20px 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-images {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-map-container iframe {
    height: 300px;
  }
}

/* iPhone SE and similar (375px) */
@media (max-width: 375px) {
  .faq-section {
    padding: 50px 14px;
  }

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

  .faq-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .faq-header h2 {
    font-size: 26px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-item {
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .faq-question {
    padding: 16px 14px;
    gap: 10px;
  }

  .faq-q-icon {
    font-size: 22px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .faq-q-text {
    font-size: 15px;
    font-weight: 600;
  }

  .faq-arrow {
    font-size: 16px;
  }

  .faq-answer.show {
    padding: 14px 14px 18px 14px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-image h3 {
    font-size: 13px;
    padding: 10px 12px;
  }

  .faq-map-container iframe {
    height: 280px;
  }
}

/* Very Small Devices (< 360px) */
@media (max-width: 359px) {
  .faq-section {
    padding: 40px 12px;
  }

  .faq-header h2 {
    font-size: 24px;
  }

  .faq-subtitle {
    font-size: 13px;
  }

  .faq-q-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
  }

  .faq-q-text {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .faq-map-container iframe {
    height: 250px;
  }
}

/* Tablet and Desktop */
@media (min-width: 769px) {
  .faq-header h2 {
    font-size: 42px;
  }

  .faq-subtitle {
    font-size: 18px;
  }

  .faq-question {
    padding: 28px 32px;
  }

  .faq-answer.show {
    padding: 24px 32px 32px 32px;
  }

  .faq-map-container iframe {
    height: 450px;
  }
}

/* Property Slider Section */
.property-slider {
  background: linear-gradient(90deg, #0c0f18, #1e2530);
  padding: 40px 0;
  text-align: center;
  color: white;
}

.property-slider .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  height: 500px; /* Ensure images display */
}

.slider {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.slide {
  display: block;
  position: relative;
  width: 100%;
}

.slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

/* Caption */
.caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 1.2rem;
}

/* Navigation Arrows */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Fade Animation */
.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .property-slider {
    padding-bottom: 0px;
    background: #1c232d;
  }

  .property-slider .section-title {
    font-weight: 400;
    font-size: 1.8em;
    margin-top: -10px;
  }

  .slider-container {
    height: 360px;
  }

  .slider {
    display: flex;
    overflow: hidden;
    justify-content: center;
    position: relative;
  }

  .slide {
    display: none;
    width: 100%;
    position: relative;
  }

  .slide img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 0;
  }

  .slide:first-child {
    display: block;
  }

  .prev,
  .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
  }

  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }

  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .caption {
    font-size: 0.9rem;
    padding: 5px 8px;
    bottom: 15px; /* Moves caption closer to image */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 5px;
  }
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.checkin-btn,
.already-checked-in-btn {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: clamp(14px, 3vw, 18px) clamp(30px, 5vw, 40px);
  color: white;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0.5rem auto;
  cursor: pointer;
  border: none;
}

.checkin-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.already-checked-in-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.checkin-btn:hover,
.already-checked-in-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

.already-checked-in-btn:hover {
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
}

.checkin-btn:active,
.already-checked-in-btn:active {
  transform: translateY(-1px);
}

.btn-icon {
  margin-right: 10px;
  font-size: clamp(18px, 2.5vw, 22px);
}

/* Button Container for Better Layout */
.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Styles for screens between 768px and 1200px */
@media (min-width: 769px) and (max-width: 1800px) {
  .checkin-form input {
    padding: 10px;
    width: 250px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .checkin-form button {
    padding: 13px 20px;
    border: solid 1px white;
    background: linear-gradient(90deg, #002147, #003580, #0056b3);
    color: white;
    cursor: pointer;
    border-radius: 5px;
  }
}
