@font-face {
  font-family: 'Strong Farmhouse Script';
  src: url('../../Strong Farmhouse Scrpt.ttf') format('truetype'),
       url('../../Strong Farmhouse Scrpt.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --deep-clay: #7E3C3D;
  --soft-layer: #D9A8A8;
  --base-skin: #F4DDD1;
  --hair-shadow: #4A3A38;
  --surface: #FAF6F3;
}

/* Optimized body with reduced animations */
body {
  background: linear-gradient(135deg, 
    rgba(217, 168, 168, 0.05) 0%, 
    rgba(250, 246, 243, 0.08) 50%, 
    rgba(244, 221, 209, 0.06) 100%);
  background-attachment: fixed;
  color: var(--hair-shadow);
  font-family: system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Elegant Liquid Glass Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, 
    rgba(126, 60, 61, 0.08) 0%, 
    rgba(244, 221, 209, 0.12) 30%, 
    rgba(250, 246, 243, 0.15) 70%, 
    rgba(255, 255, 255, 0.18) 100%);
  backdrop-filter: blur(25px) saturate(200%) brightness(1.15);
  border: 1px solid rgba(126, 60, 61, 0.12);
  border-bottom: 1px solid rgba(126, 60, 61, 0.08);
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: 
    0 8px 32px rgba(126, 60, 61, 0.12),
    0 4px 16px rgba(244, 221, 209, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(126, 60, 61, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  margin: 0 0.5rem;
  overflow: visible;
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.8) 20%, 
    rgba(255, 255, 255, 1) 50%, 
    rgba(255, 255, 255, 0.8) 80%, 
    transparent 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.25rem 0;
  margin-left: 1rem;
}

.logo-img {
  height: 2.25rem;
  width: 2.25rem;
  object-fit: contain;
  border-radius: 0.25rem;
}

.logo-image {
  height: 3rem;
  width: auto;
  object-fit: contain;
  border-radius: 0.25rem;
  max-width: 250px;
}

.logo-text {
  font-family: 'Strong Farmhouse Script', cursive, serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--deep-clay);
  text-shadow: 1px 1px 2px rgba(126, 60, 61, 0.1);
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

/* Mobile menu button */
.mobile-menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line {
  width: 1.2rem;
  height: 2px;
  background-color: var(--deep-clay);
  margin: 1.5px 0;
  transition: 0.3s;
  border-radius: 1px;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Desktop navigation */
.desktop-nav {
  display: none;
  gap: 1rem;
  color: var(--deep-clay);
  align-items: center;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

/* iOS-style Liquid Glass Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(126, 60, 61, 0.15);
  border-top: 1px solid rgba(126, 60, 61, 0.2);
  box-shadow: 
    0 8px 32px rgba(126, 60, 61, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-radius: 1.2rem;
  flex-direction: column;
  padding: 1.5rem;
  z-index: 1000;
  overflow: hidden;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.7) 20%, 
    rgba(255, 255, 255, 0.9) 50%, 
    rgba(255, 255, 255, 0.7) 80%, 
    transparent 100%);
  border-radius: 1.2rem 1.2rem 0 0;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  color: var(--deep-clay);
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: var(--hair-shadow);
}

/* Mobile book button styling - matches desktop header styling */
.mobile-nav .book-button {
  background-color: var(--deep-clay);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  text-align: center;
  display: inline-block;
  margin-top: 0.5rem;
  white-space: nowrap;
}

.mobile-nav .book-button:hover {
  background-color: #6a2f2f;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(126, 60, 61, 0.25);
}

/* Mobile dropdown */
.mobile-dropdown {
  border-bottom: 1px solid #e5e7eb;
}

.mobile-dropdown-toggle {
  width: 100%;
  padding: 0.75rem 0;
  background: none;
  border: none;
  color: var(--deep-clay);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.mobile-dropdown-arrow {
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  display: none;
  padding: 0.5rem 0 1rem 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-section {
  margin-bottom: 1rem;
}

.mobile-dropdown-section h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-clay);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-dropdown-section a {
  display: block;
  padding: 0.4rem 0;
  color: var(--hair-shadow);
  text-decoration: none;
  font-size: 0.875rem;
}

.mobile-dropdown-section a:hover {
  color: var(--deep-clay);
}

/* Optimized dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.dropdown-toggle:hover {
  background-color: rgba(126, 60, 61, 0.08);
  text-decoration: none;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 320px;
  max-height: 70vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(126, 60, 61, 0.15);
  border-top: 1px solid rgba(126, 60, 61, 0.2);
  box-shadow: 
    0 8px 32px rgba(126, 60, 61, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-radius: 1rem;
  padding: 1rem 0;
  z-index: 9999;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.8) 20%, 
    rgba(255, 255, 255, 1) 50%, 
    rgba(255, 255, 255, 0.8) 80%, 
    transparent 100%);
  border-radius: 1rem 1rem 0 0;
}

.mega-menu-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

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

.dropdown-section {
  margin-bottom: 1.5rem;
}

.dropdown-section:last-child {
  margin-bottom: 0;
}

.dropdown-section h4 {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--deep-clay);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.75rem;
  background-color: rgba(126, 60, 61, 0.04);
  border-left: 2px solid var(--deep-clay);
}

.dropdown-section a {
  display: block;
  padding: 0.4rem 0.75rem;
  color: var(--hair-shadow);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.15s ease;
  border-bottom: 1px solid rgba(126, 60, 61, 0.04);
}

.dropdown-section a:hover {
  color: var(--deep-clay);
  background-color: rgba(126, 60, 61, 0.06);
  padding-left: 1rem;
}

.nav-link {
  text-decoration: none;
  color: var(--deep-clay);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgba(126, 60, 61, 0.08);
  text-decoration: none;
  color: var(--deep-clay);
}

.book-button {
  background-color: var(--deep-clay);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.book-button:hover {
  background-color: #6a2f2f;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(126, 60, 61, 0.25);
}

/* iOS-style Liquid Glass Sections */
section {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.15) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(20px) saturate(180%) brightness(1.05);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(126, 60, 61, 0.06),
    0 4px 16px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    inset 1px 0 0 rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.6) 20%, 
    rgba(255, 255, 255, 0.8) 50%, 
    rgba(255, 255, 255, 0.6) 80%, 
    transparent 100%);
  border-radius: 2rem 2rem 0 0;
}

section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  border-radius: 2rem 0 0 2rem;
}

