/* ===== CSS VARIABLES ===== */
:root {
  --background: hsl(60, 9%, 98%);
  --foreground: hsl(120, 5%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(120, 5%, 10%);
  --primary: hsl(142, 76%, 22%);
  --primary-foreground: hsl(120, 100%, 98%);
  --secondary: hsl(42, 90%, 55%);
  --secondary-foreground: hsl(42, 100%, 10%);
  --muted: hsl(120, 5%, 96%);
  --muted-foreground: hsl(120, 5%, 45%);
  --accent: hsl(30, 60%, 55%);
  --border: hsl(120, 5%, 90%);
  --input: hsl(120, 5%, 90%);
  --ring: hsl(142, 76%, 22%);
  --radius: 0.5rem;
  --font-playfair: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

[data-theme="dark"] {
  --background: hsl(120, 10%, 5%);
  --foreground: hsl(60, 10%, 98%);
  --card: hsl(120, 10%, 7%);
  --card-foreground: hsl(60, 10%, 98%);
  --primary: hsl(142, 50%, 45%);
  --primary-foreground: hsl(120, 10%, 9%);
  --secondary: hsl(42, 70%, 50%);
  --secondary-foreground: hsl(42, 100%, 10%);
  --muted: hsl(120, 10%, 15%);
  --muted-foreground: hsl(60, 10%, 64%);
  --accent: hsl(30, 50%, 45%);
  --border: hsl(120, 10%, 15%);
  --input: hsl(120, 10%, 15%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.font-playfair { font-family: var(--font-playfair); }

h1, h2, h3, h4 { font-family: var(--font-playfair); font-weight: 700; line-height: 1.2; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background-color: color-mix(in srgb, var(--background) 90%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-playfair);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.nav-logo svg { color: var(--primary); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) { .mobile-controls { display: none; } }

.menu-btn, .theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: 0.4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.menu-btn:hover, .theme-toggle:hover { background: var(--muted); }

[data-theme="light"] .moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: none; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background-color: color-mix(in srgb, var(--background) 95%, transparent);
  backdrop-filter: blur(12px);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover { background: var(--muted); }
.mobile-menu a.active { background: var(--muted); color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover { background: var(--muted); }

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.2); color: white; }

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover { opacity: 0.9; }

.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }

.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-text { max-width: 48rem; }

.hero-text h1 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  color: white;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
section { padding: 4rem 0; }

@media (min-width: 768px) { section { padding: 6rem 0; } }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); margin-bottom: 1rem; }

.section-header p { color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.card-body { padding: 1.5rem; }

/* ===== IMAGE CARD ===== */
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.image-card:hover { transform: scale(1.02); }

.image-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay { opacity: 1; }

.aspect-square { aspect-ratio: 1/1; }
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-4-5 { aspect-ratio: 4/5; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover .img-cover { transform: scale(1.05); }

/* ===== GRID LAYOUTS ===== */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== BG VARIANTS ===== */
.bg-muted { background-color: var(--muted); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); color: var(--primary-foreground); }

/* ===== PARALLAX QUOTE ===== */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.parallax-section blockquote p {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-family: var(--font-playfair);
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 48rem;
}

.parallax-section cite { font-size: 1.125rem; }

/* ===== LOCATION FEATURE ===== */
.locations-feature {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .locations-feature {
    flex-direction: row;
    align-items: center;
  }
}

.location-text { flex: 1; }
.location-text h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.location-text p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

.location-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.location-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: color-mix(in srgb, var(--primary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.location-img-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.location-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}

.location-img-wrap:nth-child(2) { margin-top: 2rem; }

.location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ===== CTA SECTION ===== */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-section h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-section p { max-width: 36rem; opacity: 0.9; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.page-header-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 { font-size: clamp(2rem, 5vw, 3.125rem); margin-bottom: 1.5rem; }
.page-header p { font-size: 1.125rem; color: var(--muted-foreground); }

/* ===== GALLERY TABS ===== */
.tabs { width: 100%; }

.tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: var(--muted);
  border-radius: var(--radius);
  padding: 0.25rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.375rem 0.875rem;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--background);
  color: var(--foreground);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .about-intro { grid-template-columns: 1fr 1fr; }
}

.about-intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.about-intro-text h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.about-intro-text .subtitle { color: var(--muted-foreground); font-size: 1.25rem; margin-bottom: 1.5rem; }
.about-intro-text p { color: var(--foreground); margin-bottom: 1rem; }
.about-btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

.stats-grid {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 2rem 0;
  margin-bottom: 4rem;
}

.stat-item { text-align: center; padding: 1.5rem; }
.stat-item svg { color: var(--primary); margin: 0 auto 1rem; }
.stat-value { font-family: var(--font-playfair); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 0.5rem; }
.stat-label { color: var(--muted-foreground); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.testimonial-card blockquote { margin-bottom: 1rem; }
.testimonial-card .author { font-weight: 600; }
.testimonial-card .title { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== SERVICES ===== */
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.service-card.featured { border-color: var(--primary); border-width: 2px; }

.service-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: color-mix(in srgb, var(--primary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.service-card > p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }

.feature-item { display: flex; align-items: center; gap: 0.5rem; }
.feature-item svg { color: var(--primary); flex-shrink: 0; }

.price-block { padding-top: 1rem; border-top: 1px solid var(--border); margin-bottom: 1.5rem; }
.price-label { font-size: 0.875rem; color: var(--muted-foreground); }
.price-value { font-family: var(--font-playfair); font-size: 1.875rem; font-weight: 700; }
.price-unit { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== FAQ ===== */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.faq-item h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.faq-item p { color: var(--muted-foreground); }

/* ===== LOCATIONS PAGE ===== */
.location-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .location-section { grid-template-columns: 1fr 1fr; }
  .location-section.reverse { direction: rtl; }
  .location-section.reverse > * { direction: ltr; }
}

.location-section h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.location-section > div p { margin-bottom: 1.5rem; }

.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }

.highlight-item { display: flex; align-items: center; gap: 0.5rem; }

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  flex-shrink: 0;
}

.best-time { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; color: var(--foreground); }
.best-time svg { color: var(--primary); }

.location-img-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}

.location-img-card img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TIPS GRID ===== */
.tip-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.tip-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.tip-card p { color: var(--muted-foreground); font-size: 0.9375rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-img-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.contact-img-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.contact-img-item:hover img { transform: scale(1.05); }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: color-mix(in srgb, var(--primary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-info-text h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.contact-info-text p { color: var(--muted-foreground); }
.contact-info-text .sub { font-size: 0.875rem; }

.faq-mini { background: var(--muted); border-radius: 0.75rem; padding: 1.5rem; }
.faq-mini h3 { font-size: 1.25rem; margin-bottom: 1rem; }

.faq-mini-item { margin-bottom: 1rem; }
.faq-mini-item h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.faq-mini-item p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== FOOTER ===== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-playfair);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo svg { color: var(--primary); }

.footer-brand p { color: var(--muted-foreground); font-size: 0.9375rem; }

.footer-col h3 { font-family: var(--font-playfair); font-size: 1.125rem; font-weight: 500; margin-bottom: 1rem; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a { color: var(--muted-foreground); font-size: 0.9375rem; transition: color 0.2s; }

.footer-col ul li a:hover { color: var(--primary); }

.contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; color: var(--muted-foreground); font-size: 0.9375rem; }

.contact-list li svg { color: var(--primary); margin-top: 0.1rem; flex-shrink: 0; }

.contact-list li a { color: var(--muted-foreground); transition: color 0.2s; }
.contact-list li a:hover { color: var(--primary); text-decoration: underline; }

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }

.social-links a { color: var(--muted-foreground); transition: color 0.2s; }
.social-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== UTILITY ===== */
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.07); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.py-12 { padding: 3rem 0; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.justify-center { justify-content: center; }

/* ===== ROUNDED CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) { .cta-banner { padding: 3rem; } }

.cta-banner h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.cta-banner p { margin-bottom: 2rem; opacity: 0.9; max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ===== APPROACH GRID ===== */
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .approach-grid { grid-template-columns: repeat(4, 1fr); } }

.approach-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.approach-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.approach-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s;
}

.approach-card:hover img { transform: scale(1.05); }

/* ===== GEMS GRID ===== */
.gems-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s;
}

