:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --text-color: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--text-color);
  background: #ffffff;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Language Toggle - matches Lakeshore */
.toggleContainer {
  display: flex;
  gap: 0.5rem;
  background: white;
  border-radius: 0.5rem;
  padding: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.toggleButton {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.toggleButton:hover {
  background: var(--bg-light);
  color: var(--text-color);
}

.toggleButton.active {
  background: var(--primary-color);
  color: white;
}

.toggleButton.active:hover {
  background: var(--primary-hover);
}

/* Hero - Lakeshore style: centered, full bg image */
.hero {
  position: relative;
  color: white;
  padding: 6rem 0;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.heroBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.heroBackgroundImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.heroContent {
  position: relative;
  z-index: 2;
}

.heroTitle {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.heroSubtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.heroDescription {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--primary-hover);
  text-decoration: none;
}

.btn-secondary {
  background-color: white;
  border: 2px solid white;
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  color: var(--primary-hover);
  border-color: var(--bg-light);
  text-decoration: none;
}

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

.sectionAlt {
  background-color: var(--bg-light);
}

.sectionTitle {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-color);
}

.sectionSubtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features grid - Lakeshore style */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

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

.feature p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Gallery */
.gallerySection {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.galleryTitle {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-color);
}

.galleryContainer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: #000;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide .image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.arrowButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.arrowButton.prev {
  left: 1.5rem;
}

.arrowButton.next {
  right: 1.5rem;
}

.arrowButton:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

/* Pricing */
.pricing {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.priceCard {
  text-align: center;
  padding: 2rem 3rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}

.priceAmount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.priceAmount span {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
}

.priceLabel {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.priceSubLabel {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
}

.pricingNote {
  text-align: center;
  color: var(--text-light);
  margin-top: 2rem;
  font-size: 1.1rem;
}

/* Location with map */
.locationGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.locationAddress {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.locationList {
  list-style: none;
  margin-top: 1.5rem;
}

.locationList li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.locationList li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.mapContainer {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--border-color);
}

.mapContainer iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 2rem;
}

.faqItem {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faqQuestion {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.faqAnswer {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Contact */
.contact {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contactInfo {
  margin-top: 2rem;
  color: var(--text-light);
  line-height: 2;
}

.contactInfo h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.phone {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.phone a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.phone a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

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

/* SEO Footer - Lakeshore style keyword pills */
.seoFooter {
  background-color: var(--bg-light);
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.seoTitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.seoKeywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.seoKeyword {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  color: var(--text-light);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.seoKeyword:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Site footer */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .toggleContainer {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.2rem;
  }

  .toggleButton {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }

  .heroTitle {
    font-size: 2.5rem;
  }

  .heroSubtitle {
    font-size: 1.25rem;
  }

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

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

  .mapContainer iframe {
    min-height: 300px;
  }

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

  .priceCard {
    width: 100%;
    max-width: 300px;
  }

  .gallerySection {
    padding: 3rem 0;
  }

  .galleryTitle {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .galleryContainer {
    aspect-ratio: 4 / 3;
  }

  .arrowButton {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .seoKeywords {
    gap: 0.5rem;
  }

  .seoKeyword {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }
}
