/**
* The Crown at Gera's Isle Royale - Royal Landing Page CSS
* Fit for Royalty, Made for You
*/

/*--------------------------------------------------------------
# Royal Color & Typography Variables
--------------------------------------------------------------*/

@font-face {
  font-family: Bodoni;
  src: url("../fonts/Bodoni.ttf");
}
@font-face {
  font-family: FuturaBook;
  src: url("../fonts/FuturaBook.ttf");
}
@font-face {
  font-family: FuturaHeavy;
  src: url("../fonts/FuturaHeavy.otf");
}
:root {
  /* Royal Color Palette - Inspired by PDF */
  --royal-gold: #d4a574;
  --royal-deep-gold: #aac838;
  --royal-light-gold: #e8d5b7;
  --royal-cream: #f8f6f0;
  --royal-navy: #1a2b5c;
  --royal-deep-navy: #0f1a3d;
  --royal-teal: #4a9b8e;
  --royal-sage: #7d8471;
  --royal-pearl: #fefdfb;
  --royal-silver: #e5e5e5;
  --royal-charcoal: #2c3e50;

  /* Royal Gradients */
  --royal-gradient-gold: linear-gradient(
    135deg,
    var(--royal-gold),
    var(--royal-deep-gold)
  );
  --royal-gradient-navy: linear-gradient(
    135deg,
    var(--royal-navy),
    var(--royal-deep-navy)
  );
  --royal-gradient-teal: linear-gradient(
    135deg,
    var(--royal-teal),
    var(--royal-navy)
  );

  /* Royal Typography */
  --font-royal: "Bodoni", serif;
  --font-elegant: "Cormorant Garamond", serif;
  --font-modern: "FuturaBook", sans-serif;

  /* Royal Shadows */
  --royal-shadow-light: 0 4px 20px rgba(212, 165, 116, 0.15);
  --royal-shadow-medium: 0 8px 30px rgba(212, 165, 116, 0.2);
  --royal-shadow-heavy: 0 15px 50px rgba(212, 165, 116, 0.25);

  /* Royal Transitions */
  --royal-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --royal-transition-fast: all 0.3s ease;

  /* Modal Color Variables - Matching Royal Theme */
  --primary-color: var(--royal-gold);
  --accent-color: var(--royal-deep-gold);
  --default-color: var(--royal-charcoal);
  --primary-color-rgb: 212, 165, 116;
  --accent-color-rgb: 184, 147, 90;
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.royal-body {
  font-family: var(--font-modern);
  line-height: 1.6;
  color: var(--royal-navy);
  background: var(--royal-pearl);
  overflow-x: hidden;
}

.royal-font {
  font-family: var(--font-royal);
}

.elegant-font {
  font-family: var(--font-elegant);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Royal Buttons */
.royal-btn-primary,
.royal-btn-secondary,
.royal-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--royal-transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.royal-btn-primary {
  background: var(--royal-gradient-gold);
  color: white;
  box-shadow: var(--royal-shadow-light);
}

.royal-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--royal-shadow-heavy);
  color: white;
}

.royal-btn-secondary {
  background: transparent;
  color: var(--royal-gold);
  border-color: var(--royal-gold);
}

.royal-btn-secondary:hover {
  background: var(--royal-gold);
  color: white;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/*--------------------------------------------------------------
# Royal Header
--------------------------------------------------------------*/
.royal-header {
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 251, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  padding: 20px 0;
  transition: var(--royal-transition); */
}

.royal-header.scrolled {
  background: rgba(254, 253, 251, 0.98);
  box-shadow: var(--royal-shadow-light);
  padding: 15px 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.royal-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.royal-logo img {
  max-height: 55px;
}
.crown-logo-royal {
  width: 55px;
  height: 55px;
  background: var(--royal-gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--royal-shadow-light);
  transition: var(--royal-transition);
}

.crown-logo-royal:hover {
  transform: scale(1.05);
  box-shadow: var(--royal-shadow-medium);
}

.crown-logo-royal i {
  font-size: 26px;
  color: white;
}

.logo-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-family: var(--font-royal);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  background: var(--royal-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 12px;
  color: var(--royal-gold);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.royal-navmenu ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.royal-navmenu a {
  color: var(--royal-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: var(--royal-transition-fast);
  padding: 5px 0;
}

.royal-navmenu a:hover,
.royal-navmenu a.active {
  color: var(--royal-gold);
}

.royal-navmenu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--royal-gold);
  transition: width 0.3s ease;
}

.royal-navmenu a:hover::after,
.royal-navmenu a.active::after {
  width: 100%;
}

.royal-cta-button {
  background: var(--royal-gradient-gold);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--royal-transition);
  box-shadow: var(--royal-shadow-light);
}

.royal-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--royal-shadow-medium);
  color: white;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  color: var(--royal-navy);
  font-size: 28px;
  cursor: pointer;
  transition: var(--royal-transition-fast);
}