section:hover {
  transform: translateY(-4px) scale(1.01);
  backdrop-filter: blur(25px) saturate(200%) brightness(1.1);
  box-shadow: 
    0 12px 40px rgba(126, 60, 61, 0.08),
    0 6px 20px rgba(255, 255, 255, 0.12),
    inset 0 2px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(255, 255, 255, 0.25),
    inset 2px 0 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.5);
  border-left-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced iOS-style Liquid Glass Footer */
footer {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.25) 0%, 
    rgba(255, 255, 255, 0.18) 50%, 
    rgba(255, 255, 255, 0.15) 100%);
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: none;
  border-radius: 1.5rem 1.5rem 0 0;
  margin: 0 0.5rem;
  color: var(--hair-shadow);
  box-shadow: 
    0 -8px 32px rgba(126, 60, 61, 0.08),
    0 -4px 16px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.8) 20%, 
    rgba(255, 255, 255, 1) 50%, 
    rgba(255, 255, 255, 0.8) 80%, 
    transparent 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  border-radius: 1.5rem 0 0 0;
}

/* Footer Content Layout */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1.2fr;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-content {
    gap: 2rem;
  }
}

.footer-section h4 {
  color: var(--deep-clay);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 2rem;
  width: 2rem;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-clay);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--hair-shadow);
  opacity: 0.8;
}

/* Make first footer section consistent with others by adding h4 equivalent spacing */
.footer-section:first-child {
  padding-top: 0;
}

.footer-section:first-child .footer-logo {
  margin-bottom: 1rem;
  margin-top: 1.5rem; /* Add top margin to match h4 spacing */
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--hair-shadow);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--deep-clay);
  text-decoration: underline;
}

