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

/* CSS Variables */
:root {
  /* Clean white background */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 20%, 20%);

  /* Cards - soft white/cream */
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 20%, 20%);

  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(220, 20%, 20%);

  /* Primary - Dark Teal/Navy */
  --primary: hsl(195, 50%, 25%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Secondary - Soft Blue */
  --secondary: hsl(200, 40%, 94%);
  --secondary-foreground: hsl(200, 50%, 30%);

  /* Muted - Soft gray */
  --muted: hsl(210, 20%, 96%);
  --muted-foreground: hsl(220, 15%, 45%);

  /* Accent - Coral/Salmon Pink */
  --accent: hsl(5, 75%, 60%);
  --accent-foreground: hsl(0, 0%, 100%);

  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(210, 40%, 98%);

  --border: hsl(220, 15%, 90%);
  --input: hsl(220, 15%, 90%);
  --ring: hsl(195, 50%, 25%);

  --radius: 0.5rem;

  /* Custom colors */
  --teal: hsl(195, 50%, 25%);
  --teal-light: hsl(195, 40%, 95%);
  --coral: hsl(5, 75%, 60%);
  --coral-light: hsl(5, 60%, 95%);
  --peach: hsl(25, 70%, 95%);
  --mint: hsl(160, 40%, 95%);
  --sky-blue: hsl(200, 70%, 95%);

  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(220, 20%, 20%, 0.06);
  --shadow-card: 0 8px 30px -8px hsla(220, 20%, 20%, 0.08);
  --shadow-hover: 0 12px 40px -8px hsla(220, 20%, 20%, 0.12);
  --shadow-coral: 0 4px 20px -4px hsla(5, 75%, 60%, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Section Padding */
.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-coral {
  background-color: var(--coral);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

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

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Cards */
.card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.card-premium {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
}

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

/* Text Colors */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }

/* Background Colors */
.bg-primary { background-color: var(--primary); }
.bg-muted { background-color: var(--muted); }
.bg-card { background-color: var(--card); }
.bg-peach { background-color: var(--peach); }
.bg-mint { background-color: var(--mint); }
.bg-sky-blue { background-color: var(--sky-blue); }
.bg-coral-light { background-color: var(--coral-light); }

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 0;
  font-size: 0.875rem;
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

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

.top-bar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .top-bar-left {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-social {
  display: flex;
  gap: 0.75rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--card);
  padding: 0.75rem 0;
  transition: all 0.5s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  padding: 0.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .logo img {
    width: 5rem;
    height: 5rem;
  }
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.875rem;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

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

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background-color: var(--secondary);
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  color: var(--accent);
  background-color: var(--muted);
}

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  margin-top: 1rem;
}

.mobile-menu.open {
  display: block;
}

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

.mobile-menu-content {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--accent);
  background-color: var(--muted);
}

.mobile-dropdown-title {
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  color: var(--foreground);
}

.mobile-dropdown-items {
  padding-left: 1rem;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
  color: var(--accent);
  background-color: var(--muted);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(24, 64, 67, 0.8), rgba(24, 64, 67, 0.6), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--primary-foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.hero h1 span {
  font-style: italic;
  color: var(--accent);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 1.25rem;
  }
}