.mobile-nav-toggle:hover {
  color: var(--royal-gold);
}

/*--------------------------------------------------------------
# Hero Banner Image Slider
--------------------------------------------------------------*/
.hero-banner-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 81px;
}

.banner-slider {
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.banner-slide:hover .banner-image {
  transform: scale(1.05);
}

/* Banner Navigation */
.banner-nav-prev,
.banner-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--royal-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s ease;
  box-shadow: var(--royal-shadow-medium);
  backdrop-filter: blur(10px);
}

.banner-nav-prev {
  left: 30px;
}

.banner-nav-next {
  right: 30px;
}

.banner-nav-prev:hover,
.banner-nav-next:hover {
  background: var(--royal-gold);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--royal-shadow-heavy);
}

.banner-nav-prev i,
.banner-nav-next i {
  font-size: 24px;
  color: var(--royal-gold);
  transition: color 0.3s ease;
}

.banner-nav-prev:hover i,
.banner-nav-next:hover i {
  color: white;
}

/* Banner Pagination */
.banner-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: var(--royal-gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

/* Responsive Design for Banner */
@media (max-width: 768px) {
  .hero-banner-slider {
    height: 70vh;
  }

  .banner-nav-prev,
  .banner-nav-next {
    width: 50px;
    height: 50px;
  }

  .banner-nav-prev {
    left: 20px;
  }

  .banner-nav-next {
    right: 20px;
  }

  .banner-nav-prev i,
  .banner-nav-next i {
    font-size: 20px;
  }

  .banner-pagination {
    bottom: 20px;
  }

  .banner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px;
  }
}

@media (max-width: 576px) {
  .hero-banner-slider {
    height: 60vh;
  }

  .banner-nav-prev,
  .banner-nav-next {
    width: 45px;
    height: 45px;
  }

  .banner-nav-prev {
    left: 15px;
  }

  .banner-nav-next {
    right: 15px;
  }

  .banner-nav-prev i,
  .banner-nav-next i {
    font-size: 18px;
  }

  .banner-pagination {
    bottom: 15px;
  }

  .banner-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

/*--------------------------------------------------------------
# Royal Hero Section
--------------------------------------------------------------*/
.royal-hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--royal-cream) 0%,
    var(--royal-pearl) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.royal-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="royal-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23D4A574" opacity="0.1"/><circle cx="80" cy="80" r="1.5" fill="%23D4A574" opacity="0.08"/><circle cx="50" cy="10" r="1" fill="%23D4A574" opacity="0.06"/><path d="M25,25 L35,30 L25,35 L30,25 Z" fill="%23D4A574" opacity="0.05"/></pattern></defs><rect width="1000" height="1000" fill="url(%23royal-pattern)"/></svg>');
  opacity: 0.4;
}

.royal-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.royal-hero-content {
  padding-right: 50px;
}

.royal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 165, 116, 0.15);
  color: var(--royal-gold);
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  backdrop-filter: blur(10px);
}

.royal-badge i {
  font-size: 16px;
}

.royal-hero-title {
  font-family: 'FuturaHeavy';
  font-size: clamp(3rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--royal-navy);
}

.royal-elegant {
  font-weight: 400;
  font-style: italic;
  display: block;
  color: var(--royal-charcoal);
}

.royal-emphasis {
  font-weight: 700;
  display: block;
  background: var(--royal-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 10px;
}

.royal-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--royal-charcoal);
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 400;
}

.royal-hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--royal-gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-text h6 {
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 5px;
  font-size: 16px;
}

.feature-text p {
  color: var(--royal-charcoal);
  margin: 0;
  font-size: 14px;
}

.royal-hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}

.royal-hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--royal-shadow-heavy);
}

.hero-main-image {
  width: 100%;
  /* height: 600px; */
  object-fit: cover;
  border-radius: 14px;
}

.floating-crown-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--royal-shadow-medium);
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.floating-crown-badge i {
  font-size: 24px;
  color: var(--royal-gold);
  margin-bottom: 8px;
}

.badge-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--royal-navy);
  line-height: 1;
  margin-bottom: 5px;
}

