/* Color Palette Variables */
:root {
  --gold-400-rgb: 251, 191, 36;
  --gold-500-rgb: 245, 158, 11;
  --gold-600-rgb: 217, 119, 6;
  --cream-50: #fefcf7;
  --cream-100: #fdf8ed;
  --cream-200: #faf0d2;
  --cream-300: #f6e4b3;
  --cream-400: #f0d085;
  --cream-500: #e8b960;
  --cream-600: #dca042;
  --cream-700: #b8822f;
  --cream-800: #946829;
  --cream-900: #785525;
  --beige-50: #faf9f7;
  --beige-100: #f4f2ed;
  --beige-200: #e8e3d3;
  --beige-300: #dbd1b9;
  --beige-400: #c8b896;
  --beige-500: #b5a082;
  --beige-600: #9d8a6f;
  --beige-700: #82715c;
  --beige-800: #6b5d4d;
  --beige-900: #584d41;
  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;
  --gold-800: #92400e;
  --gold-900: #78350f;
  --brown-50: #fdf8f6;
  --brown-100: #f2e8e5;
  --brown-200: #eaddd7;
  --brown-300: #e0cec7;
  --brown-400: #d2bab0;
  --brown-500: #bfa094;
  --brown-600: #a18072;
  --brown-700: #977669;
  --brown-800: #846358;
  --brown-900: #43302b;
  /* Global button corner radius for consistent rounded buttons */
  --btn-radius: 25px;
}

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

/* Typography Standards */
html {
  font-size: 16px;
}

/* Base body text and paragraphs */
p {
  font-size: 1rem;
  line-height: 1.6;
}

.paragraph-long {
  line-height: 1.75;
}

.caption {
  font-size: 0.875rem;
  line-height: 1.5;
}

.label-xs {
  font-size: 0.75rem;
  line-height: 1.25;
}

/* Headings (mobile-first) */
h1 {
  font-size: 2.25rem;
  line-height: 1.25;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.25;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.25;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.25;
}

h6 {
  font-size: 1rem;
  line-height: 1.25;
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  h1 {
    font-size: clamp(3rem, 4.5vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 3.5vw, 2.5rem);
  }

  h3 {
    font-size: clamp(1.75rem, 2.5vw, 2rem);
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--brown-800);
  background-color: var(--cream-50);
}

