/* ============================================
   Homepage — Hero, Stats, Suites, Gallery, Booking
   ============================================ */

/* ── HERO SECTION ── */
.hero {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
  background: var(--color-dark);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active { 
  opacity: 1; 
  transform: scale(1); 
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.1) 40%, rgba(26,26,46,0.6) 100%);
}

.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}

/* ── HERO TEXT ANIMATION SYSTEM ── */
.hero-text-wrapper {
  position: relative;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 900px;
}
.hero-text {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  text-align: center;
  width: 100%;
}
.hero-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-text .hero-tag {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.hero-text.active .hero-tag {
  opacity: 1;
  transform: translateY(0);
}

.hero-tag {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: #ffffff;
  margin-bottom: 20px; background: rgba(0,0,0,0.4); padding: 12px 28px;
  border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  display: inline-block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 8vw, 6rem); 
  font-weight: 400; 
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  white-space: normal;
  overflow: visible;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title br { display: block; margin: 0.15em 0; }
.hero-title em { 
  font-style: italic; 
  color: #ffffff;
  font-weight: 300; 
}

/* Word animation */
.hero-text .hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin: 0 0.15em;
}
.hero-text.active .hero-title span {
  opacity: 1;
  transform: translateY(0);
}
.hero-text.active .hero-title span:nth-child(1) { transition-delay: 0.2s; }
.hero-text.active .hero-title span:nth-child(2) { transition-delay: 0.3s; }
.hero-text.active .hero-title span:nth-child(3) { transition-delay: 0.4s; }
.hero-text.active .hero-title span:nth-child(4) { transition-delay: 0.5s; }
.hero-text.active .hero-title span:nth-child(5) { transition-delay: 0.6s; }

.hero-text .hero-sub {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}
.hero-text.active .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  font-size: 0.9rem; 
  font-weight: 400; 
  letter-spacing: 0.15em;
  text-transform: uppercase; 
  color: rgba(255,255,255,0.8); 
  margin-top: 20px;
}
.hero-actions {
  display: flex; gap: 24px; margin-top: 48px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 1s forwards;
  position: relative; z-index: 10;
}

/* Hero Controls */
.hero-controls {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 12px;
}
.hero-dot {
  width: 40px; height: 3px; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.4s; border: none;
}
.hero-dot.active { background: var(--color-accent); width: 64px; }

.scroll-cue {
  position: absolute; bottom: 48px; right: 64px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: fadeIn 1s ease 2s forwards;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-accent));
  animation: scrollPulse 2s ease infinite;
}
.scroll-text {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); writing-mode: vertical-rl;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--glass-bg); border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 48px 64px; display: flex; justify-content: center; gap: 100px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem;
  color: var(--color-accent); line-height: 1; display: block;
}
.stat-label {
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-slate); margin-top: 12px; display: block;
}

/* ── INTRO SECTION ── */
.intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: center; max-width: 1400px; margin: 0 auto;
}
.intro-visual { position: relative; height: 600px; }
.intro-img-main {
  width: 80%; height: 480px; position: absolute; bottom: 0; right: 0;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
}
.intro-img-main img { width: 100%; height: 100%; object-fit: cover; }
.intro-img-accent {
  width: 50%; height: 340px; position: absolute; top: 0; left: 0;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover);
  border: 8px solid var(--white);
}
.intro-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.glass-badge {
  position: absolute; bottom: 40px; left: -30px; padding: 24px 32px; z-index: 2;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem;
  color: var(--color-accent); line-height: 1;
}
.badge-label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-slate); margin-top: 8px;
}

/* ── SUITES SECTION ── */
.suites { background: var(--lunar); }
.suites-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px;
}
.suites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.suite-card {
  position: relative; height: 560px; overflow: hidden; cursor: pointer;
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--transition);
}
.suite-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.suite-bg {
  position: absolute; inset: 0; transition: transform 0.8s var(--transition);
}
.suite-card:hover .suite-bg { transform: scale(1.05); }
.suite-bg img { width: 100%; height: 100%; object-fit: cover; }

