/* ===== GLOBAL STYLES ===== */
body {
  background: #fff;
  color: #6d2c1a;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-top: 85px; /* Space for fixed navbar */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f1f1f1, #e8e8e8);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #c96b6b, #a94d4d);
  box-shadow: 0 3px 8px rgba(169, 77, 77, 0.3);
}

/* ===== NAVBAR STYLES ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  order: 2;
  margin-left: auto;
  margin-right: 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar-nav {
  order: 1;
  margin-right: auto !important;
  margin-left: 0 !important;
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-toggler {
  order: 3;
  margin-right: auto;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(169, 77, 77, 0.15);
}

.navbar-brand img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 3px 6px rgba(169, 77, 77, 0.3));
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #6d2c1a !important;
  transition: all 0.5s ease;
  position: relative;
  padding: 6px 14px !important;
  margin: 0 3px;
  border-radius: 20px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  transition: all 0.5s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 70%;
}

.nav-link:hover {
  color: #a94d4d !important;
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -85px;
  padding-top: 85px;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.7) 100%);
  z-index: 1;
  backdrop-filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: auto;
  padding: 0 20px;
  animation: heroFadeIn 1.8s ease-out;
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #6d2c1a;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.1);
  line-height: 1.2;
  position: relative;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  border-radius: 1px;
  animation: underlineGrow 1.5s ease-out 0.5s both;
}

@keyframes underlineGrow {
  0% { width: 0; }
  100% { width: 80px; }
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  color: #7a3b22;
  font-family: 'Montserrat', Arial, sans-serif;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0,0,0,0.08);
  line-height: 1.6;
}

.btn-main {
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  color: #fff;
  border-radius: 30px;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  margin: 0 0.8rem 0.8rem 0;
  transition: all 0.6s ease;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 6px 20px rgba(169,77,77,0.25);
  border: none;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 1s ease;
}

.btn-main:hover::before {
  left: 100%;
}

.btn-main:hover, .btn-main:focus {
  background: linear-gradient(45deg, #c96b6b, #a94d4d);
  color: #fff;
  box-shadow: 0 10px 30px rgba(169,77,77,0.4);
  transform: translateY(-3px) scale(1.02);
}

/* ===== ABOUT SECTION ENHANCED ===== */
#about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #a94d4d 0%, #b85a5a 50%, #a94d4d 100%);
  padding: 80px 0 70px 0;
}

#about img {
  transition: all 1s ease;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
  border: 4px solid #fff;
  background: #fff;
  width: 120px;
  height: 120px;
  padding: 15px;
}

#about img:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  filter: drop-shadow(0 8px 16px rgba(169,77,77,0.3));
}

#about h2 {
  transition: all 0.8s ease;
  position: relative;
  text-shadow: 0 3px 6px rgba(0,0,0,0.2);
  font-size: 2rem;
}

#about h2:hover {
  transform: translateY(-3px);
  text-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

#about blockquote {
  transition: all 1s ease;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
  font-size: 1.2rem;
}

#about blockquote::before,
#about blockquote::after {
  content: '"';
  position: absolute;
  font-size: 3rem;
  color: rgba(255,255,255,0.2);
  font-family: 'Playfair Display', serif;
  transition: all 1.2s ease;
  line-height: 1;
}

#about blockquote::before {
  top: -20px;
  left: -25px;
}

#about blockquote::after {
  bottom: -25px;
  right: -25px;
}

#about blockquote:hover::before,
#about blockquote:hover::after {
  color: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

#about blockquote:hover {
  transform: scale(1.01);
}

/* ===== DISCOVER MENU SECTION ===== */
.discover-menu-section-custom {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  padding: 80px 0;
  position: relative;
}

.discover-menu-img-custom {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  object-fit: cover;
  background: #fff;
  margin-bottom: 25px;
  border: 3px solid #fff;
  display: block;
  transition: all 0.8s ease;
  position: relative;
}

.discover-menu-img-custom:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 40px rgba(169, 77, 77, 0.25);
}

.discover-menu-title-custom {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #6d2c1a;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
}

.discover-menu-title-custom:hover {
  color: #a94d4d;
  transform: translateY(-2px);
}

.discover-menu-underline-custom {
  width: 120px;
  height: 3px;
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  margin: 12px 0 25px 0;
  border-radius: 2px;
  transition: all 0.8s ease;
}

.discover-menu-underline-custom:hover {
  width: 140px;
}

.discover-menu-desc-custom {
  color: #7a3b22;
  font-size: 1rem;
  margin-bottom: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.7;
  transition: all 0.4s ease;
}

.discover-menu-desc-custom:hover {
  color: #6d2c1a;
  transform: translateX(5px);
}

/* ===== SURPRISE SECTION ENHANCED ===== */
/* ===== SURPRISE SECTION ENHANCED ===== */
.surprise-section-custom {
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  padding: 80px 0;
  position: relative;
}

.surprise-container-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.surprise-gallery-container-custom {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px; /* Fixed height for consistent slideshow */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  background: #f8f9fa;
  transition: all 0.5s ease;
  border: 1px solid rgba(169, 77, 77, 0.1);
}

