/* WHMS theme with beautiful gradients and animations */
:root{--primary:#2f6f7f;--primary-600:#255a67;--primary-700:#1f4b55;--accent:#3aa6a1;--bg:#f8fafc;--card:#ffffff;--text:#1f2937;--muted:#6b7280;--border:#e5e7eb}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(-4px) rotate(0deg); }
  75% { transform: translateY(-12px) rotate(-1deg); }
}

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

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,'Noto Sans','Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';background:var(--bg);color:var(--text);min-height:100vh}
.container{max-width:1100px;margin:0 auto;padding:24px}

.navbar{
  display:flex;align-items:center;justify-content:space-between;padding:16px 24px;
  border-bottom:1px solid rgba(255,255,255,0.2);position:sticky;top:0;z-index:10;
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-600) 100%);
  background-size:200% 200%;animation:gradientShift 6s ease infinite;
  color:#fff;box-shadow:0 4px 20px rgba(47,111,127,0.3);
  position:relative;overflow:hidden;
}
.navbar::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(255,255,255,0.1) 0%,transparent 70%);animation:pulse 4s ease-in-out infinite;}

.navbar .nav a{color:#e7f3f6;opacity:.9;transition:all 0.3s ease;position:relative;padding:8px 12px;border-radius:8px;}
.navbar .nav a:hover{opacity:1;background:rgba(255,255,255,0.1);transform:translateY(-2px);}
.navbar .nav a::after{content:'';position:absolute;bottom:0;left:50%;width:0;height:2px;background:#fff;transition:all 0.3s ease;transform:translateX(-50%);}
.navbar .nav a:hover::after{width:80%;}

.brand{display:flex;align-items:center;gap:12px;font-weight:800;font-size:20px;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.brand img{width:36px;height:36px;animation:float 4s ease-in-out infinite;filter:drop-shadow(0 4px 8px rgba(0,0,0,0.2));transition:all 0.3s ease;}
.brand span{display:inline-block;animation:float 4s ease-in-out infinite}
.brand img:hover{transform:scale(1.1) rotate(5deg);}

.nav{display:flex;gap:20px}
.nav a{text-decoration:none;font-weight:600;font-size:16px}

.btn{
  background:linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color:#fff;border:none;border-radius:12px;padding:12px 20px;cursor:pointer;
  box-shadow:0 4px 15px rgba(47,111,127,0.3);font-weight:700;font-size:16px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);position:relative;overflow:hidden;
}
.btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);transition:left 0.5s;}
.btn:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 8px 25px rgba(47,111,127,0.4);}
.btn:hover::before{left:100%;}
.btn:active{transform:translateY(-1px) scale(0.98);}

.card{
  background:var(--card);border:1px solid var(--border);border-radius:20px;padding:24px;
  box-shadow:0 8px 32px rgba(16,24,40,0.12);position:relative;overflow:hidden;
  animation:slideInUp 0.6s ease-out;
}
.card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#2f6f7f,#3aa6a1,#2f6f7f,#3aa6a1);background-size:200% 100%;animation:shimmer 3s ease-in-out infinite;}

.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.muted{color:var(--muted);font-size:14px;font-weight:500}

