:root {
  --dark: #0a0a0a; 
  --white: #fff;
  --light: #f0f0f0;
  --accent: #b8860b;
  --accent-dark: #8b6508;
  --gray: #1a1a1a;
  --gray-light: #2a2a2a;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  --overlay: rgba(10, 10, 10, 0.95);
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 70px; /* Space for fixed navbar */
  transition: var(--transition);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: var(--transition);
  z-index: -1;
}

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

.btn:hover::before {
  left: 0;
}

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

.btn-secondary:hover {
  color: var(--light);
}

.btn-secondary::before {
  background: var(--dark);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 15px 0;
  box-shadow: var(--shadow);
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

.nav-link {
  color: var(--light) !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
  transition: var(--transition);
  margin-left: 15px;
}

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

.nav-link:hover {
  color: var(--accent) !important;
}

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

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 15px;
}

.profile-icon:hover {
  transform: scale(1.1);
}

.navbar-toggler {
  border: none;
  color: var(--light) !important;
  font-size: 24px;
}



/* Modal Overlay */
.modal {
  background: rgba(10, 10, 10, 0.85);
}

/* Modal Content */
.modal-content {
  background: var(--dark);
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
  overflow: hidden;
}

/* Modal Header */
.modal-header {
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
  padding: 20px 30px;
  position: relative;
}

.modal-title {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

/* Close Button */
.btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  opacity: 0.7;
  transition: var(--transition);
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.btn-close::before,
.btn-close::after {
  background-color: var(--accent);
}

/* Modal Body */
.modal-body {
  padding: 30px;
}

/* Form Styling */
.auth-form .form-group {
  margin-bottom: 25px;
}

.auth-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.auth-form .form-control {
  width: 100%;
  padding: 14px 20px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--gray-light);
  color: var(--light);
  border-radius: 6px;
  transition: var(--transition);
  font-size: 16px;
}

.auth-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
  outline: none;
}

/* Submit Button */
.auth-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  margin-top: 10px;
}

.auth-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* Footer Links */
.auth-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.auth-footer p {
  color: rgba(240, 240, 240, 0.7);
  margin-bottom: 0;
}

.auth-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.auth-footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.auth-footer a:hover {
  color: #f0f0f0;
}

.auth-footer a:hover::after {
  width: 100%;
}

/* Social Login Section */
.social-auth {
  margin-top: 30px;
  text-align: center;
}

.social-auth p {
  position: relative;
  color: rgba(240, 240, 240, 0.7);
  margin-bottom: 20px;
}

.social-auth p::before,
.social-auth p::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--gray-light);
}

.social-auth p::before {
  left: 0;
}

.social-auth p::after {
  right: 0;
}

.social-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-btn {
  padding: 12px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  width: 100%;
  justify-content: center;
  font-weight: 500;
}

.social-btn.google {
  background: #4285F4;
  color: white;
}

.social-btn.facebook {
  background: #4267B2;
  color: white;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Password Toggle */
.password-toggle {
  position: relative;
}

.password-toggle .toggle-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 576px) {
  .modal-content {
    margin: 20px;
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .social-buttons {
    flex-direction: column;
  }
}




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

.hero-video {
  position: absolute;
  top: 70px; /* Start below navbar */
  left: 0;
  width: 100%;
  height: calc(100vh - 70px); /* Full height minus navbar */
  object-fit: cover;
  opacity: 0.4;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down i {
  font-size: 24px;
  color: var(--accent);
}

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

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

/* About Section */
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--shadow);
  height: 600px;
}

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

.about-image:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--gray);
  border-radius: 5px;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Filmography */
.filmography {
  background: var(--gray);
}

.film-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.film-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 400px;
  box-shadow: var(--shadow);
}

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

.film-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px 20px 20px;
  transform: translateY(100px);
  transition: var(--transition);
}

.film-card:hover .film-overlay {
  transform: translateY(0);
}

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

.film-year {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--dark);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 3px;
  font-size: 14px;
}

.film-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.film-role {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 15px;
}

.film-rating {
  color: var(--accent);
  margin-bottom: 15px;
}

.watch-trailer {
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-weight: 500;
}

.watch-trailer:hover {
  text-decoration: underline;
}

/* Philanthropy */
.cause-card {
  background: var(--gray);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cause-card:hover {
  transform: translateY(-10px);
}

.cause-image {
  height: 250px;
  overflow: hidden;
}

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

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

.cause-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.donation-progress {
  height: 6px;
  background: #333;
  border-radius: 3px;
  margin: 20px 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--accent);
  width: 65%;
}

.donation-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.donate-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}

.donate-btn:hover {
  background: var(--accent-dark);
}

/* Investment Section */
.investment {
  background: var(--gray);
}

