

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

 /* Flex-grow 1 for the wrapper to take up remaining space */
 .wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
 }



html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: #f4f7fa;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, #3e065f 0%, #2d0550 100%);
    color: #fff;
    padding: 15px;
    text-align: center;
    position: relative;
}

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

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

.menu-icon {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #fff;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    text-decoration: none;
    color: #1abc9c;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    padding: 15px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.dropdown-content a i {
    margin-right: 10px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #3e065f 0%, #2d0550 100%);
    text-align: center;
    z-index: 1;
}

.hero {
    background: url('1.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    background-blend-mode: overlay;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: palevioletred;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    max-width: 90%;
    background-color: rgba(52, 73, 94, 0.7);
    padding: 15px;
    border-radius: 5px;
}

.cta-button {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    margin: 10px 0;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.services, .get-involved, .contact, .resources, .about, .donate, .service-content {
    padding: 40px 20px;
    text-align: left; /* Changed to left for better text alignment */
    background-color: #ecf0f1;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Added max-width for better alignment */
    margin: 40px auto; /* Centered the section */
}

.services h1, .get-involved h1, .contact h1, .resources h1, .about h1, .donate h1, .service-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center; /* Centered the headings */
}

.services p, .get-involved p, .contact p, .resources p, .about p, .donate p, .service-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.8; /* Increased line-height for better readability */
}

.service-grid, .involvement-options, .resource-list, .donate-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item, .option, .resource-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
}

.service-item h3, .option h2, .resource-item h2 {
    margin-top: 0;
    color: var(--text-primary);
}

.service-item p, .option p, .resource-item p {
    margin: 10px 0 0;
    color: var(--text-secondary);
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

ul li {
    margin-bottom: 10px;
}

.contact-form, .donate-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

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

.contact-form label, .donate-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-weight: bold;
}

.contact-form input, .donate-form input, .contact-form textarea, .donate-form select, .donate-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, .donate-form input:focus, .contact-form textarea:focus, .donate-form select:focus, .donate-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    outline: none;
}

.contact-form button, .donate-form button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover, .donate-form button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.donate-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.donate-form .form-row .form-group {
    flex: 1;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.donation-amounts label {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #ecf0f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.donation-amounts label input {
    margin-right: 10px;
}

/* Slideshow styles */
.slideshow {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    display: none;
    flex: 1 0 100%;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    vertical-align: middle;
}

.slide .text {
    color: #ffffff;
    font-size: 1.5em;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot-container {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
    font-size: 0.95rem;
    text-align: center;
}

.contact-item i {
    color: var(--primary-500);
    margin-bottom: 0.5rem;
    flex-shrink: 0;
    width: 16px;
}

.contact-item span {
    line-height: 1.5;
    text-align: center;
    display: block;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gray-800);
    color: var(--gray-300);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.social-icons a:hover,
.social-icons a:focus {
    background: var(--primary-600);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    border-color: var(--primary-400);
}



@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .menu-icon {
        display: none;
    }

    #nav-links {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background-color: transparent !important;
    }

    .donate-form .form-row {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
    }

    .donate-form .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}
/* ========== Appointment & Payment Forms ========== */

.appointment-form, .payment-form {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.appointment-form h2, .payment-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2em;
    color: #3e065f;
}

.appointment-form label, .payment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.appointment-form input[type="text"],
.appointment-form input[type="phone"],
.appointment-form input[type="email"],
.appointment-form input[type="datetime-local"],
.appointment-form select,
.payment-form input,
.payment-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form input:focus,
.payment-form input:focus,
.appointment-form select:focus,
.payment-form select:focus {
    border-color: #1abc9c;
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
    outline: none;
}