.badge-label {
  font-size: 11px;
  color: var(--royal-gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.royal-highlight-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(26, 43, 92, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 25px;
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--royal-shadow-medium);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--royal-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-content h6 {
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 16px;
}

.highlight-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Royal Section Headers
--------------------------------------------------------------*/
.royal-section-header {
  margin-bottom: 80px;
}

.royal-section-title {
  /* font-family: var(--font-royal); */
  font-family: FuturaHeavy;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--royal-navy);
  margin-bottom: 25px;
  letter-spacing: 1.5px;
}

.royal-section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--royal-charcoal);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

.royal-section-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--royal-charcoal);
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Royal Privilege Section
--------------------------------------------------------------*/
.royal-privilege {
  padding: 120px 0;
  position: relative;
  background-image: url("../img/bg-pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.royal-privilege-card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: var(--royal-transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.2);
  overflow: hidden;
}

.royal-privilege-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--royal-gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.royal-privilege-card:hover::before {
  transform: scaleX(1);
}

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

.royal-privilege-card.featured {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05), white);
  border-color: var(--royal-gold);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--royal-gold);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-wildlife-icon {
  width: 80px;
  height: 80px;
  background: var(--royal-gradient-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: white;
  transition: var(--royal-transition);
}

.royal-privilege-card:hover .card-wildlife-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-content h4 {
  font-family: var(--font-royal);
  font-size: 24px;
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.card-content p {
  color: var(--royal-charcoal);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
}

.card-highlight {
  padding: 12px 20px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.highlight-text {
  color: var(--royal-gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.card-royal-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--royal-gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.royal-privilege-card:hover .card-royal-border {
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# Royal Exclusivity Section
--------------------------------------------------------------*/
.royal-exclusivity {
  padding: 120px 0;
  position: relative;
}

/* .royal-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.03), rgba(248, 246, 240, 0.8));
  z-index: 1;
} */

/* .royal-bg-pattern > .container {
  position: relative;
  z-index: 2;
} */

.royal-exclusivity-content {
  padding-right: 50px;
}

.royal-stats-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 165, 116, 0.8);
  transition: var(--royal-transition-fast);
  min-width: 120px;
  flex: 1;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--royal-gold);
  box-shadow: var(--royal-shadow-medium);
}

.stat-number {
  font-family: var(--font-royal);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--royal-gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.royal-exclusivity .stat-label {
  font-size: 14px;
  color: var(--royal-charcoal);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Stats Grid */
@media (max-width: 768px) {
  .royal-stats-grid {
    gap: 30px;
    margin: 30px 0;
  }

  .stat-item {
    padding: 15px;
    min-width: 100px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .royal-stats-grid {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: 200px;
  }
}

.royal-features-list {
  display: block;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 50px;
  px; */
  width: 100%;
}

.royal-features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 50%;
  float: left;
}

.royal-features-list .feature-item i {
  color: var(--royal-gold);
  font-size: 18px;
}

.royal-features-list .feature-item span {
  color: var(--royal-navy);
  font-weight: 500;
}

.royal-exclusivity-visual {
  position: relative;
}

.main-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--royal-shadow-heavy);
}

.main-image {
  width: 100%;
  /* height: 500px; */
  object-fit: cover;
}

.image-overlay-content {
  position: absolute;
  top: 30px;
  left: 30px;
}

.overlay-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--royal-shadow-light);
}

.overlay-badge i {
  color: var(--royal-gold);
  font-size: 16px;
}

.overlay-badge span {
  color: var(--royal-navy);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.floating-info-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(26, 43, 92, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 25px;
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--royal-shadow-medium);
  max-width: 250px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--royal-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-content h6 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}

.info-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Royal Location Section
--------------------------------------------------------------*/
.royal-location {
  background: white;
  background-image: url("../img/bg-pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.royal-location-nav {
  background: rgba(212, 165, 116, 0.1);
  border-radius: 50px;
  padding: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  display: flex;
  margin: 0 auto;
  width: max-content;
}

.royal-location-nav .nav-link {
  background: transparent;
  border: none;
  color: var(--royal-charcoal);
  padding: 16px 24px;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--royal-transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.royal-location-nav .nav-link i {
  font-size: 16px;
}

.royal-location-nav .nav-link:hover {
  background: rgba(212, 165, 116, 0.2);
  color: var(--royal-gold);
}

.royal-location-nav .nav-link.active {
  background: var(--royal-gradient-gold);
  color: white;
  box-shadow: var(--royal-shadow-light);
}

.royal-location-content {
  margin-top: 60px;
}

.royal-location-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.15);
  transition: var(--royal-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.royal-location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--royal-gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.royal-location-card:hover::before {
  transform: scaleX(1);
}

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

.location-icon {
  width: 60px;
  height: 60px;
  background: var(--royal-gradient-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
  transition: var(--royal-transition);
}

.royal-location-card:hover .location-icon {
  transform: scale(1.1) rotate(5deg);
}

.royal-location-card h5 {
  font-family: 'FuturaHeavy';
  font-size: 18px;
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.royal-location-card p {
  color: var(--royal-charcoal);
  margin-bottom: 15px;
  font-size: 14px;
}

.distance-badge {
  background: var(--royal-gradient-gold);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
}

/*--------------------------------------------------------------
# Royal Living Section (Dark Background)
--------------------------------------------------------------*/
.royal-bg-dark {
  background: var(--royal-gradient-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.royal-bg-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dark-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="1000" height="1000" fill="url(%23dark-pattern)"/></svg>');
  z-index: 1;
}

.royal-bg-dark .container {
  position: relative;
  z-index: 2;
}

.royal-living {
  padding: 120px 0;
}

.royal-living-visual {
  position: relative;
}

.living-image {
  width: 100%;
  /* height: 500px; */
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--royal-shadow-heavy);
}

.living-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 25px 30px;
  border-radius: 16px;
  max-width: 280px;
  box-shadow: var(--royal-shadow-medium);
}

.living-overlay-card h6 {
  color: var(--royal-navy);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.living-overlay-card p {
  color: var(--royal-charcoal);
  margin: 0;
  font-size: 14px;
}

.royal-living-content {
  padding-left: 50px;
}

.royal-living-features {
  margin: 50px 0 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.royal-living-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.royal-living-features .feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--royal-gold);
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 1px solid #d4a574
}

.royal-living-features .feature-content h6 {
  /* color: white; */
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}

.royal-living-features .feature-content p {
  /* color: rgba(255, 255, 255, 0.8); */
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Royal Amenities Section
--------------------------------------------------------------*/
.royal-amenities {
  background: linear-gradient(135deg, var(--royal-cream), white);
}

.royal-amenities-showcase {
  margin-top: 60px;
}

.amenities-hero {
  margin-bottom: 60px;
}

.amenity-spotlight {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--royal-shadow-heavy);
}

.spotlight-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 43, 92, 0.3),
    rgba(212, 165, 116, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-content {
  text-align: center;
  color: white;
}

.spotlight-content h3 {
  font-family: var(--font-royal);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.spotlight-content p {
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.royal-amenity-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.15);
  transition: var(--royal-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.royal-amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--royal-gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.royal-amenity-card:hover::before {
  transform: scaleX(1);
}

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

.amenity-icon {
  width: 60px;
  height: 60px;
  background: var(--royal-gradient-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
  transition: var(--royal-transition);
}

.royal-amenity-card:hover .amenity-icon {
  transform: scale(1.1) rotate(5deg);
}

.royal-amenity-card h5 {
  font-family: var(--font-royal);
  font-size: 18px;
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.royal-amenity-card p {
  color: var(--royal-charcoal);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Royal Residences Section
--------------------------------------------------------------*/
.royal-residences {
  padding: 120px 0;
}

.royal-residence-nav {
  background: rgba(212, 165, 116, 0.1);
  border-radius: 50px;
  padding: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  display: flex;
  margin: 0 auto;
  width: max-content;
}

.royal-residence-nav .nav-link {
  background: transparent;
  border: none;
  color: var(--royal-charcoal);
  padding: 20px 30px;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--royal-transition);
  text-align: center;
}

.royal-residence-nav .nav-link:hover {
  background: rgba(212, 165, 116, 0.2);
  color: var(--royal-gold);
}

.royal-residence-nav .nav-link.active {
  background: var(--royal-gradient-gold);
  color: white;
  box-shadow: var(--royal-shadow-light);
}

.tab-content-wrapper {
  display: flex;
  flex-direction: column;
}

.tab-title {
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.tab-subtitle {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.royal-residence-content {
  margin-top: 60px;
}

.residence-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--royal-shadow-heavy);
}

.residence-image {
  width: 100%;
  /* height: 500px; */
  object-fit: cover;
}

.image-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--royal-gradient-gold);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}

.image-badge.premium {
  background: var(--royal-gradient-navy);
}

.residence-details {
  padding-left: 50px;
}

.residence-details h3 {
  font-family: var(--font-royal);
  font-size: 32px;
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 15px;
}

.residence-description {
  font-size: 18px;
  color: var(--royal-charcoal);
  margin-bottom: 40px;
  line-height: 1.6;
}

.residence-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.residence-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.residence-highlights .highlight-item i {
  color: var(--royal-gold);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.residence-highlights .highlight-item span {
  color: var(--royal-navy);
  font-weight: 500;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Royal Legacy Section
--------------------------------------------------------------*/
.royal-legacy {
  padding: 120px 0;
}

.royal-legacy-stats {
  margin-top: 60px;
}

.royal-stat-card {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--royal-transition);
  height: 100%;
}

.royal-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--royal-gradient-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: white;
  transition: var(--royal-transition);
}

.royal-stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-family: var(--font-royal);
  font-size: 38px;
  font-weight: 700;
  color: var(--royal-gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}

.royal-legacy .stat-label, .royal-legacy .achievement-card h5, .royal-legacy .achievement-card p{
  color: #000;
}
.royal-achievements {
  margin-top: 80px;
}

.achievement-card {
  background: rgba(255, 255, 255,1 );
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--royal-transition);
  height: 100%;
  position: relative;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.achievement-card.featured {
  border-color: var(--royal-gold);
  background: rgba(212, 165, 116, 0.15);
}

.achievement-card.featured .featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--royal-gold);
  color: var(--royal-navy);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: var(--royal-gradient-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
  transition: var(--royal-transition);
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1);
}

.achievement-card h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.3;
}

.achievement-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Royal Contact Section
--------------------------------------------------------------*/
.royal-contact {
  background: white;
}

.royal-contact-wrapper {
  background: white;
  border-radius: 24px;
  box-shadow: var(--royal-shadow-heavy);
  overflow: hidden;
  margin-top: 60px;
}

.royal-contact-info {
  background: var(--royal-gradient-navy);
  color: white;
  padding: 60px 50px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.royal-contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="contact-pattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1.5" fill="%23ffffff" opacity="0.08"/><circle cx="20" cy="20" r="1" fill="%23D4A574" opacity="0.1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23contact-pattern)"/></svg>');
  z-index: 1;
}

.royal-contact-info > * {
  position: relative;
  z-index: 2;
}

.contact-hero {
  margin-bottom: 50px;
}

.contact-hero h3 {
  font-family: 'FuturaHeavy';
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.contact-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--royal-gold);
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-content h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.royal-rera-info {
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rera-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.rera-badge i {
  font-size: 24px;
  color: var(--royal-gold);
}

.rera-badge strong {
  font-weight: 600;
}

.rera-badge small {
  opacity: 0.8;
  font-size: 13px;
}

.royal-contact-form {
  padding: 60px 50px;
  background: linear-gradient(135deg, rgba(248, 246, 240, 0.5), white);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-crown {
  width: 60px;
  height: 60px;
  background: var(--royal-gradient-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
  box-shadow: var(--royal-shadow-light);
}

.form-header h4 {
  font-family: 'FuturaHeavy';
  font-size: 28px;
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 10px;
}

.form-header p {
  color: var(--royal-charcoal);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 12px;
  font-size: 15px;
  color: var(--royal-navy);
  background: white;
  transition: var(--royal-transition-fast);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.form-privacy i {
  color: var(--royal-gold);
  font-size: 16px;
}

.form-privacy small {
  color: var(--royal-charcoal);
  font-size: 13px;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Royal Footer
--------------------------------------------------------------*/
.royal-footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  /* background-image: url('../img/bg-pattern.png'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.royal-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="footer-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="25" cy="25" r="0.5" fill="%23D4A574" opacity="0.05"/></pattern></defs><rect width="1000" height="1000" fill="url(%23footer-pattern)"/></svg>');
  z-index: 1;
}

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

.footer-main {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.crown-logo-footer {
  width: 70px;
  height: 70px;
  background: var(--royal-gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: var(--royal-shadow-light);
}

.footer-title {
  font-family: var(--font-royal);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  color: white;
}

.footer-description {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  max-width: 600px;
  margin: 0 auto;
}

.footer-disclaimer {
  background: var(--royal-gradient-navy);
  padding: 50px 0;
  border-top: 2px solid var(--royal-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-disclaimer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="disclaimer-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23D4A574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23disclaimer-pattern)"/></svg>');
  z-index: 1;
}

.disclaimer-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-content h6 {
  color: var(--royal-gold);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.disclaimer-content h6::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--royal-gradient-gold);
  border-radius: 2px;
}

.disclaimer-content h6 i {
  font-size: 20px;
  color: var(--royal-gold);
}

.disclaimer-text {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.disclaimer-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.disclaimer-text li {
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.disclaimer-text li:hover {
  color: rgba(255, 255, 255, 1);
}

.disclaimer-text li::before {
  content: "▶";
  color: var(--royal-gold);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  font-weight: bold;
}

.disclaimer-text strong {
  color: var(--royal-gold);
  font-weight: 600;
}

.disclaimer-text a {
  color: var(--royal-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--royal-gold);
  transition: all 0.3s ease;
}

.disclaimer-text a:hover {
  color: var(--royal-light-gold);
  border-bottom-color: var(--royal-light-gold);
  text-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
}

/* Responsive Design for Disclaimer */
@media (max-width: 768px) {
  .footer-disclaimer {
    padding: 40px 0;
  }

  .disclaimer-content {
    padding: 0 15px;
  }

  .disclaimer-content h6 {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .disclaimer-text {
    padding: 25px 20px;
  }

  .disclaimer-text li {
    font-size: 13px;
    margin-bottom: 18px;
    padding-left: 22px;
  }
}

@media (max-width: 576px) {
  .footer-disclaimer {
    padding: 30px 0;
  }

  .disclaimer-content h6 {
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
  }

  .disclaimer-text {
    padding: 20px 15px;
  }

  .disclaimer-text li {
    font-size: 12px;
    margin-bottom: 15px;
    padding-left: 20px;
  }
}

.footer-bottom {
  padding: 30px 0;
  /* background: rgba(0, 0, 0, 0.2); */
}

.copyright p {
  color: #000;
  margin: 0;
  font-size: 15px;
}

.copyright strong {
  color: #000;
}

.copyright small {
  color: #000;
  font-size: 13px;
  display: block;
  margin-top: 5px;
}

.footer-legal small {
  color: #000;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Royal Scroll Top
--------------------------------------------------------------*/
.royal-scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 30px;
  z-index: 996;
  background: var(--royal-gradient-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--royal-transition);
  box-shadow: var(--royal-shadow-light);
  text-decoration: none;
}

.royal-scroll-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.royal-scroll-top:hover {
  background: var(--royal-gradient-gold);
  transform: translateY(-3px);
  box-shadow: var(--royal-shadow-heavy);
  color: white;
}

.royal-scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Section Padding
--------------------------------------------------------------*/
.section {
  padding: 120px 0;
  scroll-margin-top: 100px;
}

/* Common light background pattern */
.light-background {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Swiper Pagination Styles */
.swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--royal-gold);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# AOS Animation Overrides
--------------------------------------------------------------*/
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.text-light {
  color: white !important;
}

.text-gold {
  color: var(--royal-gold) !important;
}

.bg-gold {
  background: var(--royal-gradient-gold) !important;
}

.bg-navy {
  background: var(--royal-gradient-navy) !important;
}

.royal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ===============================================
   Sticky Sidebar Button
   =============================================== */

.sticky-sidebar-btn {
  position: fixed;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  transform: rotate(90deg);
  z-index: 1000;
  background: var(--royal-gradient-gold);
  /* border-radius: 50px; */
  padding: 8px 15px;
  box-shadow: var(--royal-shadow-medium);
  cursor: pointer;
  transition: var(--royal-transition-fast);
  animation: pulse 2s infinite;
}

/* .sticky-sidebar-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--royal-shadow-heavy);
} */

.sidebar-btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.sidebar-btn-content i {
  font-size: 18px;
}

@keyframes pulse {
  0% {
    box-shadow: var(--royal-shadow-medium);
  }
  50% {
    box-shadow: var(--royal-shadow-heavy);
  }
  100% {
    box-shadow: var(--royal-shadow-medium);
  }
}

/* ===============================================
   Modal Form Styling
   =============================================== */

.enquiry-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.enquiry-modal-header {
  background: var(--royal-gradient-gold);
  border: none;
  padding: 30px;
  position: relative;
}

.enquiry-modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modal-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23modal-pattern)"/></svg>');
  z-index: 1;
}

.modal-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.modal-crown-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.modal-crown-icon i {
  font-size: 24px;
  color: white;
}

.modal-title-content {
  flex: 1;
}

.modal-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 5px 0 0 0;
}

.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  z-index: 3;
  transition: all 0.3s ease;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.enquiry-modal-body {
  padding: 40px;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
}

.enquiry-form .form-group {
  margin-bottom: 25px;
}

.enquiry-form label {
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.enquiry-form .input-wrapper,
.enquiry-form .select-wrapper,
.enquiry-form .textarea-wrapper {
  position: relative;
}

.enquiry-form .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--royal-gold);
  font-size: 16px;
  z-index: 2;
}

.enquiry-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 15px 15px 45px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.enquiry-form .form-control:focus {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
  outline: none;
}

.enquiry-form select.form-control {
  padding-left: 45px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
}

.enquiry-form textarea.form-control {
  padding-left: 45px;
  resize: vertical;
  min-height: 100px;
}

/* Modal Submit Button */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-luxury.btn-primary {
  background: var(--royal-gradient-gold);
  color: white;
  box-shadow: var(--royal-shadow-light);
}

.btn-luxury.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--royal-shadow-heavy);
  color: white;
}

.btn-luxury .btn-text {
  position: relative;
  z-index: 2;
}

.btn-luxury .btn-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn-luxury:hover .btn-icon {
  transform: translateX(3px);
}

/* Form Submit Section */
.form-submit {
  margin-top: 30px;
  text-align: center;
}

.form-submit .btn-luxury {
  width: 100%;
  justify-content: center;
}

.form-messages {
  margin: 20px 0;
}

.form-messages > div {
  display: none;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  align-items: center;
  gap: 10px;
}

.form-messages .loading {
  background: rgba(212, 165, 116, 0.1);
  color: var(--royal-gold);
}

.form-messages .error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.form-messages .sent-message {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.form-messages .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .sticky-sidebar-btn {
    right: 15px;
    padding: 12px 16px;
  }

  .sidebar-btn-content {
    font-size: 12px;
  }

  .sidebar-btn-content i {
    font-size: 16px;
  }

  .enquiry-modal-header {
    padding: 20px;
  }

  .modal-title-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .modal-crown-icon {
    width: 50px;
    height: 50px;
  }

  .modal-crown-icon i {
    font-size: 20px;
  }

  .modal-title {
    font-size: 20px;
  }

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

  .enquiry-modal-body {
    padding: 25px;
  }

  .enquiry-form .form-control {
    padding: 12px 12px 12px 40px;
  }

  .enquiry-form .input-icon {
    left: 12px;
    font-size: 14px;
  }

  .form-submit .btn-luxury {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .sticky-sidebar-btn {
    right: 10px;
    padding: 10px 12px;
  }

  .sidebar-btn-content span {
    display: none;
  }

  .enquiry-modal-body {
    padding: 20px;
  }

  .enquiry-form .form-control {
    padding: 10px 10px 10px 35px;
  }

  .form-submit .btn-luxury {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* ===============================================
   Awards & Recognition Section
   =============================================== */
.awards {
  position: relative;
  overflow: hidden;
}

.awards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dee2e6' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

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

.awards .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--royal-gradient-gold);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: var(--royal-shadow-light);
}

.awards .section-badge i {
  font-size: 14px;
}

.awards h2 {
  color: var(--royal-charcoal);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.awards .section-description {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.award-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--royal-shadow-light);
  transition: var(--royal-transition-fast);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--royal-gradient-gold);
}

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

.award-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--royal-gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--royal-shadow-medium);
}

.award-icon i {
  font-size: 32px;
  color: white;
}

.award-content h4 {
  color: var(--royal-charcoal);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.award-content p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.award-year {
  display: inline-block;
  background: var(--royal-gradient-gold);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive Design for Awards */
@media (max-width: 768px) {
  .awards h2 {
    font-size: 2rem;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .award-card {
    padding: 25px;
  }

  .award-icon {
    width: 70px;
    height: 70px;
  }

  .award-icon i {
    font-size: 28px;
  }
}

/* ===============================================
   Amenities Image Slider
   =============================================== */
.amenities-slider-container {
  position: relative;
  padding: 0 80px;
  margin-top: 50px;
}

.amenities-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--royal-shadow-heavy);
}

.amenity-slide {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.amenity-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-slide:hover .amenity-image img {
  transform: scale(1.05);
}

.amenity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 43, 92, 0.8) 0%,
    rgba(15, 26, 61, 0.6) 50%,
    rgba(212, 165, 116, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amenity-slide:hover .amenity-overlay {
  opacity: 1;
}

.amenity-content {
  text-align: center;
  color: white;
  padding: 30px;
  max-width: 400px;
}

.amenity-content .amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.amenity-content .amenity-icon i {
  font-size: 32px;
  color: white;
}

.amenity-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--font-royal);
}

.amenity-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hide default Swiper navigation */
.amenities-slider .swiper-button-next,
.amenities-slider .swiper-button-prev {
  display: none !important;
}

/* Custom Navigation Buttons */
.amenities-nav-next,
.amenities-nav-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--royal-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  box-shadow: var(--royal-shadow-medium);
  backdrop-filter: blur(10px);
}