.suite-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
}
.suite-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; }
.suite-tag {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-cream); margin-bottom: 12px; display: block;
}
.suite-name {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  font-weight: 300; color: var(--white); line-height: 1.1;
}
.suite-details {
  display: flex; gap: 20px; margin-top: 16px;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.suite-glass-info {
  position: absolute; top: 24px; right: 24px; padding: 12px 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  color: var(--color-dark);
  opacity: 0; transform: translateY(-10px); transition: all 0.4s var(--transition);
}
.suite-card:hover .suite-glass-info { opacity: 1; transform: translateY(0); }

/* ── EXPERIENCES ── */
.experience-wrap { background: var(--color-dark); color: var(--white); padding: 100px 0; }
.experience-wrap .section-title, .experience-wrap .section-body { color: var(--white); }
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }

.exp-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.exp-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  border-color: rgba(201,169,98,0.3);
}
.exp-card-img {
  position: relative; height: 200px; background-size: cover; background-position: center;
}
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.2) 0%, rgba(26,26,46,0.8) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
}
.exp-card:hover .exp-card-overlay { background: rgba(26,26,46,0.5); }
.exp-card-icon {
  font-size: 3rem; opacity: 0.9; transform: scale(1);
  transition: all 0.4s ease;
}
.exp-card:hover .exp-card-icon { transform: scale(1.2); }

.exp-card-content {
  position: relative; padding: 28px 24px; background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.7) 100%);
}
.exp-num {
  position: absolute; top: -18px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; color: var(--color-accent); opacity: 0.3; line-height: 1;
}
.exp-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  color: var(--white); margin-bottom: 12px; padding-top: 8px;
}
.exp-text { font-size: 0.85rem; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.exp-link {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-accent);
  text-decoration: none; transition: color 0.3s;
}
.exp-link:hover { color: var(--white); }
.exp-detail {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1); padding: 6px 12px;
  border-radius: var(--radius-pill); display: inline-block;
}

@media (max-width: 1200px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card-img { height: 180px; }
}

/* ── MENU PREVIEW ── */
.menu-section { background: var(--lunar); }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
.menu-card {
  background: var(--white); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 40px 32px;
  text-align: center; transition: all 0.4s var(--transition);
  box-shadow: var(--shadow-soft);
}
.menu-card:hover { transform: translateY(-8px); border-color: var(--color-accent); box-shadow: var(--shadow-hover); }
.menu-card-icon { font-size: 2.5rem; margin-bottom: 24px; }
.menu-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  color: var(--color-dark); margin-bottom: 12px;
}
.menu-card-text { font-size: 0.95rem; color: var(--color-slate); line-height: 1.6; }
.menu-card-img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }

/* ── GALLERY PREVIEW ── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 320px 320px;
  gap: 16px; margin-top: 64px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer; border-radius: var(--radius-md);
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-bg { position: absolute; inset: 0; transition: transform 0.8s var(--transition); }
.gallery-bg img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover .gallery-bg { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0; background: rgba(26,26,46,0);
  transition: background 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(26,26,46,0.3); }
.gallery-zoom {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8); transition: all 0.4s var(--transition);
  font-size: 1.6rem; color: var(--white);
  border: 1px solid rgba(255,255,255,0.5); border-radius: 50%;
  background: rgba(26,26,46,0.4); backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* ── BOOKING SECTION ── */
.booking {
  background: var(--lunar); padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
}
.booking-visual {
  min-height: 700px; background: var(--color-slate);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.booking-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3; mix-blend-mode: multiply;
}
.booking-form-wrap {
  padding: 100px 80px; display: flex; flex-direction: column;
  justify-content: center; background: var(--white);
}

