/**
 * CARMELX - Modern Black & White Theme
 * Bootstrap 5 + Custom Styles
 */

/* Import Karla Font */
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: #06adcc;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .navbar-nav {
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .dropdown-menu {
  right: 0;
  left: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  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; }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* Navigation */
.navbar {
  background-color: var(--secondary-color);
  box-shadow: var(--shadow-light);
  padding: 0.5rem 0;
  transition: var(--transition);
  overflow: visible;
  max-height: 65px;
}

.navbar-brand img {
  height: 150px !important;
  width: auto;
  max-width: 100%;
}

.navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: var(--primary-color);
  color: var(--secondary-color) !important;
}

.btn-book-now {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  font-size: 0.9rem;
}

.btn-book-now:hover {
  background-color: #0596b8;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Language Switcher */
.language-switcher {
  display: none;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

.language-switcher .btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  border: 1px solid var(--medium-gray);
  background: transparent;
  color: var(--primary-color);
  transition: var(--transition);
  white-space: nowrap;
}

.language-switcher .btn.active {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)),
              url('../images/logo.png') center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  text-align: center;
  position: relative;
}

.hero[style*="background-image"] {
  background-size: contain !important;
  background-position: center !important;
  background-blend-mode: overlay;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

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

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Buttons */
.btn {
  border-radius: var(--border-radius);
  font-weight: 500;
  padding: 0.75rem 2rem;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--dark-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.btn-accent:hover {
  background-color: #0596b8;
  color: var(--secondary-color);
}

/* Cards */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  overflow: hidden;
  background: var(--secondary-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

/* Tour Cards */
.tour-card {
  position: relative;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.tour-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
}

.tour-duration,
.tour-participants {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Container & Sections */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

.section {
  padding: 4rem 0;
  overflow-x: hidden;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 1rem auto;
}

/* Features */
.feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-box:hover {
  background-color: var(--light-gray);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.feature-icon i {
  font-size: 3rem;
  line-height: 1;
}

/* Forms */
.form-control {
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(183, 114, 33, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  color: white;
  font-size: 28px;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: var(--medium-gray);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

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

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

/* Success Button Animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

.success-animation {
  animation: bounceIn 0.8s ease-out;
}

.success-animation .btn {
  animation: pulse 2s infinite;
}

.success-animation .btn-success {
  box-shadow: 0 0 20px rgba(25, 135, 84, 0.4);
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Notifications */
.toast {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.toast-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.toast-error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* About Section Enhancements */
.about-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 80% 20%, rgba(6,173,204,0.05), transparent);
  pointer-events: none;
}

.about-header-main {
  text-align: center;
  margin-bottom: 3rem;
}

.about-label {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6,173,204,0.1);
  border-radius: 50px;
}

.about-header-main h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
  margin: 0;
}

.about-boxes-container {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: nowrap;
}

.about-boxes-container .col-lg-6 {
  flex: 1 1 50%;
  min-width: 0;
}

.about-box {
  background: var(--secondary-color);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: fadeInUp 0.6s ease-out;
}

.about-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(6,173,204,0.2);
}

.about-box-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-box-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), #0596b8);
  color: var(--secondary-color);
  border-radius: 12px;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(6,173,204,0.3);
}

.about-box-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.about-box-description {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 10px;
  transition: var(--transition);
  border-left: 3px solid var(--accent-color);
}

.feature-item:hover {
  background: #f0f0f0;
  transform: translateX(8px);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), #0596b8);
  color: var(--secondary-color);
  border-radius: 12px;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(6,173,204,0.3);
}

.feature-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.5;
}

.about-box .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.about-box .btn-outline-primary {
  border-width: 2px;
}