/* Footer Contact */
.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.1rem;
}

.footer-contact a {
  color: var(--deep-clay);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--hair-shadow);
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(126, 60, 61, 0.1);
  padding: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--hair-shadow);
  margin: 0;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(126, 60, 61, 0.1);
  color: var(--deep-clay);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--deep-clay);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 60, 61, 0.3);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile Footer Adjustments */
@media (max-width: 1023px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem 1rem 1rem;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-section {
    margin-bottom: 0.5rem;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  /* Hide all sections except mobile logo and contact info on mobile */
  .footer-section:nth-child(1),
  .footer-section:nth-child(2),
  .footer-section:nth-child(3),
  .footer-section:last-child {
    display: none;
  }
  
  /* Show mobile logo section and contact info section */
  .footer-section.mobile-logo-section {
    display: block;
    order: -1; /* Show before contact section */
  }
  
  .footer-section:nth-child(5) {
    display: block;
  }
}

/* Hide mobile logo section on desktop */
@media (min-width: 1024px) {
  .footer-section.mobile-logo-section {
    display: none;
  }
}

/* Utility classes */
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

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

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.bg-gradient-to-r { background-image: linear-gradient(to right, var(--soft-layer), var(--surface), var(--base-skin)); }
.bg-surface { background-color: var(--surface); }

.text-deep-clay { color: var(--deep-clay); }
.text-hair-shadow { color: var(--hair-shadow); }
.text-white { color: white; }

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

.transition { transition: all 0.15s ease; }

.flex { display: flex; }
.grid { display: grid; }
.inline-block { display: inline-block; }
.block { display: block; }

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

.h-screen { height: 100vh; }
.h-64 { height: 16rem; }
.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }

.relative { position: relative; }

.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-inside { list-style-position: inside; }

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

