/* Aayush Veda Wellness - Premium Design System */

:root {
  /* Dynamic themes (Overridden by JS from content.json) */
  --primary-color: #2D6A4F;
  --secondary-color: #52B788;
  --accent-color: #D8F3DC;
  --text-color: #2D3748;
  --bg-color: #F7FAFC;
  --card-bg: #FFFFFF;
  --white: #FFFFFF;
  --gray-light: #EDF2F7;
  --gray-medium: #A0AEC0;
  --gray-dark: #4A5568;
  --red: #E53E3E;
  --green-glow: rgba(82, 183, 136, 0.15);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--gray-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Common Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header .subtitle {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

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

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.section-header p {
  color: var(--gray-dark);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.95rem;
  gap: 8px;
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(82, 183, 136, 0.3);
}

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

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

.btn-text {
  background: none;
  border: none;
  color: var(--primary-color);
  padding: 0;
  font-weight: 700;
}

.btn-text:hover {
  color: var(--secondary-color);
  gap: 12px;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2rem;
  color: var(--secondary-color);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #F3F9F6 0%, #FFFFFF 100%);
  padding: 140px 0 100px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 550px;
}

.hero-content .tag {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--gray-dark);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Booking Card Hero */
.hero-booking-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(82, 183, 136, 0.1);
  position: relative;
}

.hero-booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.hero-booking-card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-dark);
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-light);
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-color);
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px var(--green-glow);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* Trust Badges */
.trust-badges {
  background-color: var(--white);
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.badges-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
}

.badge-item i {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.badge-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.badge-item p {
  font-size: 0.85rem;
  color: var(--gray-medium);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-main-img {
  width: 80%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  object-fit: cover;
}

.about-experience-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-experience-card .num {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-experience-card .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  margin: 30px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-features i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Info Callout Section */
.info-callout {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.info-callout-content h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-callout-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.info-callout-content .btn {
  background-color: var(--white);
  color: var(--primary-color);
}

.info-callout-content .btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(82, 183, 136, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Dynamic Details Modal/Page style */
.service-details-layout {
  padding-top: 120px;
  background: var(--white);
}

.details-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.details-main h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.details-main p.lead {
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin-bottom: 40px;
  line-height: 1.8;
}

.details-section {
  margin-bottom: 48px;
}

.details-section h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 10px;
}

.details-list {
  list-style: none;
}

.details-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.details-list li i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 4px;
}

.details-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-box {
  background-color: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 30px;
}

.sidebar-box h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

/* FAQs inside detail page */
.faq-accordion {
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 1.1rem;
  color: var(--gray-dark);
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--gray-dark);
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 12px;
}

.faq-item.active .faq-question h4 {
  color: var(--primary-color);
}

.faq-toggle-icon {
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

/* Testimonials */
.testimonials-section {
  background-color: var(--gray-light);
}

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

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  font-size: 6rem;
  color: var(--accent-color);
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: #F6AD55;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-card p {
  color: var(--gray-dark);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--accent-color);
}

.testimonial-user .name {
  font-weight: 700;
  color: var(--primary-color);
}

.testimonial-user .role {
  font-size: 0.8rem;
  color: var(--gray-medium);
}

/* Social Reviews link container */
.reviews-badges {
  margin-top: 50px;
  text-align: center;
}

.reviews-badges h4 {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.reviews-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.review-logo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  border: 1px solid var(--gray-light);
}

.review-logo-btn:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.review-logo-btn i.fa-google { color: #4285F4; }
.review-logo-btn i.fa-foursquare { color: #F94877; }
.review-logo-btn i.fa-yelp { color: #D12011; }

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.blog-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: var(--accent-color);
}

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

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

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-medium);
  margin-bottom: 12px;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-content p {
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Contact Section & Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-panel h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info-panel p {
  color: var(--gray-dark);
  margin-bottom: 40px;
}

.contact-details-list {
  list-style: none;
}

.contact-details-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-details-item .icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.contact-details-item h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.contact-details-item p {
  margin-bottom: 0;
  color: var(--gray-dark);
  font-size: 0.95rem;
  white-space: pre-line;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  margin-top: 40px;
}

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

/* Footer styling */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 20px 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
  margin-top: 8px;
}

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

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

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

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

.footer-links-list a {
  opacity: 0.8;
}

.footer-links-list a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 4px;
}

.footer-hours p {
  opacity: 0.8;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Booking Page / Confirmation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s forwards;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  animation: slideUp 0.3s forwards;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

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

@keyframes slideUp {
  from { transform: translateY(20px); }
  to { transform: translateY(0); }
}

/* Admin Dashboard Styles */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background-color: #F0F4F8;
  font-family: 'Inter', sans-serif;
}

.admin-sidebar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  padding: 0 24px;
  margin-bottom: 40px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}

.admin-menu {
  list-style: none;
}

.admin-menu-item {
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  opacity: 0.8;
  transition: var(--transition);
}

.admin-menu-item:hover,
.admin-menu-item.active {
  opacity: 1;
  background-color: rgba(255,255,255,0.1);
  border-left: 4px solid var(--secondary-color);
}

.admin-main {
  padding: 40px;
  overflow-y: auto;
  height: 100vh;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  border: 1px solid var(--gray-light);
}

.admin-card h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 10px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.admin-table th, 
.admin-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.admin-table th {
  font-weight: 700;
  background-color: var(--gray-light);
  color: var(--primary-color);
}

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-pending { background-color: #FEFCBF; color: #B7791F; }
.status-confirmed { background-color: #C6F6D5; color: #22543D; }
.status-completed { background-color: #E2E8F0; color: #4A5568; }
.status-cancelled { background-color: #FED7D7; color: #9B2C2C; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-images {
    order: 2;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
    border-bottom: 1px solid var(--gray-light);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle-btn {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
