/* ===============================
   ROOT VARIABLES
   =============================== */

:root {
  --gold-primary: #C9A24D;
  /* Royal Gold */
  --gold-secondary: #E6C87A;
  /* Soft Gold */
  --gold-dark: #8A6A1F;
  /* Deep Gold */

  --dark-bg: #1C1C1C;
  /* Luxury Black */
  --light-bg: #FAF8F2;
  /* Warm White */
  --text-dark: #2B2B2B;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}



/* ===============================
     GLOBAL STYLES
     =============================== */

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
}

h1,
h2,
h3,
span {
  font-family: var(--font-heading);
}

/* ===== MOBILE OVERFLOW FIX ===== */
html,
body {
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* Animation */

/* ===== PERFORMANCE REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-top {
  opacity: 0;
  transition: transform .7s ease, opacity .7s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* bottom */
.reveal { transform: translateY(40px); }
.reveal.show { opacity:1; transform:translateY(0); }

/* left */
.reveal-left { transform: translateX(-50px); }
.reveal-left.show { opacity:1; transform:translateX(0); }

/* right */
.reveal-right { transform: translateX(50px); }
.reveal-right.show { opacity:1; transform:translateX(0); }

/* top */
.reveal-top { transform: translateY(-40px); }
.reveal-top.show { opacity:1; transform:translateY(0); }

img {
  max-width:100%;
  height:auto;
  display:block;
  will-change: transform;
  transform: translateZ(0);
}
@media (max-width:768px){
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-top{
    transition: .5s ease;
  }
}


/* ===============================
     NAVBAR
     =============================== */

.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(201,162,77,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"
    );
}

.navbar-toggler {
  border-color: rgba(201, 162, 77, 1);
}

.navbar-custom {
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar-custom.scrolled {
  background: rgba(28, 28, 28, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--gold-secondary) !important;
}

.navbar-nav .nav-link.active {
  color: var(--gold-secondary) !important;
  text-decoration: underline 2px;
  text-underline-offset: 5px;
}

.brand-logo {
  height: 60px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--gold-primary);
  color: #1c1c1c;
}

.dropdown-menu .dropdown-item.active {
  background-color: var(--gold-primary);
  color: #000 !important;
}

.navbar .btn {
  border: none;
  background: var(--gold-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
}

.navbar .btn:hover {
  background: var(--gold-secondary);
  color: #000;
}

/* ===============================
     HERO SECTION
     =============================== */

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55)),
    url("https://www.visitriccione.com/wp-content/uploads/2023/09/177_5R3A0977-Bearbeitet_Hotel-Royal_ManuelGlira.webp");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero h1 {
  font-size: 45px;
  color: var(--gold-secondary);
  font-weight: 700;
}

.hero p {
  font-size: 18px;
}



/* ===============================
     SECTION TITLE
     =============================== */

.section-title {
  font-weight: 600;
  color: var(--gold-dark);
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: var(--gold-primary);
  display: block;
  margin: 15px auto 0;
}

/* ===============================
     ABOUT SECTION
     =============================== */

#about h5 {
  color: var(--gold-primary);
  font-weight: 600;
}

#about h5::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold-primary);
  margin-top: 5px;
}

#about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

#about p {
  font-size: 16px;
  text-align: justify;
}

/* ===============================
     ROOMS
     =============================== */

.room-card {
  border: none;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.room-card img {
  will-change: transform;
  transform: translateZ(0);
  height: 220px;
  object-fit: cover;
}

.room-card .card-title {
  text-align: center;
  color: var(--gold-dark);
  font-weight: 600;
}

.room-card .card-text {
  text-align: center;
}

#rooms p {
  text-align: center;
}

/* ===============================
     BUTTONS
     =============================== */
.btn-used {
  font-size: 18px;
  padding: 10px 20px;
  background: var(--gold-primary);
  color: #fff;
  border-radius: 10px;
  border: 2px solid var(--gold-primary);
  transition: .2s;
}

.btn-used:hover {
  background: var(--gold-secondary);
  color: #000;
  border: 2px solid #000;

}

