/* Wags Dog Daycare - Static Site Styles */

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

:root {
  --color-lime-50: #f7fee7;
  --color-lime-100: #ecfccb;
  --color-lime-400: #a3e635;
  --color-lime-500: #84cc16;
  --color-lime-600: #65a30d;
  --color-lime-700: #4d7c0f;
  --color-green-50: #f0fdf4;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-300: #d1d5db;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-white: #ffffff;
  --color-amber-400: #fbbf24;
  --max-width: 1280px;
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-gray-700);
  background: var(--color-white);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: var(--color-gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

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

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.transparent {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo img {
  height: 48px;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

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

.nav-link {
  font-weight: 500;
  transition: color 0.2s;
  color: var(--color-gray-700);
}

.nav-link:hover { color: var(--color-lime-600); }
.nav-link.active { color: var(--color-lime-600); }

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-gray-700);
}

.phone-link:hover { color: var(--color-lime-600); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--color-lime-500);
  color: var(--color-white);
}

.btn-primary:hover { background: var(--color-lime-600); }

.btn-outline {
  border: 2px solid var(--color-lime-600);
  color: var(--color-lime-600);
}

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

.btn-white {
  background: var(--color-white);
  color: var(--color-lime-600);
}

.btn-white:hover { background: var(--color-lime-50); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }

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

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--color-gray-700);
}

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

.mobile-nav {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--color-gray-100);
  padding: 1rem 0;
}

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

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

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--color-gray-700);
  transition: background 0.2s;
}

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

.mobile-cta {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--color-gray-100);
  margin-top: 0.5rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-100);
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 40;
}

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

.mobile-sticky-cta .btn { width: 100%; }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
}

.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(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  max-width: 42rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(132, 204, 22, 0.9);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

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

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

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

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

/* Page Header */
.page-header {
  background: linear-gradient(to bottom right, var(--color-lime-50), var(--color-green-50));
  padding: 4rem 0;
  text-align: center;
  margin-top: var(--header-height);
}

.page-header p {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--color-gray-700);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-gray { background: var(--color-gray-50); }
.section-white { background: var(--color-white); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title p {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--color-gray-600);
}

/* Trust Indicators */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-lime-600);
  margin-bottom: 0.5rem;
}

.trust-item h3 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 2rem;
}

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

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

/* Service Card */
.service-card {
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.service-card-features {
  list-style: none;
  margin-bottom: 1rem;
}

.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

.service-card-features li::before {
  content: '✓';
  color: var(--color-lime-600);
  flex-shrink: 0;
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 2rem;
}

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

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

.step-number {
  width: 4rem;
  height: 4rem;
  background: var(--color-lime-100);
  color: var(--color-lime-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.step-item h3 { margin-bottom: 0.5rem; }
.step-item p { font-size: 0.875rem; color: var(--color-gray-600); }

/* Testimonial Card */
.testimonial-card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-amber-400);
  fill: var(--color-amber-400);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray-700);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-gray-900);
}

.testimonial-dog {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to bottom right, var(--color-lime-500), var(--color-lime-600));
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-lime-50);
  margin-bottom: 1.5rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  gap: 2rem;
}

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

.pricing-card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card.popular {
  border-color: var(--color-lime-500);
}

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

.pricing-card h3 {
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.pricing-price::before { content: '$'; font-size: 1.5rem; }

.pricing-frequency {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-lime-600);
}

/* FAQ */
.faq-section {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-100);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  text-align: left;
  font-weight: 600;
  color: var(--color-gray-900);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-gray-400);
  transition: transform 0.2s;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding-bottom: 1rem;
  color: var(--color-gray-600);
}

.faq-item.open .faq-answer { display: block; }

/* Gallery Grid */
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

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

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

/* Rating Box */
.rating-box {
  background: linear-gradient(to bottom right, var(--color-lime-50), var(--color-green-50));
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

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

.rating-stars .star {
  width: 2rem;
  height: 2rem;
}

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

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

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--color-lime-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-lime-600);
}