.investment-card {
  background: var(--dark);
  border-radius: 5px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.investment-card:hover {
  transform: translateY(-10px);
}

.investment-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.investment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.investment-metrics {
  display: flex;
  justify-content: space-around;
  margin: 25px 0;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.metric-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Fan Zone Section */
.fan-zone {
 /* background-image: linear-gradient(rgba(0,0,0,0.8), url('../images/fan-zone-bg.jpg'); */
  background-size: cover;
  background-attachment: fixed;
}
/* Membership Tiers Styles */
.membership-tiers {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tier-card {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.3);
  height: 100%;
}

.tier-card.popular {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.tier-card.popular::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent);
  color: var(--dark);
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.tier-header {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-name {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.tier-price span {
  font-size: 1rem;
  opacity: 0.7;
}

.tier-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.tier-features li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.tier-features li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .membership-tiers {
    grid-template-columns: 1fr;
  }
        
  .tier-card.popular {
    transform: scale(1);
    order: -1; /* Show popular card first on mobile */
      }
}

.fan-card-preview {
  background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
  border: 2px solid var(--accent);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  max-width: 400px;
  margin: 40px auto 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fan-card-header {
  margin-bottom: 20px;
}

.fan-card-title {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.fan-card-type {
  font-size: 0.9rem;
  opacity: 0.8;
}

.fan-card-body {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.fan-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 2rem;
  font-weight: bold;
}

.fan-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.fan-id {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 10px;
}

.fan-membership {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.fan-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.8;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Booking Options */
.booking-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.booking-card:hover {
  transform: translateY(-5px);
}

.booking-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.booking-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.booking-card p {
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Store Section */
.product-card {
  background: var(--gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  height: 300px;
  overflow: hidden;
}

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

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

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 15px;
  font-weight: 600;
}

.add-to-cart {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.add-to-cart:hover {
  background: var(--accent-dark);
}

/* Pre-Footer */
.pre-footer {
  background: var(--gray);
  padding: 60px 0;
}

.pre-footer-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.pre-footer-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #080808;
  padding: 80px 0 30px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

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

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray);
  color: var(--light);
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--dark);
}

.newsletter p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: var(--gray);
  border: none;
  color: var(--light);
}

.newsletter-form button {
  padding: 0 20px;
  background: var(--accent);
  border: none;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--gray-light);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .pre-footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .stat-item h4 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}


/* Auth specific styles */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/auth-bg.jpg'); 
  background-position: center;
  position: relative; /* Ensure it stays above video */
  z-index: 1;
  background-size: cover;
}

.auth-card {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(184, 134, 11, 0.3);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h2 {
  color: var(--accent);
  position: relative;
  padding-bottom: 15px;
}

.auth-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.auth-header p {
  opacity: 0.8;
  margin-top: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: var(--dark);
  border: 1px solid var(--gray-light);
  color: var(--light);
  border-radius: 4px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
}

.btn-auth {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--accent);
  color: var(--dark); 
  border: none;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-auth:hover {
  background: var(--accent-dark);
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.auth-footer a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.auth-footer a:hover {
  text-decoration: underline;
}

.social-auth {
  margin-top: 30px;
  text-align: center;
}

.social-auth p {
  position: relative;
  margin-bottom: 20px;
}

.social-auth p::before,
.social-auth p::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--gray-light);
}

.social-auth p::before {
  left: 0;
}

.social-auth p::after {
  right: 0;
}

.social-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-btn {
  padding: 10px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  width: 100%;
  justify-content: center;
}

.social-btn.google {
  background: #4285F4;
  color: white;
}

.social-btn.facebook {
  background: #4267B2;
  color: white;
}

.social-btn:hover {
  opacity: 0.9;
}

/* Signout specific */
.signout-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}

.signout-message {
  text-align: center;
  margin-bottom: 30px;
}

/* Donation page specific styles */
.donation-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  background: url('../images/donation-hero.jpg'); /* Updated to local path */
  background-size: cover;
  background-position: center;
}

.donation-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.donation-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.donation-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.donation-section {
  padding: 80px 0;
  background: var(--gray);
}

.causes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  justify-content: center;
}

.cause-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cause-card:hover {
  transform: translateY(-10px);
}

.cause-image {
  height: 200px;
  overflow: hidden;
}

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

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

.cause-info {
  padding: 25px;
}

.cause-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.donation-form-container {
  background: var(--dark);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.amount-option {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 15px 10px;
  background: var(--gray);
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.amount-option:hover, .amount-option.selected {
  border-color: var(--accent);
  background: rgba(184, 134, 11, 0.1);
}

.amount-option.selected {
  background: var(--accent);
  color: var(--dark);
}

.custom-amount {
  display: flex;
  margin-top: 15px;
}

.custom-amount input {
  flex: 1;
  padding: 15px;
  background: var(--gray);
  border: 2px solid transparent;
  border-radius: 5px 0 0 5px;
  color: var(--light);
  transition: var(--transition);
}

.custom-amount input:focus {
  border-color: var(--accent);
  outline: none;
}

.currency-symbol {
  background: var(--gray);
  padding: 15px;
  border-radius: 0 5px 5px 0;
}

.recurring-option {
  display: flex;
  align-items: center;
  margin: 25px 0;
  padding: 15px;
  background: var(--gray);
  border-radius: 5px;
}

.recurring-option input {
  margin-right: 15px;
}

.donation-form-group {
  margin-bottom: 25px;
}

.donation-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.donation-form-control {
  width: 100%;
  padding: 15px;
  background: var(--gray);
  border: 2px solid transparent;
  color: var(--light);
  border-radius: 5px;
  transition: var(--transition);
}

.donation-form-control:focus {
  border-color: var(--accent);
  outline: none;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-col {
  flex: 1;
}

.donate-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.donate-btn:hover {
  background: var(--accent-dark);
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  opacity: 0.8;
  font-size: 0.9rem;
}

.impact-section {
  padding: 80px 0;
  background: url('../images/impact-bg.jpg'); /* Updated to local path */
  background-size: cover;
  background-attachment: fixed;
}

.impact-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.impact-stat {
  text-align: center;
  padding: 30px;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  min-width: 200px;
  box-shadow: var(--shadow);
}

.impact-stat .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.impact-stat .label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-section {
  padding: 80px 0;
  background: var(--dark);
}

.testimonial-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.testimonial-text::before {
  content: "\"";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: bold;
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--accent);
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .donation-hero h1 {
    font-size: 2.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .donation-form-container {
    padding: 25px;
  }
}



/* ========================================== */
/* DONATION PAGE SPECIFIC STYLES */
/* ========================================== */

.donation-page .donation-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1576765974257-b414b9ea0051?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.donation-page .donation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10,10,10,0.8), rgba(184,134,11,0.1));
  z-index: 0;
}

.donation-page .donation-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.donation-page .donation-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.donation-page .donation-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.8;
}

/* Causes Section */
.donation-page .causes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  justify-content: center;
}

.donation-page .cause-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: var(--gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.donation-page .cause-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.donation-page .cause-image {
  height: 250px;
  overflow: hidden;
}

.donation-page .cause-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.donation-page .cause-card:hover .cause-image img {
  transform: scale(1.1);
}

.donation-page .cause-info h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.donation-page .cause-info h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

/* Donation Form */
.donation-page .donation-form-container {
  background: var(--gray);
  border-radius: 15px;
  padding: 50px;
  box-shadow: var(--shadow);
  max-width: 850px;
  margin: 0 auto;
  border: 1px solid rgba(184, 134, 11, 0.2);
}

.donation-page .donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.donation-page .amount-option {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 18px 10px;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 1.1rem;
}

.donation-page .amount-option:hover {
  border-color: var(--accent);
  background: rgba(184, 134, 11, 0.1);
}

.donation-page .amount-option.selected {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-5px);
}

.donation-page .custom-amount {
  display: flex;
  margin-top: 15px;
}