.btn-hero-v2 {
  font-size: 18px;
  padding: 10px 20px;
  background: var(--gold-primary);
  color: #fff;
  border-radius: 10px;
  border: 2px solid var(--gold-primary);
  transition: .2s;
}

.btn-hero-v2:hover {
  background: var(--gold-secondary);
  color: #000;
  border: 2px solid #000;
}

.btn-outline {
  padding: 10px 20px;
  font-size: 16px;
  background: linear-gradient(136deg,
      var(--gold-primary),
      var(--gold-secondary));
  color: #1c1c1c;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-outline:hover {
  color: #fff;
  background: var(--gold-dark);
  transform: translateY(-5px);
}

/* ===============================
     AMENITIES
     =============================== */

.amenities-strip {
  background: #fff;
  padding: 18px 0;
  border: 1px solid #eee;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.amenity-item i {
  font-size: 33px;
  color: var(--gold-primary);
}

.amenity-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 550;
  color: #1c1c1c;
}

/* ===============================
     EXPERIENCE / GALLERY
     =============================== */

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 250px;
  cursor: pointer;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
}

.experience-overlay h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.experience-overlay span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e6c87a;
}

.experience-card:hover img {
  transform: scale(1.08);
}

.experience-card:hover .experience-overlay {
  opacity: 1;
}

/* ===============================
     CTA SECTION
     =============================== */

.hotel-cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("https://cache.marriott.com/is/image/marriotts7prod/ds-wawhf-patio-22098:Feature-Hor?wid=1920&fit=constrain");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.cta-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 32px;
  line-height: 1.6;
}


/* ===============================
   FOOTER
   =============================== */

.hotel-footer {
  background-color: rgba(28, 28, 28, 0.95);
  color: #d6e3df;
}

.footer-logo {
  height: 60px;
}

.footer-brand h3 {
  color: #ffffff;
  font-weight: 700;
}

.footer-brand small {
  color: #b8d4c8;
  letter-spacing: 1px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfe2db;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #e6c87a;
}

.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #e6c87a;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(28, 28, 28, 0.95);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #e6c87a;
  color: #123c3c;
}

.footer-bottom {
  background-color: rgba(28, 28, 28, 0.95);
  font-size: 14px;
  color: #b8d4c8;
}


/* ===============================
   HOME VERSION 2 – HERO
   =============================== */

.hotel-hero {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),
    url("https://heritagehotelsofeurope.com/wp-content/uploads/2025/09/Heritage-Boutique-Hotel-exterior.jpg");
  background-size: cover;
  background-position: center;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.05rem;
  margin: 20px 0 30px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
  background: transparent;
  border: 3px solid #ffffff;
  color: #ffffff;
  padding: 12px 32px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  border-radius: 20px;
  color: #000000;
  background: linear-gradient(135deg,
      var(--gold-primary),
      var(--gold-secondary));
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-used-hero-v2 {
  font-size: 18px;
  padding: 10px 20px;
  background: var(--gold-primary);
  color: #fff;
  border-radius: 10px;
  border: 2px solid var(--gold-primary);
  transition: .2s;
}

.btn-used-hero-v2:hover {
  background: var(--gold-secondary);
  color: #000;
  border: 2px solid #000;

}

.hero-img-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-img {
  max-width: 90%;
  border-radius: 12px;
}

/* ===============================
     ABOUT US – HOME V2
     =============================== */

.about-content {
  margin-top: 60px;
  max-width: 520px;
}