.amenities-nav-next {
  right: 10px;
}

.amenities-nav-prev {
  left: 10px;
}

.amenities-nav-next:hover,
.amenities-nav-prev:hover {
  background: var(--royal-gold);
  transform: translateY(-50%) scale(1.1);
}

.amenities-nav-next i,
.amenities-nav-prev i {
  font-size: 20px;
  color: var(--royal-charcoal);
  transition: color 0.3s ease;
}

.amenities-nav-next:hover i,
.amenities-nav-prev:hover i {
  color: white;
}

/* Pagination */
.amenities-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amenities-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.amenities-pagination .swiper-pagination-bullet-active {
  background: var(--royal-gold);
  transform: scale(1.2);
}

/* Responsive Design for Amenities Slider */
@media (max-width: 768px) {
  .amenities-slider-container {
    padding: 0 60px;
  }

  .amenities-pagination {
    bottom: 15px;
  }

  .amenity-slide {
    height: 400px;
  }

  .amenity-content {
    padding: 20px;
  }

  .amenity-content h4 {
    font-size: 1.5rem;
  }

  .amenity-content .amenity-icon {
    width: 60px;
    height: 60px;
  }

  .amenity-content .amenity-icon i {
    font-size: 24px;
  }

  .amenities-nav-next,
  .amenities-nav-prev {
    width: 40px;
    height: 40px;
  }

  .amenities-nav-next i,
  .amenities-nav-prev i {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .amenities-slider-container {
    padding: 0 10px;
  }

  .amenity-slide {
    height: 350px;
  }

  .amenity-content h4 {
    font-size: 1.3rem;
  }

  .amenity-content p {
    font-size: 0.9rem;
  }
}

/* ===============================================
   Gallery Section
   =============================================== */
.gallery {
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dee2e6' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

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

.gallery .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--royal-gradient-gold);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: var(--royal-shadow-light);
}

