@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #9c1c1f; /* Rojo Colonial Principal - De la paleta */
  --primary-light: #b01d24; /* Rojo Medio de la paleta */
  --primary-dark: #5c180a; /* Rojo Oscuro / Burdeos del Logo */
  --accent-bright: #e41e30; /* Rojo Encendido Acento */
  --secondary: #c5a880; /* Dorado Colonial */
  --secondary-light: #dfc8a5;
  --secondary-dark: #9e7f58;
  --bg-light: #faf8f5;
  --bg-white: #ffffff;
  --bg-dark: #1c1817;
  --text-dark: #2b2625;
  --text-muted: #6e6462;
  --text-light: #ffffff;
  --wa-green: #25D366;
  --wa-green-dark: #128C7E;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 20px rgba(156, 28, 31, 0.05);
  --shadow-lg: 0 15px 35px rgba(156, 28, 31, 0.08);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --max-width: 1200px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 2rem;
}

header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 0.5rem 0;
}

header.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-cta {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--primary);
}

.nav-cta:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

header.scrolled .nav-cta {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

header.scrolled .nav-cta:hover {
  background-color: transparent;
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

header.scrolled .mobile-nav-toggle {
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slider {
  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%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--secondary-light);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

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

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.btn-whatsapp {
  background-color: var(--wa-green);
  color: var(--text-light);
  border: 1px solid var(--wa-green);
}

.btn-whatsapp:hover {
  background-color: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
}

/* Sections General */
section {
  padding: 6rem 2rem;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 35%;
  width: 30%;
  height: 2px;
  background-color: var(--secondary);
}

.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* El Hotel (About) Section */
.about {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: justify;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-icon {
  background-color: rgba(156, 28, 31, 0.08);
  color: var(--primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.highlight-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.about-images {
  position: relative;
  height: 450px;
}

.about-img {
  position: absolute;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
  transition: var(--transition-smooth);
}

.about-img-1 {
  width: 75%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-img-2 {
  width: 65%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.about-images:hover .about-img-1 {
  transform: translate(-10px, -10px);
}

.about-images:hover .about-img-2 {
  transform: translate(10px, 10px);
  z-index: 3;
}

/* Rooms Section */
.rooms {
  background-color: var(--bg-light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.room-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(197, 168, 128, 0.1);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.room-img-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.room-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.room-card:hover .room-img-container img {
  transform: scale(1.08);
}

.room-price-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.room-info {
  padding: 2rem;
}

.room-title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.room-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  height: 4.5rem;
  overflow: hidden;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.amenity-item svg {
  color: var(--secondary-dark);
  width: 16px;
  height: 16px;
}

.room-card .btn {
  width: 100%;
}

/* Services Section */
.services {
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-light);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light);
  background-color: var(--bg-white);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  font-size: 2rem;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--text-light);
  transform: rotateY(360deg);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-white);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 230px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(92, 24, 10, 0.8);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  transition: var(--transition-smooth);
  padding: 1.5rem;
  text-align: center;
}

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

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

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

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

.gallery-item-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-light);
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

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

.gallery-item-icon {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 24, 23, 0.98);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
  border: 2px solid rgba(197, 168, 128, 0.2);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--secondary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Contact Section */
.contact {
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-info-desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 0.2rem;
  width: 30px;
  display: flex;
  justify-content: center;
}

.contact-detail-content h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.contact-detail-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 250px;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.contact-form-container {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0,0,0,0.1);
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92, 24, 10, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-response {
  padding: 1rem;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
}

.form-response.success {
  display: block;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--wa-green-dark);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.form-response.error {
  display: block;
  background-color: rgba(92, 24, 10, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(92, 24, 10, 0.2);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 2rem 2rem;
  border-top: 3px solid var(--secondary);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about .logo img {
  height: 70px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
}

.footer-contact-icon {
  color: var(--secondary);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-webmail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-light);
}

.footer-webmail:hover {
  text-decoration: underline;
}

/* WhatsApp Widget */
.wa-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1500;
  font-family: var(--font-sans);
}

.wa-btn {
  width: 60px;
  height: 60px;
  background-color: var(--wa-green);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
}

.wa-btn:hover {
  background-color: var(--wa-green-dark);
  transform: scale(1.08);
}

.wa-btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--wa-green);
  opacity: 0.4;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.wa-chat-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.2);
  transform: scale(0.9);
  opacity: 0;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.wa-chat-box.active {
  display: flex;
  transform: scale(1);
  opacity: 1;
}

.wa-chat-header {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wa-avatar {
  width: 45px;
  height: 45px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  font-family: var(--font-serif);
  font-weight: bold;
}

.wa-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: var(--wa-green);
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.wa-header-info h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.wa-header-info p {
  font-size: 0.75rem;
  opacity: 0.8;
}

.wa-chat-body {
  padding: 1.2rem;
  background-color: #efeae2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 250px;
  overflow-y: auto;
}

.wa-msg-bubble {
  background-color: var(--bg-white);
  padding: 0.8rem 1rem;
  border-radius: 0 10px 10px 10px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  font-size: 0.88rem;
  align-self: flex-start;
  position: relative;
}

.wa-msg-time {
  display: block;
  text-align: right;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.wa-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wa-action-btn {
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.7rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.wa-action-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.wa-action-btn svg {
  stroke: var(--primary);
  width: 18px;
  height: 18px;
  transition: var(--transition-smooth);
}

.wa-action-btn:hover svg {
  stroke: var(--text-light) !important;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .about-grid {
    gap: 2rem;
  }
  
  .contact-grid {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-images {
    height: 350px;
    max-width: 500px;
    margin: 2rem auto 0 auto;
    width: 100%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  header.scrolled {
    padding: 0.6rem 1rem;
  }
  
  .mobile-nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-light);
    font-size: 1.2rem;
  }
  
  header.scrolled .nav-link {
    color: var(--text-light);
  }
  
  .nav-cta {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 80%;
    max-width: 300px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .wa-chat-box {
    width: 290px;
    right: -10px;
  }
}

/* --- Scroll Reveal Animations (Framer Motion Replica) --- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Staggered Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Custom Glow & Hover Effects (21st.dev Style) */
.room-card:hover {
  border-color: var(--primary-light) !important;
  box-shadow: 0 20px 45px rgba(156, 28, 31, 0.12) !important;
}

.service-card:hover {
  border-color: var(--secondary-light) !important;
  box-shadow: 0 15px 35px rgba(156, 28, 31, 0.08) !important;
}

.section-title::after {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%) !important;
  height: 3px !important;
  left: 25% !important;
  width: 50% !important;
}

.nav-cta {
  box-shadow: 0 4px 12px rgba(156, 28, 31, 0.2) !important;
}

.nav-cta:hover {
  box-shadow: none !important;
}

/* --- Inline SVG Icons Styling --- */
.icon-svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  transition: stroke 0.3s ease;
}

.icon-svg-sm {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}

.highlight-icon .icon-svg {
  width: 22px;
  height: 22px;
}

.service-icon .icon-svg {
  width: 32px;
  height: 32px;
  transition: stroke 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon .icon-svg {
  stroke: var(--text-light) !important;
}

.contact-detail-icon .icon-svg {
  width: 20px;
  height: 20px;
}