.surprise-gallery-container-custom:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 45px rgba(169, 77, 77, 0.2);
}

.surprise-gallery-image-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: brightness(0.98) contrast(1.05) saturate(1.05);
}

.surprise-gallery-image-custom.active {
  opacity: 1;
  z-index: 1;
}

/* Animation for slideshow */
@keyframes slideshow {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

.surprise-gallery-image-custom {
  animation: slideshow 16s infinite; /* 4 images × 4 seconds each */
}

.surprise-gallery-image-custom:nth-child(1) { animation-delay: 0s; }
.surprise-gallery-image-custom:nth-child(2) { animation-delay: 4s; }
.surprise-gallery-image-custom:nth-child(3) { animation-delay: 8s; }
.surprise-gallery-image-custom:nth-child(4) { animation-delay: 12s; }

.surprise-content-custom {
  max-width: 500px;
  width: 100%;
  padding: 0 20px;
}

.surprise-title-custom {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #6d2c1a;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
}

.surprise-title-custom:hover {
  color: #a94d4d;
}

.surprise-underline-custom {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #a94d4d, #c96b6b);
  margin: 0 auto 25px auto;
  border-radius: 2px;
  transition: all 0.5s ease;
}

.surprise-underline-custom:hover {
  width: 140px;
}

.surprise-desc-custom {
  color: #5c2516;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.7;
  text-align: center;
  transition: all 0.3s ease;
}

.surprise-hours-custom {
  text-align: center;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.surprise-hours-title-custom {
  color: #5c2516;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.surprise-hours-text-custom {
  color: #5c2516;
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
}

.surprise-closed-custom {
  color: #8a3a2a;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 10px;
}

.surprise-location-custom {
  color: #5c2516;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 30px;
  font-style: italic;
  border-top: 1px dashed #d9c3b8;
  padding-top: 15px;
  text-align: center;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .surprise-container-custom {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
  }
  
  .surprise-content-custom {
    padding-top: 30px;
  }
  
  .surprise-title-custom,
  .surprise-desc-custom,
  .surprise-hours-custom {
    text-align: left;
  }
  
  .surprise-underline-custom {
    margin: 0 0 25px 0;
  }
}

@media (max-width: 768px) {
  .surprise-gallery-container-custom {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .surprise-gallery-container-custom {
    height: 300px;
  }
  
  .surprise-title-custom {
    font-size: 1.8rem;
  }
}

/* ===== ENHANCED ANIMATIONS ===== */
.animate__animated {
  animation-duration: 2s !important;
  animation-fill-mode: both !important;
}

[data-aos] {
  transition-timing-function: ease !important;
}

/* Subtle hover effects for AOS elements */
[data-aos]:hover {
  transform: translateY(-1px) !important;
  transition: transform 0.5s ease !important;
}

/* ===== LOCATION SECTION ===== */
.location-section-custom {
  background: linear-gradient(135deg, #fff 0%, #fafafa 50%, #fff 100%);
  position: relative;
  padding: 60px 0;
}

/* Kuwait Title Style */
.kuwait-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #6d2c1a;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
  position: relative;
}

.kuwait-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  border-radius: 2px;
}

.kuwait-title:hover {
  color: #a94d4d;
  transform: translateY(-2px);
}

/* Enhanced Map Container - Vertical Layout */
.map-container-custom {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  margin: 0 auto;
  transition: all 0.8s ease;
  border: 3px solid rgba(169, 77, 77, 0.1);
}

.map-container-custom:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(169, 77, 77, 0.25);
  border-color: rgba(169, 77, 77, 0.2);
}

/* Kuwait Map Styles */
.kuwait-map {
  width: 100%;
  height: 100%;
  border-radius: 17px;
}

/* Custom marker bounce animation */
@keyframes bounce {
  0%, 20%, 60%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(-5px);
  }
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
  border-radius: 15px !important;
  box-shadow: 0 8px 25px rgba(169, 77, 77, 0.3) !important;
}