.contact-item h3 { margin-bottom: 0.25rem; }
.contact-item a:hover { color: var(--color-lime-600); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

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

/* Form Card */
.form-card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Plugin Placeholder */
.plugin-placeholder {
  border: 2px dashed var(--color-gray-300);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  background: var(--color-gray-50);
}

.plugin-placeholder h3 {
  color: var(--color-gray-700);
  margin-bottom: 1rem;
}

.plugin-placeholder ul {
  text-align: left;
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.plugin-placeholder li { margin-bottom: 0.5rem; }

/* Requirements Box */
.requirements-box {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.requirements-list li::before {
  content: '✓';
  color: var(--color-lime-600);
  font-weight: 600;
}

/* Additional Services */
.services-table {
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.services-row:last-child { border-bottom: none; }

.services-row span:last-child {
  font-weight: 700;
  color: var(--color-lime-600);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-box {
  background: linear-gradient(to bottom right, var(--color-lime-50), var(--color-green-50));
  border-radius: 1rem;
  padding: 1.5rem;
}

.feature-box h3 { margin-bottom: 1rem; }

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--color-lime-600);
}

/* Booking Trust */
.booking-trust {
  display: grid;
  gap: 1.5rem;
}

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

.booking-trust-item {
  text-align: center;
  padding: 1rem;
}

.booking-trust-item svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-lime-600);
  margin: 0 auto 0.75rem;
}

.booking-trust-item h3 { margin-bottom: 0.5rem; }
.booking-trust-item p { font-size: 0.875rem; color: var(--color-gray-600); }

/* Booking Form Box */
.booking-box {
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.booking-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-gray-100);
}

.booking-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--color-gray-600);
  border-bottom: 4px solid transparent;
  transition: all 0.2s;
}

.booking-tab.active {
  color: var(--color-white);
  background: var(--color-lime-600);
  border-color: var(--color-lime-700);
}

.booking-content { padding: 2rem; }

/* Expect Grid */
.expect-grid {
  display: grid;
  gap: 1.5rem;
}

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

.expect-item {
  background: linear-gradient(to bottom right, var(--color-lime-50), var(--color-green-50));
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.expect-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-lime-600);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.expect-item h3 { margin-bottom: 0.5rem; }
.expect-item p { font-size: 0.875rem; color: var(--color-gray-700); }

/* Footer */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: 3rem 0;
}

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

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

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

.footer-brand p { font-size: 0.875rem; margin-top: 1rem; }

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item a:hover { color: var(--color-lime-400); }

.footer-hours ul { list-style: none; font-size: 0.875rem; }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

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

.footer-social a {
  width: 2rem;
  height: 2rem;
  background: var(--color-gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom a:hover { color: var(--color-lime-400); }

/* Utility */
.text-center { text-align: center; }
.text-link { color: var(--color-lime-600); }
.text-link:hover { color: var(--color-lime-700); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* Page content padding for mobile sticky CTA */
.page-content {
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .page-content { padding-bottom: 0; }
}

/* Daycare Schedule */
.schedule-box {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.schedule-column h3 { margin-bottom: 0.75rem; }

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

.schedule-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

.schedule-list li::before {
  content: '•';
  color: var(--color-lime-600);
}

/* Elementor Compatibility */
.elementor-page .page-content {
  padding: 0;
  margin: 0;
}

.elementor-page .entry-content,
.elementor-page .page-content {
  width: 100%;
  max-width: 100%;
}

.elementor-page .section {
  padding: 0;
}

.elementor-page .container {
  max-width: 100%;
  padding: 0;
}

.elementor-full-width .page-content {
  padding-top: 0;
}

/* Allow Elementor sections to go full width */
body.elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--max-width);
}

body.elementor-page .elementor-section.elementor-section-full_width > .elementor-container {
  max-width: 100%;
}