/* Global headings use Poppins to align titles and section headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}

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

/* Navigation Styles - Vue.js Navbar Implementation */
/* Background and Layout */
.bg-white\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.shadow-soft {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-soft-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.border-b {
  border-bottom-width: 1px;
}

.border-cream-100 {
  border-color: var(--cream-100);
}

.border-cream-200 {
  border-color: var(--cream-200);
}

.border-t {
  border-top-width: 1px;
}

/* Container and Layout */
.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Overflow and alignment helpers */
.overflow-x-hidden {
  overflow-x: hidden;
}

.justify-self-center {
  justify-self: center;
}

/* Responsive padding utilities */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

/* Centering helpers */
.justify-center {
  justify-content: center;
}

/* Z-index helpers */
.z-0 {
  z-index: 999;
}

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

.h-20 {
  height: 5rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-col {
  flex-direction: column;
}

.hidden {
  display: none;
}

.space-x-1>*+* {
  margin-left: 0.25rem;
}

.space-x-3>*+* {
  margin-left: 0.75rem;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

/* Logo and Brand Styles */
.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.object-contain {
  object-fit: contain;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-gold-400\/20 {
  background-color: rgba(var(--gold-400-rgb), 0.2);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-2xl {
  border-radius: 1rem;
}

.scale-0 {
  transform: scale(0);
}

.scale-110 {
  transform: scale(1.1);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

/* ----------------------------------------------------
   Auth: Social login buttons (Google & Facebook only)
   - Responsive, accessible, fast-loading styles
   ---------------------------------------------------- */
.social-login-row {
  display: flex;
  gap: 1rem;
  /* matches screenshot spacing */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-login-row .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  /* ~12px vertical */
  min-width: 160px;
  border: 1px solid var(--beige-200);
  border-radius: var(--btn-radius);
  background-color: #fff;
  color: var(--brown-700);
  font-weight: 600;
  font-size: 0.95rem;
  /* match reference scale */
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 16px -12px rgba(0, 0, 0, 0.2);
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 100ms ease;
  will-change: transform, box-shadow, background-color;
  /* perf hint */
}

.social-login-row .social-btn:hover {
  background-color: var(--beige-50);
  border-color: var(--beige-300);
  box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.social-login-row .social-btn:active {
  background-color: var(--beige-100);
  border-color: var(--beige-400);
  transform: translateY(0) scale(0.99);
  box-shadow: 0 6px 12px -12px rgba(0, 0, 0, 0.25);
}

.social-login-row .social-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--gold-400-rgb), 0.35);
}

.social-login-row .social-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.6rem;
  /* consistent spacing before text */
  flex-shrink: 0;
}

/* Brand-specific subtle accents (kept minimal for load/perf) */
.social-btn-google:hover {
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.08);
}

.social-btn-facebook:hover {
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.08);
}

/* Mobile stacking for very small screens */
@media (max-width: 380px) {
  .social-login-row {
    flex-direction: column;
    align-items: stretch;
  }

  .social-login-row .social-btn {
    width: 100%;
  }
}

/* Respect reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .social-btn {
    transition: none;
  }
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* Typography */
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-display {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

/* Colors */
.text-brown-900 {
  color: var(--brown-900);
}

.text-brown-700 {
  color: var(--brown-700);
}

.text-brown-600 {
  color: var(--brown-600);
}

.text-gold-600 {
  color: var(--gold-600);
}

.text-white {
  color: white;
}

.bg-gold-500 {
  background-color: var(--gold-500);
}

.bg-gold-50 {
  background-color: var(--gold-50);
}

.hover\:text-gold-600:hover {
  color: var(--gold-600);
}

.hover\:bg-gold-600:hover {
  background-color: var(--gold-600);
}

.hover\:bg-gold-50:hover {
  background-color: var(--gold-50);
}

.hover\:-translate-y-0\.5:hover {
  transform: translateY(-0.125rem);
}

/* Navigation Link Styles */
.nav-link {
  color: var(--brown-700);
  font-weight: 500;
  padding: 0.625rem 1rem;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}

.nav-link:visited {
  color: var(--brown-700);
}

/* Typography adjustments for navbar links */
.nav-link {
  font-size: 0.95rem;
  line-height: 1.5rem;
}

.nav-link:hover {
  color: var(--gold-600);
  background-color: var(--gold-50);
  transform: translateY(-0.125rem);
}

.nav-link-active {
  color: var(--gold-600);
  background-color: var(--gold-50);
}

.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background-color: var(--gold-500);
  border-radius: 9999px;
}

/* Mobile Navigation Link Styles */
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: var(--brown-700);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.mobile-nav-link:visited {
  color: var(--brown-700);
}

.mobile-nav-link:hover {
  color: var(--gold-600);
  background-color: var(--gold-50);
}

.block {
  display: block;
}

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

/* Responsive Design */
@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:flex {
    display: flex;
  }

  /* Ensure hidden elements with lg:flex become visible on large screens */
  .lg\:flex.hidden {
    display: flex !important;
  }

  .lg\:hidden {
    display: none;
  }
}

/* Logo hover effect animation */
@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

.group:hover .absolute {
  animation: pulse-glow 2s infinite;
}

/* Old navbar styles - keeping for backward compatibility but overridden by new styles */
.navbar {
  background-color: var(--cream-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo h1 {
  color: var(--gold-600);
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:hover,
.logo-link:visited {
  text-decoration: none;
  color: inherit;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

/* Mobile Menu - Old styles for backward compatibility */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--brown-700);
  margin: 3px 0;
  transition: 0.3s;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(10px, 1.8vw, 14px) clamp(18px, 3.2vw, 24px);
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: clamp(0.95rem, 2.2vw, 1.125rem);
  line-height: 1.5;
  min-height: 44px;
}

/* Mobile menu button: remove default border/outline on mobile browsers */
#mobile-menu-button {
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

#mobile-menu-button:focus,
#mobile-menu-button:active,
#mobile-menu-button:focus-visible {
  outline: none;
  box-shadow: none;
}

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

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

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

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

/* Button accessibility and states */
.btn:focus-visible {
  outline: 3px solid rgba(var(--gold-500-rgb), 0.4);
  outline-offset: 2px;
  border-radius: var(--btn-radius);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
  border-radius: var(--btn-radius);
}

.btn[disabled],
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  border-radius: var(--btn-radius);
}