.donation-page .custom-amount input {
  flex: 1;
  padding: 18px 20px;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid transparent;
  border-radius: 8px 0 0 8px;
  color: var(--light);
  transition: var(--transition);
  font-size: 1.1rem;
}

.donation-page .custom-amount input:focus {
  border-color: var(--accent);
  outline: none;
}

.donation-page .currency-symbol {
  background: rgba(26, 26, 26, 0.8);
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
}

.donation-page .recurring-option {
  display: flex;
  align-items: center;
  margin: 25px 0;
  padding: 20px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 8px;
  transition: var(--transition);
}

.donation-page .recurring-option:hover {
  background: rgba(26, 26, 26, 0.9);
}

.donation-page .recurring-option input {
  margin-right: 15px;
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.donation-page .recurring-option label {
  font-weight: 500;
  cursor: pointer;
}

/* Impact Section */
.donation-page .impact-section {
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.donation-page .impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10,10,10,0.9), rgba(184,134,11,0.15));
}

.donation-page .impact-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.donation-page .impact-stat {
  text-align: center;
  padding: 40px 30px;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  min-width: 220px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 134, 11, 0.3);
  transition: var(--transition);
}

.donation-page .impact-stat:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.donation-page .impact-stat .number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1;
}

.donation-page .impact-stat .label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Testimonials */
.donation-page .testimonial-card {
  background: var(--gray);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 134, 11, 0.2);
  transition: var(--transition);
}

.donation-page .testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.donation-page .testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  padding-left: 40px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.donation-page .testimonial-text::before {
  content: "\"";
  position: absolute;
  left: 0;
  top: -30px;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.donation-page .testimonial-author {
  display: flex;
  align-items: center;
}

.donation-page .author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 20px;
}