.border { border: 1px solid #e5e7eb; }
.underline { text-decoration: underline; }

.gap-4 { gap: 1rem; }
.gap-10 { gap: 2.5rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.space-y-2 > * + * { margin-top: 0.5rem; }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

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

/* CSS Variable-based classes */
.bg-\[var\(--deep-clay\)\] { background-color: var(--deep-clay); }
.bg-\[var\(--surface\)\] { background-color: var(--surface); }
.text-\[var\(--deep-clay\)\] { color: var(--deep-clay); }
.text-\[var\(--hair-shadow\)\] { color: var(--hair-shadow); }
.hover\:bg-\[\#6a2f2f\]:hover { background-color: #6a2f2f; }

/* Additional utility classes */
.text-gray-400 { color: #9ca3af; }
.bg-green-600 { background-color: #059669; }
.hover\:bg-green-700:hover { background-color: #047857; }

/* Flexbox utilities */
.flex-grow { flex-grow: 1; }
.flex-col { flex-direction: column; }
.inline-flex { display: inline-flex; }
.min-h-screen { min-height: 100vh; }

/* Additional spacing */
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.mr-2 { margin-right: 0.5rem; }

/* Size utilities */
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }

/* Transform utilities */
.transform { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Shadow utilities */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }

/* Transition utilities */
.transition-transform { transition: transform 0.15s ease-in-out; }

/* Background color utilities */
.bg-\[\#4285F4\] { background-color: #4285F4; }
.hover\:bg-\[\#357ae8\]:hover { background-color: #357ae8; }

/* Hero Section Responsive Fixes */
@media (max-width: 768px) {
  /* Fix hero section layout on mobile - target the div with grid-template-columns */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Move image to top by changing order */
  div[style*="grid-template-columns"] > div:first-child {
    order: 2 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  div[style*="grid-template-columns"] > div:last-child {
    order: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
  }
  
  div[style*="grid-template-columns"] > div:first-child h1 {
    font-size: 2.5rem !important;
    white-space: normal !important;
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
  }
  
  div[style*="grid-template-columns"] > div:first-child p {
    font-size: 1.1rem !important;
    max-width: 100% !important;
    margin-bottom: 2rem !important;
  }
  
  div[style*="grid-template-columns"] > div:first-child > div {
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  div[style*="grid-template-columns"] > div:first-child > div a {
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    white-space: nowrap !important;
  }
  
  div[style*="grid-template-columns"] > div:last-child > div {
    max-width: 350px !important;
    margin: 0 auto !important;
  }
  
  div[style*="grid-template-columns"] > div:last-child img {
    max-width: 350px !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Also fix the parent section padding */
  section {
    padding: 2rem 1rem !important;
    min-height: auto !important;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.4rem;
  }
  
  section {
    padding: 1rem;
    margin: 1rem 0.5rem;
    border-radius: 1.5rem;
  }
  
  header {
    padding: 0.5rem 0.75rem;
  }
  
  /* Extra small screens - hero section adjustments */
  section[style*="grid-template-columns"] {
    padding: 1.5rem 0.75rem !important;
  }
  
  section[style*="grid-template-columns"] > div > div:first-child h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  section[style*="grid-template-columns"] > div > div:first-child p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  section[style*="grid-template-columns"] > div > div:first-child > div a {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  section[style*="grid-template-columns"] > div > div:last-child > div {
    max-width: 250px !important;
  }
  
  section[style*="grid-template-columns"] > div > div:last-child img {
    max-width: 250px !important;
  }
}

@media (max-width: 1023px) {
  section {
    margin: 1.5rem 0.5rem;
    padding: 2rem;
  }
  
  .mobile-nav {
    left: 0;
    right: 0;
    margin: 0.5rem;
  }
}

@media (max-width: 1023px) {
  .desktop-nav {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

/* WhatsApp Chat Widget - Sleek & Subtle */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
  transition: all 0.2s ease;
  opacity: 0.9;
}

.whatsapp-button:hover {
  background: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  color: white;
  opacity: 1;
}

.whatsapp-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.whatsapp-text {
  display: none;
}

/* Show text on hover for desktop */
@media (min-width: 769px) {
  .whatsapp-button:hover .whatsapp-text {
    display: block;
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
  }
  
  .whatsapp-button:hover .whatsapp-text::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
  }
}

/* Mobile responsive adjustments for WhatsApp widget */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-button {
    width: 3rem;
    height: 3rem;
  }
  
  .whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Remove text decoration from all buttons and links */
a, button, .book-button, .nav-link, .mobile-nav-link, .dropdown-toggle, .whatsapp-button {
  text-decoration: none !important;
}

a:hover, button:hover, .book-button:hover, .nav-link:hover, .mobile-nav-link:hover, .dropdown-toggle:hover, .whatsapp-button:hover {
  text-decoration: none !important;
}

/* Before/After Image Carousel Styles */
.before-after-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(126, 60, 61, 0.1);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slide-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  gap: 1px;
}

.slide-image {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1rem 0.75rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-navigation:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-navigation.prev {
  left: 1rem;
}

.carousel-navigation.next {
  right: 1rem;
}

.carousel-navigation svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--deep-clay);
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.no-images-message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: #666;
  font-style: italic;
  background: var(--surface);
  border-radius: 1rem;
  border: 2px dashed #ddd;
}

/* Mobile responsive adjustments for carousel */
@media (max-width: 768px) {
  .carousel-container {
    height: 300px;
  }
  
  .carousel-navigation {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .carousel-navigation.prev {
    left: 0.5rem;
  }
  
  .carousel-navigation.next {
    right: 0.5rem;
  }
  
  .carousel-navigation svg {
    width: 1rem;
    height: 1rem;
  }
  
  .image-label {
    font-size: 0.75rem;
    padding: 0.75rem 0.5rem 0.5rem;
  }
  
  .carousel-indicator {
    width: 0.625rem;
    height: 0.625rem;
  }
}

/* Performance optimizations */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .carousel-slides {
    transition: none !important;
  }
  
  .slide-image img {
    transition: none !important;
  }
  
  .carousel-navigation {
    transition: none !important;
  }
}
