/* =========================================
   GRAND SEMAGI HOTEL - STYLES
   Elegant & Luxurious Theme
   ========================================= */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dark: #a68a3a;
  --dark: var(--navy);
  --dark-soft: var(--navy-soft);
  --dark-card: var(--navy);
  --navy: #102a43;
  --navy-soft: #334e68;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --text: #ccc;
  --text-light: #999;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
}

.section {
  padding: 100px 0;
}

.section-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-tag.center {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title.center {
  text-align: center;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--navy-soft);
  max-width: 600px;
}

.section-desc.center {
  text-align: center;
  margin: 0 auto 60px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-gold {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-light);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(16, 42, 67, 0.97);
  padding: 12px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(16, 42, 67, 0.3);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.language-toggle {
  min-width: 40px;
  padding: 9px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(16, 42, 67, 0.45);
  color: var(--white);
  font: 600 0.75rem var(--font-body);
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--navy);
  background: url('/image 2/webp/Home Slider.webp') center/cover no-repeat, var(--navy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 42, 67, 0.5) 0%,
    rgba(16, 42, 67, 0.65) 50%,
    rgba(16, 42, 67, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: heroFade 1.2s ease;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main img {
  border-radius: 4px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--navy);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border: 4px solid var(--dark);
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
}

.about-img-accent img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--navy);
}

.experience-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px;
  text-align: center;
  border-radius: 4px;
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.exp-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-desc {
  margin-bottom: 16px;
  color: var(--navy-soft);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #ddd;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--navy-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- ROOMS ---------- */
.rooms {
  background: var(--white);
}

.rooms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.room-card {
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  flex: 0 1 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  min-width: 0;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 42, 67, 0.3);
  border-color: rgba(201, 168, 76, 0.2);
}

.room-img {
  position: relative;
  overflow: hidden;
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  width: 100%;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-img img {
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center;
  display: block;
  margin: 0;
  background: var(--navy);
  transition: transform 0.5s ease;
}

.room-card:hover .room-img img {
  transform: none;
}

.room-price {
  margin-top: 15px;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 2px;
  display: inline-block;
}

.room-price span {
  font-weight: 400;
  font-size: 0.85rem;
}

.room-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.room-info {
  padding: 28px;
}

.room-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.room-info p {
  font-size: 0.95rem;
  color: var(--navy-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.room-features li {
  font-size: 0.8rem;
  color: var(--navy-soft);
  padding: 4px 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
}

/* ---------- AMENITIES ---------- */
.amenities {
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.amenity-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  transition: var(--transition);
}

.amenity-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.2);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--navy-soft);
  line-height: 1.6;
}

/* ---------- GALLERY SLIDER ---------- */
.gallery {
  padding-bottom: 60px;
}

.gallery-slider-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
}

.gallery-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  flex: 0 0 calc((100% - 24px) / 3);
  height: 320px;
  min-width: 0;
  background: var(--navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--navy);
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  transform: translateY(10px);
  transition: var(--transition);
  text-align: center;
  padding: 0 12px;
}

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

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(16, 42, 67, 0.9);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
  flex-shrink: 0;
}

.gallery-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.gallery-btn.prev { left: 8px; }
.gallery-btn.next { right: 8px; }

.gallery-btn svg {
  width: 20px;
  height: 20px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.18);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--white);
}

.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 200px;
}

.testimonial {
  display: none;
  animation: fadeSlide 0.6s ease;
}

.testimonial.active {
  display: block;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--navy-soft);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.18);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: var(--navy);
  background: url('/image 2/webp/Fooder Silder.webp') center/cover no-repeat, var(--navy);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.8);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info p {
  color: var(--navy-soft);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--navy-soft);
  margin: 0;
}

.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-map {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
  min-height: 380px;
  height: 100%;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

.contact-map-btn {
  text-align: center;
}

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px;
  border-radius: 4px;
}

.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;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  border-radius: 0 2px 2px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

/* ---------- MEMBERSHIP GYM ---------- */
.membership {
  background: var(--white);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.membership-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 32px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.membership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 42, 67, 0.3);
  border-color: rgba(201, 168, 76, 0.25);
}

.membership-card.featured {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.16), var(--white) 45%);
}

.membership-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.membership-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
}

.membership-sub {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.membership-price {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 10px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.membership-price span {
  font-weight: 400;
  font-size: 0.8rem;
}

.membership-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.membership-features li {
  font-size: 0.88rem;
  color: var(--navy-soft);
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e4e4;
}

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

.membership-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  padding: 24px 32px;
  border: 1px dashed rgba(201, 168, 76, 0.5);
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.06);
  text-align: center;
}

.membership-note-item strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.membership-note-item span {
  font-size: 0.88rem;
  color: var(--navy-soft);
}

.membership-note-item a {
  color: var(--gold);
  font-weight: 600;
}

.membership-note-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(201, 168, 76, 0.3);
}

/* ---------- SCROLL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav-links {
    gap: 16px;
  }

  .nav-cta {
    padding: 9px 14px;
  }

  .rooms-grid {
    justify-content: center;
  }

  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-card {
    flex: 0 1 calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }

  .gallery-item {
    flex: 0 0 calc((100% - 12px) / 2);
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(16, 42, 67, 0.98);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hamburger {
    display: flex;
  }

  .language-toggle {
    margin-left: auto;
    margin-right: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .rooms-grid {
    max-width: 500px;
    margin: 0 auto;
  }

  .membership-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 10px auto 0;
  }

  .membership-note {
    flex-direction: column;
    gap: 16px;
  }

  .membership-note-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .room-card {
    margin-bottom: 0;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .room-img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    width: 100%;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-slider-wrap {
    padding: 0 45px;
  }

  .gallery-item {
    flex: 0 0 100%;
    height: 280px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    min-height: 300px;
    height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0 10px;
  }

  .room-features {
    flex-wrap: wrap;
    gap: 8px;
  }

  .room-features li {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .room-info {
    padding: 20px;
  }

  .room-info h3 {
    font-size: 1.2rem;
  }

  .room-info p {
    font-size: 0.85rem;
  }

  .room-price {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .room-note {
    font-size: 0.75rem;
  }
}

/* Image loading: jangan sembunyikan gambar. Tampilkan langsung dengan placeholder gelap selagi dimuat. */
img {
  background-color: var(--navy);
}

.lazy-image {
  opacity: 1;
  filter: none;
  transition: opacity 0.4s ease;
}

.lazy-image.loaded {
  opacity: 1;
  filter: none;
}

.lazy-image-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: relative;
  overflow: hidden;
}

.lazy-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Spinning loader */
.lazy-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