/* Ensure native form buttons inherit the global rounding */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  border-radius: var(--btn-radius);
}

/* Size variants */
.btn-sm {
  padding: 8px 16px;
  font-size: 0.95rem;
  min-height: 36px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.125rem;
  min-height: 48px;
}

/* Section title for consistent headings */
.section-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--brown-800);
  text-align: center;
  margin-bottom: 1rem;
}

.btn-outline {
  background-color: transparent;
  color: var(--brown-700);
  border: 2px solid var(--beige-400);
  border-radius: var(--btn-radius);
}

.btn-outline:hover {
  background-color: var(--beige-400);
  color: var(--brown-800);
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--beige-100) 100%);
  padding: 80px 0;
  text-align: center;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gold-600);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--brown-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--beige-100) 0%, var(--cream-200) 100%);
  padding: 60px 0;
  text-align: center;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  color: var(--gold-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.back-to-blog:hover {
  color: var(--gold-700);
  background-color: rgba(245, 158, 11, 0.1);
  transform: translateX(-5px);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--brown-600);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  color: var(--brown-800);
  text-align: center;
  margin-bottom: 3rem;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--cream-50);
}

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

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

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--brown-600);
  line-height: 1.6;
}

/* Services Grid */
.services-overview {
  padding: 80px 0;
}

/* Contact Page Styles */
.contact-page-section {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(135deg, var(--cream-50) 0%, var(--beige-100) 100%);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon-wrap {
  background-color: var(--gold-100);
  /* Ensure perfect circle */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Remove padding to avoid oval distortion */
  padding: 0;
  line-height: 0;
  /* Prevent inline box vertical expansion */
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.12);
  overflow: hidden;
  /* Keep contents clipped to circle */
}

.info-icon-svg {
  color: var(--gold-600);
  width: 20px;
  height: 20px;
}

.info-content h4 {
  margin: 0 0 0.25rem;
  color: var(--brown-800);
  font-weight: 600;
}

.info-content p {
  margin: 0;
  color: var(--brown-600);
}

.info-link {
  color: var(--brown-700);
  text-decoration: none;
}

.info-link:hover {
  color: var(--gold-600);
}

.contact-social-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.75rem;
}

.contact-social-icons {
  display: flex;
  gap: 0.75rem;
}

.contact-social-icons .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-social-icons .social-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.contact-social-icons .social-btn.instagram {
  background: linear-gradient(135deg, #ec4899 0%, #7c3aed 100%);
}

.contact-social-icons .social-btn.whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.contact-form-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--cream-50) 100%);
  border: 1px solid var(--cream-200);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.contact-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-800);
  margin: 0 0 0.25rem;
}

.contact-form-header p {
  color: var(--brown-600);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

@media (min-width: 640px) {
  .auth-form {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .auth-form {
    gap: 1.5rem;
  }
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  color: var(--brown-700);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--beige-200);
  border-radius: 16px;
  background-color: #fff;
  color: var(--brown-800);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--brown-500);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(var(--gold-500-rgb), 0.25);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream-100);
  padding: 1rem;
  border-radius: 16px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.form-checkbox:hover {
  background-color: var(--cream-200);
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-500);
  cursor: pointer;
}

.form-checkbox label {
  color: var(--brown-700);
  font-size: 0.95rem;
  cursor: pointer;
  flex: 1;
  font-weight: 500;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
}

.btn-submit {
  min-height: 48px;
}

/* Auth divider and error spacing */
.auth-divider {
  margin: 0.75rem 0;
}

@media (min-width: 640px) {
  .auth-divider {
    margin: 1rem 0;
  }
}

@media (min-width: 1024px) {
  .auth-divider {
    margin: 1.25rem 0;
  }
}

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

/* Fallback: style existing Tailwind-like error spans */
.form-group span.text-red-600 {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.875rem;
}

/* Remove additive margins inside auth forms to rely on grid gap only */
.auth-form .form-group {
  margin-bottom: 0;
}

/* Keep inline prompts on a single line */
.auth-inline {
  white-space: nowrap;
}