/* Hero Side Images */
.hero-side-images {
  display: none;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

@media (min-width: 1280px) {
  .hero-side-images {
    display: flex;
  }
}

.hero-side-image {
  position: relative;
}

.hero-side-image img {
  width: 11rem;
  height: 9rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

.hero-side-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.hero-side-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-side-overlay p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Hero Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.hero-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-arrow-left { left: 1rem; }
.hero-arrow-right { right: 1rem; }

/* Legacy class support */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-nav:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-nav-left { left: 1rem; }
.hero-nav-right { right: 1rem; }

/* Feature Cards */
.feature-cards {
  margin-top: -5rem;
  position: relative;
  z-index: 20;
  padding-bottom: 2rem;
}

.feature-cards-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.feature-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* About Section */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

.about-stat {
  background-color: var(--accent);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.about-stat span {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.about-stat p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-content h2 {
    font-size: 3rem;
  }
}

.about-content h2 span {
  color: var(--accent);
}

.about-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-content p:last-of-type {
  margin-bottom: 2rem;
}

/* Services Section */
.services-section {
  background-color: rgba(210, 220, 226, 0.3);
}

.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.service-card h3 a:hover {
  color: var(--accent);
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.why-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.why-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Packages Section */
.packages-section {
  background-color: rgba(210, 220, 226, 0.3);
}

.packages-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
}

.package-card.popular {
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-card);
}

.package-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.package-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.package-card > p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.package-features {
  margin-bottom: 2rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.package-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.package-card .btn {
  width: 100%;
}

/* Locations Section */
.locations-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.location-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.location-card-content {
  padding: 1.5rem;
}

.location-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.location-info {
  margin-bottom: 1rem;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.location-info-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.location-info-item a:hover {
  color: var(--accent);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
}

.gallery-item.span-2 {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item.span-2 img {
  height: 100%;
  min-height: 18.75rem;
}

@media (min-width: 768px) {
  .gallery-item img {
    height: 14rem;
  }
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 55, 60, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: var(--primary-foreground);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.125rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(45, 55, 60, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--primary-foreground);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Testimonials Section */
.testimonials-section {
  background-color: rgba(210, 220, 226, 0.2);
}

.testimonials-carousel {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.testimonials-track {
  overflow: hidden;
}

.testimonials-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-quote {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-coral);
}

.testimonial-quote svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-foreground);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-content {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .testimonial-content {
    font-size: 1.25rem;
  }
}

.testimonial-author {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--foreground);
}

.testimonial-relation {
  color: var(--muted-foreground);
}

/* Testimonial Navigation */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--card);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-nav:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.testimonial-nav-prev {
  left: 0;
  transform: translateY(-50%) translateX(-1rem);
}

.testimonial-nav-next {
  right: 0;
  transform: translateY(-50%) translateX(1rem);
}

@media (min-width: 768px) {
  .testimonial-nav-prev {
    transform: translateY(-50%) translateX(-4rem);
  }
  .testimonial-nav-next {
    transform: translateY(-50%) translateX(4rem);
  }
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--accent);
  width: 2rem;
}

.testimonial-dot:hover {
  background-color: var(--muted-foreground);
}

/* CTA Banner */
.cta-banner {
  background-color: var(--primary);
  padding: 4rem 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-text h2 {
  font-size: 1.5rem;
  color: var(--primary-foreground);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-text h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .cta-text h2 {
    font-size: 2.5rem;
  }
}

.cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-hero-outline {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--primary-foreground);
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo img {
  width: 4rem;
  height: 4rem;
}

.footer-brand .logo-text {
  color: var(--primary-foreground);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

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

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

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

.footer-services li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact a {
  transition: color 0.2s ease;
}

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

.footer-contact-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom p {
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

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

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

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

.floating-btn-whatsapp {
  background-color: #25D366;
  animation: pulse-gentle 2s ease-in-out infinite;
}

.floating-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--card);
  color: var(--foreground);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

.floating-tooltip p:first-child {
  font-weight: 600;
  font-size: 0.875rem;
}

.floating-tooltip p:last-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.5rem;
  transform: translateY(-50%);
  border-width: 0.5rem;
  border-style: solid;
  border-color: transparent transparent transparent var(--card);
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
}

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

.contact-form-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 99, 82, 0.2);
}

.form-group textarea {
  resize: none;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

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

.contact-info-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-card);
}

.contact-info-card:hover .contact-info-icon {
  background-color: var(--accent);
}

.contact-info-card:hover .contact-info-icon svg {
  color: var(--accent-foreground);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.contact-info-text p:first-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-info-text p:nth-child(2) {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.875rem;
}

.contact-info-text p:last-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.hours-card {
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  margin-top: 1.5rem;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hours-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.hours-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.hours-list p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.hours-list span {
  font-weight: 500;
  color: var(--foreground);
}

.hours-emergency {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.75rem;
}

.contact-map {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 16rem;
  margin-top: 1.5rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 8rem 0 10rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(24, 64, 67, 0.7);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 4rem;
  }
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-hero p {
    font-size: 1.25rem;
  }
}

/* Location Page */
.location-hero {
  position: relative;
  height: 25rem;
}

@media (min-width: 768px) {
  .location-hero {
    height: 31.25rem;
  }
}

.location-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-hero-content {
  text-align: center;
}

.location-hero h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .location-hero h1 {
    font-size: 3.5rem;
  }
}

.location-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.location-content {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .location-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-map {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.location-map iframe {
  width: 100%;
  height: 25rem;
  border: 0;
}

.location-details h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .location-details h2 {
    font-size: 1.875rem;
  }
}

.location-contact-list {
  margin-bottom: 2rem;
}

.location-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.location-contact-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.location-contact-item p:first-of-type {
  font-weight: 500;
  color: var(--foreground);
}

.location-contact-item p:last-of-type,
.location-contact-item a {
  color: var(--muted-foreground);
}

.location-contact-item a:hover {
  color: var(--accent);
}

.location-facilities h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.facility-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.facility-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

/* Service Cards Grid */
.service-cards-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-detail-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-card);
}

