/* 
   Style Sheet - Payasos e Inflables Blim Blim
   Premium Children's Entertainment Web
*/

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Outfit:wght@100..900&display=swap');

:root {
  --color-primary: #ff4a8b;      /* Magenta/Pink */
  --color-primary-hover: #ff2e78;
  --color-secondary: #0ea5e9;    /* Cyan/Blue */
  --color-secondary-hover: #0284c7;
  --color-accent: #facc15;       /* Warm Yellow */
  --color-accent-hover: #eab308;
  --color-purple: #a855f7;       /* Bright Purple */
  --color-success: #10b981;      /* Emerald Green (Hygiene/Safety) */
  
  --bg-main: #fafaf9;            
  --bg-card: #ffffff;
  --text-dark: #1c1917;          
  --text-muted: #6b6661;
  --text-light: #ffffff;
  
  --font-heading: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-round: 50px;
  
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-primary: 0 10px 20px -5px rgba(255, 74, 139, 0.4);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

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

ul {
  list-style: none;
}

/* Background Animations */
.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.decoration-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatUp 15s infinite ease-in-out;
}

.bubble-1 { width: 80px; height: 80px; background-color: var(--color-primary); left: 5%; top: 20%; animation-duration: 12s; }
.bubble-2 { width: 120px; height: 120px; background-color: var(--color-secondary); right: 8%; top: 40%; animation-duration: 18s; animation-delay: 2s; }
.bubble-3 { width: 60px; height: 60px; background-color: var(--color-accent); left: 15%; top: 75%; animation-duration: 10s; animation-delay: 5s; }
.bubble-4 { width: 100px; height: 100px; background-color: var(--color-purple); right: 18%; top: 85%; animation-duration: 15s; animation-delay: 1s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-40px) scale(1.1) rotate(180deg); }
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

.section-title-wrapper {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.section-subtitle {
  color: var(--color-primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  border-radius: 10px;
  margin: 15px auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius-round);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  gap: 8px;
}

.btn-primary { background-color: var(--color-primary); color: var(--text-light); box-shadow: var(--shadow-primary); }
.btn-primary:hover { background-color: var(--color-primary-hover); transform: translateY(-3px); box-shadow: 0 12px 24px -5px rgba(255, 74, 139, 0.6); }

.btn-secondary { background-color: var(--color-secondary); color: var(--text-light); box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4); }
.btn-secondary:hover { background-color: var(--color-secondary-hover); transform: translateY(-3px); box-shadow: 0 12px 24px -5px rgba(14, 165, 233, 0.6); }

.btn-outline { background-color: transparent; border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background-color: var(--color-primary); color: var(--text-light); transform: translateY(-3px); }

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(250, 250, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
  height: 70px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img-brand {
  max-height: 60px;
  width: auto;
  border-radius: var(--border-radius-sm);
  object-fit: contain;
  transition: var(--transition-smooth);
}
header.scrolled .logo-img-brand {
  max-height: 50px;
}

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

nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 10px;
  transition: var(--transition-smooth);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.menu-toggle span { display: block; width: 25px; height: 3px; background-color: var(--text-dark); margin: 5px 0; transition: var(--transition-smooth); border-radius: 3px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background-color: var(--color-primary); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); background-color: var(--color-primary); }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  background: radial-gradient(circle at 10% 20%, rgba(254, 244, 226, 0.7) 0%, rgba(255, 228, 230, 0.6) 90%);
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, var(--bg-main), transparent); z-index: 2;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.hero-content { z-index: 3; }
.hero-tag {
  background-color: rgba(255, 74, 139, 0.1); color: var(--color-primary);
  padding: 8px 16px; border-radius: var(--border-radius-round); font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 600; display: inline-block; margin-bottom: 20px;
  border: 1px solid rgba(255, 74, 139, 0.2);
}
.hero-title { font-size: 4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; line-height: 1.15; }
.hero-title span { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-description { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 35px; max-width: 540px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-container { position: relative; z-index: 3; display: flex; justify-content: center; align-items: center; }
.hero-img-wrapper {
  position: relative;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  width: 450px; height: 450px; display: flex; justify-content: center; align-items: center;
  overflow: hidden; box-shadow: var(--shadow-lg); animation: morphBlob 12s ease-in-out infinite alternate;
}
.hero-img-wrapper img { width: 98%; height: 98%; object-fit: contain; border-radius: inherit; transition: var(--transition-smooth); }
.hero-img-wrapper:hover img { transform: scale(1.05); }

@keyframes morphBlob {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.floating-badge {
  position: absolute; background-color: var(--bg-card); padding: 16px 24px; border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; z-index: 4; animation: bounceSlow 3s infinite ease-in-out;
}
.badge-1 { top: 10%; left: 0; }
.badge-2 { bottom: 12%; right: -5px; animation-delay: 1.5s; }
.floating-badge .badge-icon {
  width: 40px; height: 40px; background-color: rgba(250, 204, 21, 0.2); color: var(--color-accent-hover);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.floating-badge.blue .badge-icon { background-color: rgba(14, 165, 233, 0.2); color: var(--color-secondary); }
.floating-badge h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.floating-badge p { font-size: 0.8rem; color: var(--text-muted); }

@keyframes bounceSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Por Qué Elegirnos */
.features { background-color: #ffffff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.feature-item {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-main);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
}
.feature-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background-color: #ffffff; border: 1px solid rgba(255,74,139,0.1); }
.feature-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background-color: rgba(16, 185, 129, 0.1); color: var(--color-success);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.feature-item:nth-child(2) .feature-icon { background-color: rgba(14, 165, 233, 0.1); color: var(--color-secondary); }
.feature-item:nth-child(3) .feature-icon { background-color: rgba(250, 204, 21, 0.1); color: var(--color-accent-hover); }
.feature-item:nth-child(4) .feature-icon { background-color: rgba(168, 85, 247, 0.1); color: var(--color-purple); }
.feature-item h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--text-dark); }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Services Section */
.services { background-color: var(--bg-main); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
  background-color: var(--bg-card); border-radius: var(--border-radius-lg); padding: 40px 30px;
  text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition-smooth);
  border: 3px solid transparent; position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 8px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255, 74, 139, 0.15); }