/* Inputs with enhanced styling */
input,select,textarea{
  width:100%;padding:14px 18px;border:2px solid var(--border);border-radius:12px;
  background:linear-gradient(145deg,#ffffff,#f8fafc);color:var(--text);
  font-size:16px;font-weight:500;transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
input:focus,select:focus,textarea:focus{
  outline:none;border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(58,166,161,0.1),0 4px 20px rgba(58,166,161,0.15);
  transform:translateY(-2px);
}
input:hover,select:hover,textarea:hover{border-color:var(--accent);transform:translateY(-1px);}

label{display:grid;gap:8px;font-size:15px;color:#374151;font-weight:700;text-transform:uppercase;letter-spacing:0.5px;}

/* Badges and filters with gradients */
.badge{display:inline-block;padding:6px 12px;border-radius:9999px;background:linear-gradient(135deg,#e6f4f1,#d1fae5);color:#14534d;font-weight:700;font-size:13px;border:1px solid #bfe2dd;box-shadow:0 2px 8px rgba(0,0,0,0.1);}
.filterchip{display:inline-flex;align-items:center;gap:10px;padding:10px 16px;border-radius:9999px;background:linear-gradient(135deg,#e6eef2,#f1f5f9);color:#1f2937;border:1px dashed #cbd5e1;font-weight:600;transition:all 0.3s ease;}
.filterchip:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,0.1);}

/* Room card with enhanced styling */
.room-card{
  border:3px solid #2bb673;background:#fff;border-radius:20px;padding:20px;
  box-shadow:0 8px 32px rgba(43,182,115,0.15);transition:all 0.3s ease;
  position:relative;overflow:hidden;
}
.room-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#2bb673,#3aa6a1,#2bb673);background-size:200% 100%;animation:shimmer 3s ease-in-out infinite;}
.room-card:hover{transform:translateY(-8px) scale(1.02);box-shadow:0 12px 40px rgba(43,182,115,0.25);}

.price-pill{display:inline-block;background:linear-gradient(135deg,#e8f1ee,#d1fae5);border:2px solid #c8e2d7;color:#256c57;border-radius:12px;padding:10px 16px;font-weight:800;font-size:16px;box-shadow:0 2px 8px rgba(0,0,0,0.1);}

/* Enhanced animations */
@media (prefers-reduced-motion: no-preference) {
  .animate-fade-in {animation: fade-in .6s ease-out both}
  .animate-slide-up {animation: slide-up .8s cubic-bezier(.22,.61,.36,1) both}
  .hover-lift {transition: transform .3s ease, box-shadow .3s ease}
  .hover-lift:hover {transform: translateY(-4px); box-shadow:0 12px 40px rgba(16,24,40,.15)}
}

@keyframes fade-in { from {opacity:0} to {opacity:1} }
@keyframes slide-up { from {opacity:0; transform: translateY(20px)} to {opacity:1; transform: translateY(0)} }

/* Room Showcase Animations */
.room-showcase-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.room-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(58, 166, 161, 0.05), rgba(45, 212, 191, 0.05));
    pointer-events: none;
}

.showcase-card {
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(58, 166, 161, 0.2) !important;
}

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

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

.room-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.room-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .room-image-container::after {
    opacity: 1;
}

/* Reveal overlay text on hover for room cards */
.showcase-card:hover .room-overlay{opacity:1}
.showcase-card:hover .room-overlay div{transform:translateY(0)}

/* Staggered animation for room cards */
.room-cards-grid .room-card:nth-child(1) {
    animation-delay: 0.3s;
}

.room-cards-grid .room-card:nth-child(2) {
    animation-delay: 0.4s;
}

.room-cards-grid .room-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Shimmer effect for room cards */
@keyframes cardShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.showcase-card:hover::before {
    left: 100%;
}

/* Responsive design for room showcase */
@media (max-width: 768px) {
    .room-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .room-showcase-section {
        padding: 40px 15px;
    }
    
    .section-header h2 {
        font-size: 24px !important;
    }
    
    .section-header p {
        font-size: 16px !important;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
}

.mobile-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
    font-weight: 300;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(58, 166, 161, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.mobile-nav-item:hover::before {
    transform: translateX(100%);
}

.mobile-nav-item:hover {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left-color: var(--accent);
    transform: translateX(8px);
    color: var(--primary);
}

.mobile-nav-item.logout-item {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.mobile-nav-item.logout-item:hover {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-left-color: #ef4444;
    color: #dc2626;
}

.nav-icon {
    font-size: 24px;
    margin-right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover .nav-icon {
    background: linear-gradient(135deg, var(--accent), #2dd4bf);
    transform: scale(1.1) rotate(5deg);
}

.logout-item:hover .nav-icon {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.nav-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.nav-subtitle {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.2;
}

.mobile-nav-item:hover .nav-subtitle {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar {
        padding: 12px 20px;
    }
    
    .brand span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mobile-nav-content {
        width: 100%;
        max-width: 100vw;
    }
    
    .mobile-nav-item {
        padding: 20px;
    }
    
    .nav-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .nav-title {
        font-size: 18px;
    }
    
    .nav-subtitle {
        font-size: 14px;
    }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
  color: #f9fafb;
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(58, 166, 161, 0.1), rgba(45, 212, 191, 0.05));
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-info h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-info h3::before {
  content: '🏨';
  font-size: 32px;
  animation: float 3s ease-in-out infinite;
}

.footer-address {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.footer-address:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.address-title {
  color: #3aa6a1;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-title::before {
  content: '📍';
  font-size: 20px;
}

.address-text {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.footer-map {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 300px;
  position: relative;
  cursor: pointer;
}

.footer-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
  pointer-events: none;
}

.footer-map:hover iframe {
  filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.footer-map:hover .map-overlay {
  opacity: 1;
}

.map-overlay-content {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.footer-map:hover .map-overlay-content {
  transform: translateY(0);
}

.map-overlay h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #3aa6a1;
}

.map-overlay p {
  margin: 0;
  font-size: 14px;
  color: #d1d5db;
}

.map-overlay-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.footer-links a:hover {
  color: #3aa6a1;
  background: rgba(58, 166, 161, 0.1);
  transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }
  
  .footer-info h3 {
    font-size: 24px;
  }
  
  .footer-address {
    padding: 20px;
  }
  
  .address-text {
    font-size: 15px;
  }
  
  .footer-map {
    height: 250px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-info h3 {
    font-size: 20px;
  }
  
  .footer-address {
    padding: 16px;
  }
  
  .footer-map {
    height: 200px;
  }
}

/* Pricing Section Animations */
.pricing-card {
  position: relative;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(58, 166, 161, 0.15) !important;
}

.pricing-card:hover .room-image-container img {
  transform: scale(1.05);
}

.pricing-card:hover .badge {
  transform: scale(1.1);
  background: rgba(58, 166, 161, 1) !important;
}

.pricing-card:hover .price-box {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd) !important;
  transform: scale(1.02);
}

.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(58, 166, 161, 0.4) !important;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(-1px) scale(1.02);
}

/* Badge animations */
.badge {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 3s ease-in-out infinite;
}

.badge:nth-child(1) {
  animation-delay: 0.1s;
}

.badge:nth-child(2) {
  animation-delay: 0.2s;
}

/* Price box animations */
.price-box {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(58, 166, 161, 0.1), transparent);
  transition: left 0.5s ease;
}

.pricing-card:hover .price-box::before {
  left: 100%;
}

/* CTA Section animations */
.cta-section {
  transition: all 0.3s ease;
}

.cta-section:hover {
  border-color: #3aa6a1;
  background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
}

/* Responsive pricing section */
@media (max-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .pricing-card {
    padding: 20px !important;
  }
  
  .room-image-container {
    height: 150px !important;
  }
  
  .cta-section {
    padding: 30px 20px !important;
  }
  
  .cta-button {
    padding: 16px 28px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 15px !important;
  }
  
  .pricing-card {
    padding: 16px !important;
  }
  
  .room-badges {
    flex-direction: column !important;
    gap: 6px !important;
  }
  
  .badge {
    font-size: 10px !important;
    padding: 4px 8px !important;
  }
  
  .price-box {
    padding: 12px 16px !important;
  }
  
  .price-box div:first-child {
    font-size: 20px !important;
  }
}

/* ===== INCREDIBLE HOVER EFFECTS ===== */

/* Sparkle Animation */
@keyframes sparkle {
  0%, 100% { 
    opacity: 0; 
    transform: scale(0) rotate(0deg); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1) rotate(180deg); 
  }
}

/* Amazing Hover Effects for Room Cards */
.room-card.showcase-card:hover {
  transform: translateY(-15px) scale(1.02) rotateX(5deg) rotateY(5deg);
  box-shadow: 
    0 25px 50px rgba(58, 166, 161, 0.3),
    0 0 0 1px rgba(58, 166, 161, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.room-card.showcase-card:hover .room-image-container {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.room-card.showcase-card:hover .room-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(58, 166, 161, 0.5));
}

.room-card.showcase-card:hover .room-overlay {
  opacity: 1 !important;
  background: linear-gradient(45deg, rgba(58, 166, 161, 0.95), rgba(45, 212, 191, 0.95));
}

.room-card.showcase-card:hover .room-overlay span {
  transform: translateY(0) scale(1.1);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.room-card.showcase-card:hover .sparkle-effect {
  opacity: 1;
}

.room-card.showcase-card:hover .room-content {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(58, 166, 161, 0.02), rgba(45, 212, 191, 0.01));
  border-radius: 0 0 16px 16px;
}

.room-card.showcase-card:hover .room-content h3 {
  color: #3aa6a1;
  transform: translateX(5px);
}

.room-card.showcase-card:hover .room-content h3 span {
  color: #2dd4bf;
  transform: scale(1.2);
}

.room-card.showcase-card:hover .room-content p {
  color: #475569;
  transform: translateX(3px);
}

.room-card.showcase-card:hover .room-content div {
  color: #2dd4bf;
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}

/* Magnetic Effect */
.room-card.showcase-card {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.room-card.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(58, 166, 161, 0.1), rgba(45, 212, 191, 0.1));
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 16px;
  z-index: -1;
}

.room-card.showcase-card:hover::before {
  opacity: 1;
}

/* Glow Effect */
.room-card.showcase-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3aa6a1, #2dd4bf, #3aa6a1, #2dd4bf);
  background-size: 400% 400%;
  border-radius: 18px;
  opacity: 0;
  z-index: -2;
  animation: gradientShift 3s ease infinite;
  transition: opacity 0.6s ease;
}

.room-card.showcase-card:hover::after {
  opacity: 0.7;
}

/* Pulse Effect on Hover */
@keyframes pulseGlow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(58, 166, 161, 0.3);
  }
  50% { 
    box-shadow: 0 0 40px rgba(58, 166, 161, 0.6);
  }
}

.room-card.showcase-card:hover {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Bounce Effect for Images */
.room-card.showcase-card:hover img {
  animation: bounceImage 0.8s ease-in-out;
}

@keyframes bounceImage {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.05); }
  50% { transform: scale(1.1); }
  75% { transform: scale(1.05); }
}

/* Text Animation */
.room-card.showcase-card:hover .room-content h3,
.room-card.showcase-card:hover .room-content p,
.room-card.showcase-card:hover .room-content div {
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { 
    text-shadow: 0 0 5px rgba(58, 166, 161, 0.3);
  }
  50% { 
    text-shadow: 0 0 15px rgba(58, 166, 161, 0.6);
  }
}

/* 3D Tilt Effect */
.room-card.showcase-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.room-card.showcase-card:hover {
  transform: translateY(-15px) scale(1.02) rotateX(5deg) rotateY(5deg);
}

/* Floating Animation for Icons */
.room-icon {
  animation: float 3s ease-in-out infinite;
}

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

/* Shimmer Effect on Hover */
.room-card.showcase-card:hover .room-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 1.5s ease-in-out;
  z-index: 1;
}

/* Magnetic Pull Effect */
.room-card.showcase-card {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card.showcase-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(58, 166, 161, 0.3),
    0 0 0 1px rgba(58, 166, 161, 0.1);
}

/* ===== ROOMS PAGE CARD EFFECTS ===== */

/* Amazing Hover Effects for Room Cards in Rooms Page */
.room-card:hover {
  transform: translateY(-10px) scale(1.02) rotateX(3deg) rotateY(3deg);
  box-shadow: 
    0 20px 40px rgba(58, 166, 161, 0.25),
    0 0 0 1px rgba(58, 166, 161, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.room-card:hover .room-image {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.room-card:hover .room-badge {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(58, 166, 161, 0.4);
}

.room-card:hover h3 {
  color: #3aa6a1;
  transform: translateX(3px);
}

.room-card:hover p {
  color: #475569;
  transform: translateX(2px);
}

.room-card:hover .price span:first-child {
  color: #2dd4bf;
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}

.room-card:hover .book-btn {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(58, 166, 161, 0.4);
  background: linear-gradient(135deg, #2dd4bf, #3aa6a1);
}

/* Glow Effect for Room Cards */
.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(58, 166, 161, 0.05), rgba(45, 212, 191, 0.05));
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 16px;
  z-index: -1;
}

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

/* Animated Border Effect */
.room-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3aa6a1, #2dd4bf, #3aa6a1, #2dd4bf);
  background-size: 400% 400%;
  border-radius: 18px;
  opacity: 0;
  z-index: -2;
  animation: gradientShift 3s ease infinite;
  transition: opacity 0.6s ease;
}

.room-card:hover::after {
  opacity: 0.6;
}

/* Pulse Effect for Room Cards */
.room-card:hover {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Button Hover Effects */
.book-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(58, 166, 161, 0.4);
  background: linear-gradient(135deg, #2dd4bf, #3aa6a1);
}

.book-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Filter Button Hover Effects */
.filter-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(58, 166, 161, 0.3);
}

.filter-btn.active {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Cart Item Hover Effects */
.cart-item:hover {
  transform: translateX(5px);
  background: linear-gradient(135deg, rgba(58, 166, 161, 0.05), rgba(45, 212, 191, 0.05));
  border-radius: 8px;
}

/* CTA Button Hover Effects */
.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(58, 166, 161, 0.4);
  background: linear-gradient(135deg, #2dd4bf, #3aa6a1);
}

.cta-button:active {
  transform: translateY(-1px) scale(1.02);
}

/* ===== MODAL ANIMATIONS ===== */

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Modal Button Hover Effects */
button[onclick*="openBookingGuide"],
button[onclick*="openPaymentMethods"],
button[onclick*="openTermsConditions"] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button[onclick*="openBookingGuide"]:hover,
button[onclick*="openPaymentMethods"]:hover,
button[onclick*="openTermsConditions"]:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Modal Close Button Hover */
button[onclick*="closeModal"]:hover {
  background: #dc2626 !important;
  transform: scale(1.1);
}

/* Modal Content Animations */
.modal-content {
  animation: slideInUp 0.4s ease;
}

/* Guide Section Hover Effects */
.guide-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Step Number Animations */
.step-number {
  animation: pulse 2s ease-in-out infinite;
}

/* Payment Method Cards Hover */
.payment-method-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Terms Section Hover */
.terms-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Modal Backdrop Blur Effect */
.modal-backdrop {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
  .modal-content {
    width: 95% !important;
    max-width: none !important;
    margin: 20px !important;
    padding: 20px !important;
  }
  
  .modal-header h2 {
    font-size: 24px !important;
  }
  
  .modal-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* Cache buster - 20251006223849 */