/* Responsive adjustments for donation page */
@media (max-width: 992px) {
  .donation-page .donation-hero h1 {
    font-size: 3rem;
  }
  
  .donation-page .form-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .donation-page .donation-hero h1 {
    font-size: 2.5rem;
  }
  
  .donation-page .donation-form-container {
    padding: 30px;
  }
  
  .donation-page .section {
    padding: 80px 0;
  }
  
  .donation-page .impact-stat {
    min-width: 180px;
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .donation-page .donation-hero h1 {
    font-size: 2.2rem;
  }
  
  .donation-page .amount-option {
    min-width: 80px;
    padding: 15px 5px;
  }
  
  .donation-page .donation-hero {
    height: 60vh;
  }
}


 /* Investment Hero Section */
      #investment-hero {
        background: linear-gradient(
            rgba(10, 10, 10, 0.9),
            rgba(10, 10, 10, 0.8)
          ),
          url("https://images.unsplash.com/photo-1621413278136-4b89847b9c15?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
            no-repeat center center/cover;
        padding: 180px 0 100px;
        text-align: center;
      }

      #investment-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
      }

      #investment-hero p {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 1.2rem;
        opacity: 0.9;
      }

      /* Investment Features */
      #investment-features .feature-card {
        background: var(--gray);
        border-radius: 15px;
        padding: 40px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(184, 134, 11, 0.2);
        transition: var(--transition);
        height: 100%;
      }

      #investment-features .feature-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent);
      }

      #investment-features .feature-icon {
        font-size: 3rem;
        color: var(--accent);
        margin-bottom: 20px;
      }

      /* Sector Cards */
      #investment-sectors .sector-card {
        background: var(--gray);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 1px solid rgba(184, 134, 11, 0.2);
        height: 100%;
      }

      #investment-sectors .sector-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
      }

      #investment-sectors .sector-header {
        padding: 30px;
        background: rgba(184, 134, 11, 0.1);
        text-align: center;
      }

      #investment-sectors .sector-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--accent);
      }

      #investment-sectors .sector-body {
        padding: 30px;
      }

      #investment-sectors .profit-structure {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 20px;
        margin-top: 20px;
      }

      #investment-sectors .profit-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
      }

      #investment-sectors .profit-item:last-child {
        border-bottom: none;
      }

      /* Performance Charts */
      #sector-performance .chart-container {
        background: var(--gray);
        border-radius: 15px;
        padding: 30px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(184, 134, 11, 0.2);
      }

      #sector-performance .chart-placeholder {
        height: 300px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
      }

      /* Testimonials */
      #investment-testimonials .testimonial-card {
        background: var(--gray);
        border-radius: 15px;
        padding: 30px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(184, 134, 11, 0.2);
        transition: var(--transition);
        height: 100%;
      }

      #investment-testimonials .testimonial-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent);
      }

      #investment-testimonials .testimonial-text {
        position: relative;
        padding-left: 40px;
        font-style: italic;
        margin-bottom: 25px;
      }

      #investment-testimonials .testimonial-text::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -20px;
        font-size: 5rem;
        color: var(--accent);
        opacity: 0.2;
        font-family: Georgia, serif;
      }

      #investment-testimonials .testimonial-author {
        display: flex;
        align-items: center;
      }

      #investment-testimonials .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-weight: bold;
        margin-right: 15px;
      }

      /* Contribution Rates */
      #contribution-rates .contribution-card {
        background: var(--gray);
        border-radius: 15px;
        padding: 30px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(184, 134, 11, 0.2);
        text-align: center;
        height: 100%;
      }

      #contribution-rates .rate-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent);
        margin: 20px 0;
      }

      /* How It Works */
      #how-it-works .process-step {
        position: relative;
        padding-left: 40px;
        margin-bottom: 40px;
      }

      #how-it-works .step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
      }

      /* Investment CTA */
      #investment-cta {
        background: linear-gradient(
            rgba(10, 10, 10, 0.9),
            rgba(10, 10, 10, 0.8)
          ),
          url("https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80")
            no-repeat center center/cover;
        padding: 100px 0;
        text-align: center;
      }

      /* Responsive Adjustments */
      @media (max-width: 768px) {
        #investment-hero h1 {
          font-size: 2.5rem;
        }

        #investment-features .feature-card,
        #investment-sectors .sector-card,
        #contribution-rates .contribution-card {
          padding: 25px;
        }
      }

      /* Section styling */
      .section {
        padding: 100px 0;
      }

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

      .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--accent);
      }

      .section-title p {
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.8;
      }

      /* Header styles */
      .navbar {
        background: rgba(10, 10, 10, 0.95);
        padding: 15px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      }

      .logo {
        font-size: 28px;
        font-weight: 700;
        color: var(--accent);
        text-decoration: none;
        font-family: "Playfair Display", serif;
        letter-spacing: 2px;
      }

      .nav-link {
        color: var(--light) !important;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 5px;
        transition: var(--transition);
        margin-left: 15px;
      }

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

      .nav-link:hover {
        color: var(--accent) !important;
      }

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

      .profile-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-weight: bold;
        cursor: pointer;
        transition: var(--transition);
        margin-left: 15px;
      }

      .profile-icon:hover {
        transform: scale(1.1);
      }

      /* Modal styles */
      .modal {
        background: rgba(10, 10, 10, 0.85);
      }

      .modal-content {
        background: var(--dark);
        border: 1px solid var(--accent);
        border-radius: 10px;
        box-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
        overflow: hidden;
      }

      .modal-header {
        border-bottom: 1px solid rgba(184, 134, 11, 0.3);
        padding: 20px 30px;
        position: relative;
      }

      .modal-title {
        color: var(--accent);
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 600;
        text-align: center;
        width: 100%;
      }

      .btn-close {
        position: absolute;
        right: 20px;
        top: 20px;
        background: transparent;
        opacity: 0.7;
        transition: var(--transition);
      }

      .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
      }

      .modal-body {
        padding: 30px;
      }

      .auth-form .form-group {
        margin-bottom: 25px;
      }

      .auth-form label {
        display: block;
        margin-bottom: 8px;
        color: var(--accent);
        font-weight: 500;
        letter-spacing: 0.5px;
      }

      .auth-form .form-control {
        width: 100%;
        padding: 14px 20px;
        background: rgba(26, 26, 26, 0.8);
        border: 1px solid var(--gray-light);
        color: var(--light);
        border-radius: 6px;
        transition: var(--transition);
        font-size: 16px;
      }

      .auth-form .form-control:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
        outline: none;
      }

      .auth-btn {
        display: block;
        width: 100%;
        padding: 14px;
        background: var(--accent);
        color: var(--dark);
        border: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border-radius: 6px;
        cursor: pointer;
        transition: var(--transition);
        font-size: 16px;
        margin-top: 10px;
      }

      .auth-btn:hover {
        background: var(--accent-dark);
        transform: translateY(-3px);
      }

      .auth-footer {
        text-align: center;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(184, 134, 11, 0.2);
      }

      .auth-footer p {
        color: rgba(240, 240, 240, 0.7);
        margin-bottom: 0;
      }

      .auth-footer a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
      }

      .auth-footer a::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: var(--transition);
      }

      .auth-footer a:hover {
        color: #f0f0f0;
      }

      .auth-footer a:hover::after {
        width: 100%;
      }

      .social-auth {
        margin-top: 30px;
        text-align: center;
      }

      .social-auth p {
        position: relative;
        color: rgba(240, 240, 240, 0.7);
        margin-bottom: 20px;
      }

      .social-auth p::before,
      .social-auth p::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 30%;
        height: 1px;
        background: var(--gray-light);
      }

      .social-auth p::before {
        left: 0;
      }

      .social-auth p::after {
        right: 0;
      }

      .social-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
      }

      .social-btn {
        padding: 10px 20px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        width: 100%;
        justify-content: center;
        font-weight: 500;
      }

      .social-btn.google {
        background: #4285f4;
        color: white;
      }

      .social-btn.facebook {
        background: #4267b2;
        color: white;
      }

      .social-btn:hover {
        opacity: 0.9;
      }

      .password-toggle {
        position: relative;
      }

      .password-toggle .toggle-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #b8860b;
        cursor: pointer;
        z-index: 10;
      }

      /* Dashboard Button */
      .dashboard-btn {
        background: var(--accent);
        color: var(--dark);
        border: none;
        padding: 10px 25px;
        border-radius: 8px;
        font-weight: 600;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .dashboard-btn:hover {
        background: var(--accent-dark);
        transform: translateY(-3px);
      }



      
      /* ========== NEW MEMBERSHIP STYLES ========== */
      /* Namespaced with kr-fz- prefix to avoid conflicts */

      /* Auth overlay */
      .kr-fz-auth-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.95);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
      }

      .kr-fz-auth-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      .kr-fz-auth-card {
        background: var(--gray);
        border-radius: 15px;
        padding: 40px;
        max-width: 500px;
        width: 90%;
        box-shadow: var(--shadow);
        border: 1px solid var(--accent);
        position: relative;
      }

      .kr-fz-auth-close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--accent);
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--transition);
      }

      .kr-fz-auth-close:hover {
        transform: rotate(90deg);
      }

      .kr-fz-auth-header {
        text-align: center;
        margin-bottom: 30px;
      }

      .kr-fz-auth-header h3 {
        color: var(--accent);
        margin-bottom: 15px;
      }

      /* Membership container */
      .kr-fz-membership-container {
        max-width: 900px;
        margin: 50px auto;
        padding: 40px;
        background: var(--gray);
        border-radius: 15px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(184, 134, 11, 0.3);
      }

      .kr-fz-membership-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(184, 134, 11, 0.3);
      }

      .kr-fz-membership-header h2 {
        color: var(--accent);
        margin-bottom: 15px;
      }

      /* Steps */
      .kr-fz-steps {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        position: relative;
      }

      .kr-fz-steps::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(184, 134, 11, 0.3);
        z-index: 1;
      }

      .kr-fz-step {
        position: relative;
        z-index: 2;
        text-align: center;
        width: 33.33%;
      }

      .kr-fz-step-number {
        width: 40px;
        height: 40px;
        background: var(--dark);
        border: 2px solid var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        font-weight: 600;
        color: var(--accent);
      }

      .kr-fz-step.active .kr-fz-step-number {
        background: var(--accent);
        color: var(--dark);
      }

      .kr-fz-step-title {
        font-size: 0.9rem;
      }

      /* Form sections */
      .kr-fz-form-section {
        display: none;
      }

      .kr-fz-form-section.active {
        display: block;
        animation: fadeIn 0.5s ease;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      /* Membership cards */
      .kr-fz-membership-card {
        background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
        border: 2px solid var(--accent);
        border-radius: 15px;
        padding: 25px;
        max-width: 400px;
        margin: 30px auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }

      .kr-fz-membership-card-header {
        margin-bottom: 20px;
        text-align: center;
      }

      .kr-fz-membership-card-title {
        font-size: 1.5rem;
        color: var(--accent);
        margin-bottom: 5px;
      }

      .kr-fz-membership-card-type {
        font-size: 1rem;
        opacity: 0.9;
      }

      .kr-fz-membership-card-body {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
      }

      .kr-fz-membership-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 2rem;
        font-weight: bold;
      }

      .kr-fz-membership-info {
        flex: 1;
      }

      .kr-fz-membership-name {
        font-size: 1.2rem;
        margin-bottom: 5px;
      }

      .kr-fz-membership-id {
        font-size: 0.9rem;
        opacity: 0.7;
        margin-bottom: 10px;
      }

      .kr-fz-membership-detail {
        display: inline-block;
        background: var(--accent);
        color: var(--dark);
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .kr-fz-membership-card-footer {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        opacity: 0.8;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Payment methods */
      .kr-fz-payment-methods {
        display: flex;
        gap: 15px;
        margin: 20px 0;
      }

      .kr-fz-payment-method {
        flex: 1;
        padding: 15px;
        border: 2px solid var(--gray-light);
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        transition: var(--transition);
      }

      .kr-fz-payment-method:hover,
      .kr-fz-payment-method.selected {
        border-color: var(--accent);
        background: rgba(184, 134, 11, 0.1);
      }

      .kr-fz-payment-icon {
        font-size: 2rem;
        margin-bottom: 10px;
      }

      /* Confirmation */
      .kr-fz-confirmation-container {
        text-align: center;
        padding: 30px;
      }

      .kr-fz-confirmation-icon {
        font-size: 4rem;
        color: var(--accent);
        margin-bottom: 20px;
      }

      /* Buttons */
      .kr-fz-btn-membership {
        display: inline-block;
        padding: 12px 28px;
        background: var(--accent);
        border: none;
        color: var(--dark);
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        transition: var(--transition);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        border-radius: 4px;
      }

      .kr-fz-btn-membership:hover {
        background: var(--accent-dark);
        color: var(--dark);
      }

      .kr-fz-btn-membership-secondary {
        background: transparent;
        border: 2px solid var(--accent);
        color: var(--accent);
      }

      .kr-fz-btn-membership-secondary:hover {
        background: var(--accent);
        color: var(--dark);
      }

      /* Navigation */
      .kr-fz-membership-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
      }

      /* Hidden sections */
      .kr-fz-hidden {
        display: none;
      }





      .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }
        
        .booking-card {
            background: var(--gray);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: var(--shadow);
            border: 1px solid rgba(184, 134, 11, 0.2);
            transition: var(--transition);
            text-align: center;
        }
        
        .booking-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
        }
        
        .booking-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background: rgba(184, 134, 11, 0.1);
        }
        
        .booking-price {
            font-size: 2rem;
            color: var(--accent);
            font-weight: 600;
            margin: 15px 0;
        }
        
        .btn-booking {
            background: var(--accent);
            color: var(--dark);
            font-weight: 600;
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .btn-booking:hover {
            background: var(--accent-dark);
        }
        
        .modal-content {
            background: var(--gray);
            border-radius: 15px;
            border: 1px solid var(--accent);
        }
        
        .payment-options {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }
        
        .payment-option {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--gray-light);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .payment-option:hover, .payment-option.active {
            border-color: var(--accent);
            background: rgba(184, 134, 11, 0.1);
        }
        
        .crypto-option {
            border-color: var(--crypto-blue);
        }
        
        .crypto-option:hover, .crypto-option.active {
            border-color: var(--crypto-blue);
            background: rgba(41, 98, 255, 0.1);
        }
        
        .payment-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .crypto-icon {
            color: var(--crypto-blue);
        }
        
        .crypto-wallets {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .crypto-wallet {
            padding: 15px;
            background: rgba(41, 98, 255, 0.1);
            border: 1px solid var(--crypto-blue);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .crypto-wallet:hover {
            background: rgba(41, 98, 255, 0.2);
        }
        
        .crypto-wallet.active {
            background: rgba(41, 98, 255, 0.3);
            border-width: 2px;
        }
        
        .wallet-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--crypto-blue);
        }
        
        .qr-code {
            background: white;
            width: 150px;
            height: 150px;
            margin: 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }
        
        .qr-code span {
            font-size: 5rem;
            color: black;
        }
        
        .confirmation {
            text-align: center;
            padding: 30px;
        }
        
        .confirmation-icon {
            font-size: 4rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .user-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-weight: bold;
        }
        
        .auth-message {
            background: rgba(184, 134, 11, 0.1);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .crypto-badge {
            display: inline-block;
            background: rgba(41, 98, 255, 0.2);
            color: var(--crypto-blue);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
        }


      
         
        /* Theme Variables */
        :root {
            /* Dark Theme (Default) */
            --dark: #0a0a0a; 
            --white: #fff;
            --light: #f0f0f0;
            --accent: #b8860b;
            --accent-dark: #8b6508;
            --gray: #1a1a1a;
            --gray-light: #2a2a2a;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            --overlay: rgba(10, 10, 10, 0.95);
        }

        [data-theme="light"] {
            --dark: #f8f9fa;
            --white: #212529;
            --light: #495057;
            --accent: #0d6efd;
            --accent-dark: #0a58ca;
            --gray: #e9ecef;
            --gray-light: #dee2e6;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --overlay: rgba(248, 249, 250, 0.95);
        }

        [data-theme="blue"] {
            --dark: #0d1b2a;
            --white: #e0e1dd;
            --light: #c9c9c9;
            --accent: #415a77;
            --accent-dark: #1b263b;
            --gray: #1b263b;
            --gray-light: #415a77;
            --shadow: 0 5px 15px rgba(13, 27, 42, 0.5);
            --overlay: rgba(13, 27, 42, 0.95);
        }

        [data-theme="rosegold"] {
            --dark: #2d1b1f;
            --white: #f9f1f0;
            --light: #e6c7c2;
            --accent: #b76e79;
            --accent-dark: #8a4c58;
            --gray: #3e282d;
            --gray-light: #5d3c43;
            --shadow: 0 5px 15px rgba(45, 27, 31, 0.5);
            --overlay: rgba(45, 27, 31, 0.95);
        }

        /* Base Styles */
        body {
            background-color: var(--dark);
            color: var(--light);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
            padding-top: 70px; /* Space for fixed navbar */
            transition: var(--transition);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Theme Switcher Styles */
        .theme-switcher {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .theme-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-left: auto;
        }

        .theme-toggle:hover {
            transform: rotate(45deg);
        }

        .theme-options {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: var(--gray);
            border-radius: 15px;
            padding: 15px;
            box-shadow: var(--shadow);
            border: 1px solid var(--accent);
            display: none;
            flex-direction: column;
            gap: 10px;
            min-width: 70px;
        }

        .theme-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .theme-button.active {
            transform: scale(1.1);
            border-width: 3px;
            border-color: var(--accent);
        }

        .theme-button i {
            color: white;
        }

        .theme-dark {
            background: linear-gradient(45deg, #0a0a0a, #2a2a2a);
        }

        .theme-light {
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
        }

        .theme-blue {
            background: linear-gradient(45deg, #1a237e, #283593);
        }

        .theme-rosegold {
            background: linear-gradient(45deg, #b76e79, #d4af37);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 0;
            z-index: 1000;
            transition: var(--transition);
            background: var(--dark);
        }

        header.scrolled {
            background: var(--overlay);
            padding: 15px 0;
            box-shadow: var(--shadow);
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            letter-spacing: 2px;
        }

        .nav-link {
            color: var(--light) !important;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
            transition: var(--transition);
            margin-left: 15px;
        }

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

        .nav-link:hover {
            color: var(--accent) !important;
        }

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

        .profile-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 15px;
        }

        .profile-icon:hover {
            transform: scale(1.1);
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }

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

        .btn:hover::before {
            left: 0;
        }

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

        .btn-secondary:hover {
            color: var(--light);
        }

        .btn-secondary::before {
            background: var(--dark);
        }

        /* Demo content */
        .demo-section {
            padding: 100px 0;
            text-align: center;
        }

        .demo-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .demo-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .demo-card {
            background: var(--gray);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .demo-card:hover {
            transform: translateY(-5px);
        }

        .demo-card h3 {
            color: var(--accent);
            margin-bottom: 15px;
        }

        /* Theme explanation */
        .theme-info {
            max-width: 800px;
            margin: 40px auto;
            padding: 30px;
            background: var(--gray);
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .theme-info h3 {
            color: var(--accent);
            margin-bottom: 20px;
            text-align: center;
        }

        .theme-palette {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .color-swatch {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            margin: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
    

          
      /* ========== EXISTING STYLES ========== */
      :root {
        --dark: #0a0a0a;
        --light: #f0f0f0;
        --accent: #b8860b;
        --accent-dark: #8b6508;
        --gray: #1a1a1a;
        --gray-light: #2a2a2a;
        --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        --overlay: rgba(10, 10, 10, 0.95);
      }

      body {
        font-family: "Montserrat", sans-serif;
        background-color: var(--dark);
        color: var(--light);
        overflow-x: hidden;
        line-height: 1.6;
        padding-top: 70px; /* Space for fixed navbar */
      }

      /* ... (all your existing CSS styles) ... */

      /* ========== NEW MEMBERSHIP STYLES ========== */
      /* Namespaced with kr-fz- prefix to avoid conflicts */

      /* Auth overlay */
      .kr-fz-auth-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.95);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
      }

      .kr-fz-auth-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      .kr-fz-auth-card {
        background: var(--gray);
        border-radius: 15px;
        padding: 40px;
        max-width: 500px;
        width: 90%;
        box-shadow: var(--shadow);
        border: 1px solid var(--accent);
        position: relative;
      }

      .kr-fz-auth-close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--accent);
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--transition);
      }

      .kr-fz-auth-close:hover {
        transform: rotate(90deg);
      }

      .kr-fz-auth-header {
        text-align: center;
        margin-bottom: 30px;
      }

      .kr-fz-auth-header h3 {
        color: var(--accent);
        margin-bottom: 15px;
      }

      /* Membership container */
      .kr-fz-membership-container {
        max-width: 900px;
        margin: 50px auto;
        padding: 40px;
        background: var(--gray);
        border-radius: 15px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(184, 134, 11, 0.3);
      }

      .kr-fz-membership-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(184, 134, 11, 0.3);
      }

      .kr-fz-membership-header h2 {
        color: var(--accent);
        margin-bottom: 15px;
      }

      /* Steps */
      .kr-fz-steps {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        position: relative;
      }

      .kr-fz-steps::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(184, 134, 11, 0.3);
        z-index: 1;
      }

      .kr-fz-step {
        position: relative;
        z-index: 2;
        text-align: center;
        width: 33.33%;
      }

      .kr-fz-step-number {
        width: 40px;
        height: 40px;
        background: var(--dark);
        border: 2px solid var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        font-weight: 600;
        color: var(--accent);
      }

      .kr-fz-step.active .kr-fz-step-number {
        background: var(--accent);
        color: var(--dark);
      }

      .kr-fz-step-title {
        font-size: 0.9rem;
      }

      /* Form sections */
      .kr-fz-form-section {
        display: none;
      }

      .kr-fz-form-section.active {
        display: block;
        animation: fadeIn 0.5s ease;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      /* Membership cards */
      .kr-fz-membership-card {
        background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
        border: 2px solid var(--accent);
        border-radius: 15px;
        padding: 25px;
        max-width: 400px;
        margin: 30px auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }

      .kr-fz-membership-card-header {
        margin-bottom: 20px;
        text-align: center;
      }

      .kr-fz-membership-card-title {
        font-size: 1.5rem;
        color: var(--accent);
        margin-bottom: 5px;
      }

      .kr-fz-membership-card-type {
        font-size: 1rem;
        opacity: 0.9;
      }

      .kr-fz-membership-card-body {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
      }

      .kr-fz-membership-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 2rem;
        font-weight: bold;
      }

      .kr-fz-membership-info {
        flex: 1;
      }

      .kr-fz-membership-name {
        font-size: 1.2rem;
        margin-bottom: 5px;
      }

      .kr-fz-membership-id {
        font-size: 0.9rem;
        opacity: 0.7;
        margin-bottom: 10px;
      }

      .kr-fz-membership-detail {
        display: inline-block;
        background: var(--accent);
        color: var(--dark);
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .kr-fz-membership-card-footer {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        opacity: 0.8;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Payment methods */
      .kr-fz-payment-methods {
        display: flex;
        gap: 15px;
        margin: 20px 0;
      }

      .kr-fz-payment-method {
        flex: 1;
        padding: 15px;
        border: 2px solid var(--gray-light);
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        transition: var(--transition);
      }

      .kr-fz-payment-method:hover,
      .kr-fz-payment-method.selected {
        border-color: var(--accent);
        background: rgba(184, 134, 11, 0.1);
      }

      .kr-fz-payment-icon {
        font-size: 2rem;
        margin-bottom: 10px;
      }

      /* Confirmation */
      .kr-fz-confirmation-container {
        text-align: center;
        padding: 30px;
      }

      .kr-fz-confirmation-icon {
        font-size: 4rem;
        color: var(--accent);
        margin-bottom: 20px;
      }

      /* Buttons */
      .kr-fz-btn-membership {
        display: inline-block;
        padding: 12px 28px;
        background: var(--accent);
        border: none;
        color: var(--dark);
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        transition: var(--transition);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        border-radius: 4px;
      }

      .kr-fz-btn-membership:hover {
        background: var(--accent-dark);
        color: var(--dark);
      }

      .kr-fz-btn-membership-secondary {
        background: transparent;
        border: 2px solid var(--accent);
        color: var(--accent);
      }

      .kr-fz-btn-membership-secondary:hover {
        background: var(--accent);
        color: var(--dark);
      }

      /* Navigation */
      .kr-fz-membership-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
      }

      /* Hidden sections */
      .kr-fz-hidden {
        display: none;
      }

      /* Theme Variables */
      :root {
        /* Dark Theme (Default) */
        --dark: #0a0a0a;
        --white: #fff;
        --light: #f0f0f0;
        --accent: #b8860b;
        --accent-dark: #8b6508;
        --gray: #1a1a1a;
        --gray-light: #2a2a2a;
        --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        --overlay: rgba(10, 10, 10, 0.95);
        --card-bg: #1a1a1a;
        --text-primary: #f0f0f0;
        --text-secondary: #cccccc;
        --border-color: #333333;
      }

      [data-theme="light"] {
        --dark: #f8f9fa;
        --white: #212529;
        --light: #495057;
        --accent: #0d6efd;
        --accent-dark: #0a58ca;
        --gray: #e9ecef;
        --gray-light: #dee2e6;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        --overlay: rgba(248, 249, 250, 0.95);
        --card-bg: #ffffff;
        --text-primary: #212529;
        --text-secondary: #495057;
        --border-color: #dee2e6;
      }

      [data-theme="blue"] {
        --dark: #0d1b2a;
        --white: #e0e1dd;
        --light: #c9c9c9;
        --accent: #415a77;
        --accent-dark: #1b263b;
        --gray: #1b263b;
        --gray-light: #415a77;
        --shadow: 0 5px 15px rgba(13, 27, 42, 0.5);
        --overlay: rgba(13, 27, 42, 0.95);
        --card-bg: #1b263b;
        --text-primary: #e0e1dd;
        --text-secondary: #b3d9ff;
        --border-color: #1e3a5c;
      }

      [data-theme="rosegold"] {
        --dark: #2d1b1f;
        --white: #f9f1f0;
        --light: #e6c7c2;
        --accent: #b76e79;
        --accent-dark: #8a4c58;
        --gray: #3e282d;
        --gray-light: #5d3c43;
        --shadow: 0 5px 15px rgba(45, 27, 31, 0.5);
        --overlay: rgba(45, 27, 31, 0.95);
        --card-bg: #3e282d;
        --text-primary: #f9f1f0;
        --text-secondary: #8b5d5d;
        --border-color: #5d3c43;
      }

      /* Base Styles */
      body {
        background-color: var(--dark);
        color: var(--text-primary);
        font-family: "Montserrat", sans-serif;
        overflow-x: hidden;
        line-height: 1.6;
        padding-top: 70px;
        transition: var(--transition);
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Playfair Display", serif;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--text-primary);
      }

      p {
        color: var(--text-secondary);
      }

      /* Header Styles */
      header {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 25px 0;
        z-index: 1000;
        transition: var(--transition);
        background: var(--dark);
        box-shadow: var(--shadow);
      }

      header.scrolled {
        background: var(--overlay);
        padding: 15px 0;
      }

      .logo {
        font-size: 28px;
        font-weight: 700;
        color: var(--accent);
        text-decoration: none;
        font-family: "Playfair Display", serif;
        letter-spacing: 2px;
      }

      .nav-link {
        color: var(--text-primary) !important;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 5px;
        transition: var(--transition);
        margin-left: 15px;
      }

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

      .nav-link:hover {
        color: var(--accent) !important;
      }

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

      .profile-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-weight: bold;
        cursor: pointer;
        transition: var(--transition);
        margin-left: 15px;
      }

      .profile-icon:hover {
        transform: scale(1.1);
      }

      /* Button Styles */
      .btn {
        display: inline-block;
        padding: 12px 28px;
        background: transparent;
        border: 2px solid var(--accent);
        color: var(--accent);
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        transition: var(--transition);
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }

      .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--accent);
        transition: var(--transition);
        z-index: -1;
      }

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

      .btn:hover::before {
        left: 0;
      }

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

      .btn-secondary:hover {
        color: var(--light);
      }

      .btn-secondary::before {
        background: var(--dark);
      }

      /* Card Styles */
      .card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        color: var(--text-primary);
      }

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

      .card-title {
        color: var(--accent);
        margin-bottom: 15px;
      }

      /* Section Styles */
      .section {
        padding: 100px 0;
      }

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

      .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--accent);
      }

      .section-title p {
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.8;
      }

      /* Theme Switcher Styles */
      .theme-switcher {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
      }

      .theme-toggle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 1001;
      }

      .theme-toggle:hover {
        transform: rotate(45deg);
      }

      .theme-options {
        display: none;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
        background: var(--card-bg);
        border-radius: 15px;
        padding: 15px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-color);
        animation: fadeIn 0.3s ease;
      }

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

      .theme-button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
      }

      .theme-button.active {
        transform: scale(1.1);
        border-width: 3px;
        border-color: var(--accent);
      }

      .theme-button i {
        color: white;
      }

      .theme-dark {
        background: linear-gradient(45deg, #0a0a0a, #2a2a2a);
      }

      .theme-light {
        background: linear-gradient(45deg, #f8f9fa, #e9ecef);
      }

      .theme-blue {
        background: linear-gradient(45deg, #1a237e, #283593);
      }

      .theme-rosegold {
        background: linear-gradient(45deg, #b76e79, #d4af37);
      }

      /* Demo content */
      .demo-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .demo-card {
        background: var(--card-bg);
        border-radius: 10px;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 1px solid var(--border-color);
      }

      .demo-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent);
      }

      .demo-card h3 {
        color: var(--accent);
        margin-bottom: 15px;
      }

      /* Theme explanation */
      .theme-info {
        max-width: 800px;
        margin: 40px auto;
        padding: 30px;
        background: var(--card-bg);
        border-radius: 10px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-color);
      }

      .theme-info h3 {
        color: var(--accent);
        margin-bottom: 20px;
        text-align: center;
      }

      .theme-palette {
        display: flex;
        justify-content: space-around;
        margin: 30px 0;
        flex-wrap: wrap;
      }

      .color-swatch {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        margin: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      }

      /* Footer */
      footer {
        background: var(--dark);
        padding: 60px 0 30px;
        color: var(--text-primary);
        border-top: 1px solid var(--border-color);
      }

      .footer-title {
        color: var(--accent);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--accent);
      }

      .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: var(--transition);
        display: block;
        margin-bottom: 10px;
      }

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

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--gray);
        color: var(--text-primary);
        transition: var(--transition);
        text-decoration: none;
      }

      .social-links a:hover {
        background: var(--accent);
        color: var(--dark);
        transform: translateY(-3px);
      }