.gallery .section-badge i {
  font-size: 14px;
}

.gallery .royal-section-title {
  color: var(--royal-charcoal);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gallery .section-description {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Gallery Slider */
.gallery-slider-container {
  position: relative;
  padding: 0 80px;
  margin-top: 50px;
}

.gallery-slider {
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: var(--royal-shadow-heavy); */
}

.gallery-slide {
  position: relative;
  /* height: 600px; */
  border-radius: 12px;
  overflow: hidden;
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-slide:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 43, 92, 0.8) 0%,
    rgba(15, 26, 61, 0.6) 50%,
    rgba(212, 165, 116, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-content {
  text-align: center;
  color: white;
  padding: 30px;
  max-width: 500px;
}

.gallery-content h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--font-royal);
}

.gallery-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hide default Swiper navigation for gallery */
/* .gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  display: none !important;
} */

/* Gallery Navigation */
.gallery-nav-next,
.gallery-nav-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--royal-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  box-shadow: var(--royal-shadow-medium);
  backdrop-filter: blur(10px);
}

.gallery-nav-next {
  right: 10px;
}

.gallery-nav-prev {
  left: 10px;
}

.gallery-nav-next:hover,
.gallery-nav-prev:hover {
  background: var(--royal-gold);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-next i,
.gallery-nav-prev i {
  font-size: 24px;
  color: var(--royal-charcoal);
  transition: color 0.3s ease;
}

.gallery-nav-next:hover i,
.gallery-nav-prev:hover i {
  color: white;
}

/* Gallery Pagination */
.gallery-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--royal-gold);
  transform: scale(1.3);
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  margin-top: 30px;
}

