/* ================================
   MOKAWA GROUP WEBSITE - MAIN STYLES
   Rooted in Culture, Designed to Deliver
   ================================ */

/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ========== CSS VARIABLES - BRAND COLORS ========== */
:root {
  /* Brand Colors from Logo */
  --primary-bronze: #8B6F47;
  --light-bronze: #A0826D;
  --dark-brown: #2C2416;
  --beige-cream: #F5F5DC;
  --gold-accent: #D4AF37;
  --white: #FFFFFF;
  
  /* Neutral Colors */
  --gray-light: #F5F5F5;
  --gray-medium: #999999;
  --gray-dark: #333333;
  --black: #000000;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ========== RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-brown);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-dark {
  background-color: var(--dark-brown);
  color: var(--white);
}

.section-light {
  background-color: var(--beige-cream);
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: linear-gradient(135deg, var(--dark-brown), var(--primary-bronze));
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

/* LARGE VISIBLE LOGO */
.navbar-logo img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.6));
  transition: var(--transition-normal);
}

.navbar.scrolled .navbar-logo img {
  height: 70px;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-menu a {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: var(--transition-normal);
}

.navbar.scrolled .navbar-menu a {
  color: var(--white);
}

.navbar-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-accent);
}

.navbar-menu a::after {
  display: none;
}

/* Dropdown Menu */
.navbar-menu > li {
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-brown);
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  z-index: 1000;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  text-transform: none;
  letter-spacing: normal;
  text-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  border-radius: 0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--primary-bronze);
  padding-left: 2rem;
  color: var(--white);
}

.dropdown-menu a i {
  color: var(--gold-accent);
  font-size: 1.1rem;
}

.dropdown > a::after {
  content: ' ▾';
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-bronze);
  transition: var(--transition-fast);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 36, 22, 0.5), rgba(139, 111, 71, 0.4)),
              url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600') center/cover;
  z-index: -1;
  animation: zoomInSlow 20s ease-in-out infinite alternate;
}

@keyframes zoomInSlow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 var(--spacing-md);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1rem;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
  animation-fill-mode: forwards !important;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--white);
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards, textGlow 3s ease-in-out 1.5s infinite alternate;
  animation-fill-mode: forwards !important;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--beige-cream);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
  animation-fill-mode: forwards !important;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
  animation-fill-mode: forwards !important;
}

.hero-content .btn {
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
  animation-fill-mode: forwards !important;
}

/* Force all hero content to stay visible */
.hero-content * {
  opacity: 1 !important;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--gold-accent);
  color: var(--dark-brown);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: #c49b2c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-bronze);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-bronze);
  border: 2px solid var(--primary-bronze);
}

.btn-outline:hover {
  background-color: var(--primary-bronze);
  color: var(--white);
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 700px;
  margin: 0 auto;
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* ========== ABOUT SECTION ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--beige-cream);
  border-radius: 10px;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-bronze);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-dark);
}

/* ========== PORTFOLIO GRID ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.hotel-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  background-color: var(--white);
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.hotel-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.1);
}

.hotel-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(44, 36, 22, 0.9));
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-md);
  opacity: 0; will-change: opacity;
  transition: var(--transition-normal);
}

.hotel-card:hover .hotel-card-overlay {
  opacity: 1;
}

.hotel-card-content {
  padding: var(--spacing-md);
}

.hotel-card-location {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-bronze);
  margin-bottom: 0.5rem;
}

.hotel-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hotel-card-description {
  font-size: 0.95rem;
  color: var(--gray-medium);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ========== SERVICES SECTION ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.service-card {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--gold-accent);
  margin-bottom: var(--spacing-md);
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-bronze);
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-medium);
}

/* ========== TEAM SECTION ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.team-member {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto var(--spacing-md);
  object-fit: cover;
  border: 5px solid var(--gold-accent);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-brown);
}

.team-title {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-bronze);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-medium);
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-form {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-brown);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-bronze);
}

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

.contact-info {
  padding: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--gold-accent);
  margin-top: 0.25rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-bronze);
}

.contact-details p {
  font-size: 0.95rem;
  color: var(--gray-medium);
  margin: 0;
}

.contact-details a {
  color: var(--primary-bronze);
}

.contact-details a:hover {
  color: var(--gold-accent);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

.social-icon:hover {
  background-color: var(--gold-accent);
  color: var(--dark-brown);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0; will-change: opacity;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .navbar-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }
  
  .navbar-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.3rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.text-bronze { color: var(--primary-bronze); }
.text-gold { color: var(--gold-accent); }
.text-white { color: var(--white); }

.bg-beige { background-color: var(--beige-cream); }
.bg-dark { background-color: var(--dark-brown); }

/* ========== DECORATIVE WAVES ========== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-top {
  transform: rotate(180deg);
}

/* ========== HERO IMAGE SLIDESHOW ========== */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  animation: zoomInSlow 20s ease-in-out infinite alternate;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 36, 22, 0.7), rgba(139, 111, 71, 0.5));
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
  padding: 4rem 0;
  background: var(--beige-cream);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-top: 2rem;
}

.partner-logo {
  width: 140px;
  height: auto;
  opacity: 0.7;
  transition: var(--transition-normal);
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* FIX: Prevent text from disappearing */
.hero-content * {
  animation-fill-mode: forwards !important;
}

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

/* ========== WAVY DECORATIVE GRAPHICS ========== */
.wave-decoration {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.wave-decoration::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f5f5dc' d='M0,50 Q360,100 720,50 T1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

.wave-decoration-bottom::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f5f5dc' d='M0,50 Q360,0 720,50 T1440,50 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
  background-color: var(--beige-cream);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,50 Q360,100 720,50 T1440,50 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.partners-title {
  font-size: 1.8rem;
  color: var(--primary-bronze);
  margin-bottom: 2rem;
  font-weight: 600;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Image slideshow for hotel pages */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideshow 20s infinite;
}

.slideshow-image:nth-child(1) {
  animation-delay: 0s;
}

.slideshow-image:nth-child(2) {
  animation-delay: 5s;
}

.slideshow-image:nth-child(3) {
  animation-delay: 10s;
}

.slideshow-image:nth-child(4) {
  animation-delay: 15s;
}

@keyframes slideshow {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; transform: scale(1); }
  25% { opacity: 1; transform: scale(1.1); }
  30% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1); }
}

/* Ensure hero text stays visible */
.hero-subtitle,
.hero-title,
.hero-tagline,
.hero-description,
.hero-content > div,
.hero-content .btn {
  animation-fill-mode: forwards !important;
  opacity: 1 !important;
}

/* Override with entrance animations that stay */
.hero-subtitle {
  animation: fadeInStay 1.5s ease 0.5s forwards !important;
}

.hero-title {
  animation: fadeInStay 1.5s ease 1s forwards, textGlowContinuous 4s ease-in-out 2.5s infinite alternate !important;
}

.hero-tagline {
  animation: fadeInStay 1.5s ease 1.5s forwards !important;
}

.hero-description {
  animation: fadeInStay 1.5s ease 2s forwards !important;
}

.hero-content > div,
.hero-content .btn {
  animation: fadeInStay 1.5s ease 2.5s forwards !important;
}

@keyframes fadeInStay {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1 !important;
    transform: translateY(0);
  }
}

@keyframes textGlowContinuous {
  0% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  }
  100% {
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

/* ========== WAVE DIVIDERS - ENHANCED STYLING ========== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-top {
  transform: rotate(180deg);
}

.wave-divider path {
  fill: currentColor;
}