/* ── FLOATING IMAGES ── */
.intro-img-accent {
  animation: floatImage 6s ease-in-out infinite;
}
.intro-img-main {
  animation: floatImage 6s ease-in-out infinite 1.5s;
}
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ── PARTICLE TEXT REVEAL ── */
.particle-text {
  position: relative;
  overflow: hidden;
}
.particle-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  filter: blur(10px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.particle-text.visible .word {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.particle-text .word:nth-child(1) { transition-delay: 0.05s; }
.particle-text .word:nth-child(2) { transition-delay: 0.1s; }
.particle-text .word:nth-child(3) { transition-delay: 0.15s; }
.particle-text .word:nth-child(4) { transition-delay: 0.2s; }
.particle-text .word:nth-child(5) { transition-delay: 0.25s; }
.particle-text .word:nth-child(6) { transition-delay: 0.3s; }
.particle-text .word:nth-child(7) { transition-delay: 0.35s; }
.particle-text .word:nth-child(8) { transition-delay: 0.4s; }
.particle-text .word:nth-child(9) { transition-delay: 0.45s; }
.particle-text .word:nth-child(10) { transition-delay: 0.5s; }
.particle-text .word:nth-child(11) { transition-delay: 0.55s; }
.particle-text .word:nth-child(12) { transition-delay: 0.6s; }
.particle-text .word:nth-child(13) { transition-delay: 0.65s; }
.particle-text .word:nth-child(14) { transition-delay: 0.7s; }
.particle-text .word:nth-child(15) { transition-delay: 0.75s; }
.particle-text .word:nth-child(16) { transition-delay: 0.8s; }
.particle-text .word:nth-child(17) { transition-delay: 0.85s; }
.particle-text .word:nth-child(18) { transition-delay: 0.9s; }
.particle-text .word:nth-child(19) { transition-delay: 0.95s; }
.particle-text .word:nth-child(20) { transition-delay: 1s; }

/* ── HERO SLIDE TEXT ── */
.slide-text-container {
  position: absolute; bottom: 120px; left: clamp(20px, 5vw, 64px); z-index: 5;
  max-width: min(600px, calc(100% - 40px));
}
.slide-text-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.4;
  opacity: 0; transform: translateY(20px);
  transition: all 0.8s ease 0.5s;
}
.hero-slide.active ~ .slide-text-container .slide-text-title,
.slide-text-title.show {
  opacity: 1; transform: translateY(0);
}

/* ── TEAM SECTION ── */
.team-section {
  padding: 120px 32px;
  background: linear-gradient(135deg, rgba(26,26,46,0.02) 0%, rgba(201,169,98,0.05) 100%);
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-intro {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* General Manager Spotlight */
.team-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,26,46,0.08);
  transition: all 0.6s ease;
}

.team-spotlight:hover {
  box-shadow: 0 24px 60px rgba(26,26,46,0.12);
  transform: translateY(-2px);
}

.spotlight-image {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 12px;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.spotlight-content {
  padding: 40px;
}

.spotlight-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(201,169,98,0.1);
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(201,169,98,0.3);
}

.spotlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.spotlight-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 300;
}

.spotlight-subtitle {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.spotlight-text {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.spotlight-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.spotlight-text p:last-child {
  margin-bottom: 0;
}

.spotlight-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trait {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(243,240,235,0.9);
  border-radius: 12px;
  transition: all 0.28s ease;
  border: 1px solid rgba(201,169,98,0.09);
  box-shadow: 0 6px 18px rgba(26,26,46,0.04);
}

.trait:hover {
  background: rgba(250,248,246,1);
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(26,26,46,0.06);
}

.trait-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,244,240,0.98));
  border: 1px solid rgba(201,169,98,0.14);
  box-shadow: 0 4px 12px rgba(201,169,98,0.06) inset;
}

.trait-icon i {
  font-size: 1.15rem;
  color: var(--color-accent);
}

.trait-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* Team Highlights */
.team-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.highlight-image {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,26,46,0.08);
  transition: all 0.6s ease;
}

.highlight-image:hover {
  box-shadow: 0 24px 60px rgba(26,26,46,0.12);
}

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

.highlight-image:hover img {
  transform: scale(1.08);
}

.highlight-content {
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26,26,46,0.06);
}

.highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.highlight-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 300;
}

.highlight-text {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-text);
  font-size: 1rem;
  border-bottom: 1px solid rgba(201,169,98,0.1);
}

.highlight-list li:before {
  content: '✓';
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

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

/* Team Values */
.team-values {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 8px 24px rgba(26,26,46,0.06);
}

.values-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 32px;
  text-align: center;
}

.values-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,169,98,0.05) 0%, transparent 100%);
  border: 1px solid rgba(201,169,98,0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: linear-gradient(135deg, rgba(201,169,98,0.1) 0%, transparent 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,169,98,0.1);
}

.value-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.value-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.value-desc {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Team Stats */
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.stat-box {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26,26,46,0.06);
  border: 1px solid rgba(201,169,98,0.1);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,26,46,0.1);
  border-color: rgba(201,169,98,0.3);
}

.stat-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
  display: block;
}

.stat-desc {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .intro { gap: 48px; }
  .exp-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  
  .team-spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .spotlight-image {
    height: 380px;
  }
  
  .spotlight-content {
    padding: 32px;
  }
  
  .team-highlights {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .highlight-image {
    height: 350px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  section { padding: 80px 32px; }
  .intro { grid-template-columns: 1fr; gap: 40px; }
  
  /* Intro visual — beautiful card layout for tablet */
  .intro-visual { 
    height: auto; margin-bottom: 0; 
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    position: relative;
  }
  .intro-img-main {
    position: relative; width: 100%; height: 280px;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-soft); border: none;
    animation: none;
  }
  .intro-img-accent {
    position: relative; width: 100%; height: 280px;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-soft); border: 4px solid var(--white);
    top: auto; left: auto; animation: none;
  }
  .glass-badge {
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    z-index: 3; padding: 16px 28px;
  }
  
  .suites-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 250px); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .booking { grid-template-columns: 1fr; }
  .booking-visual { min-height: 300px; }
  .booking-form-wrap { padding: 64px 32px; }
  .stats-bar { gap: 48px; padding: 48px 32px; }
  
  .team-section {
    padding: 80px 32px;
  }
  
  .team-spotlight {
    gap: 32px;
    padding: 32px;
  }
  
  .spotlight-image {
    height: 320px;
  }
  
  .spotlight-content {
    padding: 24px;
  }
  
  .spotlight-title {
    font-size: 2.2rem;
  }
  
  .team-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-actions { flex-direction: column; width: 100%; align-items: center; }
  
  /* Intro visual — single column with elegant overlap on phone */
  .intro-visual {
    grid-template-columns: 1fr; gap: 0;
    padding-bottom: 40px;
  }
  .intro-img-main {
    height: 320px; border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(26, 26, 46, 0.1);
  }
  .intro-img-accent {
    height: 200px; width: 65%;
    margin-top: -60px; margin-left: auto; margin-right: 16px;
    border: 4px solid var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(26, 26, 46, 0.12);
    position: relative; z-index: 2;
  }
  .glass-badge {
    bottom: 0; left: 16px; transform: none;
    padding: 14px 22px;
  }
  .badge-num { font-size: 2.2rem; }
  
  .suites-grid { grid-template-columns: 1fr; }
  .exp-grid, .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 250px); }
  .gallery-item:first-child { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .stats-bar { flex-direction: column; gap: 40px; }
  
  .team-section {
    padding: 60px 20px;
  }
  
  .team-header {
    margin-bottom: 40px;
  }
  
  .team-spotlight {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
  
  .spotlight-image {
    height: 280px;
  }
  
  .spotlight-content {
    padding: 20px;
  }
  
  .spotlight-title {
    font-size: 1.8rem;
  }
  
  .spotlight-traits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .team-highlights {
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .highlight-image {
    height: 280px;
  }
  
  .highlight-content {
    padding: 24px;
  }
  
  .highlight-title {
    font-size: 1.6rem;
  }
  
  .team-values {
    padding: 32px 24px;
  }
  
  .values-title {
    font-size: 1.8rem;
  }
  
  .values-grid {
    gap: 20px;
  }
  
  .value-card {
    padding: 20px;
  }
  
  .value-icon {
    font-size: 2.2rem;
  }
  
  .value-name {
    font-size: 1.4rem;
  }
  
  .stat-box {
    padding: 28px 24px;
  }
  
  .stat-large {
    font-size: 2.4rem;
  }
}

/* ══════════════════════════════════════════
   LUXURY ICON SYSTEM — Font Awesome Premium
   ══════════════════════════════════════════ */

/* ── Section Tag Icons ── */
.section-tag i {
  font-size: 0.85rem;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--color-accent);
  opacity: 0.95;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(201, 169, 98, 0.2);
}

.section-tag:hover i {
  text-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
  transform: scale(1.1);
}

/* ── Stats Bar Icons ── */
.stat-bar-icon {
  display: block;
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 12px;
  opacity: 0.95;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 4px 16px rgba(201, 169, 98, 0.3);
  font-weight: 600;
}

.stat:hover .stat-bar-icon {
  transform: translateY(-6px) scale(1.25) glow;
  opacity: 1;
  text-shadow: 0 8px 24px rgba(201, 169, 98, 0.5);
  filter: brightness(1.2);
}

/* ── Hero CTA Icon ── */
.btn-primary i {
  font-size: 1.1rem;
  vertical-align: middle;
  margin-right: 8px;
  transition: all 0.4s ease;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover i {
  transform: rotate(45deg) scale(1.15);
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* ── Suite Detail Icons ── */
.suite-details span i {
  font-size: 0.95rem;
  color: var(--color-accent);
  margin-right: 8px;
  vertical-align: middle;
  transition: all 0.3s ease;
  text-shadow: 0 2px 6px rgba(201, 169, 98, 0.2);
}

.suite-details span:hover i {
  transform: scale(1.15);
  text-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}

/* ── Gallery Zoom Icon ── */
.gallery-zoom i {
  font-size: 1.5rem;
  display: block;
  line-height: 1;
  color: var(--color-accent);
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(201, 169, 98, 0.3);
}

.gallery-zoom:hover i {
  transform: scale(1.2);
  text-shadow: 0 6px 16px rgba(201, 169, 98, 0.5);
}

/* ── Menu Card Title Icons ── */
.menu-card-title i {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-right: 10px;
  vertical-align: middle;
  transition: all 0.4s ease;
  text-shadow: 0 3px 10px rgba(201, 169, 98, 0.3);
  font-weight: 600;
}

.menu-card:hover .menu-card-title i {
  transform: scale(1.3) rotate(-10deg);
  text-shadow: 0 6px 16px rgba(201, 169, 98, 0.5);
}

/* ── Experience Card Icon ── */
.exp-card-icon i {
  display: block;
  font-size: 1.8rem;
  color: var(--color-accent);
  transition: all 0.4s ease;
  text-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
  font-weight: 600;
}

.exp-card-icon:hover i {
  transform: scale(1.3) translateY(-4px);
  text-shadow: 0 8px 20px rgba(201, 169, 98, 0.5);
}

/* ── Exp Link Arrow Icon ── */
.exp-link i {
  font-size: 0.95rem;
  vertical-align: middle;
  margin-left: 6px;
  transition: all 0.4s ease;
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
}

.exp-link:hover i {
  transform: translateX(8px) scale(1.2);
}

/* ── Team Stat Icon XL ── */
.stat-icon-xl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,169,98,0.15) 0%, rgba(201,169,98,0.05) 100%);
  border: 1px solid rgba(201,169,98,0.3);
  border-radius: 50%;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: all 0.4s ease;
}