.success-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--beige-100);
  border: 1px solid var(--beige-300);
  color: var(--beige-800);
  border-radius: 12px;
}

.success-banner.visible {
  display: flex;
}

.success-banner.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-map-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--cream-50) 0%, #fff 100%);
}

.map-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.map-frame {
  width: 100%;
  height: 380px;
}

.map-actions {
  display: flex;
  justify-content: center;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.75rem;
}

/* MapLibre custom logo marker styled as a standard pin */
.logo-marker {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  border: 3px solid rgba(var(--gold-500-rgb), 0.9);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.logo-marker::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid rgba(var(--gold-500-rgb), 0.9);
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.25));
}

.logo-marker::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 11px solid #fff;
}

@keyframes marker-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

.logo-marker.marker-animated {
  animation: marker-bounce 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .logo-marker.marker-animated {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .btn:hover,
  .social-btn:hover {
    transform: none !important;
  }
}

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

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card.featured {
  border: 3px solid var(--gold-400);
  transform: scale(1.02);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--brown-600);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: bold;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-600);
  margin-top: 1rem;
}

/* Packages Section */
.packages-section {
  padding: 80px 0;
  background-color: var(--beige-50);
}

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

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

.package-card:hover {
  transform: translateY(-5px);
}

.package-card.featured {
  border: 3px solid var(--gold-400);
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold-500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.package-name {
  font-size: 1.5rem;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.package-features li {
  padding: 0.5rem 0;
  color: var(--brown-600);
  position: relative;
  padding-left: 1.5rem;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: bold;
}

/* About Page Styles */
.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--brown-800);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--brown-600);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image,
.image-placeholder {
  background-color: var(--beige-200);
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-600);
  font-size: 1.1rem;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: var(--cream-100);
}

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

.mission-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-card h3 {
  font-size: 1.5rem;
  color: var(--gold-600);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

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

.team-member {
  text-align: center;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-photo,
.photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--beige-200);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-600);
}

.team-member h4 {
  font-size: 1.3rem;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--gold-600);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--brown-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--gold-50);
}

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

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

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

.stat-label {
  color: var(--brown-700);
  font-weight: 500;
}