@media (min-width: 768px) { .gems-card img { height: 16rem; } }

.gems-card:hover img { transform: scale(1.1); }
.gems-card .card-body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.gems-card .card-body p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* ===== CUSTOM SERVICES ===== */
.custom-service-item { display: flex; gap: 0.75rem; align-items: flex-start; }

.custom-service-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: color-mix(in srgb, var(--primary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.custom-service-item h3 { font-weight: 600; margin-bottom: 0.25rem; }
.custom-service-item p { color: var(--muted-foreground); font-size: 0.9375rem; }

/* ===== AVAILABILITY BADGE ===== */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: color-mix(in srgb, var(--primary) 10%, transparent);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.availability-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 9999px;
}

/* ===== AUTH PAGES ===== */
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.auth-card h1 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.auth-sub {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
}

.auth-error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.auth-form .form-group {
  margin-bottom: 1rem;
}

.auth-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.auth-form input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9375rem;
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-sans);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}

.auth-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

.auth-footer a { color: var(--primary); font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }

/* ===== USER MENU DROPDOWN ===== */
.user-menu { position: relative; }

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.user-menu-btn:hover { background: var(--muted); }

.user-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
}

.user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 140px;
  z-index: 200;
  overflow: hidden;
}

.user-dropdown.open { display: block; }

.user-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: background 0.15s;
}

.user-dropdown a:hover { background: var(--muted); }

/* ===== WELCOME TOAST ===== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: slideInToast 0.3s ease;
}

@keyframes slideInToast {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}