.stat-icon-xl i {
  font-size: 2rem;
  color: var(--color-accent);
  text-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
  transition: all 0.4s ease;
}

.stat-icon-xl:hover i {
  transform: scale(1.2);
  text-shadow: 0 8px 20px rgba(201, 169, 98, 0.5);
}

/* ── Trait Icons (Team) ── */
.trait-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.1);
  transition: all 0.3s ease;
  margin-right: 8px;
}

.trait-icon i {
  font-size: 1.3rem;
  color: var(--color-accent);
  text-shadow: 0 2px 6px rgba(201, 169, 98, 0.2);
}

.trait-icon:hover {
  background: rgba(201, 169, 98, 0.2);
  transform: scale(1.15);
}

.trait-icon:hover i {
  text-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}

/* ── Value Icons (Large) ── */
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  transition: all 0.4s ease;
  color: var(--color-accent);
  text-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

.value-card:hover .value-icon {
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 8px 20px rgba(201, 169, 98, 0.5);
}

/* ── WiFi and Detail Icons ── */
.wifi-icon i,
.suite-details span i {
  text-shadow: 0 2px 6px rgba(201, 169, 98, 0.2);
  transition: all 0.3s ease;
}

.wifi-icon i:hover,
.suite-details span i:hover {
  text-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}