/* Blog Styles */
.blog-content {
  padding: 80px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.blog-layout.single-post {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.blog-post {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post.featured {
  margin-bottom: 3rem;
}

.post-image {
  width: 100%;
  height: 200px;
  background-color: var(--beige-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-600);
  overflow: hidden;
  flex-shrink: 0;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--beige-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-600);
}

.blog-post.featured .post-image {
  height: 400px;
}

.post-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.post-category {
  background-color: var(--gold-100);
  color: var(--gold-700);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.post-date {
  color: var(--brown-500);
}

.post-title {
  margin-bottom: 1rem;
}

.post-title a {
  text-decoration: none;
  color: var(--brown-800);
}

.post-title a:hover {
  color: var(--gold-600);
}

.post-excerpt {
  color: var(--brown-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Post Body Content Styling */
.post-body {
  color: var(--brown-700);
  line-height: 1.8;
  font-size: 1.05rem;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
  color: var(--brown-800);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.post-body h1 {
  font-size: 2rem;
}

.post-body h2 {
  font-size: 1.75rem;
}

.post-body h3 {
  font-size: 1.5rem;
}

.post-body h4 {
  font-size: 1.25rem;
}

.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-body ul,
.post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body blockquote {
  border-left: 4px solid var(--gold-500);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--brown-600);
  background-color: var(--cream-50);
  padding: 1.5rem;
  border-radius: 8px;
}

.post-body a {
  color: var(--gold-600);
  text-decoration: underline;
}

.post-body a:hover {
  color: var(--gold-700);
}

.post-body code {
  background-color: var(--cream-100);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

.post-body pre {
  background-color: var(--brown-800);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
}

.post-body pre code {
  background-color: transparent;
  padding: 0;
  color: white;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.post-body table th,
.post-body table td {
  padding: 0.75rem;
  border: 1px solid var(--beige-200);
  text-align: left;
}

.post-body table th {
  background-color: var(--cream-100);
  font-weight: 600;
  color: var(--brown-800);
}

.post-body hr {
  border: none;
  border-top: 2px solid var(--beige-200);
  margin: 3rem 0;
}

.read-more {
  color: var(--gold-600);
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  color: var(--gold-700);
}

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

/* Single Blog Post Page */
.post-back-link-wrapper {
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.blog-post-single {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.post-featured-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  background-color: var(--beige-200);
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.post-single-content {
  padding: 3rem;
}

/* Social Share Buttons */
.post-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--beige-200);
}

.share-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.share-btn svg {
  flex-shrink: 0;
}

.share-btn.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.share-btn.facebook:hover {
  background: linear-gradient(135deg, #0C63D4 0%, #084298 100%);
}

.share-btn.twitter {
  background: linear-gradient(135deg, #1DA1F2 0%, #0C85D0 100%);
}

.share-btn.twitter:hover {
  background: linear-gradient(135deg, #0C85D0 0%, #0A6FB8 100%);
}

.share-btn.linkedin {
  background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.share-btn.linkedin:hover {
  background: linear-gradient(135deg, #004182 0%, #003366 100%);
}

.share-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE57 100%);
}

.share-btn.whatsapp:hover {
  background: linear-gradient(135deg, #1EBE57 0%, #128C7E 100%);
}

.share-btn.copy {
  background: linear-gradient(135deg, var(--brown-600) 0%, var(--brown-700) 100%);
}

.share-btn.copy:hover {
  background: linear-gradient(135deg, var(--brown-700) 0%, var(--brown-800) 100%);
}

/* Blog Sidebar */
.blog-sidebar {
  background-color: var(--cream-100);
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
}

.sidebar-widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.3rem;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

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

.category-list li {
  margin-bottom: 0.5rem;
}

.category-list a {
  text-decoration: none;
  color: var(--brown-600);
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--beige-200);
}

.category-list a:hover {
  color: var(--gold-600);
}

.recent-post {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--beige-200);
}

.recent-post h4 a {
  text-decoration: none;
  color: var(--brown-700);
  font-size: 0.9rem;
}

.recent-post h4 a:hover {
  color: var(--gold-600);
}

.recent-date {
  font-size: 0.8rem;
  color: var(--brown-500);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border: 1px solid var(--beige-300);
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-content {
  padding: 80px 0;
}

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

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  color: var(--brown-800);
  margin-bottom: 2rem;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brown-700);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--beige-300);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}

.contact-info-section {
  background-color: var(--cream-100);
  padding: 2rem;
  border-radius: 12px;
}

.contact-info h3 {
  color: var(--brown-800);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.info-content h4 {
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}

.info-content p {
  color: var(--brown-600);
  line-height: 1.6;
}

.emergency-info {
  background-color: var(--gold-50);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.emergency-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-700);
}

.emergency-note {
  font-size: 0.9rem;
  color: var(--brown-600);
  font-style: italic;
}

.social-links {
  margin-top: 2rem;
}

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

.social-link {
  padding: 0.5rem 1rem;
  background-color: var(--gold-100);
  color: var(--gold-700);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--gold-500);
  color: white;
}

/* Map and FAQ Sections */
.map-section,
.faq-section {
  padding: 80px 0;
}

.map-section {
  background-color: var(--beige-50);
}

.map-container {
  background-color: var(--beige-200);
  height: 400px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--brown-600);
}

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

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--brown-600);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background-color: #ffffff;
  color: #D2691E;
  padding: 12px 30px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-primary:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  border-radius: var(--btn-radius);
}

.btn-cta-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-secondary:hover {
  background-color: #ffffff;
  color: #D2691E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  border-radius: var(--btn-radius);
}

.btn-icon {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 200px;
    text-align: center;
  }
}

/* Additional Services */
.additional-services {
  padding: 80px 0;
  background-color: var(--cream-100);
}

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

.additional-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.additional-item h4 {
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.additional-item p {
  color: var(--brown-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.additional-item .price {
  color: var(--gold-600);
  font-weight: 600;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-link {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--brown-600);
  border: 1px solid var(--beige-300);
  border-radius: var(--btn-radius);
  transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
  background-color: var(--gold-500);
  color: white;
  border-color: var(--gold-500);
}

/* Modern Footer for Home Page */
.modern-footer {
  background-color: var(--brown-900);
  color: var(--cream-100);
  padding: 2rem 0;
  margin-top: 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left p {
  color: var(--cream-300);
  margin: 0;
  font-size: 0.95rem;
}

.footer-right p {
  color: var(--cream-300);
  margin: 0;
  font-size: 0.95rem;
}

.footer-link {
  color: var(--cream-200);
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 0.25rem;
}

.footer-link:hover {
  color: var(--gold-400);
}

/* Hidden class for services toggle */
.hidden {
  display: none !important;
}

/* Responsive adjustments for modern footer */
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .why-choose-grid,
  .home-services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .experience-title {
    font-size: 2rem;
  }

  .services-title {
    font-size: 2rem;
  }

  .experience-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {

  .why-choose-card,
  .home-service-card,
  .testimonial-card {
    padding: 2rem;
  }

  .card-icon {
    font-size: 3rem;
  }

  .why-choose-card h3,
  .home-service-card h3 {
    font-size: 1.3rem;
  }
}

/* Why Choose Paw Boutique Section */
.why-choose-section {
  padding: 80px 0;
  background-color: var(--cream-50);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--brown-600);
  line-height: 1.6;
  margin: 20px auto 50px;
  max-width: 800px;
  opacity: 0.9;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Responsive grid for tablets and mobile */
@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.why-choose-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--beige-200);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--gold-300);
}

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

.why-choose-card h3 {
  font-size: 1.4rem;
  color: var(--brown-800);
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-choose-card p {
  color: var(--brown-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Experience Paw Boutique Section */
.experience-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--beige-100) 0%, var(--cream-200) 100%);
  text-align: center;
}

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

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

.experience-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 2rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 2rem;
}

.experience-text {
  font-size: 1.3rem;
  color: var(--brown-600);
  line-height: 1.8;
  font-weight: 400;
}

/* Home Services Section */
.home-services-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.home-service-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--beige-200);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--gold-300);
}

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