.service-detail-card svg {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-detail-card p {
  color: var(--muted-foreground);
}

/* About Page Specific */
.about-hero {
  position: relative;
  padding: 8rem 0 10rem;
  overflow: hidden;
}

.about-story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-hover);
}

@media (min-width: 768px) {
  .about-story-image img {
    height: 31.25rem;
  }
}

.about-story-stat {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  max-width: 14rem;
}

.about-story-stat p:first-child {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.about-story-stat p:last-child {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.about-story-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--coral-light);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.about-story-content h2 {
  font-size: 2rem;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-story-content h2 {
    font-size: 2.5rem;
  }
}

.about-story-content h2 span {
  color: var(--accent);
}

.about-story-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story-content p.highlight {
  color: var(--primary);
  font-weight: 500;
}

.mission-vision-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mission-vision-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.mission-vision-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-vision-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

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

.mission-vision-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

.team-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--sky-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.team-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.team-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.dignity-section {
  background: linear-gradient(135deg, rgba(24, 64, 67, 0.1), rgba(200, 225, 235, 0.5));
}

.dignity-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.dignity-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}

.dignity-content h2 {
  font-size: 2rem;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .dignity-content h2 {
    font-size: 2.5rem;
  }
}

.dignity-content h2 span {
  color: var(--accent);
}

.dignity-content p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.dignity-content p.highlight {
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 2rem;
}

.dignity-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .dignity-buttons {
    flex-direction: row;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-gentle {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none; }

@media (max-width: 767px) {
  .md-hidden { display: none; }
}

/* SVG Icons (inline for static HTML) */
.icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(195, 50%, 35%) 100%);
  color: var(--primary-foreground);
  padding: 4rem 1rem 6rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-hero {
    padding: 6rem 2rem 8rem;
  }
}

.about-hero .badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-hero h1 {
    font-size: 3.5rem;
  }
}

.about-hero h1 span {
  color: var(--accent);
}

.about-hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* About Story Section */
.about-story {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .about-story {
    padding: 6rem 2rem;
  }
}

.about-story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  width: 100%;
}

.about-story-image::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 3px solid var(--accent);
  border-radius: 1rem;
  z-index: -1;
}

.about-story-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-story-content h2 {
    font-size: 2.5rem;
  }
}

.about-story-content h2 span {
  color: var(--accent);
}

.about-story-content p {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story-content .highlight {
  color: var(--foreground);
  font-weight: 600;
  font-style: italic;
}

/* Mission/Vision Section */
.mission-vision {
  background-color: var(--muted);
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .mission-vision {
    padding: 6rem 2rem;
  }
}

.mission-vision-grid {
  display: grid;
  gap: 2rem;
}

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

.mission-card,
.vision-card {
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.mission-card {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(195, 50%, 35%) 100%);
  color: var(--primary-foreground);
}

.vision-card {
  background-color: var(--card);
}

.mission-card .icon-wrapper,
.vision-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-card .icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2);
}

.vision-card .icon-wrapper {
  background-color: var(--coral-light);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  opacity: 0.9;
  line-height: 1.7;
}

.vision-card p {
  color: var(--muted-foreground);
}

/* Team Section */
.team-section {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .team-section {
    padding: 6rem 2rem;
  }
}

.team-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.team-section .section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .team-section .section-header h2 {
    font-size: 2.5rem;
  }
}

.team-section .section-header h2 span {
  color: var(--accent);
}

.team-section .section-header p {
  color: var(--muted-foreground);
}

.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.team-card .avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.team-card:nth-child(1) .avatar { background-color: var(--peach); color: var(--coral); }
.team-card:nth-child(2) .avatar { background-color: var(--sky-blue); color: var(--primary); }
.team-card:nth-child(3) .avatar { background-color: var(--mint); color: hsl(160, 50%, 35%); }
.team-card:nth-child(4) .avatar { background-color: var(--coral-light); color: var(--coral); }

.team-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(195, 50%, 35%) 100%);
  color: var(--primary-foreground);
  padding: 4rem 1rem 6rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 6rem 2rem 8rem;
  }
}

.contact-hero .badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-hero h1 {
    font-size: 3.5rem;
  }
}

.contact-hero h1 span {
  color: var(--accent);
}