.about-tag {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: inline-block;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-title span {
  color: #c9a24d;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 14px;
}

.about-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.learn-link {
  color: #0d6efd;
  font-weight: 500;
  text-decoration: none;
}

.about-images {
  position: relative;
  height: 420px;
}

.about-images .img {
  position: absolute;
  width: 230px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.img-1 {
  top: 0;
  left: 60px;
}

.img-2 {
  top: 80px;
  left: 280px;
}

.img-3 {
  top: 210px;
  left: 120px;
}

.img-4 {
  top: 250px;
  left: 340px;
}

/* ===============================
     HOTEL STATS
     =============================== */

.hotel-stats {
  background-color: rgb(239, 236, 236);
  padding: 20px;
}

.stat-item i {
  font-size: 36px;
  color: #e6c87a;
  margin-bottom: 12px;
}

.stat-item h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0;
  color: #000000;
}

.stat-item p {
  font-size: 15px;
  color: #000000;
  opacity: 0.9;
}

/* ===============================
     WHY CHOOSE US
     =============================== */

.why-hotel {
  background: #ffffff;
}

.section-tag {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #b08d57;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
  color: #000000;
}

.section-title span {
  color: #b08d57;
}

.section-desc {
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 16px;
  color: #777777;
}

.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.feature-card i {
  font-size: 36px;
  color: #143c3a;
  transition: color 0.4s ease;
}

.feature-card h5 {
  margin-top: 20px;
  font-weight: 600;
}

.feature-card p {
  margin-top: 10px;
  font-size: 15px;
  color: #666666;
}

.feature-card:hover {
  transform: translateY(-12px);
  border: 1px solid rgba(176, 141, 87, 0.4);
  box-shadow: 0 25px 60px rgba(176, 141, 87, 0.25);
}

.feature-card:hover i,
.feature-card:hover h5 {
  color: #b08d57;
}

/* ===============================
     BOOKING PROCESS
     =============================== */

.hotel-process {
  background: #ffffff;
}

.process-tag {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #b08d57;
}

.process-title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
}

.process-desc {
  max-width: 720px;
  margin: 15px auto 0;
  color: #777777;
}

.process-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 22px;
  height: 100%;
  text-align: left;
  border: 1px solid transparent;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.process-card .step {
  font-size: 36px;
  font-weight: 700;
  color: #aab7b4;
  display: block;
  margin-bottom: 15px;
}

.process-card h5 {
  font-weight: 600;
}

.process-card p {
  margin-top: 10px;
  font-size: 15px;
  color: #666666;
}

.process-card:hover {
  transform: translateY(-12px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 25px 60px rgba(176, 141, 87, 0.25);
}

.process-card:hover .step,
.process-card:hover h5 {
  color: #b08d57;
}

.process-card.active .step,
.process-card.active h5 {
  color: #e6c87a;
}

.process-card.active p {
  color: #e5e5e5;
}

/* ===============================
   ABOUT PAGE – HERO
   =============================== */

.about-hero {
  min-height: 50vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
}

.hero-content {
  max-width: 820px;
  color: #ffffff;
}

.hero-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #e6c87a;
}

.hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* ===============================
   OUR MISSION
   =============================== */

.mission-left {
  margin-top: 150px;
}

.mission-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-title span {
  color: #c9a24d;
}

.mission-text {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 15px;
}

.mission-btn {
  margin-top: 20px;
  background: transparent;
  color: #000000;
  padding: 12px 28px;
  border: 2px solid var(--gold-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.mission-btn:hover {
  background: #c9a24d;
  color: #000000;
  transform: translateY(-3px);
}

/* MISSION CARD */

.mission-card {
  background: #ffffff;
  padding: 28px 25px;
  border-radius: 18px;
  height: 100%;
  border: 1px solid transparent;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(201, 162, 77, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-box i {
  font-size: 22px;
  color: #c9a24d;
}

.mission-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 14.5px;
  color: #666666;
}

.mission-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 77, 0.5);
  box-shadow: 0 25px 60px rgba(201, 162, 77, 0.25);
}

.mission-card:hover h5 {
  color: #c9a24d;
}

/* ===============================
   TIMELINE
   =============================== */

.hotel-timeline {
  background-color: #ffffff;
}

.timeline-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.timeline-title span {
  color: var(--gold-primary);
}

.timeline-subtitle {
  margin-top: 10px;
  color: #6c757d;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: #e9ecef;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 14px;
  height: 14px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.left::after {
  right: -7px;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -7px;
}

.timeline-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-content .year {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--gold-primary);
}

/* ===============================
   TESTIMONIALS
   =============================== */

.testimonial-title {
  font-size: 38px;
  font-weight: 700;
}

.testimonial-title span {
  color: #c9a24d;
}

.testimonial-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #777777;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 22px;
  height: 100%;
  border: 1px solid rgba(201, 162, 77, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #c9a24d;
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 25px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 77, 0.4);
}