.leaflet-popup-tip {
  background: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* ===== FOOTER SECTION - BEAUTIFUL DESIGN ===== */
.footer-section-simple {
  background: linear-gradient(135deg, #2c1810 0%, #3d2317 100%);
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer-section-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23a94d4d" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,176C1248,192,1344,192,1392,192L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top center;
  background-size: cover;
  opacity: 0.7;
}

.footer-section {
  position: relative;
  z-index: 2;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f0c0c0;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  border-radius: 1px;
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(169, 77, 77, 0.08);
  border-radius: 8px;
  transition: all 0.5s ease;
}

.contact-item:hover {
  background: rgba(169, 77, 77, 0.15);
  transform: translateX(3px);
}

.contact-icon {
  font-size: 1.1rem;
  color: #a94d4d;
  min-width: 18px;
}

.contact-item span,
.contact-item div {
  color: #d4b5a7;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  text-align: center;
}

.footer-links a {
  color: #d4b5a7;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 15px;
  transition: all 0.5s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(169, 77, 77, 0.15), rgba(201, 107, 107, 0.15));
  transition: left 0.5s ease;
  border-radius: 15px;
}

.footer-links a:hover::before {
  left: 0;
}

.footer-links a:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(169, 77, 77, 0.2);
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-simple {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 6px 20px rgba(169, 77, 77, 0.25);
  transition: all 0.6s ease;
}

.footer-logo-simple:hover {
  transform: rotate(180deg) scale(1.05);
  box-shadow: 0 8px 25px rgba(169, 77, 77, 0.4);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0c0c0;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-description {
  color: #d4b5a7;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

/* Social Links Simple */
.social-links-simple {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.social-link-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(169, 77, 77, 0.15);
  border-radius: 50%;
  color: #d4b5a7;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
}

.social-link-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 50%;
}

.social-link-simple:hover::before {
  opacity: 1;
}

.social-link-simple:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(169, 77, 77, 0.3);
}

.social-link-simple i {
  position: relative;
  z-index: 2;
}

/* Footer Bottom */
.footer-bottom-simple {
  border-top: 1px solid rgba(169, 77, 77, 0.25);
  padding-top: 20px;
  margin-top: 35px;
}

.copyright,
.developer-info {
  color: #a0836b;
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}

.heart {
  color: #a94d4d;
  animation: heartbeat 2s infinite;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.5s ease;
  animation: whatsappPulse 4s infinite;
}

.whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { 
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7); 
  }
  50% { 
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3), 0 0 0 8px rgba(37, 211, 102, 0); 
  }
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (min-width: 992px) {
  .surprise-container-custom {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
  }
  
  .surprise-content-custom {
    padding-top: 30px;
  }
  
  .surprise-title-custom,
  .surprise-desc-custom,
  .surprise-hours-custom {
    text-align: left;
  }
  
  .surprise-underline-custom {
    margin: 0 0 25px 0;
  }
}

@media (max-width: 768px) {
  .hero-content h1 { 
    font-size: 1.8rem; 
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .hero-content h1::after {
    width: 60px;
    height: 2px;
    bottom: -8px;
  }
  
  .hero-section { 
    min-height: 75vh; 
    padding-top: 80px;
  }
  
  .hero-content p { 
    font-size: 1rem; 
    margin-bottom: 1.5rem;
  }
  
  .btn-main {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    margin: 0 0.5rem 0.6rem 0;
  }
  
  .btn-main:hover {
    transform: translateY(-2px) scale(1.02);
  }
  
  .discover-menu-title-custom,
  .surprise-title-custom,
  .kuwait-title { 
    font-size: 1.7rem; 
    letter-spacing: 0.8px;
  }
  
  .discover-menu-section-custom,
  .surprise-section-custom,
  .location-section-custom { 
    padding: 50px 0; 
  }
  
  .discover-menu-img-custom { 
    width: 240px;
    height: 240px;
  }
  
  .surprise-gallery-container-custom { 
    max-width: 500px;
    min-height: 350px;
  }
  
  .map-container-custom {
    max-width: 400px;
    height: 300px;
  }
  
  .footer-section-simple {
    padding: 40px 0 20px;
  }
  
  .footer-heading {
    font-size: 1.1rem;
  }
  
  .footer-brand {
    font-size: 1.2rem;
  }
  
  .social-links-simple {
    gap: 8px;
  }
  
  .social-link-simple {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  
  .whatsapp-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .contact-item {
    padding: 6px;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  #about {
    padding: 60px 0 50px 0;
  }
  
  #about img {
    width: 100px;
    height: 100px;
    padding: 12px;
  }
  
  #about h2 {
    font-size: 1.7rem;
  }
  
  #about blockquote {
    font-size: 1.1rem;
  }
  
  #about blockquote::before,
  #about blockquote::after {
    font-size: 2.5rem;
    top: -15px;
    bottom: -15px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  margin-bottom: 0.8rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  
  .btn-main {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    display: block;
    margin: 0 auto 0.8rem auto;
    max-width: 180px;
  }
  
  .discover-menu-img-custom {
    width: 200px;
    height: 200px;
  }

  .surprise-gallery-container-custom {
    min-height: 300px;
  }
  
  .kuwait-title { 
    font-size: 1.4rem; 
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }
  
  .social-links-simple {
    gap: 6px;
  }
  
  .social-link-simple {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .map-container-custom {
    max-width: 350px;
    height: 280px;
  }
  
  .surprise-title-custom {
    font-size: 1.8rem;
  }
  
  .surprise-desc-custom {
    font-size: 1rem;
  }
  
  .surprise-hours-title-custom {
    font-size: 1.1rem;
  }
  
  .surprise-hours-text-custom,
  .surprise-closed-custom {
    font-size: 0.95rem;
  }
}

/* Responsive navbar */
@media (max-width: 991.98px) {
  .navbar-brand {
    order: 2;
  }
  
  .navbar-toggler {
    order: 3;
    margin-right: auto;
  }
  
  .navbar-collapse {
    order: 4;
    width: 100%;
    margin-top: 15px;
  }
  
  .navbar-nav {
    margin-right: 0 !important;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }
  
  .navbar {
    padding: 10px 0;
  }
}