/* ── Gallery Zoom Icon ── */
.gallery-zoom i {
  font-size: 1.8rem;
  color: var(--color-accent);
  text-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom i {
  transform: scale(1.3);
  text-shadow: 0 6px 16px rgba(201, 169, 98, 0.5);
  filter: brightness(1.2);
}

/* ── Hours and Tips Section Icons ── */
.hours-day i,
.tip-header i {
  color: var(--color-accent);
  margin-right: 8px;
  font-size: 1rem;
  text-shadow: 0 2px 6px rgba(201, 169, 98, 0.2);
  transition: all 0.3s ease;
}

.hours-day i {
  font-size: 0.95rem;
}

.tip-header i {
  font-size: 1.2rem;
}

/* ── Font Awesome Global Enhancements ── */
i[class*="fas"] {
  transition: all 0.3s ease;
}

/* Add subtle glow effect on hover globally */
button i[class*="fas"],
a i[class*="fas"],
.stat-bar-icon i,
.exp-card-icon i {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-box:hover .stat-icon-xl {
  background: linear-gradient(135deg, rgba(201,169,98,0.3) 0%, rgba(201,169,98,0.1) 100%);
  border-color: var(--color-accent);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 24px rgba(201,169,98,0.2);
}

/* ── Highlight List Icons ── */
.highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-text);
  font-size: 1rem;
  border-bottom: 1px solid rgba(201,169,98,0.1);
}

.highlight-list li:before {
  display: none;
}