.user-info h6 {
  margin: 0;
  font-weight: 600;
}

.user-info span {
  font-size: 13px;
  color: #777777;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: #c9a24d;
  box-shadow: 0 30px 65px rgba(201, 162, 77, 0.3);
}

.testimonial-card:hover h6 {
  color: #c9a24d;
}

.testimonial-card:hover .testimonial-user img {
  border-color: #c9a24d;
}

/* ===============================
   OUR TEAM
   =============================== */

.hotel-team {
  background: #ffffff;
}

.team-title {
  font-size: 38px;
  font-weight: 700;
}

.team-title span {
  color: #c9a24d;
}

.team-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #777777;
}

.team-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 22px;
  height: 100%;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.team-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid rgba(201, 162, 77, 0.25);
  transition: all 0.4s ease;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h5 {
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card .role {
  display: block;
  font-size: 14px;
  color: #c9a24d;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 14.5px;
  color: #666666;
}

.team-social {
  margin-top: 12px;
}

.team-social a {
  font-size: 18px;
  margin: 0 6px;
  color: #888888;
  transition: color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-12px);
  border-color: rgba(201, 162, 77, 0.5);
  box-shadow: 0 25px 60px rgba(201, 162, 77, 0.3);
}

.team-card:hover h5,
.team-card:hover .team-social a {
  color: #c9a24d;
}

.team-card:hover .team-img {
  border-color: #c9a24d;
}

/* ===============================
   SERVICES
   =============================== */

.hotel-services {
  background: #ffffff;
}

.services-title {
  font-size: 38px;
  font-weight: 700;
  margin-top: 10px;
}

.services-title span {
  color: #c9a24d;
}

.services-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #777777;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-content {
  padding: 22px;
}

.service-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14.5px;
  margin-bottom: 14px;
  color: #666666;
}

.service-content a {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(201, 162, 77, 0.35);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover h5,
.service-card:hover a {
  color: #c9a24d;
}

/* ===============================
   SERVICE DETAILS
   =============================== */

.service-detail {
  background: #ffffff;
}

.service-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #c9a24d;
  margin-bottom: 12px;
}

.service-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.service-text {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 15px;
}