.contact-hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Content Section */
.contact-content {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .contact-content {
    padding: 6rem 2rem;
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

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

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper .subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px hsla(5, 75%, 60%, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

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

.form-row .form-group {
  margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-cards-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-card);
}

.contact-info-card .icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper {
  background-color: var(--accent);
}

.contact-info-card .icon-wrapper svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper svg {
  color: var(--accent-foreground);
}

.contact-info-card .info-content p:first-child {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-info-card .info-content p:nth-child(2) {
  font-weight: 600;
  font-size: 0.875rem;
}

.contact-info-card .info-content p:last-child {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Visiting Hours Card */
.hours-card {
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.hours-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hours-card .hours-list p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.hours-card .hours-list p span {
  font-weight: 500;
  color: var(--foreground);
}

.hours-card .hours-list .highlight {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.75rem;
}

/* Map */
.contact-map {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 16rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================
   LOCATION PAGES STYLES
   ========================================== */

.location-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.location-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.location-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(24, 64, 67, 0.85), rgba(24, 64, 67, 0.7), rgba(24, 64, 67, 0.5));
}

.location-hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 1rem;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .location-hero-content {
    padding: 6rem 2rem;
  }
}

.location-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.location-hero .breadcrumb a:hover {
  color: var(--accent);
}

.location-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .location-hero h1 {
    font-size: 3.5rem;
  }
}

.location-hero h1 span {
  color: var(--accent);
}

.location-hero > p,
.location-hero-content > p {
  font-size: 1.125rem;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.location-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Location About Section */
.location-about {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .location-about {
    padding: 6rem 2rem;
  }
}

.location-about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .location-about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.location-about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .location-about-content h2 {
    font-size: 2.5rem;
  }
}

.location-about-content h2 span {
  color: var(--accent);
}

.location-about-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.location-about-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  width: 100%;
}

/* Location Facilities */
.location-facilities {
  background-color: var(--muted);
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .location-facilities {
    padding: 6rem 2rem;
  }
}

.location-facilities .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.location-facilities .section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .location-facilities .section-header h2 {
    font-size: 2.5rem;
  }
}

.location-facilities .section-header h2 span {
  color: var(--accent);
}

.location-facilities .section-header p {
  color: var(--muted-foreground);
}

.facilities-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .facilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.facility-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.facility-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.facility-card .icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.facility-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.facility-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Location Contact */
.location-contact {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .location-contact {
    padding: 6rem 2rem;
  }
}

.location-contact-grid {
  display: grid;
  gap: 2rem;
}

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

.location-contact-info {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.location-contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.location-info-item .icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-info-item .icon-wrapper svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.location-info-item p:first-child {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.location-info-item p:last-child {
  font-weight: 500;
}

.location-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 300px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* ==========================================
   PACKAGES / PRICING STYLES
   ========================================== */

.packages-section {
  background-color: var(--muted);
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .packages-section {
    padding: 6rem 2rem;
  }
}

.packages-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.packages-section .section-header .badge {
  display: inline-block;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.packages-section .section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .packages-section .section-header h2 {
    font-size: 2.5rem;
  }
}

.packages-section .section-header h2 span {
  color: var(--accent);
}

.packages-section .section-header p {
  color: var(--muted-foreground);
}

.packages-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
}

.package-card.bg-peach { background-color: var(--peach); }
.package-card.bg-sky-blue { background-color: var(--sky-blue); }
.package-card.bg-mint { background-color: var(--mint); }

.package-card.popular {
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-card);
}

.package-card .popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.package-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.package-card .description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.package-features {
  margin-bottom: 2rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.package-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ==========================================
   ELDER CARE / HOME CARE PAGE STYLES
   ========================================== */

.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(195, 50%, 35%) 100%);
  color: var(--primary-foreground);
  padding: 4rem 1rem 6rem;
  text-align: center;
}

@media (min-width: 768px) {
  .service-hero {
    padding: 6rem 2rem 8rem;
  }
}

.service-hero .badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
  .service-hero h1 {
    font-size: 3.5rem;
  }
}

.service-hero h1 span {
  color: var(--accent);
}

.service-hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Service Overview */
.service-overview {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .service-overview {
    padding: 6rem 2rem;
  }
}

.service-overview-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-overview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.service-overview-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .service-overview-content h2 {
    font-size: 2.5rem;
  }
}

.service-overview-content h2 span {
  color: var(--accent);
}

.service-overview-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-overview-content ul {
  margin-top: 1.5rem;
}

.service-overview-content ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-overview-content ul li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.service-overview-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  width: 100%;
}

/* Service List */
.service-list {
  background-color: var(--muted);
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .service-list {
    padding: 6rem 2rem;
  }
}

.service-list .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.service-list .section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-list .section-header h2 {
    font-size: 2.5rem;
  }
}

.service-list .section-header h2 span {
  color: var(--accent);
}