.service-icon-wrapper {
  width: 80px; height: 80px; margin: 0 auto 25px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
  transition: var(--transition-smooth); background-color: rgba(255, 74, 139, 0.1); color: var(--color-primary);
}
.service-card:nth-child(2) .service-icon-wrapper { background-color: rgba(14, 165, 233, 0.1); color: var(--color-secondary); }
.service-card:nth-child(3) .service-icon-wrapper { background-color: rgba(168, 85, 247, 0.1); color: var(--color-purple); }
.service-card:hover .service-icon-wrapper { transform: scale(1.1) rotate(10deg); }
.service-title { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 15px; font-weight: 700; }
.service-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 25px; flex-grow: 1; }
.service-link { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px; }
.service-card:nth-child(2) .service-link { color: var(--color-secondary); }
.service-card:nth-child(3) .service-link { color: var(--color-purple); }
.service-link span { transition: var(--transition-smooth); }
.service-card:hover .service-link span { transform: translateX(4px); }

/* Catálogo de Inflables y Botargas */
.catalog { background-color: #ffffff; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.catalog-item {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid #f0f0f0;
}
.catalog-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.catalog-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.catalog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.catalog-item:hover .catalog-img img { transform: scale(1.05); }
.catalog-content { padding: 25px; }
.catalog-content h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-dark); }
.catalog-specs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.catalog-specs li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.95rem; }
.catalog-specs li i { color: var(--color-secondary); font-size: 1.1rem; width: 20px; text-align: center; }

/* About Us Section */
.about { background-color: var(--bg-main); overflow: hidden; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.about .container.features { display: block; }
.about-images { position: relative; }
.about-img-main { width: 80%; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg); position: relative; z-index: 2; border: 8px solid #ffffff; }
.about-img-sub { width: 50%; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg); position: absolute; bottom: -40px; right: 0; z-index: 3; border: 8px solid #ffffff; }
.about-pattern { position: absolute; top: -20px; left: -20px; width: 120px; height: 120px; background-image: radial-gradient(var(--color-primary) 20%, transparent 20%); background-size: 15px 15px; opacity: 0.2; z-index: 1; }
.about-content { z-index: 2; }
.about-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 25px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 35px; }
.about-feature-item { display: flex; align-items: center; gap: 12px; }
.feature-check { width: 32px; height: 32px; background-color: rgba(16, 185, 129, 0.1); color: var(--color-success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: bold; }
.about-feature-item span:last-child { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); }