.appointment-form button,
.payment-form button {
    width: 100%;
    padding: 15px;
    background-color: #1abc9c;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.appointment-form button:hover,
.payment-form button:hover {
    background-color: #16a085;
    transform: scale(1.05);
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

/* Enhanced Professional Design System */

/* ---------- Modern Color Palette ---------- */
:root {
  --primary-color: #7c3aed;      /* Purple */
  --primary-dark: #6d28d9;
  --primary-light: #c4b5fd;
  --secondary-color: #ec4899;    /* Pink */
  --accent-color: #06b6d4;       /* Cyan */
  --success-color: #10b981;      /* Emerald */
  --warning-color: #f59e0b;      /* Amber */
  --error-color: #ef4444;        /* Red */

  --text-primary: #1f2937;       /* Gray-800 */
  --text-secondary: #6b7280;     /* Gray-500 */
  --text-muted: #9ca3af;         /* Gray-400 */

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-dark: #0f172a;

  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Additional utility colors */
  --info-color: #3b82f6;
  --muted-bg: #f9fafb;
  --card-bg: #ffffff;
  --hover-bg: #f3f4f6;
}

/* ---------- Typography Enhancements ---------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #f4f7fa;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

/* ---------- Enhanced Button Styles ---------- */
.btn, .cta-button, button[type="submit"], .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary, .cta-button, .hero-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

.btn-danger {
  background: var(--error-color);
  color: white;
}

/* ---------- Card Components ---------- */
.card, .about-card, .feature-card, .service-item {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover, .about-card:hover, .feature-card:hover, .service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

/* ---------- Form Enhancements ---------- */
.form-group, .input-group {
  margin-bottom: 1.5rem;
}

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

.form-input, input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--bg-primary);
}

.form-input:focus, input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ---------- Navigation Enhancements ---------- */
nav ul li a {
  position: relative;
  transition: all 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* ---------- Hero Section Enhancements ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(236, 72, 153, 0.9)), url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ---------- Stats Counter ---------- */
.stats-counter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: white;
  opacity: 0.9;
}

/* ---------- Testimonial Enhancements ---------- */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 2rem;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.author-info h4 {
  margin: 0;
  color: var(--text-primary);
  font-weight: 600;
}

.author-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Loading States ---------- */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

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

/* ---------- Notification System ---------- */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 500;
  z-index: 1000;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  background: var(--success-color);
}

.notification-error {
  background: var(--error-color);
}

.notification-warning {
  background: var(--warning-color);
}

.notification-info {
  background: var(--primary-color);
}

/* ---------- Dashboard Styles ---------- */
.welcome-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  margin: 0 auto;
}

.user-avatar {
  margin-bottom: 1.5rem;
}

.user-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.welcome-card h1 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.welcome-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

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

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

/* ---------- Dashboard Styles ---------- */
.dashboard-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 4rem 0 2rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}


.welcome-section {
  position: relative;
  z-index: 2;
}

.welcome-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-card h1 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.welcome-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

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

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

.dashboard-stats {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.section-title {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 3rem;
  font-size: 2rem;
}

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

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

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

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

.stat-content {
  flex: 1;
  text-align: left;
}

.stat-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.stat-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.stat-card .btn {
  align-self: flex-start;
}

/* ---------- Login/Register Form Styles ---------- */
.login-header, .register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h2, .register-header h2 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.login-header p, .register-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.login-form, .register-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.btn-full {
  width: 100%;
}

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

.form-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.form-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

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

/* ---------- Notification Enhancements ---------- */
.notification {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
}

.notification i {
  font-size: 1.1rem;
}

.notification-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.notification-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.notification-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.notification-info {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* ---------- Enhanced Hero Section ---------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.85), rgba(236, 72, 153, 0.85));
  z-index: 1;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: white;
  opacity: 0.9;
}

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

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

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

/* ---------- Improved Form Styles ---------- */
.form-group, .input-group {
  margin-bottom: 1.5rem;
}

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

.form-input, input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--bg-primary);
}

.form-input:focus, input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ---------- Journey Section ---------- */
.journey-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.journey-header h2 {
  color: var(--text-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.journey-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.step-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  z-index: 1;
}

.step-number {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
  border: 3px solid var(--primary-color);
}

.step-content {
  padding-left: 1rem;
}

.step-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Professional Booking Section ---------- */
.booking-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%236366f1" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%236366f1" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%236366f1" opacity="0.02"/><circle cx="10" cy="50" r="0.5" fill="%236366f1" opacity="0.02"/><circle cx="90" cy="30" r="0.5" fill="%236366f1" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.booking-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
  color: white;
  font-size: 2rem;
}