.about-box .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-box .btn-primary {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-box .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-boxes-container {
    gap: 1.5rem;
  }

  .about-box {
    padding: 2rem;
  }

  .about-header-main h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }

  .navbar-brand img {
    height: 80px !important;
  }

  .section {
    padding: 2rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 1rem;
  }

  .about-section {
    padding: 4rem 0;
  }

  .about-header-main h2 {
    font-size: 2rem;
  }

  .about-boxes-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-box {
    padding: 1.75rem;
  }

  .about-box-header {
    gap: 1rem;
  }

  .about-box-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .about-box-header h3 {
    font-size: 1.3rem;
  }

  .feature-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .feature-text h5 {
    font-size: 0.95rem;
  }

  .feature-text p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }

  .feature-box {
    padding: 1rem;
  }

  /* Mobile Header Improvements */
  .navbar {
    padding: 1rem 0;
    overflow-x: auto;
    overflow-y: visible;
    min-height: 120px;
    position: relative;
    justify-content: center;
  }

  .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
  }

  .navbar-brand img {
    height: 120px !important;
    width: 350px !important;
    animation: vibrate 2s infinite;
  }

  @keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
  }

  .navbar-nav {
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
    margin: 0 0.1rem;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  /* Tour features grid */
  .tour-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .feature-content {
    flex: 1;
  }
  
  .feature-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .feature-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
  }
  
  /* Coming Soon Badge */
  .coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
  }
  
  /* Mobile bottom action bar */
  @media (max-width: 991.98px) {
    /* Hide the original navbar collapse */
    .navbar-collapse {
      display: none !important;
    }
  
    /* Tour features grid mobile */
    .tour-features-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .feature-item {
      padding: 0.75rem;
    }
  
    .feature-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
      margin-right: 0.75rem;
    }
  
    .feature-label {
      font-size: 0.8rem;
    }
  
    .feature-value {
      font-size: 1rem;
    }
  
    /* Create bottom action bar */
    .mobile-action-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: white;
      border-top: 1px solid #dee2e6;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      z-index: 1030;
      padding: 0.5rem;
      display: flex;
      justify-content: space-around;
      align-items: center;
    }
  
    .mobile-action-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: var(--primary-color);
      padding: 0.5rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      min-width: 60px;
    }
  
    .mobile-action-item:hover,
    .mobile-action-item.active {
      background-color: var(--accent-color);
      color: white;
    }
  
    .mobile-action-item i {
      font-size: 1.2rem;
      margin-bottom: 0.25rem;
    }
  
    .mobile-action-item span {
      font-size: 0.75rem;
      font-weight: 500;
    }
  
    /* Adjust body padding for bottom bar */
    body {
      padding-bottom: 80px;
    }
  
    /* Hide mobile menu header/footer on small screens */
    .mobile-menu-header,
    .mobile-menu-footer {
      display: none !important;
    }
  }

  /* Hide burger menu on mobile */
  .navbar-toggler {
    display: none !important;
  }

  .d-flex.align-items-center.gap-3 {
    flex-wrap: wrap;
    gap: 0.5rem !important;
    width: 100%;
    margin-top: 0.5rem;
  }

  .language-switcher {
    gap: 0.25rem;
  }

  .language-switcher .btn {
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
  }

  .btn-book-now {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    margin-left: auto;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    background: var(--secondary-color);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler:hover {
    background: var(--light-gray);
  }

  .navbar-toggler-icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
}

.reviews-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Elfsight Widget Styling */
.elfsight-app-0008b54b-119e-417a-818c-da0cdce70b20 {
  margin: 2rem 0;
  padding: 2rem 0;
}

/* Ensure widget is responsive */
@media (max-width: 768px) {
  .reviews-section {
    padding: 3rem 0;
  }

  .reviews-section .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .reviews-section {
    padding: 2rem 0;
  }

  .reviews-section .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
  }
}

/* Override styles - Hide language switcher and smaller book now button */
.language-switcher {
  display: none !important;
  visibility: hidden !important;
}

.btn-book-now {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.85rem !important;
}

a.btn-book-now {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.85rem !important;
}