.home-service-card h3 {
  font-size: 1.4rem;
  color: var(--brown-800);
  margin-bottom: 1rem;
  font-weight: 600;
}

.home-service-card p {
  color: var(--brown-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.home-service-card .service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-top: auto;
}

.services-button-container {
  text-align: center;
  margin-top: 2rem;
}

/* Toggle animation for additional services (smooth reveal/hide) */
.additional-service {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.additional-service.show {
  opacity: 1;
  transform: translateY(0);
}

/* Icon rotation helpers for the provided SVGs */
.rotate-90 {
  transform: rotate(90deg);
}

.-rotate-90 {
  transform: rotate(-90deg);
}

/* Respect system accessibility settings */
@media (prefers-reduced-motion: reduce) {
  .additional-service {
    transition: none !important;
  }

  .additional-service.show {
    transition: none !important;
  }

  .transition-transform,
  .transition-all {
    transition: none !important;
  }
}

/* Service Book Button */
.service-book-btn {
  margin-top: 1rem;
  display: block;
  text-align: center;
}

/* Additional Service Book Button */
.additional-book-btn {
  margin-top: 0.5rem;
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* Back Icon */
.back-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* User Menu Button */
.user-menu-button {
  width: 50px;
  height: 50px;
}

/* User Dropdown Menu */
.user-dropdown-menu {
  background-color: white !important;
  transform-origin: top right;
  right: 0.6rem !important;
  width: 14.9rem !important;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--beige-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(210, 186, 176, 0.2);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-rating .star {
  color: #FFD700;
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--dark-brown);
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
  position: relative;
}

.testimonial-content p::before {
  font-size: 60px;
  color: var(--light-brown);
  position: absolute;
  left: -15px;
  top: -10px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-photo {
  flex-shrink: 0;
}

.author-photo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-cream);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-info strong {
  color: var(--brown-800);
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 16px;
}

.author-info span {
  color: var(--brown-600);
  font-size: 14px;
  opacity: 0.8;
}

.recent-post {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--beige-200);
}

.recent-post h4 a {
  text-decoration: none;
  color: var(--brown-700);
  font-size: 0.9rem;
}

.recent-post h4 a:hover {
  color: var(--gold-600);
}

.recent-date {
  font-size: 0.8rem;
  color: var(--brown-500);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border: 1px solid var(--beige-300);
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-content {
  padding: 80px 0;
}

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

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  color: var(--brown-800);
  margin-bottom: 2rem;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brown-700);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--beige-300);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}