.booking-header h2 {
  color: var(--text-primary);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.booking-header p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.booking-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-showcase {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.services-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.services-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.services-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.service-category {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.category-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.service-btn {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-btn:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.service-btn.premium {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
}

.service-btn.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-header input[type="checkbox"] {
  margin: 0;
  transform: scale(1.2);
  accent-color: var(--primary-color);
}

.service-label {
  flex: 1;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.4;
}

.service-badge {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details {
  padding-left: 2rem;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

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

.service-duration {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.booking-footer {
  background: var(--bg-secondary);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-color);
}

.payment-summary {
  margin-bottom: 3rem;
}

.summary-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.summary-header {
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  padding: 2rem;
  text-align: center;
}

.summary-header h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.payment-note {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.summary-breakdown {
  padding: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.1rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.deposit {
  color: var(--primary-color);
  font-weight: 600;
}

.summary-row.remaining {
  font-weight: 700;
  font-size: 1.15rem;
}

.amount {
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Monaco', 'Menlo', monospace;
}

.payment-info {
  background: var(--bg-tertiary);
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-item i {
  color: var(--success-color);
  font-size: 1.1rem;
}

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

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.btn-xl:hover {
  box-shadow: var(--shadow-xl);
}

.btn-xl i {
  font-size: 1.3rem;
}

.btn-xl span {
  margin-left: 0.5rem;
}

.booking-disclaimer {
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ---------- Better Button Styles ---------- */
.btn, .cta-button, button[type="submit"], .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary, .cta-button, .hero-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover, .cta-button:hover, .hero-cta:hover {
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

.btn-danger {
  background: var(--error-color);
  color: white;
}

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

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

.btn-full {
  width: 100%;
}

/* ---------- Card Components ---------- */
.card, .about-card, .feature-card, .service-item {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover, .about-card:hover, .feature-card:hover, .service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

/* ---------- Notification System ---------- */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 500;
  z-index: 1000;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  background: var(--success-color);
}

.notification-error {
  background: var(--error-color);
}

.notification-warning {
  background: var(--warning-color);
}

.notification-info {
  background: var(--primary-color);
}

/* ---------- Loading States ---------- */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

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

/* ---------- Improved Login/Register Forms ---------- */
.login-header, .register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h2, .register-header h2 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.login-header p, .register-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.login-form, .register-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.form-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

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

/* ---------- Contact Section Enhancements ---------- */
.contact-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
}

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

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

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

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

.contact-details p {
  margin: 1rem 0 0.5rem 0;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-details a {
  display: block;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

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

.contact-details address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.5;
}

.emergency-contact {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border: 1px solid #fca5a5;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.emergency-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.emergency-header i {
  color: #dc2626;
  font-size: 1.5rem;
}

.emergency-header h4 {
  color: #dc2626;
  margin: 0;
  font-size: 1.1rem;
}

.emergency-number {
  display: inline-block;
  background: #dc2626;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem 0;
  transition: background 0.2s ease;
}

.emergency-number:hover {
  background: #b91c1c;
}

.emergency-note {
  color: #7f1d1d;
  font-size: 0.9rem;
  font-style: italic;
}

.map-container {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1rem 2rem;
}

.map-header i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.map-header h3 {
  margin: 0;
  color: var(--text-primary);
}

.map-wrap {
  height: 350px;
  position: relative;
}

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

.map-directions {
  padding: 1rem 2rem 2rem 2rem;
  text-align: center;
}

.quick-contact {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.quick-contact h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

/* ---------- Booking Section Enhancements ---------- */
.booking-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

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

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

.form-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.booking-form {
  display: grid;
  gap: 1.5rem;
}

.booking-info {
  display: grid;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.info-list li div {
  flex: 1;
}

.info-list li strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.info-list li span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.availability-card {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.availability-card h4 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.hours-list {
  display: grid;
  gap: 1rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hour-item .day {
  font-weight: 600;
}

.hour-item .time {
  opacity: 0.9;
}

/* ---------- Navigation Enhancements ---------- */
.menu-icon {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.menu-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-icon:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Mobile Navigation */
#nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #3e065f;
  text-align: center;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#nav-links.active li {
  margin: 10px 0;
}

#nav-links.active a {
  padding: 10px 20px;
  display: block;
}

/* ---------- Responsive Enhancements ---------- */
@media (max-width: 1024px) {
  .contact-grid, .booking-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stats .stat-item {
    min-width: 100px;
    padding: 0.75rem;
  }
}

@media (max-width: 768px) {
  .stats-counter, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .hero-title, .welcome-card h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions, .quick-actions {
    flex-direction: column;
    align-items: center;
  }

  .welcome-card {
    padding: 2rem;
    margin: 1rem;
  }

  .user-avatar img {
    width: 100px;
    height: 100px;
  }

  /* Dashboard mobile styles */
  .dashboard-hero {
    padding: 2rem 0 1rem 0;
  }

  .welcome-card {
    padding: 2rem;
    margin: 1rem;
  }

  .welcome-card h1 {
    font-size: 2rem;
  }

  .quick-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    max-width: 300px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

  /* Journey section mobile */
  .journey-section {
    padding: 3rem 0;
  }

  .journey-header h2 {
    font-size: 2rem;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  /* Booking section mobile */
  .booking-section {
    padding: 4rem 0;
  }

  .header-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .booking-header h2 {
    font-size: 2.2rem;
  }

  .booking-header p {
    font-size: 1.1rem;
  }

  .services-header {
    padding: 2rem 1.5rem;
  }

  .services-header h3 {
    font-size: 1.6rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .service-category {
    padding: 1.5rem;
  }

  .category-title {
    font-size: 1.1rem;
  }

  .service-btn {
    padding: 1.25rem;
  }

  .service-name {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .service-price {
    font-size: 1.1rem;
  }

  .booking-footer {
    padding: 2rem 1.5rem;
  }

  .summary-header {
    padding: 1.5rem;
  }

  .summary-header h4 {
    font-size: 1.3rem;
  }

  .summary-breakdown {
    padding: 1.5rem;
  }

  .payment-info {
    padding: 1.5rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

  .booking-disclaimer {
    font-size: 0.85rem;
  }

  /* Mobile Navigation */
  .menu-icon {
    display: block !important;
  }

  #nav-links {
    display: none;
  }

  #nav-links.active {
      display: flex !important;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: linear-gradient(135deg, #3e065f 0%, #2d0550 100%);
      text-align: center;
      z-index: 1;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #nav-links.active li {
    margin: 10px 0;
  }

  #nav-links.active a {
    padding: 10px 20px;
    display: block;
    color: #ecf0f1;
  }

  #nav-links.active .dropdown-content {
      position: static;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: none;
      padding: 0;
      display: block !important;
      max-height: none !important;
      visibility: visible !important;
      opacity: 1 !important;
  }
  
  #nav-links.active .dropdown-content a {
      color: #ecf0f1;
      padding: 8px 16px;
      display: block;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  #nav-links.active .dropdown-content a:last-child {
      border-bottom: none;
  }
  
  #nav-links.active .dropdown.active .dropdown-content {
      display: block !important;
  }
  
  #nav-links.active .dropdown.active .dropbtn::after {
      content: ' ▲';
      font-size: 0.8em;
  }
  
  .dropbtn::after {
      content: ' ▼';
      font-size: 0.8em;
      margin-left: 5px;
      transition: transform 0.3s ease;
  }
  
  .dropdown.active .dropbtn::after {
      transform: rotate(180deg);
  }
  
  /* Hide dropdown content by default in mobile */
  @media (max-width: 768px) {
      .dropdown-content {
          display: none !important;
      }
  
      .dropdown.active .dropdown-content {
          display: block !important;
      }
  }

  .contact-grid, .booking-content {
    gap: 2rem;
  }

  .contact-card, .form-card, .info-card, .map-container, .quick-contact {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .emergency-contact {
    padding: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-counter, .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-title, .welcome-card h1 {
    font-size: 1.8rem;
  }

  .btn, .cta-button, .hero-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .welcome-card {
    padding: 1.5rem;
  }

  .contact-card, .form-card, .info-card, .quick-contact {
    padding: 1.25rem;
  }

  .info-list li {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .hour-item {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

/* Accessibility enhancements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

@media (prefers-contrast: high) {
    .hero-cta,
    button,
    .cta-button {
        border: 2px solid currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
/* ========== BOOKING MANAGEMENT STYLES ========== */

.bookings-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.booking-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.booking-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-id {
  font-size: 1.1rem;
  font-weight: 600;
}

.status-pending {
  background: var(--warning-color);
}

.status-confirmed {
  background: var(--success-color);
}

.status-completed {
  background: var(--info-color);
}

.status-cancelled {
  background: var(--error-color);
}

.booking-details {
  padding: 1.5rem;
}

.services-list {
  margin-bottom: 1.5rem;
}

.services-list h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

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

.services-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  color: var(--text-secondary);
}

.services-list li i {
  color: var(--success-color);
}

.payment-info {
  background: var(--bg-tertiary);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.payment-row:last-child {
  border-bottom: none;
}

.payment-row.remaining {
  font-weight: 600;
  color: var(--primary-color);
}

.amount {
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Monaco', 'Menlo', monospace;
}

.payment-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.payment-status.completed {
  background: #d1fae5;
  color: #065f46;
}

.payment-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.booking-actions {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

.no-bookings {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.no-bookings i {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.no-bookings h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* ========== BOOKING CONFIRMATION STYLES ========== */

.confirmation-hero {
  background: linear-gradient(135deg, var(--success-color), #059669);
  padding: 4rem 0 2rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.confirmation-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.confirmation-header {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
}

.success-icon {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
}

.confirmation-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.confirmation-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.booking-summary {
  padding: 2rem;
}

.summary-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.summary-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-section h3 i {
  color: var(--primary-color);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.highlight {
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Monaco', 'Menlo', monospace;
}

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

.payment-breakdown {
  margin: 1rem 0;
}

.payment-notice {
  background: #dbeafe;
  color: #1e40af;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #bfdbfe;
  margin-top: 1rem;
}

.confirmation-actions {
  padding: 2rem;
  background: var(--bg-tertiary);
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.next-steps {
  padding: 2rem;
  background: white;
}

.next-steps h3 {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

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

.step {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.support-info {
  padding: 2rem;
  text-align: center;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
}

.support-info p {
  color: var(--text-secondary);
  margin: 0;
}

/* ========== PROFILE MANAGEMENT STYLES ========== */

.profile-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.profile-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.profile-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

.card-header h3 {
  margin: 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-header h3 i {
  color: var(--primary-color);
}

.card-body {
  padding: 1.5rem;
}

.profile-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.profile-avatar:hover .avatar-overlay {
  opacity: 1;
}

.profile-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-help {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.password-form {
  display: grid;
  gap: 1.5rem;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

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

.stat-content h4 {
  margin: 0 0 0.25rem 0;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.stat-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.account-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

/* ========== PROGRESS TRACKING STYLES ========== */

.progress-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.progress-overview {
  margin-bottom: 3rem;
}

.progress-overview h2 {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

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

.metric-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

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

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

.metric-content {
  flex: 1;
}

.metric-content h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.metric-fill.stress {
  background: linear-gradient(90deg, var(--warning-color), var(--error-color));
}

.metric-fill.sleep {
  background: linear-gradient(90deg, var(--success-color), var(--primary-color));
}

.metric-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.add-entry-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-bottom: 3rem;
  overflow: hidden;
}

.progress-form {
  display: grid;
  gap: 1.5rem;
}

.rating-input {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-input input[type="range"] {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-tertiary);
  outline: none;
  -webkit-appearance: none;
}

.rating-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.rating-input input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

.rating-display {
  min-width: 50px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
}

.progress-history {
  margin-top: 3rem;
}

.progress-history h2 {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.entries-grid {
  display: grid;
  gap: 2rem;
}

.progress-entry {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 2rem;
  transition: all 0.3s ease;
}

.progress-entry:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.entry-date, .entry-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.entry-metrics {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.metric-label {
  min-width: 60px;
  font-weight: 600;
  color: var(--text-primary);
}

.metric-bar {
  flex: 1;
  height: 12px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.metric-fill.mood {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.metric-fill.stress {
  background: linear-gradient(90deg, var(--warning-color), var(--error-color));
}

.metric-fill.sleep {
  background: linear-gradient(90deg, var(--success-color), var(--primary-color));
}

.metric-value {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.entry-journal, .entry-goals {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.entry-journal h4, .entry-goals h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.entry-journal h4 i, .entry-goals h4 i {
  color: var(--primary-color);
}

.entry-journal p, .entry-goals p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.no-entries {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.no-entries i {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.no-entries h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* ========== RESPONSIVE IMPROVEMENTS ========== */

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

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

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

  .booking-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .booking-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

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

  .confirmation-actions {
    flex-direction: column;
  }

  .confirmation-actions .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
  }

  .metric-card {
    flex-direction: column;
    text-align: center;
  }

  .entries-grid {
    gap: 1rem;
  }

  .progress-entry {
    padding: 1.5rem;
  }

  .entry-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .payment-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .rating-input {
    flex-direction: column;
    gap: 0.5rem;
  }

  .rating-display {
    align-self: center;
  }
}
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ========== PAYMENT PROCESSING STYLES ========== */

.payment-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.payment-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.booking-summary-card, .payment-form-card, .payment-complete-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
  border-bottom: none;
}

.highlight {
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Monaco', 'Menlo', monospace;
}

.amount {
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Monaco', 'Menlo', monospace;
}

.amount.success {
  color: var(--success-color);
}

.amount.highlight {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.payment-form {
  display: grid;
  gap: 2rem;
}

.payment-methods {
  display: grid;
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.payment-method:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.payment-method.selected {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.05);
}

.payment-method input[type="radio"] {
  margin: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
}

.method-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
  flex: 1;
}

.method-content i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 30px;
}

.method-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.method-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.payment-notice {
  background: #dbeafe;
  color: #1e40af;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.payment-notice i {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.success-message {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-primary);
}

.success-message i {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.security-info {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin-top: 2rem;
}

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

.feature {
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ========== RESPONSIVE PAYMENT STYLES ========== */

@media (max-width: 768px) {
  .payment-container {
    gap: 1.5rem;
  }

  .summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .method-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .security-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .success-message {
    padding: 2rem 1rem;
  }
}

/* ========== BOOKING PAGE STYLES ========== */

.booking-page {
  font-family: 'Arial', sans-serif;
  background-color: #f4f7fa;
  color: #333;
}

.booking-page section {
  text-align: center;
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-page h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.booking-page p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  justify-items: center;
}

.service-btn {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-btn:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.service-btn label {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.service-btn input[type="checkbox"] {
  margin-right: 10px;
}

#totals {
  margin-top: 40px;
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  text-align: center;
}

.booking-page button {
  margin: 40px auto 0;
  padding: 18px 40px;
  background: #007bff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  display: block;
}

.booking-page button:hover {
  background: #0056b3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

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

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

/* ========== INDEX PAGE MODERN STYLES ========== */

.index-page {
  /* Modern animations with accessibility */
}

@media (prefers-reduced-motion: no-preference) {
  .index-page .dashboard-hero,
  .index-page .dashboard-stats,
  .index-page .journey-section,
  .index-page .booking-section {
    animation: fadeInUp 0.8s ease-out;
  }

  .index-page .stat-card,
  .index-page .step-card,
  .index-page .service-btn {
    animation: fadeInScale 0.6s ease-out;
    animation-fill-mode: both;
  }

  .index-page .stat-card:nth-child(1) { animation-delay: 0.1s; }
  .index-page .stat-card:nth-child(2) { animation-delay: 0.2s; }
  .index-page .stat-card:nth-child(3) { animation-delay: 0.3s; }

  .index-page .step-card:nth-child(1) { animation-delay: 0.1s; }
  .index-page .step-card:nth-child(2) { animation-delay: 0.2s; }
  .index-page .step-card:nth-child(3) { animation-delay: 0.3s; }
  .index-page .step-card:nth-child(4) { animation-delay: 0.4s; }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Ensure responsiveness */
@media (max-width: 768px) {
  .index-page .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .index-page .services-grid {
    grid-template-columns: 1fr;
  }
}

