/* =========================================
   Elie Custom Styles
   Mega Menu, Hover Effects, Capsule BG, RTL
   ========================================= */

/* --- Mega Menu --- */
.main-menu .navigation > li.has-mega-menu {
  position: relative;
}

.main-menu .navigation > li.has-mega-menu .mega-menu {
  position: absolute;
  left: 50% !important;
  right: auto !important;
  top: 100%;
  width: 900px;
  background: rgba(35, 25, 56, 0.98);
  border-radius: 0 0 15px 15px;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(199, 163, 105, 0.3);
  pointer-events: none;
  transform: translateX(-50%) translateY(20px) !important;
}

.main-menu .navigation > li.has-mega-menu:hover .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.mega-menu-inner {
  display: flex;
  gap: 30px;
}

.mega-menu-col {
  flex: 1;
}

.mega-menu-title {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(199, 163, 105, 0.3);
  letter-spacing: 0.5px;
}

.mega-menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-col ul li {
  margin-bottom: 8px;
}

.mega-menu-col ul li a {
  color: #d0c9db;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: block;
  padding: 4px 0;
  position: relative;
  padding-left: 15px;
}

.mega-menu-col ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--main-color);
  transition: transform 0.25s ease;
}

.mega-menu-col ul li a:hover {
  color: var(--main-color);
  padding-left: 20px;
}

.mega-menu-col ul li a:hover::before {
  transform: translateX(3px);
}

/* --- Capsule Section Background --- */
.section-capsule {
  position: relative;
  overflow: hidden;
}

.section-capsule::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  right: -60px;
  bottom: -60px;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(199, 163, 105, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(199, 163, 105, 0.06) 0%,
      transparent 50%
    );
  border-radius: 50% / 10%;
  z-index: 0;
  pointer-events: none;
}

.section-capsule > * {
  position: relative;
  z-index: 1;
}

/* --- Interactive Hover Animations - ULTIMATE PREMIUM --- */
.inner-box {
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.5s ease,
    border-color 0.5s ease !important;
  will-change: transform, box-shadow;
}

.inner-box:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(199, 163, 105, 0.1) !important;
}

/* Service, Catering & Event Card Enhancement */
.services-section .inner-box,
.features-section .inner-box {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 30px 20px !important;
  border-radius: 20px !important;
}

.services-section .inner-box:hover,
.features-section .inner-box:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(199, 163, 105, 0.3) !important;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(199, 163, 105, 0.2) !important;
}

.services-section .inner-box .image {
  overflow: hidden;
  border-radius: 15px !important;
  position: relative;
}

.services-section .inner-box .image img {
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.services-section .inner-box:hover .image img {
  transform: scale(1.1) rotate(1deg) !important;
  filter: brightness(1.1);
}

/* Event Enhancements Icon Animation */
.features-section .inner-box [data-lucide] {
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.6s ease !important;
}

.features-section .inner-box:hover [data-lucide] {
  transform: scale(1.2) rotate(15deg) !important;
  filter: drop-shadow(0 0 10px rgba(199, 163, 105, 0.6)) !important;
}

/* Button hover enhancements */
.theme-btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease !important;
}

.theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 163, 105, 0.3) !important;
}

