:root {
  --brown-dark: #3d2b1a;
  --brown-mid: #6b4226;
  --brown-warm: #8b5c35;
  --brown-light: #a67c5b;
  --beige-deep: #c9a87c;
  --beige-mid: #dfc49e;
  --beige-light: #f0dfc3;
  --cream: #faf4ec;
  --cream-dark: #f3e9db;
  --cacao: #4a3728;
  --gold: #c9963b;
  --gold-light: #e8b86d;
  --gold-dark: #a07323;
  --text-dark: #2a1a0e;
  --text-mid: #5c3d24;
  --white: #fff;

  --shadow: 0 8px 32px rgba(61, 43, 26, 0.12);
  --shadow-lg: 0 20px 60px rgba(61, 43, 26, 0.18);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  direction: rtl;
  line-height: 1.8;
}

section {
  position: relative;
  width: 100%;
  overflow: hidden !important;
}

/* Helper Utilities */
.text-gold {
  color: var(--gold) !important;
}

.text-gold-50 {
  color: rgba(201, 150, 59, 0.5) !important;
}

.text-gold-20 {
  color: rgba(201, 150, 59, 0.2) !important;
}

.text-gold-10 {
  color: rgba(201, 150, 59, 0.1) !important;
}

.bg-cream-dark {
  background-color: var(--cream-dark) !important;
}

.bg-cream-light {
  background-color: rgba(250, 244, 236, 0.8) !important;
}

.border-gold-30 {
  border: 1px solid rgba(201, 150, 59, 0.3) !important;
}

.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px);
}

.text-dark-brown {
  color: var(--brown-dark) !important;
}

.text-mid-brown {
  color: var(--brown-mid) !important;
}

.text-beige {
  color: var(--beige-light) !important;
}

.font-cairo {
  font-family: 'Cairo', sans-serif !important;
}

.font-amiri {
  font-family: 'Amiri', serif !important;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Section badges & titles */
.section-badge {
  font-size: 0.9rem;
  letter-spacing: 2px;
  background: rgba(201, 150, 59, 0.15);
  padding: 6px 20px;
  border-radius: 99px;
  display: inline-block;
  color: var(--gold-dark) !important;
  font-weight: 700;
  border: 1px solid rgba(201, 150, 59, 0.25);
  box-shadow: 0 4px 10px rgba(201, 150, 59, 0.05);
}

.section-title {
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.about-section .section-title::after {
  left: unset;
  right: 0;
  transform: none;
}

.section-subtitle {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── 1. PREMIUM LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.loader-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  opacity: 0.3;
  animation: starPulse 2s infinite alternate;
}

@keyframes starPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.5);
    opacity: 0.8;
  }
}

.loader-bed {
  font-size: 6rem;
  color: var(--gold);
  animation: bedBounce 1.2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 25px rgba(201, 150, 59, 0.4));
}

@keyframes bedBounce {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-20px) scale(1.05);
  }
}

.loader-title {
  font-family: 'Amiri', serif;
  font-size: 2.5rem;
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(201, 150, 59, 0.3);
  margin-top: 10px;
}

.loader-sub {
  color: var(--beige-mid);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.loader-bar {
  width: 250px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 10px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  border-radius: 99px;
}

.loader-percent {
  color: var(--cream);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── 2. GLASSMORPHIC NAVBAR ── */
#mainNavbar {
  background: rgba(61, 43, 26, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(201, 150, 59, 0.15);
  padding: 15px 0;
  transition: var(--transition);
}

#mainNavbar.navbar-scrolled {
  background: rgba(61, 43, 26, 0.95);
  padding: 10px 0;
  box-shadow: var(--shadow);
}

.navbar-brand span {
  font-family: 'Amiri', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--cream);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-toggler {
  border: 1px solid rgba(201, 150, 59, 0.4);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232, 184, 109, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  color: var(--beige-light);
  font-weight: 600;
  padding: 10px 15px !important;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 15px rgba(201, 150, 59, 0.3);
  transition: var(--transition);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 150, 59, 0.5);
  color: var(--brown-dark) !important;
}

/* ── 3. HERO SECTION ── */
.hero-section {
  min-height: 100vh;
  background: url('/Css/1.jpeg') no-repeat center center;
  background-size: cover;
  padding-top: 100px;
  position: relative;
  overflow: hidden !important;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 43, 26, 0.95), rgba(42, 26, 14, 0.7));
  z-index: 1;
}