.service-list .section-header p {
  color: var(--muted-foreground);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.service-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card .icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Service CTA */
.service-cta {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(195, 50%, 35%) 100%);
  color: var(--primary-foreground);
  padding: 4rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .service-cta {
    padding: 6rem 2rem;
  }
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-cta h2 {
    font-size: 2.5rem;
  }
}

.service-cta p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

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

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.w-full { width: 100%; }

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

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.mt-4 { margin-top: 1rem; }
.italic { font-style: italic; }
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile { display: inline; }
}

/* ==========================================
   ADDITIONAL HOMEPAGE STYLES
   ========================================== */

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Title & Subtitle */
.hero-title {
  font-size: 2.5rem;
  color: var(--primary-foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Side Image Card */
.side-image-card {
  position: relative;
}

.side-image-card img,
.side-image {
  width: 11rem;
  height: 9rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

.side-image-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.side-image-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.side-image-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 15;
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.hero-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-arrow-left { 
  left: 1rem; 
}

.hero-arrow-right { 
  right: 1rem; 
}

@media (min-width: 1280px) {
  .hero-arrow-right { 
    right: 16rem; 
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1rem;
  margin-top: -5rem;
  position: relative;
  z-index: 20;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Section Styles */
.section {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2rem;
  }
}

.section-label {
  display: block;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* About Section Images */
.about-images-left,
.about-images-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.about-img.tall {
  height: 16rem;
}

.about-years-card {
  background-color: var(--accent);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.years-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-foreground);
  display: block;
}

.years-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.about-text-lg {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Service Title & Desc */
.service-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.service-title a:hover {
  color: var(--accent);
}

.service-desc {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.why-choose-text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature {
  display: flex;
  gap: 1rem;
}

.why-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-icon svg {
  color: var(--accent);
}

.why-feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.why-feature-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

.why-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .why-img {
    height: 20rem;
  }
}

/* Package Card Styles */
.package-header {
  margin-bottom: 1rem;
}

.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.package-subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.package-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.price-period {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.package-features {
  margin-bottom: 2rem;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.package-feature svg {
  color: var(--accent);
  flex-shrink: 0;
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.package-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.package-card.popular {
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-card);
}

/* Location Card Updates */
.location-image {
  position: relative;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover .location-overlay {
  opacity: 1;
}

.location-content {
  padding: 1.5rem;
}

.location-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.location-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.location-address svg {
  color: var(--accent);
  flex-shrink: 0;
}

.location-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Gallery Item Styles */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.7s ease;
}

@media (min-width: 768px) {
  .gallery-item img {
    height: 14rem;
  }
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* Testimonials Slider */
.testimonials-slider {
  max-width: 56rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 300%; /* 3 testimonials x 100% each */
}

.testimonial-card {
  flex-shrink: 0;
  width: calc(100% / 3); /* Each card takes 1/3 of track width = 100% of container */
  background-color: #ffffff;
  background-color: var(--card, #ffffff);
  border-radius: 0.75rem;
  box-shadow: 0 8px 30px -8px rgba(50, 50, 70, 0.08);
  padding: 2rem;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-stars {
  color: #e05a47;
  color: var(--accent, #e05a47);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: #2d3748;
  color: var(--foreground, #2d3748);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.25rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f5c5f, #e05a47);
  background: linear-gradient(135deg, var(--primary, #1f5c5f), var(--accent, #e05a47));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  color: var(--foreground, #2d3748);
  margin-bottom: 0.125rem;
}

.author-relation {
  font-size: 0.875rem;
  color: #718096;
  color: var(--muted-foreground, #718096);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  background-color: var(--card, #ffffff);
  box-shadow: 0 4px 20px -4px rgba(50, 50, 70, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d3748;
  color: var(--foreground, #2d3748);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-arrow:hover {
  background-color: #e05a47;
  background-color: var(--accent, #e05a47);
  color: #ffffff;
  color: var(--accent-foreground, #ffffff);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: #e2e8f0;
  background-color: var(--border, #e2e8f0);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: #e05a47;
  background-color: var(--accent, #e05a47);
  width: 2rem;
}

.testimonial-dot:hover {
  background-color: #718096;
  background-color: var(--muted-foreground, #718096);
}

/* CTA Banner Updates */
.cta-title {
  font-size: 1.5rem;
  color: var(--primary-foreground);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

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

/* Footer Updates */
.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand {
  max-width: 20rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

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

.footer-links {
  margin-top: 1rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

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

/* Floating Buttons Updates */
.floating-call {
  background-color: var(--primary);
}

.floating-whatsapp {
  background-color: #25D366;
  animation: pulse-gentle 2s ease-in-out infinite;
}

/* Animation Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