/* --- 3-Column Header Layout --- */
@media (min-width: 992px) {
  .main-header .main-box {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 15px !important;
  }

  .main-header .logo-box {
    flex: 0 0 auto !important;
    min-width: 200px;
    display: flex !important;
    justify-content: flex-start !important;
  }

  .main-header .nav-outer {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    float: none !important;
    margin: 0 !important;
  }

  .main-header .links-box-combined {
    flex: 0 0 auto !important;
    min-width: 320px;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .main-header .links-box {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
  }

  .main-header .nav-toggler {
    margin-left: 20px !important;
  }
}

/* --- Mobile Header Alignment --- */
@media (max-width: 991px) {
  .main-header .auto-container {
    padding: 0 15px !important; /* Reduce container padding on mobile */
  }

  .main-header .main-box {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 10px 5px !important; /* Minimal internal padding for extreme alignment */
  }

  .main-header .main-box:after {
    display: none !important; /* Remove clearfix after element to fix flex spacing */
  }

  .main-header .nav-outer {
    display: none !important; /* Force hide nav center on mobile */
  }

  .main-header .logo-box {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .main-header .links-box-combined {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main-header .links-box {
    display: none !important; /* Hide CTA button and info-toggler on small mobile to give room to hamburger */
  }

  .main-header .nav-toggler {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .main-header .nav-toggler button {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* --- Underline & Navigation Link Fixes --- */
.main-menu .navigation > li {
  margin-left: 45px !important;
  margin-right: 0 !important;
}

.main-menu .navigation > li > a {
  position: relative !important;
  padding-right: 0px !important; /* No padding by default */
  padding-left: 0px !important;
  transition: color 0.3s ease;
}

/* Template uses :before for underlines - adjust to match text width */
.main-menu .navigation > li > a:before {
  left: 0 !important;
  right: 0 !important; /* Matches text width when padding is 0 */
}

/* Dropdown specific spacing */
.main-menu .navigation > li.dropdown > a {
  padding-right: 25px !important; /* Space for the arrow */
}

.main-menu .navigation > li.dropdown > a:before {
  right: 25px !important; /* Match text width by excluding arrow padding */
}

/* Adjust Dropdown Arrow position */
.main-menu .navigation > li.dropdown > a:after {
  right: 10px !important;
  top: 20px !important; /* Aligned with text */
  padding: 0 !important;
  margin: 0 !important;
}

/* Fix odd hover shift by ensuring padding and transform remains consistent */
.main-menu .navigation > li > a:hover {
  padding-left: 0 !important;
  transform: none !important;
}

/* Footer link hover */
a.footer-link {
  color: #adb5bd;
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

/* Core values card hover */
.core-values-section .inner-box {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.core-values-section .inner-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(199, 163, 105, 0.2);
  border-color: var(--main-color) !important;
}

/* --- Gallery Styles --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(35, 25, 56, 0.85) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay h5 {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

/* --- Page Banner for Inner Pages --- */
.page-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(35, 25, 56, 0.7),
    rgba(35, 25, 56, 0.9)
  );
}

.page-banner .banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 10px;
}

.page-banner .breadcrumb-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.page-banner .breadcrumb-list li {
  color: #adb5bd;
  font-size: 16px;
}

.page-banner .breadcrumb-list li a {
  color: var(--main-color);
  text-decoration: none;
}

.page-banner .breadcrumb-list li a:hover {
  text-decoration: underline;
}

/* --- Footer Map Section --- */
.footer-map-section {
  width: 100%;
  line-height: 0;
}

.footer-map-section iframe {
  display: block;
}

/* --- Contact Page --- */
.contact-info-card {
  background: rgba(35, 25, 56, 0.6);
  border: 1px solid rgba(199, 163, 105, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--main-color);
  box-shadow: 0 15px 40px rgba(199, 163, 105, 0.15);
}

.contact-info-card .icon {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 15px;
  display: block;
}

.contact-info-card h5 {
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  color: #adb5bd;
}

.contact-info-card a:hover {
  color: var(--main-color);
}

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

/* --- Mobile Responsive Fixes --- */
@media (max-width: 991px) {
  .mega-menu {
    display: none !important;
  }

  .page-banner h1 {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item img {
    height: 200px;
  }

  .page-banner {
    min-height: 250px;
  }

  .page-banner h1 {
    font-size: 26px;
  }

  .bottom_footer .row .col-lg-4 {
    text-align: center !important;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Modern Footer Redesign - V2 ULTIMATE PRECISION --- */
.main-footer {
  background: #0a050f !important; /* Deepest black */
  background-image: radial-gradient(
    circle at 50% 0%,
    rgba(199, 163, 105, 0.05) 0%,
    transparent 60%
  ) !important;
  position: relative !important;
  padding: 140px 0 0 !important; /* Massive luxury padding */
  color: #b0a9b9 !important;
}

/* Override center align from style.css */
.main-footer .upper-section {
  text-align: left !important;
  border-top: none !important;
  padding-bottom: 0 !important;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(199, 163, 105, 0.5),
    transparent
  ) !important;
}

.footer-widget h4 {
  position: relative !important;
  padding-bottom: 20px !important;
  margin-bottom: 35px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
  text-align: left !important;
}

.footer-widget h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px !important;
  height: 2px !important;
  background: var(--main-color) !important;
  box-shadow: 0 0 10px rgba(199, 163, 105, 0.5) !important;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 2 !important;
  font-size: 15px !important;
  text-align: left !important;
}

.footer-link-list li {
  margin-bottom: 18px !important;
  text-align: left !important;
  display: block !important;
}

.footer-link-list li a {
  color: rgba(255, 255, 255, 0.55) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  display: inline-block !important;
  font-size: 15px !important;
  text-decoration: none !important;
}

.footer-link-list li a:hover {
  color: var(--main-color) !important;
  transform: translateX(10px) !important;
}

/* Premium Newsletter Box - V2 Polished */
.footer-newsletter-widget {
  margin-top: 60px !important;
  margin-bottom: 0 !important;
  width: 100% !important;
}

.newsletter-inner {
  background: rgba(20, 15, 30, 0.6) !important;
  backdrop-filter: blur(30px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 60px !important;
  border-radius: 30px !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6) !important;
  position: relative !important;
  overflow: hidden !important;
}

.newsletter-inner h6 {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: var(--main-color) !important;
  margin-bottom: 15px !important;
  text-align: left !important;
}

.newsletter-inner h3 {
  font-family: "Playfair Display", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 32px !important;
  color: #fff !important;
  text-align: left !important;
}

.newsletter-form-wrapper form {
  position: relative !important;
}

.newsletter-form input {
  width: 100% !important;
  height: 70px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 100px !important;
  padding: 0 45px !important;
  color: #fff !important;
  font-size: 17px !important;
  transition: all 0.5s ease !important;
  padding-right: 90px !important;
}

.newsletter-form input:focus {
  border-color: var(--main-color) !important;
  background: rgba(0, 0, 0, 0.6) !important;
  box-shadow: 0 0 40px rgba(199, 163, 105, 0.2) !important;
}

.newsletter-form .submit-btn {
  position: absolute !important;
  right: 10px !important;
  top: 10px !important;
  width: 50px !important;
  height: 50px !important;
  background: var(--main-color) !important;
  border: none !important;
  border-radius: 50% !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s ease !important;
  cursor: pointer !important;
  z-index: 10 !important;
}

/* Contact Info Styling */
.footer-contact-info li {
  margin-bottom: 25px !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  text-align: left !important;
}

.footer-contact-info .icon-box {
  width: 52px !important;
  height: 52px !important;
  background: rgba(199, 163, 105, 0.08) !important;
  border: 1px solid rgba(199, 163, 105, 0.15) !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--main-color) !important;
}

.social-links-footer {
  display: flex !important;
  gap: 15px !important;
  margin-top: 30px !important;
}

.social-links-footer a {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 14px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s ease !important;
}

.social-links-footer a:hover {
  background: var(--main-color) !important;
  color: #fff !important;
  transform: translateY(-5px) !important;
}

/* Bottom Footer */
.bottom-footer-modern {
  background: #050208 !important;
  padding: 50px 0 !important;
  margin-top: 120px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
}

/* ==========================================================================
   ULTIMATE PREMIUM DETAIL PAGES
   ========================================================================== */

.premium-detail-hero {
  position: relative;
  padding: 240px 0 120px;
  background-color: var(--color-one);
  overflow: hidden;
}

.premium-detail-hero .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05); /* Slight scale to ensure full coverage */
}

.premium-detail-hero .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: linear-gradient(
    to bottom,
    rgba(58, 42, 89, 0.3) 0%,
    rgba(58, 42, 89, 0.8) 60%,
    rgba(58, 42, 89, 1) 100%
  );
}

.premium-detail-hero .content-box {
  position: relative;
  z-index: 2;
  text-align: center;
}

.premium-detail-hero .subtitle {
  color: var(--main-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
}

.premium-detail-hero h1 {
  font-size: 72px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 35px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.premium-detail-hero .bread-crumb {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-detail-hero .bread-crumb li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-detail-hero .bread-crumb li a {
  color: #fff;
  transition: color 0.3s ease;
}

.premium-detail-hero .bread-crumb li a:hover {
  color: var(--main-color);
}

.premium-detail-content {
  position: relative;
  background: var(--color-one);
  padding-bottom: 120px;
  padding-top: 60px;
}

.premium-detail-content .auto-container {
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  padding: 0;
  margin-bottom: 50px;
}

.detail-card .image-wrapper {
  position: relative;
  overflow: hidden;
}

.detail-card .image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.detail-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.detail-card .text-content {
  padding: 70px 60px;
  color: rgba(255, 255, 255, 0.65);
}

.detail-card .text-content h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 25px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}

.detail-card .text-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: var(--main-color);
  box-shadow: 0 0 10px rgba(199, 163, 105, 0.5);
}

.detail-card .lead-text {
  font-size: 20px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin-bottom: 45px;
  border-left: 3px solid var(--main-color);
  padding-left: 25px;
}

.detail-card .rich-content {
  font-size: 16px;
  line-height: 2.1;
  margin-bottom: 60px;
}

.premium-features h4 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}

.feature-vip-block {
  display: flex;
  margin-bottom: 35px;
  gap: 25px;
  align-items: flex-start;
}

.feature-vip-block .icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(199, 163, 105, 0.08);
  border: 1px solid rgba(199, 163, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.feature-vip-block:hover .icon {
  background: var(--main-color);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(199, 163, 105, 0.3);
}

.feature-vip-block h5 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-vip-block .text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.premium-sidebar {
  top: 130px;
}

.vip-inquiry-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(199, 163, 105, 0.3);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 40px rgba(199, 163, 105, 0.05);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

/* Subtle glow at top of widget */
.vip-inquiry-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--main-color),
    transparent
  );
}

