@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* OKLCH Premium Palette */
  --primary: oklch(0.35 0.12 340);          /* Deep Plum/Burgundy */
  --primary-light: oklch(0.45 0.14 340);    /* Lighter Plum */
  --primary-dark: oklch(0.22 0.08 340);     /* Very dark burgundy */
  --accent: oklch(0.72 0.11 35);            /* Muted Rose Gold/Copper */
  --accent-light: oklch(0.82 0.08 40);      /* Soft gold blush */
  --accent-dark: oklch(0.55 0.09 35);       /* Rich bronze */
  --bg-main: oklch(0.97 0.015 40);          /* Warm linen/Ivory */
  --bg-secondary: oklch(0.93 0.02 45);      /* Soft cream pink */
  --text-main: oklch(0.18 0.01 40);         /* Charcoal deep brown */
  --text-light: oklch(0.45 0.01 40);        /* Soft warm gray */
  --white: oklch(1 0 0);
  --success: oklch(0.65 0.14 140);          /* Soft sage green */
  --success-dark: oklch(0.45 0.12 140);
  --shadow-sm: 0 2px 8px rgba(94, 25, 45, 0.06);
  --shadow-md: 0 8px 24px rgba(94, 25, 45, 0.08);
  --shadow-lg: 0 16px 48px rgba(94, 25, 45, 0.12);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease-out;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

/* ==================== COMMON UTILITIES ==================== */
.section {
  padding: 80px 8% 60px;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  position: relative;
}

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

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(94, 25, 45, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 25, 45, 0.3);
}

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

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

.btn-accent {
  background-color: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(217, 160, 131, 0.2);
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 160, 131, 0.35);
}

/* ==================== NAVIGATION ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(248, 245, 242, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(94, 25, 45, 0.05);
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 8%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dark);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  position: relative;
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--primary);
  border: 1px solid rgba(94, 25, 45, 0.1);
}

.cart-icon-btn:hover {
  background-color: var(--bg-secondary);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--accent-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-dark);
  transition: var(--transition-fast);
}

/* ==================== HERO SECTION ==================== */
#hero {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background: linear-gradient(135deg, rgba(94, 25, 45, 0.92) 0%, rgba(46, 15, 21, 0.85) 100%), 
              url('/images/hero_bg.png') no-repeat center center/cover;
  color: var(--white);
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--transition-smooth) forwards;
  animation-delay: 0.2s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}

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

.hero-content h1 span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-light);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 500px;
}

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

.hero-art-shape {
  position: absolute;
  right: 5%;
  top: 15%;
  width: 450px;
  height: 550px;
  border-radius: 200px 100px 300px 150px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
  animation: floatShape 8s ease-in-out infinite alternate;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* ==================== SERVICES SECTION ==================== */
#services {
  background-color: var(--bg-main);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(94, 25, 45, 0.03);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 160, 131, 0.3);
}

.service-img-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

.service-card:hover img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
}

.service-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-body h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(94, 25, 45, 0.05);
  padding-top: 20px;
}

.service-price {
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-price span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-serif);
  margin-top: 2px;
}

/* ==================== COLLECTION SECTION ==================== */
#collection {
  background-color: var(--bg-secondary);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: var(--white);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(94, 25, 45, 0.05);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(94, 25, 45, 0.15);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(94, 25, 45, 0.02);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-img-box {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.product-card:hover .product-img-box img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-badge.out-of-stock {
  background-color: var(--text-light);
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.product-info h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(94, 25, 45, 0.05);
  padding-top: 15px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-serif);
}

.btn-reserve {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 20px;
}

/* ==================== APPOINTMENT BOOKING ==================== */
#booking {
  background-color: var(--bg-main);
  position: relative;
}

.booking-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(94, 25, 45, 0.03);
}

.booking-form-wrapper {
  padding: 50px;
}

.booking-form-wrapper h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

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

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(94, 25, 45, 0.15);
  background-color: var(--bg-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(94, 25, 45, 0.08);
}

/* Slot selection */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.slot-btn {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(94, 25, 45, 0.08);
  padding: 8px 5px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slot-btn:hover {
  background-color: rgba(94, 25, 45, 0.05);
  color: var(--primary);
}

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

/* Measurement Toggle */
.measurements-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-secondary);
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  border: 1px solid rgba(94, 25, 45, 0.05);
  margin-top: 10px;
}

.measurements-header h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.measurements-header span {
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.measurements-fields {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.measurements-fields.active {
  max-height: 500px;
  margin-top: 15px;
  border-top: 1px dashed rgba(94, 25, 45, 0.1);
  padding-top: 15px;
}

.measurements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.measurements-grid .form-group label {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Booking Details Info (Right column) */
.booking-info {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.booking-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  gap: 16px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.info-card-body h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-card-body p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.store-hours {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.store-hours h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
}

.store-hours ul {
  list-style: none;
}

.store-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

/* ==================== CONTACT SECTION ==================== */
#contact {
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(94, 25, 45, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-detail-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

/* ==================== SHOPPING CART DRAWER ==================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 15, 21, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 1060;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(94, 25, 45, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.btn-close-cart {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.btn-close-cart:hover {
  color: var(--primary);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty {
  text-align: center;
  margin: auto;
  color: var(--text-light);
}

.cart-empty p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(94, 25, 45, 0.05);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.cart-item-info p {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.cart-item-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-serif);
}

.btn-remove-item {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.btn-remove-item:hover {
  color: var(--primary);
}

.cart-footer {
  padding: 30px;
  border-top: 1px solid rgba(94, 25, 45, 0.08);
  background-color: var(--bg-secondary);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.cart-total span:last-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
}

.cart-notes {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ==================== FOOTER ==================== */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 8% 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

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

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent);
}

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

/* ==================== CONFIRMATION MODAL ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 15, 21, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 480px;
  max-width: 90%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(101, 193, 140, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.modal-card h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.modal-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.modal-details {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  text-align: left;
  font-size: 0.85rem;
  margin-bottom: 30px;
  border: 1px solid rgba(94, 25, 45, 0.05);
}

.modal-details div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.modal-details div:last-child {
  margin-bottom: 0;
}

.modal-details span:first-child {
  font-weight: 600;
  color: var(--text-main);
}

.modal-details span:last-child {
  color: var(--primary);
  font-weight: 500;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .section {
    padding: 60px 5% 40px;
  }
  .navbar {
    padding: 0 5%;
  }
  .booking-container {
    grid-template-columns: 1fr;
  }
  .booking-info {
    order: -1;
    padding: 40px;
  }
  .booking-form-wrapper {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    padding: 50px 0;
    gap: 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  }

  .nav-links.open {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