.contact-info-section {
  background-color: var(--cream-100);
  padding: 2rem;
  border-radius: 12px;
}

.contact-info h3 {
  color: var(--brown-800);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.info-content h4 {
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}

.info-content p {
  color: var(--brown-600);
  line-height: 1.6;
}

.emergency-info {
  background-color: var(--gold-50);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.emergency-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-700);
}

.emergency-note {
  font-size: 0.9rem;
  color: var(--brown-600);
  font-style: italic;
}

.social-links {
  margin-top: 2rem;
}

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

.social-link {
  padding: 0.5rem 1rem;
  background-color: var(--gold-100);
  color: var(--gold-700);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--gold-500);
  color: white;
}

/* Map and FAQ Sections */
.map-section,
.faq-section {
  padding: 80px 0;
}

.map-section {
  background-color: var(--beige-50);
}

.map-container {
  background-color: var(--beige-200);
  height: 400px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--brown-600);
}

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

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--brown-600);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5.5vw, 3rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  color: #f2e8e5;
  margin-bottom: 2rem;
}

/* Additional Services */
.additional-services {
  padding: 80px 0;
  background-color: var(--cream-100);
}

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

.additional-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.additional-item h4 {
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.additional-item p {
  color: var(--brown-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.additional-item .price {
  color: var(--gold-600);
  font-weight: 600;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-link {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--brown-600);
  border: 1px solid var(--beige-300);
  border-radius: var(--btn-radius);
  transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
  background-color: var(--gold-500);
  color: white;
  border-color: var(--gold-500);
}

/* Footer - Tailwind-based styles with custom utilities */
.bg-brown-900 {
  background-color: var(--brown-900);
}

.text-cream-100 {
  color: var(--cream-100);
}

.text-cream-200 {
  color: var(--cream-200);
}

.text-gold-400 {
  color: var(--gold-400);
}

.hover\:text-gold-400:hover {
  color: var(--gold-400);
}

.border-brown-800 {
  border-color: var(--brown-800);
}

/* Tailwind utility classes */
.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.space-x-4> :not([hidden])~ :not([hidden]) {
  margin-left: 1rem;
}

.space-x-6> :not([hidden])~ :not([hidden]) {
  margin-left: 1.5rem;
}

.space-y-2> :not([hidden])~ :not([hidden]) {
  margin-top: 0.5rem;
}

.space-y-3> :not([hidden])~ :not([hidden]) {
  margin-top: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.pt-8 {
  padding-top: 2rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.object-contain {
  object-fit: contain;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-serif {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}

.font-semibold {
  font-weight: 600;
}

.max-w-md {
  max-width: 28rem;
}

.border-t {
  border-top-width: 1px;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:mt-0 {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .social-links {
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--cream-100);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

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

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

  .about-grid,
  .blog-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-single-content {
    padding: 2rem 1.5rem;
  }

  .post-featured-image {
    max-height: 300px;
  }

  .post-featured-image img {
    max-height: 300px;
  }

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

  .share-btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .package-card.featured {
    transform: none;
  }

  .nav-container {
    padding: 1rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    transform: none;
  }
}

/* Footer Quick Links: remove bullets and reset padding for clean list */
ul.quick-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.quick-links li {
  margin: 0;
}

ul.quick-links a {
  text-decoration: none;
}

.no-underline {
  text-decoration: none !important;
}

/* Footer separator line between content and bottom bar */
.footer-separator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(var(--gold-400-rgb), 0.3);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .footer-separator {
    margin-top: 2.5rem;
  }
}

/* --- Hero Utilities (to mirror Home.vue classes) --- */
/* Aspect ratio square container */
.aspect-square {
  aspect-ratio: 1 / 1;
}

/* Gradient utilities */
.bg-gradient-to-br {
  background-image: linear-gradient(135deg,
      var(--tw-gradient-from, var(--cream-50)) 0%,
      var(--tw-gradient-via, var(--beige-100)) 50%,
      var(--tw-gradient-to, var(--beige-200)) 100%);
}

.from-cream-50 {
  --tw-gradient-from: var(--cream-50);
}

.via-beige-100 {
  --tw-gradient-via: var(--beige-100);
}

.to-beige-200 {
  --tw-gradient-to: var(--beige-200);
}


.pf-gradient-to-br {
  background-image: linear-gradient(135deg,
      var(--tw-gradient-from, var(--cream-400)) 0%,
      var(--tw-gradient-via, var(--cream-400)) 50%,
      var(--tw-gradient-to, var(--cream-400)) 100%);
}

/* Fractional background tint for overlay */
.bg-brown-900\/5 {
  background-color: rgba(67, 48, 43, 0.05);
}

/* Pointer events and selection utilities */
.pointer-events-none {
  pointer-events: none;
}

.select-none {
  user-select: none;
}

/* Positioning helpers used by hero image */
.top-1\/2 {
  top: 50%;
}

.left-1\/2 {
  left: 50%;
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

/* Arbitrary width utilities used by hero image */
.w-\[68\%\] {
  width: 68%;
}

@media (min-width: 640px) {
  .sm\:w-\[72\%\] {
    width: 72%;
  }
}

@media (min-width: 768px) {
  .md\:w-\[74\%\] {
    width: 74%;
  }
}

@media (min-width: 1024px) {
  .lg\:w-\[76\%\] {
    width: 76%;
  }
}

/* Arbitrary border width and color used by orbit nodes */
.border-\[3px\] {
  border-width: 3px;
}

.border-\[\#BA92A7\] {
  border-color: #BA92A7;
}

/* Arbitrary max-width utilities used by hero visual container */
.max-w-\[520px\] {
  max-width: 520px;
}

@media (min-width: 640px) {
  .sm\:max-w-\[560px\] {
    max-width: 560px;
  }
}

@media (min-width: 768px) {
  .md\:max-w-\[620px\] {
    max-width: 620px;
  }
}

@media (min-width: 1024px) {
  .lg\:max-w-\[700px\] {
    max-width: 700px;
  }
}

/* Color utility missing from palette */
.text-brown-800 {
  color: var(--brown-800);
}

/* --- Additional utilities required by Home.vue hero --- */
/* Spacing utilities */
.pt-24 {
  padding-top: 6rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .lg\:pt-32 {
    padding-top: 8rem;
  }
}

@media (min-width: 1024px) {
  .lg\:pb-8 {
    padding-bottom: 2rem;
  }
}

/* Dashboard Typography Utilities */
.dashboard-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.25rem);
  /* 32–36px */
  font-weight: 700;
  line-height: 1.25;
}

.card-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  /* 20–24px */
  font-weight: 600;
  line-height: 1.3;
}

.card-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  /* 14–16px */
  line-height: 1.6;
}

.form-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.875rem;
  /* 14px */
  font-weight: 500;
  line-height: 1.4;
}

.mt-6 {
  margin-top: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-10 {
  gap: 2.5rem;
}

/* Container padding */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Typography size utilities */
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 768px) {
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.leading-relaxed {
  line-height: 1.625;
}

/* Hero-specific typography */
.font-hero {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}

/* Gold gradient text for tagline */
.text-gradient-gold {
  background-image: linear-gradient(180deg, var(--gold-600), var(--gold-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Layout helpers */
.z-10 {
  z-index: 10;
}

.h-auto {
  height: auto;
}

.w-full {
  width: 100%;
}

.max-w-xl {
  max-width: 36rem;
}

.object-cover {
  object-fit: cover;
}

/* Icon sizing utilities to support provided SVGs */
.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

/* Responsive grid columns */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Profile Dropdown Responsive Styles */
@media (max-width: 1400px) {
  nav [x-data]>div[x-show] {
    right: 0.6rem !important;
    width: 14.9rem !important;
  }
}

@media (max-width: 480px) {
  nav [x-data]>div[x-show] {
    right: -0.5rem !important;
    width: calc(100vw - 1.5rem) !important;
    max-width: 20rem !important;
  }
}

/* Screen reader only - hides content visually but keeps it accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 360px) {
  nav [x-data]>div[x-show] {
    right: 0 !important;
    width: calc(100vw - 1rem) !important;
  }
}

.mt-11 {
  margin-top: 0.9rem;
}

/* CSP Compliance - Story image on about page */
.story-image {
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* CSP Compliance - SVG blend modes for welcome page */
.svg-blend-hard-light {
  mix-blend-mode: hard-light;
}

.svg-blend-plus-darker {
  mix-blend-mode: plus-darker;
}