.vip-inquiry-widget h4 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.vip-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  color: #fff;
  margin-bottom: 30px;
  font-size: 16px;
  transition: all 0.4s ease;
  border-radius: 0;
}

.vip-input:focus {
  outline: none;
  border-bottom-color: var(--main-color);
  padding-left: 10px;
}

.vip-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.vip-inquiry-widget .theme-btn {
  border-radius: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  padding: 0 35px;
}

.vip-other-services {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 25px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-other-services h4 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 400;
  position: relative;
  padding-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.vip-other-services h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--main-color);
}

.vip-other-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px;
  border-radius: 16px;
  transition: all 0.4s ease;
  text-decoration: none !important;
  margin-bottom: 12px;
  border: 1px solid transparent;
}

.vip-other-item:hover {
  background: rgba(199, 163, 105, 0.05);
  border-color: rgba(199, 163, 105, 0.2);
  transform: translateX(8px);
}

.vip-other-item .image-box {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.vip-other-item .title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
  transition: color 0.3s ease;
}

.vip-other-item:hover .title {
  color: var(--main-color);
}

.vip-other-item .icon {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.vip-other-item:hover .icon {
  color: var(--main-color);
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .premium-detail-hero h1 {
    font-size: 48px;
  }
  .premium-detail-content .auto-container {
    margin-top: 0;
  }
  .detail-card .image-wrapper img {
    height: 350px;
  }
  .detail-card .text-content {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .premium-detail-hero {
    padding: 180px 0 120px;
  }
  .premium-detail-hero h1 {
    font-size: 36px;
  }
  .detail-card .image-wrapper img {
    height: 250px;
  }
  .detail-card .text-content {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   FLOATING LANGUAGE SWITCHER & RTL SUPPORT (V2)
   ========================================================================== */

/* Floating Container */
.floating-lang-switcher {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  pointer-events: auto;
}

/* Language Switcher Button - Premium Floating Style */
.lang-switcher-btn {
  background: rgba(35, 25, 56, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(199, 163, 105, 0.4);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(199, 163, 105, 0.1);
}

.lang-switcher-btn:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(199, 163, 105, 0.3);
}

.lang-switcher-btn i {
  color: var(--main-color);
  transition: color 0.3s ease;
}

.lang-switcher-btn:hover i {
  color: #fff;
}

/* Hide Google Translate Widget entirely */
#google_translate_element,
.skiptranslate.goog-te-gadget,
.goog-te-banner-frame,
#goog-gt-tt {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
}

/* --- RTL CORE OVERRIDES --- */

html[dir="rtl"] {
  text-align: right;
}

/* Generic Text Alignment for RTL */
html[dir="rtl"] p,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] .text {
  text-align: right !important;
}

/* Floating Switcher - ALWAYS BOTTOM LEFT as requested */
html[dir="rtl"] .floating-lang-switcher {
  left: 30px !important;
  right: auto !important;
}

/* Header & Navbar RTL Swapping */
html[dir="rtl"] .main-header .main-box {
  display: flex !important;
  flex-direction: row !important; /* Let dir="rtl" handle the swap naturally */
}

html[dir="rtl"] .main-header .logo-box,
html[dir="rtl"] .main-header .nav-outer,
html[dir="rtl"] .main-header .links-box-combined {
  float: none !important;
}

html[dir="rtl"] .main-header .logo-box {
  justify-content: flex-end !important;
}

/* Navbar Link Order Reversal - dir="rtl" handles this, just fix margins */
html[dir="rtl"] .main-menu .navigation {
  display: flex !important;
  flex-direction: row !important; /* Let dir="rtl" handle the swap naturally */
  justify-content: center !important;
  float: none !important;
}

html[dir="rtl"] .main-menu .navigation > li {
  float: none !important;
  margin-right: 45px !important;
  margin-left: 0 !important;
}

html[dir="rtl"] .main-header .links-box-combined {
  justify-content: flex-start !important;
  flex-direction: row !important; /* Let dir="rtl" handle the swap naturally */
}

html[dir="rtl"] .main-header .links-box {
  flex-direction: row !important; /* Let dir="rtl" handle the swap naturally */
  float: none !important;
}

/* Navbar Link Indicator Fix */
html[dir="rtl"] .main-menu .navigation > li.dropdown > a:after {
  left: 10px !important;
  right: auto !important;
}

/* Sidebar (Info Bar) RTL Fix - Mirror from Right to Left */
html[dir="rtl"] .info-bar {
  right: auto !important;
  left: -440px !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html[dir="rtl"] .side-content-visible .info-bar {
  left: 0px !important;
}

html[dir="rtl"] .info-back-drop {
  right: auto !important;
  left: 0px !important;
}

/* Content Sections RTL Fixes */
html[dir="rtl"] .about-section .content-col {
  text-align: right !important;
}

html[dir="rtl"] .about-section .inner {
  text-align: right !important;
}

html[dir="rtl"] .about-section .subtitle,
html[dir="rtl"] .about-section h2,
html[dir="rtl"] .about-section .text {
  text-align: right !important;
}

/* Footer RTL Fixes */
html[dir="rtl"] .main-footer .footer-widget h4,
html[dir="rtl"] .main-footer .footer-widget p,
html[dir="rtl"] .main-footer .footer-link-list li,
html[dir="rtl"] .newsletter-inner h6,
html[dir="rtl"] .newsletter-inner h3 {
  text-align: right !important;
}

html[dir="rtl"] .main-footer .footer-widget h4::after {
  left: auto !important;
  right: 0 !important;
}

html[dir="rtl"] .newsletter-form .submit-btn {
  right: auto !important;
  left: 10px !important;
}

html[dir="rtl"] .footer-contact-info li {
  flex-direction: row-reverse;
  text-align: right !important;
  justify-content: flex-start !important;
}

/* Animations Mirroring for RTL */
html[dir="rtl"] .wow.fadeInLeft {
  animation-name: fadeInRight !important;
}

html[dir="rtl"] .wow.fadeInRight {
  animation-name: fadeInLeft !important;
}

/* Mobile Adjustments for Floating Switcher */
@media (max-width: 767px) {
  .floating-lang-switcher {
    bottom: 20px;
    left: 20px;
  }

  html[dir="rtl"] .floating-lang-switcher {
    right: 20px;
    left: auto;
  }

  .lang-switcher-btn {
    padding: 10px 15px;
    font-size: 11px;
    letter-spacing: 1px;
  }
}

.introduction-section {
  background-image: url(../images/backgrounds/introduction.svg);
  background-repeat: no-repeat;
}

.core-values-section {
  background-image: url(../images/backgrounds/core-values.svg);
  background-repeat: no-repeat;
}

.why-choose-us-section {
  background-image: url(../images/backgrounds/why-choose-us.svg);
  background-repeat: no-repeat;
}

.services-section {
  background-image: url(../images/backgrounds/services.svg);
  background-repeat: no-repeat;
}

.catering-section {
  background-image: url(../images/backgrounds/catering.svg);
  background-repeat: no-repeat;
}

.event-section {
  background-image: url(../images/backgrounds/events.svg);
  background-repeat: no-repeat;
}

.clients-section {
  background-image: url(../images/backgrounds/client.svg);
  background-repeat: no-repeat;
}

.footer-section {
  background-image: url(../images/backgrounds/footer.svg) !important;
  background-repeat: no-repeat;
}

@media (max-width: 480px) {
  .introduction-section {
    background-image: url(../images/backgrounds/introduction.svg);
    background-repeat: no-repeat;
  }

  .core-values-section {
    background-image: url(../images/backgrounds/core-values.svg);
    background-repeat: no-repeat;
  }

  .why-choose-us-section {
    background-image: url(../images/backgrounds/why-choose-us.svg);
    background-repeat: no-repeat;
  }

  .services-section {
    background-image: url(../images/backgrounds/services.svg);
    background-repeat: no-repeat;
  }

  .catering-section {
    background-image: url(../images/backgrounds/catering.svg);
    background-repeat: no-repeat;
  }

  .event-section {
    background-image: url(../images/backgrounds/events.svg);
    background-repeat: no-repeat;
  }

  .clients-section {
    background-image: url(../images/backgrounds/client.svg);
    background-repeat: no-repeat;
  }

  .footer-section {
    background-image: url(../images/backgrounds/footer.svg) !important;
    background-repeat: no-repeat;
  }
}