/* ============================================
   UNIVERSAL LOADING SCREEN
   ============================================ */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  max-width: 420px;
  width: 90%;
  padding: 40px 20px;
}

.loading-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 6px;
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.2;
}

.loading-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--light);
  opacity: 0.6;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.loading-progress-container {
  width: 100%;
  height: 3px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}

.loading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), #d4a017);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.loading-percentage {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  opacity: 0.8;
}

/* Loading screen theme variants */
[data-theme="light"] .loading-screen {
  background: #f8f9fa;
}
[data-theme="light"] .loading-tagline {
  color: #333;
}
[data-theme="light"] .loading-progress-container {
  background: #dee2e6;
}

[data-theme="blue"] .loading-screen {
  background: #0d1b2a;
}
[data-theme="blue"] .loading-progress-container {
  background: #1b2d45;
}

[data-theme="rosegold"] .loading-screen {
  background: #2d1b1f;
}
[data-theme="rosegold"] .loading-progress-container {
  background: #3d2b2f;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-notification {
  background: var(--gray);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  min-width: 300px;
  max-width: 420px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  animation: toastSlideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.toast-notification.toast-out {
  animation: toastSlideOut 0.3s ease forwards;
}

.toast-notification.toast-success {
  border-left-color: #28a745;
}

.toast-notification.toast-error {
  border-left-color: #dc3545;
}

.toast-notification.toast-warning {
  border-left-color: #ffc107;
}

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-success .toast-icon { color: #28a745; }
.toast-error .toast-icon { color: #dc3545; }
.toast-warning .toast-icon { color: #ffc107; }
.toast-notification .toast-icon { color: var(--accent); }

.toast-body {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--light);
  margin-bottom: 2px;
}

.toast-message {
  font-size: 0.82rem;
  color: var(--light);
  opacity: 0.75;
}

.toast-close {
  background: none;
  border: none;
  color: var(--light);
  opacity: 0.5;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

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

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

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

[data-theme="light"] .toast-notification {
  background: #fff;
  border-color: #dee2e6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .toast-title,
[data-theme="light"] .toast-message {
  color: #333;
}

/* ============================================
   REUSABLE ACTION MODAL
   ============================================ */
.action-modal .modal-content {
  background: var(--dark);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
}

.action-modal-body {
  text-align: center;
  padding: 40px 30px 30px;
}

.action-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.action-modal-icon.icon-success {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

.action-modal-icon.icon-confirm {
  background: rgba(184, 134, 11, 0.15);
  color: var(--accent);
}

.action-modal-icon.icon-warning {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.action-modal-icon.icon-info {
  background: rgba(0, 123, 255, 0.15);
  color: #007bff;
}

.action-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 10px;
}

.action-modal-message {
  font-size: 0.92rem;
  color: var(--light);
  opacity: 0.75;
  margin-bottom: 8px;
  line-height: 1.5;
}

.action-modal-details {
  background: var(--gray);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  text-align: left;
}

.action-modal-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.88rem;
}

.action-modal-details .detail-row:last-child {
  border-bottom: none;
}

.action-modal-details .detail-label {
  color: var(--light);
  opacity: 0.6;
}

.action-modal-details .detail-value {
  color: var(--light);
  font-weight: 600;
}

.action-modal-footer {
  display: flex;
  gap: 12px;
  padding: 0 30px 30px;
  justify-content: center;
}

.action-modal-footer .btn-action-confirm {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.action-modal-footer .btn-action-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.action-modal-footer .btn-action-cancel {
  background: var(--gray);
  color: var(--light);
  border: 1px solid var(--gray-light);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.action-modal-footer .btn-action-cancel:hover {
  background: var(--gray-light);
}

[data-theme="light"] .action-modal .modal-content {
  background: #fff;
  border-color: #dee2e6;
}
[data-theme="light"] .action-modal-title,
[data-theme="light"] .action-modal-message {
  color: #333;
}
[data-theme="light"] .action-modal-details {
  background: #f8f9fa;
}
[data-theme="light"] .action-modal-details .detail-label,
[data-theme="light"] .action-modal-details .detail-value {
  color: #333;
}
[data-theme="light"] .action-modal-footer .btn-action-cancel {
  background: #e9ecef;
  color: #333;
  border-color: #dee2e6;
}

/* ============================================
   BOOKING MODAL ENHANCEMENTS
   ============================================ */
.booking-detail-section {
  background: var(--gray);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: left;
}

.booking-detail-section h6 {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.booking-detail-section p {
  color: var(--light);
  opacity: 0.8;
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.booking-type-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.booking-confirmation-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}

/* ============================================
   AVATAR PREVIEW IN MODAL
   ============================================ */
.avatar-preview-modal {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--accent);
  margin: 0 auto 16px;
}

/* ============================================
   RESPONSIVE LOADING SCREEN
   ============================================ */
@media (max-width: 576px) {
  .loading-logo {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  .loading-tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 35px;
  }
  .toast-notification {
    min-width: unset;
    max-width: calc(100vw - 48px);
  }
}

    