/* Ultimate Premium Hostel Website Styles */
:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --primary-color: #4c4c4c;
  --primary-dark: #8a8a8a;
  --secondary-color: #f093fb;
  --accent-color: #616161;
  --success-color: #43e97b;
  --warning-color: #fa709a;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

/* Modern Clean Navbar */
.navbar-modern-clean {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  min-height: 90px;
}

.navbar-modern-clean.scrolled {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
}

/* Brand Logo */
.navbar-brand-modern {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.brand-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-right: 3rem;
}

.brand-modern:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.brand-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #667eea;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-text-modern {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-title {
  font-weight: 800;
  font-size: 1.4rem;
  color: white;
  line-height: 1;
  margin-bottom: 0.1rem;
}

.brand-subtitle {
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.brand-modern:hover .brand-icon-modern {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.brand-modern:hover .brand-title {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation Links */
.modern-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  padding-left: 2rem;
}

.modern-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem !important;
  border-radius: 2rem;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  overflow: hidden;
}

.modern-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.modern-link:hover::before {
  transform: scaleX(1);
}

.modern-link:hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
}

/* Highlight Link */
.modern-link.highlight {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white !important;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.modern-link.highlight:hover {
  background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 233, 123, 0.4);
}

/* Admin Link */
.modern-link.admin-modern {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white !important;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

.modern-link.admin-modern:hover {
  background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(250, 112, 154, 0.4);
}

/* Mobile Toggle */
.modern-toggler {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.modern-toggler:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.modern-toggler:hover .hamburger span {
  background: #43e97b;
  transform: scaleX(1.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .modern-nav {
    margin-top: 2rem;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
  }
  
  .modern-link {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 2rem !important;
    margin: 0.25rem 0;
    text-align: left;
  }
  
  .brand-modern {
    padding: 0.75rem 1.5rem;
    margin-right: 0;
  }
  
  .brand-title {
    font-size: 1.2rem;
  }
  
  .brand-subtitle {
    font-size: 0.8rem;
  }
  
  .brand-icon-modern {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Animation Classes */
@keyframes linkGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.8);
  }
}

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

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mega-link.active {
  background: var(--primary-gradient) !important;
  color: white !important;
  animation: linkGlow 2s infinite;
}

.mega-link:hover {
  animation: pulseGlow 1s infinite;
}

.brand-container:hover {
  animation: float 2s ease-in-out infinite;
}

.link-icon:hover {
  animation: rotate 0.5s ease-in-out;
}

/* Enhanced hover effects */
.mega-link {
  position: relative;
  overflow: hidden;
}

.mega-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.mega-link:hover::before {
  width: 300px;
  height: 300px;
}

/* Cursor effects */
.mega-link {
  cursor: pointer;
}

.mega-link:hover {
  cursor: pointer;
}

/* Special admin link effects */
.admin-link::before {
  background: radial-gradient(circle, rgba(250, 112, 154, 0.3) 0%, transparent 70%);
}

.admin-link:hover::before {
  width: 400px;
  height: 400px;
}

/* Scroll Indicator */
.scroll-indicator-ultimate {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--primary-gradient);
  z-index: 1001;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Announcement Ticker */
.announcement-ticker {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  border: 3px solid #ffd700;
  border-radius: 1rem;
  margin: 1rem;
  animation: popIn 0.6s ease-out;
}

.announcement-text {
  color: white !important;
  font-weight: 800;
  font-size: 1.2rem;
  animation: pulseGlow 2s infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.announcement-text:hover {
  color: #ff0000 !important;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
  transform: scale(1.02);
}

.announcement-link {
  color: #ff0000 !important;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #ffd700;
  text-decoration-thickness: 3px;
  animation: bounce 1s infinite;
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 0.5rem;
  border: 2px solid #ffd700;
}

.announcement-link:hover {
  color: #ff0000 !important;
  text-decoration: none;
  background: rgba(255, 215, 0, 0.4);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Pop In Animation */
@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
    transform: scale(1.02);
  }
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Ultimate Hero Section */
.hero-ultimate {
  background: var(--primary-gradient);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content-ultimate {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title-ultimate {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-ultimate {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1.25rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  border-radius: 2rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 200px !important;
  box-shadow: var(--shadow-lg) !important;
}

.hero-btn:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-2xl) !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .hero-buttons-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-btn {
    min-width: 250px !important;
    padding: 1rem 2rem !important;
  }
}

/* Ultimate Buttons */
.btn-ultimate {
  background: var(--primary-gradient);
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-ultimate:hover::before {
  left: 100%;
}

.btn-ultimate:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2xl);
  color: white;
  text-decoration: none;
}

.btn-outline-ultimate {
  background: transparent;
  border: 3px solid white;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-ultimate:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

/* Ultimate Cards */
.card-ultimate {
  background: var(--bg-white);
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.card-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
}

.card-ultimate:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.card-ultimate img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Feature Cards */
.feature-card-ultimate {
  background: var(--bg-white);
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
}

.feature-card-ultimate:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon-ultimate {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-card-ultimate:hover .feature-icon-ultimate {
  transform: scale(1.1) rotate(5deg);
}

/* Ultimate Forms */
.form-control-ultimate {
  border: 2px solid var(--border-light);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-white);
  font-weight: 500;
}

.form-control-ultimate:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  outline: none;
}

.form-control-ultimate::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.form-label-ultimate {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Payment Options */
.payment-option-ultimate {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.payment-option-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.payment-option-ultimate:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.payment-option-ultimate:hover::before {
  transform: scaleX(1);
}

.payment-option-ultimate.selected {
  border-color: var(--primary-color);
  background: rgba(102, 126, 234, 0.05);
}

.payment-option-ultimate.selected::before {
  transform: scaleX(1);
}

/* Ultimate Alerts */
.alert-ultimate {
  border-radius: 1.5rem;
  border: none;
  padding: 1.5rem 2rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.alert-success-ultimate {
  background: var(--success-gradient);
  color: white;
}

.alert-danger-ultimate {
  background: var(--warning-gradient);
  color: white;
}

.alert-info-ultimate {
  background: var(--accent-gradient);
  color: white;
}

/* Stats Section */
.stats-section-ultimate {
  background: var(--primary-gradient);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.stat-card-ultimate {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.stat-number-ultimate {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-ultimate {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Testimonials */
.testimonial-card-ultimate {
  background: var(--bg-white);
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.testimonial-card-ultimate::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-avatar-ultimate {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Ultimate Footer */
.footer-ultimate {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
}

.footer-content-ultimate {
  position: relative;
  z-index: 2;
}

.footer-title-ultimate {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-link-ultimate {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link-ultimate:hover {
  color: white;
  text-decoration: none;
}

.social-link-ultimate {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.social-link-ultimate:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-ultimate {
    font-size: 2.5rem;
  }
  
  .feature-card-ultimate {
    padding: 2rem 1.5rem;
  }
  
  .btn-ultimate {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Loading Animation */
.loading-ultimate {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-light);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator-ultimate {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--primary-gradient);
  z-index: 1001;
  transition: width 0.3s ease;
}

/* Floating Action Button */
.fab-ultimate {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  background: var(--success-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.fab-ultimate:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl);
  color: white;
  text-decoration: none;
} 

/* --- ADMIN SIDEBAR & TOPBAR POLISH --- */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 240px;
  background: #181c2a;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 2px 0 12px rgba(0,0,0,0.07);
  position: relative;
  z-index: 10;
  min-height: 100vh;
}
.admin-logo {
  font-size: 1.5rem;
  font-weight: 800;
  padding: 2rem 1.5rem 1rem 1.5rem;
  letter-spacing: 1px;
  color: #fff;
  text-align: left;
  border-bottom: 1px solid #23263a;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0.5rem;
}
.sidebar-link {
  color: #bfc8e2;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 0.85rem;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  border: none;
}
.sidebar-link:focus {
  box-shadow: 0 0 0 3px #667eea55;
  background: #23263a;
}
.sidebar-link.active, .sidebar-link[aria-current="page"] {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px #667eea33;
}
.sidebar-link:hover {
  background: #23263a;
  color: #fff;
  transform: translateX(4px) scale(1.03);
}
.logout-link {
  margin-top: 2rem;
  color: #ff6b6b !important;
  background: rgba(255,107,107,0.08) !important;
}
.logout-link:hover {
  background: #ff6b6b !important;
  color: #fff !important;
}
.admin-topbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(102,126,234,0.07);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 5;
}
.admin-topbar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #667eea;
}
.admin-topbar-user .dropdown-toggle {
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.admin-topbar-user .dropdown-toggle:focus {
  color: #764ba2;
  box-shadow: 0 0 0 3px #764ba255;
}
.admin-topbar-user .dropdown-menu {
  min-width: 180px;
  border-radius: 1rem;
  box-shadow: 0 4px 24px #667eea22;
  font-size: 1rem;
}
.admin-content {
  padding: 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  background: #f7fafc;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px #667eea11;
}
@media (max-width: 900px) {
  .admin-sidebar {
    width: 64px;
    min-width: 64px;
    padding: 0;
  }
  .admin-logo {
    font-size: 1.1rem;
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
    text-align: center;
  }
  .admin-nav {
    padding: 0.5rem 0.2rem;
  }
  .sidebar-link {
    padding: 0.85rem 0.5rem;
    font-size: 0.95rem;
    justify-content: center;
  }
  .admin-nav a span {
    display: none;
  }
}
@media (max-width: 600px) {
  .admin-wrapper {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100vw;
    flex-direction: row;
    overflow-x: auto;
    height: 56px;
    min-width: 0;
    border-bottom: 1px solid #23263a;
  }
  .admin-logo {
    display: none;
  }
  .admin-nav {
    flex-direction: row;
    gap: 0.25rem;
    padding: 0.5rem 0;
    width: 100vw;
    justify-content: space-around;
  }
  .admin-main {
    padding-top: 56px;
  }
  .admin-content {
    padding: 1rem 0.5rem;
    border-radius: 0.7rem;
  }
}

/* Subtle scrollbars */
.admin-sidebar, .admin-nav {
  scrollbar-width: thin;
  scrollbar-color: #667eea #181c2a;
}
.admin-sidebar::-webkit-scrollbar, .admin-nav::-webkit-scrollbar {
  width: 6px;
  background: #181c2a;
}
.admin-sidebar::-webkit-scrollbar-thumb, .admin-nav::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 3px;
}

/* --- END ADMIN SIDEBAR & TOPBAR --- */

/* --- MERGED UNIQUE CARDS, BUTTONS, HERO, FOOTER --- */

/* Glassy/Neumorphic Cards (from style.css) */
.card, .feature-card, .testimonial-card {
  background: var(--glass-bg, rgba(30,30,30,0.75));
  border-radius: var(--border-radius, 1.5rem);
  box-shadow: var(--card-shadow, 0 4px 32px 0 #D7263822, 0 1.5px 8px #000a), var(--neumorph-shadow, 8px 8px 24px #111a, -8px -8px 24px #222a);
  border: 1.5px solid #222;
  color: var(--white, #fff);
  transition: box-shadow var(--transition, 0.18s cubic-bezier(.4,0,.2,1)), transform var(--transition, 0.18s cubic-bezier(.4,0,.2,1)), border-color var(--transition, 0.18s cubic-bezier(.4,0,.2,1));
  backdrop-filter: blur(6px);
}
.card:hover, .feature-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px var(--red, #D72638), 0 4px 24px #fff2;
  border-color: var(--red, #D72638);
  transform: scale(1.03);
}

/* Modern Red/White Buttons (from style.css) */
.btn, .btn-primary, .btn-danger {
  background: var(--red, #D72638);
  color: var(--white, #fff) !important;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 12px var(--red, #D72638), 0 1.5px 8px #000a;
  transition: background var(--transition, 0.18s cubic-bezier(.4,0,.2,1)), color var(--transition, 0.18s cubic-bezier(.4,0,.2,1)), box-shadow var(--transition, 0.18s cubic-bezier(.4,0,.2,1)), transform var(--transition, 0.18s cubic-bezier(.4,0,.2,1));
  letter-spacing: 1px;
}
.btn-secondary {
  background: var(--white, #fff);
  color: var(--red, #D72638) !important;
  border: 1.5px solid var(--red, #D72638);
}
.btn:hover, .btn:focus, .btn-secondary:hover {
  background: var(--white, #fff);
  color: var(--red, #D72638) !important;
  box-shadow: 0 4px 24px var(--red, #D72638), 0 2px 12px #fff2;
  border: 1.5px solid var(--red, #D72638);
  transform: scale(1.04);
}

/* Section Titles (from style.css) */
.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--red, #D72638);
  margin-bottom: 2rem;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #fff8;
}

/* Glassy Hero Section (from style.css) */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #000 60%, #222 100%);
  position: relative;
  text-align: center;
  box-shadow: var(--card-shadow, 0 4px 32px 0 #D7263822, 0 1.5px 8px #000a);
}
.hero-content {
  background: rgba(255,255,255,0.04);
  border-radius: var(--border-radius, 1.5rem);
  padding: 3rem 2rem 2.5rem 2rem;
  box-shadow: var(--card-shadow, 0 4px 32px 0 #D7263822, 0 1.5px 8px #000a);
  backdrop-filter: blur(8px);
  max-width: 650px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--white, #fff);
  letter-spacing: 2px;
  text-shadow: 0 2px 16px var(--red, #D72638), 0 1px 0 #fff2;
}
.hero-content p {
  font-size: 1.2rem;
  color: var(--white, #fff);
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
}
.hero-buttons .btn {
  margin: 0 0.5rem;
}

/* Glassy Footer (from style.css) */
.footer {
  background: #111;
  color: var(--white, #fff);
  border-top: 2px solid var(--red, #D72638);
  box-shadow: 0 -2px 16px #D7263811;
}
.footer a {
  color: var(--red, #D72638);
  transition: color var(--transition, 0.18s cubic-bezier(.4,0,.2,1)), text-shadow var(--transition, 0.18s cubic-bezier(.4,0,.2,1));
}
.footer a:hover {
  color: var(--white, #fff);
  text-shadow: 0 2px 8px var(--red, #D72638);
}

/* Announcement Ticker (from style.css) */
.announcement-ticker {
  background: var(--red, #D72638);
  color: var(--white, #fff);
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  letter-spacing: 1px;
  border-radius: 0 0 1.2rem 1.2rem;
  box-shadow: 0 2px 12px var(--red, #D72638);
  margin-bottom: 0.5rem;
  animation: ticker-slide 20s linear infinite;
}
@keyframes ticker-slide {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
} 

/* --- ADMIN TABLES --- */
.admin-table-container {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #667eea11;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  font-size: 1.04rem;
  min-width: 700px;
}
.admin-table th, .admin-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: middle;
}
.admin-table th {
  background: #f3f6fd;
  color: #667eea;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 2px solid #e9ecef;
}
.admin-table tr {
  transition: background 0.18s;
}
.admin-table tbody tr:nth-child(even) {
  background: #f7fafc;
}
.admin-table tbody tr:hover {
  background: #e6eaff;
}
.admin-table td {
  border-bottom: 1px solid #e9ecef;
}
.admin-table thead th:first-child, .admin-table tbody td:first-child {
  border-top-left-radius: 0.7rem;
}
.admin-table thead th:last-child, .admin-table tbody td:last-child {
  border-top-right-radius: 0.7rem;
}
.admin-table-empty {
  text-align: center;
  color: #bfc8e2;
  font-size: 1.1rem;
  padding: 2.5rem 0;
}
/* Bulk action bar */
.admin-bulk-bar {
  position: sticky;
  top: 56px;
  background: #fff;
  border-bottom: 2px solid #667eea22;
  z-index: 3;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 8px #667eea11;
}
/* --- ADMIN CARDS --- */
.admin-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #667eea11;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}
/* --- ADMIN FORMS --- */
.admin-form {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #667eea11;
  padding: 2rem 1.5rem;
}
.admin-form label {
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.5rem;
  display: block;
}
.admin-form input, .admin-form select, .admin-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e9ecef;
  border-radius: 0.7rem;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  background: #f7fafc;
  transition: border 0.2s, box-shadow 0.2s;
}
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 2px #667eea33;
  outline: none;
}
.admin-form .form-error {
  color: #ff6b6b;
  font-size: 0.98rem;
  margin-top: -0.8rem;
  margin-bottom: 1rem;
}
.admin-form .form-success {
  color: #22c55e;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.admin-form button, .admin-form .btn {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px #667eea22;
}
.admin-form button:hover, .admin-form .btn:hover {
  background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px) scale(1.03);
}
.admin-form button:focus, .admin-form .btn:focus {
  box-shadow: 0 0 0 3px #764ba255;
  outline: none;
}
@media (max-width: 900px) {
  .admin-table, .admin-card, .admin-form {
    padding: 1rem 0.5rem;
    font-size: 0.98rem;
  }
  .admin-table th, .admin-table td {
    padding: 0.6rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .admin-table {
    min-width: 480px;
    font-size: 0.93rem;
  }
  .admin-card, .admin-form {
    padding: 0.7rem 0.2rem;
    border-radius: 0.7rem;
  }
} 

/* Toast Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}

/* Toast Animation Classes */
.fadeIn {
  animation: fadeIn 0.3s ease-out;
}

.fadeOut {
  animation: fadeOut 0.4s ease-in;
} 

/* Floating label form styles */
.form-floating-icon {
  position: relative;
}
.form-floating-icon .form-control {
  padding-left: 2.5rem;
  height: 3.2rem;
}
.form-floating-icon .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1.1rem;
  pointer-events: none;
}
.form-floating-label {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-floating-label label {
  position: absolute;
  top: 0.9rem;
  left: 2.5rem;
  color: #888;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s;
  background: white;
  padding: 0 0.25rem;
  z-index: 2;
}
.form-floating-label .form-control:focus + label,
.form-floating-label .form-control:not(:placeholder-shown) + label {
  top: -0.7rem;
  left: 2.2rem;
  font-size: 0.85rem;
  color: #667eea;
  background: white;
}
.form-floating-label .form-control {
  padding-left: 2.5rem;
  height: 3.2rem;
  border-radius: 2rem;
}
.form-floating-label .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 3;
} 