/* Galería (Mosaico rápido) */
.gallery-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { background-color: var(--bg-card); border: 2px solid transparent; color: var(--text-muted); padding: 10px 24px; border-radius: var(--border-radius-round); font-family: var(--font-heading); font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); box-shadow: var(--shadow-sm); }
.filter-btn:hover { color: var(--color-primary); background-color: rgba(255, 74, 139, 0.05); }
.filter-btn.active { background-color: var(--color-primary); color: var(--text-light); box-shadow: var(--shadow-primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.gallery-item { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; transition: var(--transition-smooth); background-color: var(--bg-card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.gallery-item:hover img { transform: scale(1.1); }

/* FAQ Section */
.faq { background-color: #ffffff; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background-color: var(--bg-main); border-radius: var(--border-radius-md); overflow: hidden; border: 1px solid #eaeaea; transition: var(--transition-smooth); }
.faq-item.active { border-color: var(--color-primary); box-shadow: 0 4px 15px rgba(255,74,139,0.1); }
.faq-question { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
.faq-question h3 { font-size: 1.15rem; color: var(--text-dark); margin: 0; font-family: var(--font-body); font-weight: 600; }
.faq-question i { color: var(--color-primary); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; padding: 0 25px; }
.faq-answer p { color: var(--text-muted); padding-bottom: 25px; font-size: 1rem; }
.faq-item.active .faq-answer { max-height: 500px; /* arbitrary large max height for transition */ }

/* Blog Section */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background-color: var(--bg-card); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition-smooth); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-date { color: var(--color-secondary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; display: block; }
.blog-content h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--text-dark); line-height: 1.3; }
.blog-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.blog-link { color: var(--color-primary); font-family: var(--font-heading); font-weight: 600; text-decoration: none; display: inline-block; transition: var(--transition-smooth); }
.blog-link:hover { color: var(--color-primary-hover); transform: translateX(5px); }

/* Contacto & Booking Form Section */
.booking { background: radial-gradient(circle at 90% 80%, rgba(255, 228, 230, 0.5) 0%, rgba(224, 242, 254, 0.5) 100%), var(--bg-main); position: relative; }
.booking-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: flex-start; }
.booking-content h3 { font-size: 2.2rem; margin-bottom: 20px; color: var(--text-dark); }
.booking-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 20px; }
.booking-card { background-color: var(--bg-card); border-radius: var(--border-radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, 0.8); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-control { width: 100%; padding: 14px 18px; border-radius: var(--border-radius-md); border: 2px solid #e5e5e0; background-color: #fafaf9; font-family: var(--font-body); font-size: 1rem; transition: var(--transition-smooth); color: var(--text-dark); }
.form-control:focus { border-color: var(--color-primary); background-color: #ffffff; box-shadow: 0 0 0 4px rgba(255, 74, 139, 0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Footer */
footer { background-color: #1c1917; color: #fafaf9; padding: 80px 0 30px; position: relative; overflow: hidden; }
footer .bg-decorations .decoration-bubble { opacity: 0.05; }
footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-info .logo { color: #ffffff; margin-bottom: 20px; }
.footer-info p { color: #a8a29e; font-size: 0.95rem; margin-bottom: 25px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.1); color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition-smooth); }
.social-btn:hover { background-color: var(--color-primary); color: #ffffff; transform: translateY(-3px); }
.footer-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background-color: var(--color-secondary); border-radius: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { color: #a8a29e; font-size: 0.95rem; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--color-secondary); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; color: #a8a29e; font-size: 0.95rem; }
.footer-contact-icon { color: var(--color-primary); font-size: 1.1rem; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; color: #78716c; font-size: 0.9rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: #a8a29e; }

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white;
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 999; transition: var(--transition-smooth); animation: floatBounce 2.5s infinite;
}
.whatsapp-float:hover { background-color: #20ba5a; transform: scale(1.1); box-shadow: 0 6px 15px rgba(0,0,0,0.4); }

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.2rem; }
  .hero-img-wrapper { width: 380px; height: 380px; }
  footer .container { grid-template-columns: 1fr 1fr; gap: 30px; }
  .booking-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .section-title { font-size: 2.2rem; }
  .menu-toggle { display: block; }
  nav {
    position: fixed; top: var(--header-height); left: -100%; width: 100%; height: calc(100vh - var(--header-height));
    background-color: #ffffff; flex-direction: column; align-items: center; justify-content: flex-start; padding: 40px 24px;
    transition: var(--transition-smooth); z-index: 999; box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  nav.active { left: 0; }
  .nav-links { flex-direction: column; align-items: center; gap: 20px; margin-bottom: 30px; }
  .nav-links a { font-size: 1.3rem; }
  .hero .container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-img-wrapper { width: 320px; height: 320px; }
  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .about-images { order: 2; display: flex; justify-content: center; }
  .about-img-main { width: 70%; }
  .about-img-sub { width: 45%; bottom: -20px; right: 10%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-img-wrapper { width: 260px; height: 260px; }
  .floating-badge { padding: 10px 14px; }
  .floating-badge h4 { font-size: 0.8rem; }
  .floating-badge p { font-size: 0.7rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer .container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
