/* ============================================
   SEOLWANE ACCOMMODATION - WORLD CLASS WEBSITE
   A Premium Guest House Experience
   ============================================ */

/* CSS Variables for Theme */
:root {
  --primary-color: #1a4d2e;
  --primary-dark: #0f2d1a;
  --primary-light: #2d7a4a;
  --secondary-color: #c9a227;
  --secondary-light: #e6c04a;
  --accent-color: #8b6914;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f8f6f3;
  --bg-cream: #faf9f7;
  --bg-dark: #0a0a0a;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-white {
  background: var(--text-white);
  color: var(--primary-color);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-fast);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.header.scrolled .logo-text {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  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: var(--secondary-color);
  transition: var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-fast);
}

.header.scrolled .mobile-menu-btn span {
  background: var(--text-dark);
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-fast);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-white);
    font-size: 1.25rem;
  }
  
  .header-actions .btn {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 77, 46, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

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

.hero-slider-nav {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--text-white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 6rem 0;
}

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

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg-cream);
}

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

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

.about-image {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-1 {
  width: 280px;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-image-2 {
  width: 280px;
  height: 350px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.about-image-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
  z-index: 2;
  border: 8px solid var(--bg-cream);
}

.about-content {
  padding: 2rem 0;
}

.about-content .section-subtitle {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text h5 {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.feature-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-images {
    height: 400px;
    order: -1;
  }
  
  .about-content {
    text-align: center;
  }
  
  .about-content .section-subtitle,
  .about-content .section-title {
    text-align: center;
  }
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms-section {
  background: var(--bg-light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.room-card {
  background: var(--text-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

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

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

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

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.room-content {
  padding: 1.5rem;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.room-price .amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.room-price .period {
  font-size: 0.9rem;
  color: var(--text-light);
}

.room-description {
  margin-bottom: 1rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.amenity i {
  color: var(--primary-color);
}

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

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  position: relative;
  overflow: hidden;
}

.amenities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
}

.amenities-section .section-subtitle,
.amenities-section .section-title,
.amenities-section .section-description {
  color: var(--text-white);
}

.amenities-section .section-description {
  opacity: 0.9;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.amenity-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--text-dark);
}

.amenity-card h4 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.amenity-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--bg-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 77, 46, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-fast);
}

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

.gallery-overlay i {
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.gallery-overlay span {
  color: var(--text-white);
  font-size: 0.9rem;
}

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

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--bg-light);
  position: relative;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: 3rem;
}

.testimonial-content {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 5rem;
  font-family: var(--font-primary);
  color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
  margin-bottom: 0.5rem;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

.testimonial-location {
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonial-rating i {
  color: var(--secondary-color);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  position: relative;
  padding: 5rem 0;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 30px 30px;
}

.booking-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
}

.booking-section .section-title {
  color: #ffffff !important;
}

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

.booking-content .section-subtitle,
.booking-content .section-title {
  color: var(--text-white);
  text-align: left;
}

.booking-content p {
  color: rgba(255, 255, 255, 0.9);
}

.booking-features {
  margin-top: 2rem;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.booking-feature i {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.booking-form-container {
  background: var(--text-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.booking-form h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition-fast);
}

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

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

.booking-form .btn {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .booking-content .section-subtitle,
  .booking-content .section-title {
    text-align: center;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--bg-cream);
}

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

.contact-info {
  padding-right: 2rem;
}

.contact-info .section-subtitle {
  text-align: left;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin-bottom: 0;
}

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

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

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

.social-link {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.contact-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    padding-right: 0;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
  color: var(--text-white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--text-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

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

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

.footer-contact-item i {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.85), rgba(0, 0, 0, 0.7));
}

.page-header-content {
  position: relative;
  z-index: 10;
}

.page-header .page-title {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: var(--secondary-color);
}

.breadcrumb a:hover {
  color: var(--text-white);
}

/* ============================================
   ROOM DETAIL PAGE
   ============================================ */
.room-detail-section {
  padding: 4rem 0;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.room-gallery-main {
  grid-column: span 2;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
}

.room-gallery-thumb {
  border-radius: 10px;
  overflow: hidden;
  height: 150px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.room-gallery-thumb:hover {
  opacity: 0.8;
}

.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-info {
  background: var(--text-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.room-info-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.room-info-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.room-info-price .period {
  color: var(--text-light);
}

.room-info-amenities {
  margin-bottom: 1.5rem;
}

.room-info-amenities h4 {
  margin-bottom: 1rem;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.amenities-list li i {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .room-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .room-info {
    position: static;
  }
}

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 280px;
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 2rem 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.admin-logo {
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.admin-logo .logo-text {
  color: var(--text-white);
}

.admin-nav {
  padding: 0 1rem;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.admin-nav-item i {
  width: 20px;
  text-align: center;
}

.admin-main {
  flex: 1;
  margin-left: 280px;
  background: var(--bg-light);
}

.admin-header {
  background: var(--text-white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header h2 {
  font-size: 1.5rem;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.admin-content {
  padding: 2rem;
}

/* Dashboard Cards */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-card {
  background: var(--text-white);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.dashboard-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.dashboard-card-icon.bookings {
  background: rgba(26, 77, 46, 0.1);
  color: var(--primary-color);
}

.dashboard-card-icon.revenue {
  background: rgba(201, 162, 39, 0.1);
  color: var(--secondary-color);
}

.dashboard-card-icon.rooms {
  background: rgba(45, 122, 74, 0.1);
  color: var(--primary-light);
}

.dashboard-card-icon.guests {
  background: rgba(139, 105, 20, 0.1);
  color: var(--accent-color);
}

.dashboard-card-content h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.dashboard-card-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* Data Tables */
.data-table-container {
  background: var(--text-white);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.table-header h3 {
  margin-bottom: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.data-table th {
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-light);
}

.data-table tr:hover {
  background: var(--bg-light);
}

.status-badge {
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-badge.pending {
  background: rgba(201, 162, 39, 0.1);
  color: var(--secondary-color);
}

.status-badge.confirmed {
  background: rgba(26, 77, 46, 0.1);
  color: var(--primary-color);
}

.status-badge.cancelled {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.action-btn:hover {
  color: var(--primary-color);
}

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

@media (max-width: 992px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: var(--transition-fast);
  }
  
  .admin-sidebar.active {
    transform: translateX(0);
  }
  
  .admin-main {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .dashboard-cards {
    grid-template-columns: 1fr;
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--text-white);
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(-20px);
  transition: var(--transition-fast);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin-bottom: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* Loading Animation */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--bg-light);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-success {
  background: rgba(26, 77, 46, 0.1);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.alert-error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid #dc3545;
}

.alert-warning {
  background: rgba(201, 162, 39, 0.1);
  color: var(--accent-color);
  border: 1px solid var(--secondary-color);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==================== WHATSAPP WIDGET ==================== */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.whatsapp-btn svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.whatsapp-btn::before {
  content: 'Chat with us';
  position: absolute;
  right: 70px;
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ==================== SOCIAL MEDIA WIDGETS ==================== */
.social-widgets {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.social-widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-widget-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-widget-btn:hover::before {
  opacity: 0.5;
}

.social-widget-btn:hover {
  width: 60px;
}

.social-widget-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
  position: relative;
  z-index: 1;
}

.social-facebook {
  background: linear-gradient(135deg, #1877F2 0%, #0D5BBF 100%);
  border-radius: 0 8px 0 0;
}

.social-instagram {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.social-twitter {
  background: linear-gradient(135deg, #1DA1F2 0%, #0D8BD9 100%);
}

.social-youtube {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
  border-radius: 0 0 8px 0;
}

/* Social Share Buttons */
.social-share {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.social-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.social-share-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.share-facebook {
  background: #1877F2;
}

.share-whatsapp {
  background: #25D366;
}

.share-twitter {
  background: #1DA1F2;
}

.share-email {
  background: #666;
}

/* Follow Us Section */
.follow-us {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--light-color);
  border-radius: 10px;
  margin: 20px 0;
}

.follow-us-text {
  font-weight: 600;
  color: var(--dark-color);
}

.follow-us-links {
  display: flex;
  gap: 10px;
}

.follow-us-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  transition: all 0.3s ease;
}

.follow-us-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.follow-us-links a svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Mobile Responsiveness for Widgets */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-btn::before {
    display: none;
  }
  
  .social-widgets {
    top: auto;
    bottom: 100px;
    transform: none;
  }
  
  .social-widget-btn {
    width: 45px;
    height: 45px;
  }
  
  .social-widget-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ==================== GUEST HOUSE SELECTION ==================== */
.guest-house-selection {
  padding: 5rem 0;
  background: var(--bg-cream);
}

.guest-houses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.guest-house-card {
  background: var(--text-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  position: relative;
}

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

.guest-house-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.guest-house-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.guest-house-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-white);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guest-house-content {
  padding: 2rem;
}

.guest-house-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.guest-house-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.guest-house-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.guest-house-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.guest-house-features li i {
  color: var(--primary-color);
  font-size: 1rem;
}

@media (max-width: 992px) {
  .guest-houses-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== ROOM IMAGE LIGHTBOX ==================== */
.room-image {
  position: relative;
  cursor: pointer;
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 77, 46, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-fast);
}

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

.room-overlay i {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.room-overlay span {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==================== WHATSAPP POPUP WIDGET ==================== */
.whatsapp-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: var(--text-white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-popup-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-avatar {
  width: 50px;
  height: 50px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-avatar i {
  font-size: 1.75rem;
  color: #25D366;
}

.whatsapp-header-text h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.whatsapp-header-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.whatsapp-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.whatsapp-close:hover {
  opacity: 1;
}

.whatsapp-popup-body {
  padding: 1.5rem;
}

.whatsapp-message {
  background: #ECE5DD;
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 10px;
  margin-bottom: 1rem;
  position: relative;
}

.whatsapp-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #ECE5DD;
}

.whatsapp-message p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.whatsapp-message p:last-child {
  margin-bottom: 0;
}

.whatsapp-input-area {
  margin-top: 1rem;
}

.whatsapp-input-area textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  resize: none;
  height: 80px;
  transition: var(--transition-fast);
}

.whatsapp-input-area textarea:focus {
  outline: none;
  border-color: #25D366;
}

.whatsapp-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  margin-top: 0.75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--text-white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.whatsapp-send-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-2px);
}

.whatsapp-send-btn i {
  font-size: 1rem;
}

@media (max-width: 480px) {
  .whatsapp-popup {
    width: 300px;
    right: -10px;
  }
}

/* ==================== REDESIGNED CONTACT SECTION ==================== */
.contact-section-redesigned {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.contact-grid-redesigned {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-card {
  background: var(--text-white);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-card-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card-content a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-card-content a:hover {
  color: var(--secondary-color);
}

.contact-map-container {
  background: var(--text-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map-header {
  padding: 1.25rem 1.5rem;
  background: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-map-header h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin: 0;
}

.contact-map-header a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--text-white);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-map-header a:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.contact-map-wrapper {
  height: 350px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .contact-grid-redesigned {
    grid-template-columns: 1fr;
  }
  
  .contact-card:hover {
    transform: none;
  }
}

/* ==================== ADMIN LOGIN PAGE ==================== */
.admin-login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  padding: 2rem;
}

.admin-login-box {
  background: var(--text-white);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
}

.admin-login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.admin-login-header .logo {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.admin-login-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.admin-login-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.admin-login-form .form-group {
  margin-bottom: 1.5rem;
}

.admin-login-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.admin-login-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.admin-login-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.admin-login-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.admin-login-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.admin-login-footer a {
  color: var(--primary-color);
  font-weight: 500;
}

/* ==================== LIGHTBOX MODAL ==================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-modal-close:hover {
  color: var(--secondary-color);
}

.lightbox-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  border-radius: 10px;
  transition: var(--transition-fast);
}

.lightbox-modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-modal-prev {
  left: -80px;
}

.lightbox-modal-next {
  right: -80px;
}

.lightbox-modal-caption {
  text-align: center;
  color: var(--text-white);
  padding: 1rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .lightbox-modal-nav {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
  }
  
  .lightbox-modal-prev {
    left: 10px;
  }
  
  .lightbox-modal-next {
    right: 10px;
  }
}

/* ==================== ROOM FILTER BY GUEST HOUSE ==================== */
.guest-house-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.guest-house-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--text-white);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.guest-house-filter-btn:hover,
.guest-house-filter-btn.active {
  background: var(--primary-color);
  color: var(--text-white);
}

.guest-house-filter-btn i {
  font-size: 1.25rem;
}

.room-card[data-guest-house]::before {
  content: attr(data-guest-house);
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

/* ==================== ADDITIONAL RESPONSIVE STYLES ==================== */
@media (max-width: 768px) {
  .guest-house-features {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-card-icon {
    margin: 0 auto;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .admin-sidebar,
  .whatsapp-widget,
  .social-widgets {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
}
/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    padding: 15px;
    font-size: 16px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Guest House Filter Section */
.guest-house-filter {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a4a 100%);
}

.guest-house-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Room Image Hover Effect */
.room-image {
    position: relative;
    overflow: hidden;
}

.room-image::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(196, 163, 90, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.room-image:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* WhatsApp Popup Styles */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-popup-avatar {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-popup-avatar img {
    width: 35px;
    height: 35px;
}

.whatsapp-popup-info h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 2px;
}

.whatsapp-popup-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.whatsapp-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.whatsapp-popup-close:hover {
    opacity: 1;
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-welcome {
    background: #dcf8c6;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.whatsapp-popup-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
    height: 100px;
    font-family: inherit;
}

.whatsapp-popup-form textarea:focus {
    outline: none;
    border-color: #25d366;
}

.whatsapp-popup-form textarea::placeholder {
    color: #999;
}

.whatsapp-send-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ============================================
   GALLERY PREVIEW SECTION
   ============================================ */
.gallery-preview-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-preview-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-preview-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-preview-item:hover::after {
  opacity: 1;
}

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

@media (max-width: 576px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS GRID (Multiple Cards)
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonials-grid .testimonial-card {
  background: var(--text-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: left;
}

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

.testimonials-grid .testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonials-grid .testimonial-rating i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonials-grid .testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonials-grid .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: row;
}

.testimonials-grid .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
}

.testimonials-grid .author-info h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.testimonials-grid .author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .whatsapp-popup { width: calc(100% - 40px); right: 20px; }
}

/* ============================================
   WIFI BADGE STYLES
   ============================================ */
.wifi-badge {
  position: absolute;
  top: 50px;
  right: 15px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.wifi-badge i {
  font-size: 0.85rem;
}

.room-image {
  position: relative;
}

.room-image .room-badge:first-of-type {
  top: 15px;
}

.room-image .wifi-badge {
  z-index: 2;
}
