   1. HERO SECTION — Fullscreen Video Background
==================================================== */

/* ── Hero wrapper: fullscreen ── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Video background layer ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .hero-video,
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ── Dark gradient overlay — cinematic, video still visible ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,    rgba(0,0,0,0.75) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 30%),
    rgba(0, 0, 0, 0.20);
  z-index: 1;
  pointer-events: none;
}

/* ── Text content — centered over video ── */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;          /* slightly increased — cinematic */
  text-shadow: 0 4px 60px rgba(0,0,0,0.8);
}

.hero-slogan {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(236, 228, 216, 0.85);
  font-weight: 300;
  letter-spacing: 0.06em;          /* airy subtitle spacing */
  margin-bottom: 3rem;
}

/* ── CTA buttons ── */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====================================================
   2. ABOUT SECTION
==================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

/* ── about-img-frame: clip container for parallax + reveal ── */
.about-img-frame {
  position: relative;
  height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Layered tinted depth shadows */
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(201, 169, 110, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  /* Hover: scale wrapper, NOT the inner img — GSAP owns transform on img */
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-frame:hover {
  transform: scale(1.015);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.65),
    0 20px 50px rgba(201, 169, 110, 0.12),
    0 0 0 1px rgba(201, 169, 110, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Color treatment overlay: gradient + gold tint blended on top */
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 8, 5, 0.65) 0%,
    rgba(60, 40, 10, 0.18) 50%,
    transparent 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* Inner image — GSAP owns transform (parallax y). CSS: filter only. */
.about-img {
  width: 100%;
  height: 110%;          /* +10% headroom for parallax travel */
  margin-top: -5%;       /* center the extra height */
  object-fit: cover;
  display: block;
  transition: filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-frame:hover .about-img {
  filter: brightness(1.06) saturate(1.08);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--primary);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-text .eyebrow { margin-bottom: 0.5rem; }
.about-text .eyebrow::after { left: 0; transform: none; }
[dir="rtl"] .about-text .eyebrow::after { left: auto; right: 0; }

.about-desc {
  font-size: 1rem;
  color: var(--text-mid);          /* warm off-white — legible on dark */
  line-height: 2.1;
  margin: 1.5rem 0;
}

/* About Stats */
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  flex: 1;
  min-width: 80px;
  padding: 1rem;
  border: 1px solid rgba(200, 169, 106, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 106, 0.04);
}
.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);        /* warm muted — visible on dark */
  margin-top: 0.4rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ====================================================
   3. SERVICES / MENU / ROOMS CARDS
==================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--speed) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), transparent);
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,110,0.4);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(201, 169, 110, 0.10),
    0 0 0 1px rgba(201, 169, 110, 0.18);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 70px; height: 70px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--accent);
  transition: all var(--speed) var(--ease);
}
.service-card:hover .card-icon {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.1);
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}

/* ====================================================
   4. GALLERY SECTION — Luxury Asymmetric Grid
==================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 310px 310px;
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--gray);
}
/* Gallery item: hover scale on the WRAPPER — GSAP owns transform on inner img */
.gallery-item {
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 169, 110, 0.14);
  z-index: 2;
}

/* Inner img: GSAP owns transform (parallax y). CSS: filter only. */
.gallery-item img {
  width: 100%;
  height: 110%;          /* +10% headroom for parallax travel */
  margin-top: -5%;       /* center the extra height */
  object-fit: cover;
  display: block;
  transition: filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
  filter: contrast(1.05) brightness(1.04) saturate(1.08);
}

/* Layered vignette: bottom gradient + gold tint color treatment */
.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(13, 8, 5, 0.80) 0%,
    rgba(60, 35, 5, 0.22) 55%,
    transparent 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.55s ease;
}
.gallery-item:hover::after { opacity: 0.6; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: rgba(255,255,255,0.92);
  font-size: 1.6rem;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* First item spans full height (2 rows) */
.gallery-item:first-child { grid-row: 1 / 3; }

/* ====================================================
   5. VIDEO SECTION — Luxury Floating / Edge-Masked
==================================================== */
.video-float-section {
  background: #09080a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--section-py) 0;
  gap: 3rem;
}

.video-float-wrap {
  position: relative;
  width: 96%;
  max-width: 1300px;
  margin: 0 auto;
}

.video-float-inner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.video-float-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Four edge gradient masks creating the "floating in space" effect */
.video-mask-left,
.video-mask-right,
.video-mask-top,
.video-mask-bottom {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.video-mask-left {
  top: 0; bottom: 0; left: 0;
  width: 7%;
  background: linear-gradient(to right, #09080a, transparent);
}
.video-mask-right {
  top: 0; bottom: 0; right: 0;
  width: 7%;
  background: linear-gradient(to left, #09080a, transparent);
}
.video-mask-top {
  top: 0; left: 0; right: 0;
  height: 14%;
  background: linear-gradient(to bottom, #09080a, transparent);
}
.video-mask-bottom {
  bottom: 0; left: 0; right: 0;
  height: 14%;
  background: linear-gradient(to top, #09080a, transparent);
}

/* Keep old modal styles for fallback */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
}
.video-modal-inner video {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 80vh;
}
.video-modal-close {
  position: absolute;
  top: -45px; right: 0;
  color: var(--white);
  font-size: 1.5rem;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--speed) ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.25); }

/* ====================================================
   6. TESTIMONIALS SECTION
==================================================== */
.testimonials-swiper {
  padding: 1rem 0 3.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 169, 106, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-dark);
  text-align: center;
  height: auto;
  backdrop-filter: blur(6px);
  transition: border-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.testimonial-card:hover {
  border-color: rgba(200, 169, 106, 0.35);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);          /* warm off-white — legible on dark card */
  line-height: 2.0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b0b0b;
  margin: 0 auto 0.75rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(200,169,106,0.35);
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);             /* white on dark card */
  font-size: 0.95rem;
}

/* Swiper customization */
.testimonials-swiper .swiper-pagination-bullet { background: var(--accent); }
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  color: var(--accent);
  width: 40px; height: 40px;
}
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after { font-size: 1rem; }