.hero-title {
  font-family: 'Amiri', serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 25px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  max-width: 800px;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--beige-light);
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.highlight-text {
  color: var(--gold-light);
  font-weight: 800;
  border-bottom: 2px dashed var(--gold);
}

.btn-outline-cream {
  border: 2px solid var(--cream);
  color: var(--cream);
  transition: var(--transition);
}

.btn-outline-cream:hover {
  background-color: var(--cream);
  color: var(--brown-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.hero-floating-elements {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.f-element {
  position: absolute;
  font-size: 2.5rem;
  animation: floatEffect 6s infinite ease-in-out;
}

.f-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.f-element:nth-child(2) {
  top: 75%;
  right: 15%;
  animation-delay: 2s;
}

.f-element:nth-child(3) {
  top: 50%;
  left: 80%;
  animation-delay: 4s;
}

@keyframes floatEffect {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) rotate(15deg);
  }
}

/* Animations pulse / bounce */
.animate-pulse {
  animation: shadowPulse 2s infinite alternate;
}

@keyframes shadowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 150, 59, 0.4);
  }

  100% {
    box-shadow: 0 0 15px 5px rgba(201, 150, 59, 0.6);
  }
}

/* ── 4. STATS SECTION ── */
.stats-section {
  background: var(--cream);
  margin-top: -60px;
  z-index: 5;
}