.thumbnails-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  opacity: 0.7;
}

.thumbnail-item:hover,
.thumbnail-item.active {
  border-color: var(--royal-gold);
  opacity: 1;
  transform: scale(1.05);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-nav-active .royal-navmenu {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
  .gallery-slider-container {
    padding: 0 20px;
  }

  .gallery-pagination {
    bottom: 15px;
  }

  .gallery-slide {
    height: 400px;
  }

  .gallery-content {
    padding: 20px;
  }

  .gallery-content h4 {
    font-size: 1.5rem;
  }

  .gallery-content p {
    font-size: 1rem;
  }

  .gallery-nav-next,
  .gallery-nav-prev {
    width: 50px;
    height: 50px;
  }

  .gallery-nav-next i,
  .gallery-nav-prev i {
    font-size: 20px;
  }

  .thumbnails-container {
    gap: 10px;
  }

  .thumbnail-item {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .gallery-slider-container {
    padding: 0 10px;
  }

  .gallery-slide {
    height: 350px;
  }

  .gallery-content h4 {
    font-size: 1.3rem;
  }

  .gallery-content p {
    font-size: 0.9rem;
  }

  .thumbnails-container {
    gap: 8px;
  }

  .thumbnail-item {
    width: 50px;
    height: 50px;
  }
}

.banner-slider video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.footer-logo img {
  width: 250px;
}

#living {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#legacy  {
    background: white;
    background-image: url(../img/bg-pattern.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

span.spec-dimensions {
    display: none;
}

.reraBlock img  {
  width:120px;
}