.service-video-wrapper {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===============================
     FAQ
     =============================== */

.hotel-faq {
  background: #ffffff;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
}

.faq-title span {
  color: #c9a24d;
}

.faq-accordion {
  max-width: 820px;
}

.faq-item {
  border: none;
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.faq-item .accordion-button {
  background: #143c3c;
  color: #ffffff;
  font-weight: 500;
  padding: 18px 22px;
  box-shadow: none;
}

.faq-item .accordion-button.collapsed {
  background: #ffffff;
  color: #000;
}

.faq-item .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-item .accordion-body {
  background: #ffffff;
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
  padding: 20px 22px;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(201, 162, 77, 0.25);
}

.faq-item:hover .accordion-button.collapsed {
  color: #c9a24d;
}

.faq-item .accordion-button:not(.collapsed) {
  background: #c9a24d;
  color: #000000;
}

.faq-item .accordion-button:not(.collapsed)::after {
  filter: brightness(0);
}

/* ===============================
     PRICING
     =============================== */

.hotel-pricing {
  background: #ffffff;
}

.pricing-tag {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.pricing-title {
  font-size: 38px;
  font-weight: 700;
}

.pricing-title span {
  color: #c9a24d;
}

.pricing-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #777777;
}

.pricing-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 26px;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.45s ease;
}

.pricing-card.featured {
  border-color: #1c1c1c;
  transform: translateY(-10px);
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1c1c;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.pricing-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.price {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  color: #777777;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-features li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #555555;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  color: #000000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
}

.pricing-btn.outline {
  border-color: #1c1c1c;
  background: var(--gold-primary);
  color: #1c1c1c;
}

.pricing-btn:hover {
  background: var(--gold-secondary);
  color: #000000;
}

.pricing-card:hover {
  transform: translateY(-14px);
  border-color: rgba(201, 162, 77, 0.5);
  box-shadow: 0 30px 70px rgba(201, 162, 77, 0.3);
}

.pricing-card:hover h5 {
  color: #c9a24d;
}

/* ===============================
     BLOG
     =============================== */

.hotel-blog {
  background: #ffffff;
}

.blog-title {
  font-size: 38px;
  font-weight: 700;
}

.blog-title span {
  color: #c9a24d;
}

.blog-subtitle {
  max-width: 600px;
  margin: 12px auto 0;
  color: #777777;
}

.blog-search,
.blog-filter {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #dddddd;
}

.blog-search:focus,
.blog-filter:focus {
  border-color: #c9a24d;
  box-shadow: none;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-tag {
  font-size: 12px;
  font-weight: 600;
  color: #c9a24d;
  margin-bottom: 8px;
}

.blog-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14.5px;
  color: #666666;
}

.blog-date {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #999999;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(201, 162, 77, 0.3);
}

.blog-card:hover h5 {
  color: #c9a24d;
}

/* ===============================
     BLOG DETAILS
     =============================== */

/* Blog Details */

/* BLOG WRAP */
.blog-detail {
  padding: 80px 0;
}

/* MAIN IMAGE */
.blog-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 25px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TITLE */
.blog-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.blog-meta span {
  background: rgba(201, 162, 77, 0.15);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
}

/* CONTENT */
.blog-content p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* SIDEBAR */
.sidebar-box {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
}

.sidebar-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.search-input {
  border-radius: 12px;
  padding: 10px 14px;
}

.sidebar-list a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-list a:hover {
  color: var(--gold);
}

/* RELATED */
.related-title {
  font-size: 24px;
  font-weight: 600;
  margin: 50px 0 20px;
}

.related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  height: 100%;
}

.related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.related-card .card-body {
  padding: 15px;
}

.related-card h6 {
  font-weight: 600;
  font-size: 15px;
}

.related-card p {
  font-size: 13.5px;
  color: #777;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(201, 162, 77, 0.25);
}

.related-card:hover h6 {
  color: var(--gold);
}

/* ===============================
     CONTACT
     =============================== */

.hotel-contact {
  background: #ffffff;
}

.contact-info-box {
  background: #f9f7f3;
  padding: 40px 35px;
  border-radius: 24px;
  height: 100%;
}

.contact-info-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-item i {
  font-size: 22px;
  color: #c9a24d;
  margin-top: 4px;
}

.contact-form-box {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 24px;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.contact-btn {
  background: transparent;
  border: 2px solid #c9a24d;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #c9a24d;
  color: #000000;
  transform: translateY(-3px);
}

/* ===============================
     MAP
     =============================== */

.map-wrapper {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===============================
            Responsive
     =============================== */

/* ===== Call to Action Section ===== */

@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 16px;
  }
}

/* Fix mobile dropdown overlap */
@media (max-width: 991px) {

  .navbar-collapse {
    background: rgba(28, 28, 28, 0.95);
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 12px 0;
  }
}

@media (max-width: 575px) {

  /* NAVBAR */
  .navbar-nav {
    gap: 0 !important;
    text-align: center;
  }

  .navbar .btn {
    width: 100%;
    margin: 10px 0 0;
  }

  .brand-logo {
    height: 40px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    padding: 20px;
    text-align: center;
  }

  .hero h1 {
    padding-top: 40px;
    font-size: 30px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  /* AMENITIES */
  .amenity-item i {
    font-size: 26px;
  }

  .amenity-item p {
    font-size: 13px;
  }

  /* ABOUT */
  #about h2 {
    font-size: 26px;
  }

  #about p {
    font-size: 14px;
    text-align: justify;
  }

  /* ROOMS */
  .room-card img {
    height: 200px;
  }

  .btn-outline-success {
    margin: 10px auto;
    width: 80%;
  }

  /* EXPERIENCE CARDS */
  .experience-card {
    height: 220px;
  }

  /* CTA */
  .cta-title {
    font-size: 26px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .btn-outline {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-used {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-hero-v2 {
    padding: 10px 20px;
    font-size: 14px;
    justify-content: center;
    text-align: center;
  }

  /* FOOTER */
  .footer-logo {
    height: 45px;
  }

  .footer-text,
  .footer-links a,
  .footer-contact li {
    font-size: 14px;
  }


  /*========================
        highlight Remove
    =========================*/

  .about-title span {
    color: black;
  }

  .section-title span {
    color: black;
  }

  .mission-title span {
    color: black;
  }

  .services-title span {
    color: black;
  }

  .pricing-title span {
    color: black;
  }

  .blog-title span {
    color: black;
  }

}

/*tablet*/

@media (min-width: 576px) and (max-width: 991px) {

  /* HERO */
  .hero {
    height: 75vh;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  /* ABOUT */
  #about h2 {
    font-size: 30px;
  }

  #about p {
    font-size: 15px;
  }

  /* ROOMS */
  .room-card img {
    height: 210px;
  }

  .btn-outline-success {
    margin: 0 auto;
    width: 70%;
  }

  /* EXPERIENCE */
  .experience-card {
    height: 240px;
  }

  /* CTA */
  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 15px;
  }
}

/* ===== Home Version 2 ===== */

/* TABLET */
@media (max-width: 991px) {
  .hotel-hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .about-images {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
  }

  .about-images .img {
    position: static;
    width: 100%;
  }

  .about-content {
    max-width: 100%;
    margin-top: 0;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .hotel-hero {
    padding: 100px 0 50px;
    height: 70vh;
    text-align: center;
  }

  .hero-title {
    font-size: 24px;
    text-align: center;
  }

  .hero-text {
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-btn {
    padding: 10px 26px;
  }

  .stat-item h2 {
    font-size: 32px;
  }

  .stat-item i {
    font-size: 28px;
  }

  .hotel-stats {
    padding: 40px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .process-card {
    text-align: center;
  }

  .process-card .step {
    font-size: 30px;
  }

  .process-title {
    font-size: 26px;
  }
}

/*================================= About Page =========================*/

/* ---------- TABLET (≤ 991px) ---------- */
@media (max-width: 991px) {

  /* HERO */
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  /* MISSION */
  .mission-left {
    margin-top: 15px;
    text-align: center;
  }

  .mission-btn {
    margin: 25px auto 0;
  }

  /* TIMELINE */
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item::after {
    left: 13px;
  }

  .timeline-content p {
    text-align: start;
  }

  .year {
    text-align: start;
  }

  /* TEAM */
  .team-img {
    width: 100px;
    height: 100px;
  }
}



/* ---------- MOBILE (≤ 576px) ---------- */
@media (max-width: 576px) {

  /* HERO */
  .about-hero {
    padding: 90px 15px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  /* SECTION TITLES */
  .section-title,
  .mission-title,
  .testimonial-title,
  .team-title {
    font-size: 26px;
  }

  /* MISSION */
  .mission-text {
    font-size: 14.5px;
  }

  .mission-btn {
    width: 100%;
    text-align: center;
  }

  /* MISSION CARDS */
  .mission-card {
    text-align: center;
  }

  .icon-box {
    margin-left: auto;
    margin-right: auto;
  }

  /* TIMELINE */
  .timeline-item {
    padding-left: 50px;
  }

  .timeline-content {
    font-size: 14px;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-text {
    font-size: 14.5px;
  }

  /* TEAM */
  .team-card {
    padding: 26px 20px;
  }

  .team-img {
    width: 90px;
    height: 90px;
  }

  .team-card p {
    font-size: 14px;
  }
}

/*========== FAQ ==========*/

/* MOBILE */
@media (max-width: 576px) {
  .faq-title {
    font-size: 28px;
  }

  .pricing-title {
    font-size: 28px;
  }

  .price {
    font-size: 32px;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .service-title {
    font-size: 30px;
  }
}

/*========== Contact Page ==========*/

/* MOBILE */
@media (max-width: 576px) {
  .map-wrapper {
    height: 260px;
    border-radius: 14px;
  }
}


/* RESPONSIVE */
@media (max-width: 991px) {

  .contact-info-box,
  .contact-form-box {
    padding: 30px 25px;
  }

  .map-wrapper {
    height: 320px;
  }
}