/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

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

/* Header Styles */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a6cf7;
  text-decoration: none;
  z-index: 1001;
}

/* Desktop Navigation */
.header-nav-desktop {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-nav-desktop .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.header-nav-desktop .nav-link:hover {
  color: #4a6cf7;
}

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

.nav-username {
  color: #333;
  font-weight: 500;
}

.nav-logout-btn {
  background-color: #4a6cf7;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.nav-logout-btn:hover {
  background-color: #3a5ce5;
}

/* Mobile Menu Toggle Button */
.header-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

/* Hamburger Icon */
.hamburger-icon {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #333;
  position: relative;
  transition: background-color 0.3s ease;
  left: 0;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s ease;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

/* Hamburger Animation when menu is open */
.header-menu-toggle[aria-expanded="true"] .hamburger-icon {
  background-color: transparent;
}

.header-menu-toggle[aria-expanded="true"] .hamburger-icon::before {
  transform: rotate(45deg) translate(6px, 6px);
}

.header-menu-toggle[aria-expanded="true"] .hamburger-icon::after {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Panel - Full Screen Overlay */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu-panel:not([hidden]) {
  transform: translateX(0);
}

/* Mobile Menu Links */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-menu-links .nav-link {
  text-decoration: none;
  color: #333;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease;
}

.mobile-menu-links .nav-link:hover {
  color: #4a6cf7;
}

/* Mobile Menu User Section */
.mobile-menu-user {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-user .nav-username {
  color: #333;
  font-weight: 600;
  font-size: 1.125rem;
}

.mobile-menu-user .nav-logout-btn {
  background-color: #4a6cf7;
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s;
  width: 100%;
}

.mobile-menu-user .nav-logout-btn:hover {
  background-color: #3a5ce5;
}

/* Legacy nav styles for backward compatibility */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #4a6cf7;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a6cf7;
}

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

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background-color: #4a6cf7;
  color: white;
}

.btn-primary:hover {
  background-color: #3a5ce5;
}

.btn-secondary {
  background-color: #f1f3f5;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e1e3e5;
}

/* Auth Container */
.auth-container {
  display: flex;
  min-height: calc(100vh - 80px);
}

.auth-form-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.auth-image {
  flex: 1;
  background: linear-gradient(135deg, #4a6cf7, #8b5cf6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.auth-image h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.auth-image p {
  font-size: 1.2rem;
  max-width: 400px;
}

.auth-form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.auth-form h2 {
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #555;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #4a6cf7;
  box-shadow: 0 0 0 2px rgba(74, 108, 247, 0.2);
}

.form-error {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-actions {
  margin-top: 2rem;
}

.btn-block {
  display: block;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.auth-footer a {
  color: #4a6cf7;
  text-decoration: none;
}

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

/* Alert Styles */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Dashboard Styles */
.dashboard {
  padding: 2rem 0;
}

.dashboard-header {
  margin-bottom: 2rem;
}

.dashboard-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 200px;
  background-color: #f1f3f5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6c757d;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.card-description {
  color: #666;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.card-price {
  font-weight: bold;
  color: #4a6cf7;
}

/* Loading Spinner */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #4a6cf7;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 0.5rem;
}

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

/* Review and Tip Page Styles */
.review-form {
  max-width: 800px;
  margin: 0 auto;
}

.tour-info-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tour-info-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tour-info-image {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.tour-info-details h2 {
  margin: 0 0 12px 0;
  color: #2c3e50;
  font-size: 1.5rem;
}

.tour-info-details p {
  margin: 6px 0;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-info-details i {
  width: 16px;
  text-align: center;
}

.review-section,
.tip-section {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-section h3,
.tip-section h3 {
  margin: 0 0 24px 0;
  color: #2c3e50;
  font-size: 1.5rem;
}

.rating-group {
  margin-bottom: 24px;
}

.rating-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.star-rating {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.star-rating.small {
  gap: 4px;
}

.star-rating i {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating.small i {
  font-size: 18px;
}

.star-rating i:hover {
  color: #ffc107;
}

.star-rating i.fas {
  color: #ffc107;
}

.rating-text {
  font-size: 14px;
  color: #6c757d;
  margin-left: 8px;
}

.category-ratings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.character-count {
  text-align: right;
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}

.photo-upload {
  margin-top: 12px;
}

.photo-upload-area {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.photo-upload-area:hover {
  border-color: #4a6cf7;
}

.photo-upload-area i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 12px;
}

.photo-upload-area p {
  margin: 0;
  color: #6c757d;
}

.photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.photo-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-photo {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.remove-photo:hover {
  background: rgba(0, 0, 0, 0.9);
}

.tip-description {
  color: #6c757d;
  margin-bottom: 24px;
}

.tip-options {
  margin-bottom: 24px;
}

.tip-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.tip-amount-btn {
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tip-amount-btn:hover {
  border-color: #4a6cf7;
  background: #f1f3f5;
}

.tip-amount-btn.active {
  border-color: #4a6cf7;
  background: #4a6cf7;
  color: white;
}

.custom-tip-input {
  margin-bottom: 20px;
}

.tip-message label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.review-actions {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-item.total {
  font-weight: 700;
  font-size: 18px;
  color: #4a6cf7;
  padding-top: 16px;
  border-top: 2px solid #eee;
}

.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.success-state {
  text-align: center;
  padding: 64px 32px;
}

.success-content i {
  font-size: 64px;
  color: #28a745;
  margin-bottom: 24px;
}

.success-content h2 {
  margin: 0 0 16px 0;
  color: #2c3e50;
  font-size: 2rem;
}

.success-content p {
  margin: 0 0 32px 0;
  color: #6c757d;
  font-size: 18px;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, #4a6cf7, #8b5cf6);
  color: white;
  padding: 4rem 0 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

/* Loading and Error States */
.loading-state,
.error-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #4a6cf7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.error-state i {
  font-size: 48px;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.error-state h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.error-state p {
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Input Group Styles */
.input-group {
  display: flex;
  align-items: center;
}

.input-group-text {
  background: #f1f3f5;
  border: 1px solid #ddd;
  border-right: none;
  padding: 0.75rem;
  border-radius: 4px 0 0 4px;
  color: #6c757d;
}

.input-group .form-control {
  border-radius: 0 4px 4px 0;
  border-left: none;
}

/* Main Content Layout */
.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Enhanced Success State Styles */
.success-content i {
  font-size: 64px;
  color: #28a745;
  margin-bottom: 24px;
}

.success-content h2 {
  margin: 0 0 16px 0;
  color: #2c3e50;
  font-size: 2rem;
}

.success-content p {
  margin: 0 0 32px 0;
  color: #6c757d;
  font-size: 18px;
}

.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 8px;
}

.confirmation-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.confirmation-item i {
  font-size: 24px;
  color: #4a6cf7;
  width: 32px;
  text-align: center;
}

.confirmation-item strong {
  display: block;
  color: #2c3e50;
  margin-bottom: 4px;
}

.confirmation-item p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
}

.next-actions {
  margin: 32px 0;
}

.next-actions h4 {
  text-align: center;
  margin: 0 0 24px 0;
  color: #2c3e50;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #2c3e50;
}

.action-card:hover {
  border-color: #4a6cf7;
  background: #f8f9ff;
  transform: translateY(-2px);
}

.action-card i {
  font-size: 24px;
  color: #4a6cf7;
}

.action-card span {
  font-weight: 500;
  text-align: center;
}

.social-sharing {
  text-align: center;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 8px;
}

.social-sharing h4 {
  margin: 0 0 16px 0;
  color: #2c3e50;
}

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

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  transition: transform 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.twitter {
  background: #1da1f2;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.whatsapp {
  background: #25d366;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Feedback Guidance Styles */
.feedback-guidance {
  margin-bottom: 32px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 8px;
}

.feedback-guidance h4 {
  margin: 0 0 16px 0;
  color: #2c3e50;
}

.guidance-prompts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.prompt-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prompt-item:hover {
  border-color: #4a6cf7;
  background: #f8f9ff;
  transform: translateY(-1px);
}

.prompt-item i {
  color: #4a6cf7;
  font-size: 16px;
}

.prompt-item span {
  font-size: 14px;
  color: #2c3e50;
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-form-section,
.contact-info-section {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-card {
  max-width: 500px;
}

.contact-card h2 {
  margin: 0 0 24px 0;
  color: #2c3e50;
  font-size: 1.5rem;
}

.contact-card p {
  margin-bottom: 24px;
  color: #6c757d;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #4a6cf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.contact-details h3 {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 1.1rem;
}

.contact-details p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
}

.contact-description {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.faq-card {
  max-width: 500px;
}

.faq-card h2 {
  margin: 0 0 24px 0;
  color: #2c3e50;
  font-size: 1.5rem;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #2c3e50;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question i {
  transition: transform 0.2s ease;
}

.faq-answer {
  padding: 20px;
  background: white;
  border-top: 1px solid #eee;
  display: none;
}

.faq-answer p {
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}

.contact-success {
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid #c3e6cb;
}

.contact-success i {
  font-size: 48px;
  color: #28a745;
  margin-bottom: 16px;
}

.contact-success h3 {
  margin: 0 0 8px 0;
  color: #155724;
}

.contact-success p {
  margin: 0;
  color: #155724;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #4a6cf7, #8b5cf6);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a6cf7;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

.about-section {
  margin-bottom: 80px;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

.story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
}

.story-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.value-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #4a6cf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 20px;
}

.value-card h3 {
  margin: 0 0 16px 0;
  color: #2c3e50;
  font-size: 1.2rem;
}

.value-card p {
  color: #6c757d;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.process-step {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #4a6cf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  margin: 0 0 16px 0;
  color: #2c3e50;
  font-size: 1.2rem;
}

.process-step p {
  color: #6c757d;
  line-height: 1.6;
}

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

.team-member {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 1.2rem;
}

.team-role {
  color: #4a6cf7;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-bio {
  color: #6c757d;
  line-height: 1.6;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.partner-category {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-category h3 {
  margin: 0 0 20px 0;
  color: #2c3e50;
  font-size: 1.3rem;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.partner-logo:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.partner-logo i {
  font-size: 24px;
  color: #4a6cf7;
  margin-right: 8px;
}

.partner-logo span {
  font-weight: 600;
  color: #2c3e50;
}

.about-cta {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin: 0 0 24px 0;
  color: #2c3e50;
  font-size: 2rem;
}

.cta-content p {
  margin-bottom: 32px;
  color: #6c757d;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Responsive Design */
/* Mobile Header Responsive Styles */
@media (max-width: 768px) {
  /* Hide desktop navigation on mobile */
  .header-nav-desktop,
  .header-user-desktop {
    display: none !important;
  }
  
  /* Show mobile menu toggle button */
  .header-menu-toggle {
    display: block;
  }
  
  /* Adjust header padding for mobile */
  .site-header {
    padding: 1rem;
  }
  
  .header-brand {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
  }
  
  .auth-image {
    min-height: 200px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    margin-top: 1rem;
  }
  
  nav ul li {
    margin: 0 0.75rem;
  }
  
  .tour-info-header {
    flex-direction: column;
    text-align: center;
  }
  
  .tour-info-image {
    width: 100%;
    height: 200px;
  }
  
  .category-ratings {
    grid-template-columns: 1fr;
  }
  
  .tip-amounts {
    justify-content: center;
  }
  
  .review-summary {
    grid-template-columns: 1fr;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

/* Payouts & Earnings Page Styles */
.payouts-section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Summary Cards */
.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.summary-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.summary-icon {
  width: 60px;
  height: 60px;
  background: #4a6cf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.summary-icon.pending {
  background: #ffc107;
}

.summary-content h3 {
  margin: 0 0 0.5rem 0;
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
}

/* Payout Date Card */
.payout-date-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 500px;
}

.payout-date-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.payout-date-content h3 {
  margin: 0 0 0.5rem 0;
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payout-date-value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Payout Method Card */
.payout-method-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.payout-method-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.payout-method-icon {
  width: 60px;
  height: 60px;
  background: #635bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.payout-method-details h3 {
  margin: 0 0 0.5rem 0;
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payout-method-value {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Transaction History */
.transaction-list {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.transaction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.transaction-item:last-child {
  border-bottom: none;
}

.transaction-item:hover {
  background-color: #f8f9fa;
}

.transaction-info h4 {
  margin: 0 0 0.25rem 0;
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
}

.transaction-date {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.transaction-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.transaction-amount {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  min-width: 80px;
  text-align: right;
}

.transaction-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transaction-status.paid {
  background-color: #d4edda;
  color: #155724;
}

.transaction-status.pending {
  background-color: #fff3cd;
  color: #856404;
}

/* Responsive Design for Payouts Page */
@media (max-width: 768px) {
  .summary-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .summary-card {
    padding: 1.5rem;
  }
  
  .summary-value {
    font-size: 1.5rem;
  }
  
  .payout-date-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .payout-method-card {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .payout-method-info {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .transaction-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .transaction-details {
    width: 100%;
    justify-content: space-between;
  }
  
  .transaction-amount {
    min-width: auto;
  }
}

/* Notifications Page Styles */
.notifications-page {
  padding: 2rem 0;
  max-width: 900px;
}

.notifications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.notifications-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification-bell-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
}

.notifications-title h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 700;
}

.mark-all-read {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

/* Notification Tabs */
.notification-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #eee;
  overflow-x: auto;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #6c757d;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: #4a6cf7;
  background: #f8f9fa;
}

.tab-btn.active {
  color: #4a6cf7;
  border-bottom-color: #4a6cf7;
}

/* Notifications List */
.notifications-list {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-item:hover {
  background-color: #f8f9fa;
}

.notification-item.unread {
  background-color: #f8f9ff;
}

.notification-item.unread:hover {
  background-color: #f0f2ff;
}

.notification-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.notification-icon.bookings {
  background-color: #4a6cf7;
}

.notification-icon.messages {
  background-color: #ff6b35;
}

.notification-icon.system {
  background-color: #8b5cf6;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.notification-content h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.unread-indicator {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background-color: #4a6cf7;
  border-radius: 50%;
  display: inline-block;
}

.notification-time {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  color: #6c757d;
}

.notification-details {
  margin: 0;
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.5;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  color: #6c757d;
}

.empty-state h3 {
  margin: 0 0 0.5rem 0;
  color: #2c3e50;
  font-size: 1.5rem;
}

.empty-state p {
  margin: 0;
  color: #6c757d;
  font-size: 1rem;
}

/* Responsive Design for Notifications */
@media (max-width: 768px) {
  .notifications-page {
    padding: 1rem 0;
  }

  .notifications-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mark-all-read {
    width: 100%;
  }

  .notifications-title h1 {
    font-size: 1.5rem;
  }

  .notification-tabs {
    gap: 0.25rem;
  }

  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .notification-item {
    padding: 1rem;
  }

  .notification-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

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

  .notification-content h3 {
    font-size: 0.9rem;
  }

  .notification-time,
  .notification-details {
    font-size: 0.8rem;
  }
}

/* Booking Flow Enhancements */
.capacity-info {
    background: #e8f5e8;
    border: 1px solid #d4edda;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.capacity-info p {
    margin: 0.25rem 0;
}

.capacity-info strong {
    color: #155724;
}

.alternative-dates {
    margin-top: 1rem;
}

.alternative-date {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.alternative-date:hover {
    background: #e9ecef;
    border-color: #4a6cf7;
}

.alternative-date strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.alternative-date span {
    color: #28a745;
    font-size: 0.875rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-refunded {
    background: #f8d7da;
    color: #721c24;
}

/* Payment Enhancements */
.crypto-payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.crypto-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.crypto-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.crypto-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.crypto-qr {
    text-align: center;
}

.crypto-qr img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.crypto-info p {
    margin: 0.5rem 0;
}

.crypto-info code {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    word-break: break-all;
}

.crypto-timer {
    color: #28a745;
    font-weight: 600;
}

.crypto-timer.error {
    color: #dc3545;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4a6cf7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Error States */
.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success States */
.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-info {
    background: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .crypto-details {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .alternative-date {
        padding: 0.75rem;
    }
    
    .capacity-info {
        font-size: 0.8rem;
    }
}

/* Tour Calendar Styles */
.tour-calendar {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

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

.calendar-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
}

.calendar-nav-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  color: #6c757d;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav-btn:hover {
  background: #e9ecef;
  color: #4a6cf7;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6c757d;
  padding: 0.5rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #eee;
  padding: 1px;
}

.calendar-day {
  background: white;
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calendar-day.empty {
  background: #f8f9fa;
  cursor: default;
}

.calendar-day.past {
  background: #f8f9fa;
  color: #adb5bd;
  cursor: not-allowed;
}

.calendar-day.past .day-number {
  color: #adb5bd;
}

.calendar-day.available {
  background: white;
  cursor: pointer;
}

.calendar-day.available:hover {
  background: #f0f8ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(74, 108, 247, 0.2);
}

.calendar-day.unavailable {
  background: #f8f9fa;
  color: #adb5bd;
  cursor: not-allowed;
  opacity: 0.6;
}

.calendar-day.unavailable .day-number {
  color: #adb5bd;
}

.calendar-day.selected {
  background: #4a6cf7;
  color: white;
  box-shadow: 0 2px 8px rgba(74, 108, 247, 0.3);
}

.calendar-day.selected .day-number {
  color: white;
}

.day-number {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.availability-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 0.25rem;
}

.availability-indicator.available {
  background: #28a745;
}

.availability-indicator.filling-up {
  background: #ffc107;
}

.availability-indicator.limited {
  background: #fd7e14;
}

.availability-indicator.unavailable {
  background: #dc3545;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.legend-item .availability-indicator {
  margin-top: 0;
}

/* Calendar Loading State */
.calendar-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  background: white;
}

.calendar-loading .loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #4a6cf7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 1rem;
}

/* Responsive Calendar */
@media (max-width: 768px) {
  .calendar-day {
    min-height: 50px;
    padding: 0.5rem 0.25rem;
  }
  
  .day-number {
    font-size: 0.875rem;
  }
  
  .availability-indicator {
    width: 6px;
    height: 6px;
  }
  
  .calendar-legend {
    gap: 1rem;
    padding: 0.75rem 1rem;
  }
  
  .legend-item {
    font-size: 0.75rem;
  }
  
  .calendar-header {
    padding: 0.75rem 1rem;
  }
  
  .calendar-title {
    font-size: 1.1rem;
  }
  
  .calendar-weekdays {
    padding: 0.5rem 0.75rem;
  }
  
  .calendar-weekday {
    font-size: 0.75rem;
  }
}

/* Operator Dashboard Styles */
.operator-dashboard {
  padding: 2rem 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.summary-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.summary-item h3 {
  margin: 0 0 0.5rem 0;
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.action-link {
  color: #4a6cf7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.action-link:hover {
  color: #3a5ce5;
  text-decoration: underline;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.data-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table tbody tr:hover {
  background: #f8f9fa;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.actions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.action-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  background: white;
  transition: background-color 0.2s ease;
}

.action-item:last-child {
  border-bottom: none;
}

.action-item:hover {
  background: #f8f9fa;
}

.action-label {
  flex: 1;
  margin-right: 1rem;
  color: #2c3e50;
}

.tour-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tours-list {
  display: grid;
  gap: 1.5rem;
}

.tour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tour-info h4 {
  margin: 0 0 0.5rem 0;
  color: #2c3e50;
  font-size: 1.1rem;
}

.tour-info p {
  margin: 0.25rem 0;
  color: #6c757d;
}

.empty-state {
  text-align: center;
  padding: 2rem;
  color: #6c757d;
  font-style: italic;
}

.empty-state h3 {
  margin: 0 0 0.5rem 0;
  font-style: normal;
  color: #2c3e50;
}

/* Responsive Design for Operator Dashboard */
@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .action-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .data-table {
    font-size: 0.875rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .tour-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .tour-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .tour-actions .btn {
    width: 100%;
  }
  
  .action-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .action-label {
    margin-right: 0;
  }
}

/* Homepage Styles */
.hero {
  background: linear-gradient(135deg, #4a6cf7, #8b5cf6);
  color: white;
  padding: 6rem 0;
  text-align: center;
  margin-bottom: 4rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.featured-tours {
  padding: 4rem 0;
  background: white;
}

.featured-tours h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tour-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.tour-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.tour-card-description {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex: 1;
}

.tour-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.tour-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4a6cf7;
}

.tour-card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffc107;
}

.tour-card-duration {
  color: #6c757d;
  font-size: 0.9rem;
}

.why-choose-us {
  padding: 4rem 0;
  background: #f8f9fa;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
}

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

.feature {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
}

.feature p {
  color: #6c757d;
  line-height: 1.6;
}

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

/* Footer Styles */
.site-footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #4a6cf7;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #f8f9fa;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #f8f9fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4a6cf7;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #adb5bd;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .site-footer {
    padding: 2rem 0 1rem;
  }
  
  /* Homepage Responsive Styles */
  .hero {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .featured-tours h2,
  .why-choose-us h2 {
    font-size: 2rem;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature {
    padding: 1.5rem;
  }
}