.highlight-list li i {
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.highlight-list li:hover i {
  transform: scale(1.2);
}

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

/* ── Tips List Icons ── */

/* ── Hours Icons ── */
.hours-day i {
  font-size: 0.9rem;
  margin-right: 6px;
  vertical-align: middle;
  color: var(--color-accent);
  opacity: 0.8;
}

.hours-item.highlight .hours-day i {
  color: #25D366;
}

/* ── Trait & Value Icons ── */
.trait-icon i {
  font-size: 1.4rem;
  color: var(--color-accent);
  display: block;
}

.value-icon i {
  font-size: 2.4rem;
  color: var(--color-accent);
}

.wifi-icon i {
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* ── Divine Golden Pulse on Stats Bar ── */
@keyframes goldenPulse {
  0%, 100% { opacity: 0.75; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.4); }
}

.stats-bar .stat-bar-icon i {
  animation: goldenPulse 3s ease-in-out infinite;
}

.stats-bar .stat:nth-child(2) .stat-bar-icon i { animation-delay: 0.5s; }
.stats-bar .stat:nth-child(3) .stat-bar-icon i { animation-delay: 1s; }
.stats-bar .stat:nth-child(4) .stat-bar-icon i { animation-delay: 1.5s; }

/* ── Fade In Up Animation ── */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── WHATSAPP CONTACT SECTION ── */
.whatsapp-section {
  padding: 120px 32px;
  background: linear-gradient(135deg, #f5f0e8 0%, rgba(201,169,98,0.05) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative elements */
.whatsapp-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,98,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.whatsapp-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,169,98,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.whatsapp-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.whatsapp-content {
  padding: 0;
  max-width: 750px;
}

.whatsapp-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* WhatsApp Button */
.whatsapp-cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5F 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.6s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #20BA5F 0%, #1fa84e 100%);
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-whatsapp i {
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover i {
  transform: scale(1.2);
}

.whatsapp-number {
  display: block;
  font-size: 1.15rem;
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Jost', sans-serif;
}

/* Business Hours Card */
.business-hours {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 5px solid var(--color-accent);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hours-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.5px;
}

.hours-title i {
  font-size: 1.8rem;
  color: var(--color-accent);
  text-shadow: 0 2px 6px rgba(201, 169, 98, 0.2);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 auto;
  max-width: 550px;
}

.hours-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: linear-gradient(135deg, rgba(201,169,98,0.08) 0%, rgba(201,169,98,0.02) 100%);
  border-radius: 12px;
  border: 1.5px solid rgba(201,169,98,0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.hours-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hours-item:hover {
  border-color: rgba(201,169,98,0.4);
  background: linear-gradient(135deg, rgba(201,169,98,0.15) 0%, rgba(201,169,98,0.05) 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,169,98,0.2);
}

.hours-item:hover::before {
  opacity: 1;
}

.hours-item.highlight {
  background: linear-gradient(135deg, rgba(37,211,102,0.12) 0%, rgba(37,211,102,0.04) 100%);
  border-color: rgba(37,211,102,0.4);
}

.hours-item.highlight::before {
  background: linear-gradient(90deg, #25D366, transparent);
}

.hours-item.highlight:hover {
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
  transform: translateY(-4px);
}

.hours-day {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}

.hours-day i {
  color: var(--color-accent);
  font-size: 1.1rem;
  text-shadow: 0 2px 6px rgba(201, 169, 98, 0.2);
}

.hours-time {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 6px;
  font-family: 'Jost', sans-serif;
}

.hours-item.highlight .hours-time {
  color: #25D366;
  text-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

/* Tips Section */
.whatsapp-tips {
  background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, rgba(37,211,102,0.04) 100%);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 32px;
  border-left: 5px solid #25D366;
  border: 1.5px solid rgba(37,211,102,0.2);
  border-left: 5px solid #25D366;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.1);
}

.tip-header {
  color: var(--color-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tip-header i {
  color: #25D366;
  font-size: 1.3rem;
  text-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  color: var(--color-text);
  padding: 10px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.tips-list li:hover {
  padding-left: 8px;
  color: var(--color-dark);
}

.tips-list li i {
  color: #25D366;
  font-size: 1rem;
  margin-top: 4px;
  text-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
  flex-shrink: 0;
}
 

.hours-time {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 4px;
}

.hours-item.highlight .hours-time {
  color: #25D366;
}

/* Tips Section */
.whatsapp-tips {
  background: rgba(37,211,102,0.08);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #25D366;
}

.tip-header {
  color: var(--color-dark);
  margin-bottom: 12px;
  display: block;
  font-size: 0.95rem;
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  color: var(--color-text);
  padding: 6px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tips-list li:before {
  content: '✓';
  color: #25D366;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Phone Mockup */
.whatsapp-visual {
  display: none;
}

.whatsapp-phone-mockup {
  width: 320px;
  height: 580px;
  background: var(--color-dark);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(26,26,46,0.25), 
              0 0 40px rgba(201,169,98,0.1),
              inset 0 0 0 1px rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  animation: phoneGlow 3s ease-in-out infinite;
}

.whatsapp-phone-mockup:hover {
  box-shadow: 0 32px 80px rgba(26,26,46,0.3),
              0 0 60px rgba(201,169,98,0.15),
              inset 0 0 0 1px rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

@keyframes phoneGlow {
  0%, 100% { box-shadow: 0 24px 60px rgba(26,26,46,0.25), 0 0 40px rgba(201,169,98,0.1), inset 0 0 0 1px rgba(255,255,255,0.15); }
  50% { box-shadow: 0 24px 60px rgba(26,26,46,0.25), 0 0 60px rgba(201,169,98,0.2), inset 0 0 0 1px rgba(255,255,255,0.2); }
}

.whatsapp-phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 24px;
  background: var(--color-dark);
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-header {
  background: #25D366;
  color: white;
  padding: 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 12px;
}

.phone-carrier {
  display: block;
}

.phone-time {
  display: block;
}

.phone-chat {
  flex: 1;
  background: #f5f0e8;
  padding: 16px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-message {
  display: flex;
  margin-bottom: 6px;
  animation: fadeInUp 0.5s ease-out;
}

.chat-message.received {
  justify-content: flex-start;
}

.chat-message.received p {
  background: var(--white);
  color: var(--color-dark);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 2px;
  margin: 0;
  font-size: 0.85rem;
  max-width: 200px;
  box-shadow: 0 2px 8px rgba(26,26,46,0.1);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.chat-message.received p:hover {
  box-shadow: 0 4px 12px rgba(26,26,46,0.15);
}

.chat-message.sent {
  justify-content: flex-end;
}

.chat-message.sent p {
  background: linear-gradient(135deg, #DCF8C6, #E8FDD7);
  color: var(--color-dark);
  padding: 10px 14px;
  border-radius: 14px 14px 2px 14px;
  margin: 0;
  font-size: 0.85rem;
  max-width: 200px;
  box-shadow: 0 2px 8px rgba(26,26,46,0.1);
  transition: all 0.3s ease;
  line-height: 1.4;
  font-weight: 500;
}

.chat-message.sent p:hover {
  box-shadow: 0 4px 12px rgba(26,26,46,0.15);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  background: rgba(26,26,46,0.5);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
  box-shadow: 0 1px 3px rgba(26,26,46,0.2);
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% { 
    opacity: 0.4;
    transform: translateY(0);
  }
  30% { 
    opacity: 1;
    transform: translateY(-4px);
  }
}

/* WiFi Password Badge */
.wifi-password-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(201,169,98,0.15) 0%, rgba(201,169,98,0.05) 100%);
  border: 2px solid var(--color-accent);
  border-radius: 50px;
  padding: 10px 16px;
  margin-top: 12px;
  font-weight: 600;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.wifi-password-badge:hover {
  background: linear-gradient(135deg, rgba(201,169,98,0.25) 0%, rgba(201,169,98,0.1) 100%);
  transform: scale(1.05);
}

.wifi-icon {
  font-size: 1rem;
}

.wifi-password-text {
  font-family: 'Monaco', monospace;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .whatsapp-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .whatsapp-content {
    padding: 0;
  }

  .whatsapp-phone-mockup {
    width: 280px;
    height: 500px;
  }
}

@media (max-width: 900px) {
  .whatsapp-section {
    padding: 80px 32px;
  }

  .whatsapp-section::before {
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .business-hours {
    padding: 28px;
    margin-bottom: 28px;
  }

  .btn-whatsapp {
    padding: 16px 36px;
    font-size: 1rem;
  }

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

@media (max-width: 600px) {
  .whatsapp-section {
    padding: 60px 20px;
  }

  .whatsapp-section::before,
  .whatsapp-section::after {
    display: none;
  }

  .whatsapp-wrapper {
    gap: 32px;
  }

  .whatsapp-phone-mockup {
    width: 240px;
    height: 420px;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .whatsapp-number {
    font-size: 1.05rem;
  }

  .hours-title {
    font-size: 1.3rem;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .hours-item {
    padding: 16px;
  }

  .hours-day {
    font-size: 0.92rem;
  }

  .hours-time {
    font-size: 1rem;
    margin-top: 4px;
  }

  .business-hours {
    padding: 20px;
    margin-bottom: 24px;
  }

  .whatsapp-tips {
    padding: 20px;
  }

  .tip-header {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .tips-list li {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .tips-list li i {
    font-size: 0.95rem;
  }

  .whatsapp-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}