.stat-card {
  border: 1px solid rgba(201, 150, 59, 0.15);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.stat-icon {
  background: linear-gradient(135deg, rgba(201, 150, 59, 0.1), rgba(201, 150, 59, 0.02));
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid rgba(201, 150, 59, 0.2);
  transition: var(--transition);
}

.stat-card:hover .stat-icon {
  background: var(--gold);
  color: var(--white) !important;
}

.stat-card:hover .stat-icon i {
  color: var(--white) !important;
}

/* ── 5. ABOUT US SECTION ── */
.about-image-wrapper {
  padding: 15px;
  max-width: 75%;
  margin: 0 auto;
}

.image-border {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border: 3px solid var(--gold);
  transform: translate(-15px, 15px);
  /* Elegant leftward shift for RTL layout balance */
  border-radius: 2rem;
  /* Matches Bootstrap's .rounded-5 exactly */
  z-index: 0;
  opacity: 0.8;
}

.about-badge {
  top: -20px;
  right: -20px;
  background-color: var(--brown-dark) !important;
  border: 2px solid var(--gold) !important;
  color: var(--white) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 30px rgba(61, 43, 26, 0.3) !important;
}

.about-badge h4 {
  color: var(--gold-light) !important;
}

.animate-bounce {
  animation: badgeBounce 3s infinite alternate;
}

@keyframes badgeBounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.accordion-item {
  border-bottom: 1px solid rgba(107, 66, 38, 0.15) !important;
  margin-bottom: 10px;
}

.accordion-button {
  padding: 20px 10px;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: var(--gold-dark) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  margin-right: auto;
  margin-left: unset;
}

/* ── 6. DETAILED SERVICES & PRICING ── */
.pricing-card {
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(107, 66, 38, 0.08);
  height: 100%;
}

.border-top-gold {
  border-top: 6px solid var(--gold) !important;
}

.border-top-dark-brown {
  border-top: 6px solid var(--brown-dark) !important;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.popular-tag {
  top: 25px;
  left: -35px;
  transform: rotate(-45deg);
  width: 160px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-features-list li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(61, 43, 26, 0.1);
  font-size: 0.95rem;
}

.pricing-features-list li:last-child {
  border-bottom: none;
}

.btn-hover-scale {
  transition: var(--transition);
}

.btn-hover-scale:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ── 7. DYNAMIC WORKS & GALLERY SECTION ── */
.gallery-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(201, 150, 59, 0.1);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-media-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.gallery-media-wrapper img,
.gallery-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-media-wrapper img {
  transform: scale(1.1);
}

.video-badge {
  top: 15px;
  right: 15px;
  background: rgba(220, 53, 69, 0.9);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.media-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  transition: var(--transition);
}

.gallery-card:hover .media-play-overlay {
  background: rgba(0, 0, 0, 0.6);
  font-size: 3.5rem;
}

.media-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 43, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .media-view-overlay {
  opacity: 1;
}

.media-view-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-card:hover .media-view-btn {
  transform: scale(1);
}

.gallery-details {
  border-top: 1px solid rgba(201, 150, 59, 0.1);
}

.gallery-badge {
  font-size: 0.8rem;
  background-color: var(--cream);
  color: var(--brown-mid);
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(201, 150, 59, 0.2);
}

/* Lightbox styles */
.lightbox-media-container {
  max-height: 70vh;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media-container img,
.lightbox-media-container video {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

/* ── 8. INTERACTIVE WORK PROCESS FLOW ── */
.process-section {
  overflow: hidden;
}

.process-card {
  background: var(--cream);
  border: 1px solid rgba(107, 66, 38, 0.1);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
  background-color: var(--white);
}

.process-step-num {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--gold-light);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-card:hover .process-step-num {
  background: var(--gold);
  color: var(--white);
}

.col-lg-2\.4 {
  width: 20%;
}

@media (max-width: 991px) {
  .col-lg-2\.4 {
    width: 33.333%;
  }
}

@media (max-width: 767px) {
  .col-lg-2\.4 {
    width: 100%;
  }
}

/* ── 9. DYNAMIC ROOM BUDGET CALCULATOR ── */
.calculator-card {
  border-radius: 30px;
  border: 1px solid rgba(201, 150, 59, 0.2);
}

.btn-outline-dark-brown {
  border: 2px solid var(--brown-mid);
  color: var(--brown-mid);
  transition: var(--transition);
}

.btn-outline-dark-brown:hover,
.btn-check:checked+.btn-outline-dark-brown {
  background-color: var(--brown-dark) !important;
  border-color: var(--brown-dark) !important;
  color: var(--gold-light) !important;
  box-shadow: var(--shadow);
}

.btn-outline-beige {
  border: 1px solid var(--beige-deep);
  color: var(--brown-dark);
  background-color: var(--cream);
  transition: var(--transition);
}

.btn-outline-beige:hover,
.btn-check:checked+.btn-outline-beige {
  background-color: var(--beige-deep) !important;
  border-color: var(--beige-deep) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow);
}

.form-select,
.form-control {
  border: 1px solid rgba(107, 66, 38, 0.2);
  background-color: var(--cream-light);
  transition: var(--transition);
}

.form-select:focus,
.form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 10px rgba(201, 150, 59, 0.2) !important;
}

.form-check-input:checked {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.calculator-result-box {
  background-color: var(--cream-dark);
}

/* ── 10. TESTIMONIALS SECTION ── */
.testimonial-card {
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(201, 150, 59, 0.1) !important;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light) !important;
  background-color: var(--white) !important;
}

.quote-mark {
  bottom: 20px;
  left: 20px;
  pointer-events: none;
  opacity: 0.15;
}

.client-avatar {
  box-shadow: var(--shadow);
}

/* ── 11. FAQ ACCORDION SECTION ── */
.faq-section .accordion-item {
  border: 1px solid rgba(201, 150, 59, 0.15) !important;
}

.faq-section .accordion-button {
  background-color: var(--white);
  color: var(--brown-dark);
  transition: var(--transition);
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--brown-dark) !important;
  color: var(--gold-light) !important;
}

/* ── 12. CONTACT & LOCATION SECTION ── */
.contact-icon {
  border: 1px solid rgba(201, 150, 59, 0.2);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
  background-color: var(--gold) !important;
  color: var(--white) !important;
}

.map-card-overlay {
  bottom: 25px;
  right: 25px;
  width: 280px;
  border: 1px solid rgba(201, 150, 59, 0.3);
  box-shadow: var(--shadow-lg);
}

/* FOOTER SECTION */
.footer-section {
  background: linear-gradient(135deg, #2d1d0f 0%, #1e1106 100%) !important;
  border-top: 4px solid var(--gold);
  box-shadow: 0 -15px 40px rgba(61, 43, 26, 0.4);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.footer-logo h3 {
  font-size: 2rem;
  color: var(--white) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-section .text-beige {
  color: var(--beige-light) !important;
  opacity: 0.85;
}

.footer-section .social-icon {
  background: rgba(201, 150, 59, 0.1) !important;
  border: 1px solid rgba(201, 150, 59, 0.25) !important;
  color: var(--gold-light) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.footer-section .social-icon:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  border-color: var(--white) !important;
  color: var(--brown-dark) !important;
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 8px 25px rgba(201, 150, 59, 0.5) !important;
}

.footer-links-list li {
  transition: var(--transition);
}

.hover-gold {
  color: var(--beige-light) !important;
  opacity: 0.85;
  transition: var(--transition);
  display: inline-block;
}

.hover-gold:hover {
  color: var(--gold-light) !important;
  opacity: 1 !important;
  transform: translateX(-5px);
  /* RTL slide left */
  text-shadow: 0 0 8px rgba(232, 184, 109, 0.3);
}

.footer-section hr {
  border-top: 1px solid rgba(201, 150, 59, 0.15) !important;
  opacity: 1;
}

.footer-col-title {
  border-bottom: 2px solid rgba(201, 150, 59, 0.2);
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* FLOATING STICKY WHATSAPP BUTTON */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  font-size: 2.2rem;
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
  animation: pulseScale 2s infinite alternate;
}

.floating-whatsapp-btn:hover {
  background-color: #128c7e;
  color: var(--white);
  transform: scale(1.1);
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  100% {
    transform: scale(1.08);
    box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.6);
  }
}

/* BTN HOVER GROW EFFECT */
.btn-hover-grow {
  transition: var(--transition);
}

.btn-hover-grow:hover {
  transform: scale(1.05);
}

/* RESPONSIVE STYLING & MEDIA QUERIES FOR ALL MOBILE PHONES */

@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 991px) {

  /* Mobile Glassmorphic Navbar Menu */
  .navbar-collapse {
    background: rgba(45, 29, 15, 0.96) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(201, 150, 59, 0.25);
    border-radius: 16px;
    padding: 20px;
    margin-top: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: fadeInSlide 0.3s ease-out;
  }

  @keyframes fadeInSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-link {
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(201, 150, 59, 0.1);
    color: var(--white) !important;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
    /* Hide desktop hover line */
  }

  .nav-link:hover {
    color: var(--gold-light) !important;
    background: rgba(201, 150, 59, 0.05);
    border-radius: 8px;
    padding-right: 25px !important;
    /* Slide-in effect for RTL */
  }

  .nav-cta-btn {
    margin-top: 15px;
    width: 100%;
  }

  .nav-cta-btn .btn {
    width: 100%;
    padding: 12px !important;
    text-align: center;
  }

  /* General Hero Adjustments */
  .hero-section {
    padding: 140px 0 80px 0 !important;
    height: auto !important;
    min-height: auto !important;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .about-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 20px;
    width: 100%;
  }
}

@media (max-width: 767px) {

  /* General Spacing */
  section {
    padding: 60px 0 !important;
  }

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

  /* Hero Section */
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .floating-bed-icon {
    display: none !important;
    /* Hide floating beds on mobile to prevent overlapping */
  }

  /* Map Overlay Card */
  .map-card-overlay {
    bottom: 10px;
    right: 10px;
    width: calc(100% - 20px);
    position: relative;
    margin-top: -30px;
    box-shadow: var(--shadow-md);
  }

  /* Floating Sticky WhatsApp Button */
  .floating-whatsapp-btn {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }

  /* Budget Calculator results box */
  .calculator-result-box {
    padding: 25px 20px !important;
    margin-top: 25px;
    border-radius: 16px !important;
  }

  .calculated-price {
    font-size: 2.2rem !important;
  }

  /* Lightbox Modal */
  .lightbox-media-container img,
  .lightbox-media-container video {
    max-height: 50vh !important;
  }

  .modal-body {
    padding: 20px !important;
  }
}

@media (max-width: 480px) {

  /* Extremely Small Mobile Screens (iPhone SE, etc.) */
  .hero-title {
    font-size: 1.8rem;
  }

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

  .section-title {
    font-size: 1.6rem !important;
  }

  .section-badge {
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
  }

  /* Stats numbers */
  .stat-number {
    font-size: 2rem !important;
  }

  .stat-card {
    padding: 20px 15px !important;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px 15px !important;
  }

  /* Accordion Headers */
  .accordion-button {
    font-size: 0.9rem !important;
    padding: 12px 10px !important;
  }

  /* Gallery Detail Padding */
  .gallery-details {
    padding: 15px !important;
  }

  .gallery-title {
    font-size: 1rem !important;
  }
}