/* ====================================================
   7. CONTACT SECTION
==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-icon.whatsapp-icon { background: rgba(200,169,106,0.12); color: var(--accent); }

.contact-item-text h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);            /* gold label — premium feel */
  margin-bottom: 0.3rem;
}
.contact-item-text p, .contact-item-text a {
  font-size: 1rem;
  color: var(--text-mid);          /* warm off-white on dark bg */
  font-weight: 500;
}
.contact-item-text a:hover { color: var(--accent); }

.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-mid);
  transition: all var(--speed) var(--ease);
}
.social-icon:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Floating Label Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 169, 106, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(4px);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(200, 169, 106, 0.25);
  background: transparent;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);              /* warm white on dark */
  outline: none;
  transition: border-color var(--speed) ease;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group label {
  position: absolute;
  top: 0.75rem; right: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  pointer-events: none;
  transition: all var(--speed) ease;
}
[dir="ltr"] .form-group label { right: auto; left: 0; }

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -0.9rem;
  font-size: 0.75rem;
  color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }

.form-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line { width: 100%; }

.form-success {
  text-align: center;
  color: var(--success);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.form-success.visible { display: block; }

/* Maps */
.maps-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.maps-wrap iframe { display: block; }

/* ====================================================
   8. FOOTER
==================================================== */
#footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-slogan {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--speed) var(--ease);
}
.footer-socials a:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--speed) ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.footer-contact-list i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ====================================================
   0. 3D CINEMATIC INTRO SECTION
==================================================== */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#intro.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease, visibility 1s ease;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  pointer-events: none;
}

.intro-eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: introFade 1s ease 0.5s both;
}

.intro-name {
  /* system-font fallback so name always renders even if Google Fonts blocked */
  font-family: var(--font-heading), 'Georgia', 'Times New Roman', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  animation: introFade 1s ease 0.8s both;
  text-shadow: 0 0 80px rgba(201,169,110,0.4), 0 4px 40px rgba(0,0,0,0.6);
}

.intro-slogan {
  font-family: 'Cairo', 'Arial', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 3.5rem;
  animation: introFade 1s ease 1.1s both;
  font-weight: 400;
  letter-spacing: 1px;
}

.intro-eyebrow {
  font-family: 'Cairo', 'Arial', sans-serif;
}

.intro-enter-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  /* hard-coded gold so it always shows even if --accent fails to load */
  color: #c9a96e;
  font-family: 'Cairo', 'Arial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: introFade 1s ease 1.4s both, introBounce 2s ease 2.5s infinite;
  pointer-events: all;
  transition: opacity 0.3s ease;
  cursor: pointer;
  /* visible border so button is always clickable even if text invisible */
  border: 1px solid rgba(201,169,110,0.5);
  padding: 0.75rem 2rem;
  border-radius: 2px;
  background: rgba(201,169,110,0.08);
  min-width: 120px;
  min-height: 44px;
}
.intro-enter-btn span { font-weight: 600; color: #c9a96e; }
.intro-enter-btn i { font-size: 1.1rem; }
/* text fallback when FontAwesome not loaded */
.intro-enter-btn i::before { content: '▼'; }
.intro-enter-btn:hover { opacity: 0.7; }

.intro-scroll-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 0;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: introLine 1.5s ease 2s forwards;
}
@keyframes introLine { to { height: 100px; } }

@keyframes introFade {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes introBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ====================================================
   TYPE-SPECIFIC COLOR THEMES
==================================================== */
/* Default: restaurant → gold (already in :root) */

/* Hotel → Royal Sapphire Blue */
body.type-hotel {
  --accent:       #4a90d9;
  --accent-light: #6ab0f0;
  --accent-dark:  #2a70b9;
}

/* Mall → Elegant Violet */
body.type-mall {
  --accent:       #9b59b6;
  --accent-light: #bb79d6;
  --accent-dark:  #7b3996;
}

/* Hospital → Teal / Cyan */
body.type-hospital {
  --accent:       #1abc9c;
  --accent-light: #3adcbc;
  --accent-dark:  #0a9c7c;
}

/* Cafe → Warm Espresso Brown */
body.type-cafe {
  --accent:       #c07850;
  --accent-light: #e09870;
  --accent-dark:  #a05830;
}

/* Gym → Energetic Red-Orange */
body.type-gym {
  --accent:       #e74c3c;
  --accent-light: #f76c5c;
  --accent-dark:  #c72c1c;
}

/* ====================================================
   RESPONSIVE — TABLET (≤ 992px)
==================================================== */
@media (max-width: 992px) {
  :root { --section-py: 70px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: var(--primary-soft);
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    z-index: 850;
  }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img  { height: 380px; }
  .about-badge { right: 0; bottom: -1rem; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; }
  .gallery-item:first-child { grid-row: 1 / 3; }

  .video-float-wrap { width: 100%; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ====================================================
   RESPONSIVE — MOBILE (≤ 600px)
==================================================== */
@media (max-width: 600px) {
  :root { --section-py: 55px; }

  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }

  .cards-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .gallery-item:first-child { grid-row: 1 / 3; grid-column: auto; }

  .contact-form-wrap { padding: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-slogan { max-width: 100%; }

  .about-stats { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
}

/* ====================================================
