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

:root {
  /* Color Palette - Fresh, Clean, Ozone-inspired */
  --color-primary: #4a9fd8;
  --color-primary-light: #7bbee6;
  --color-secondary: #6bc4a6;
  --color-accent: #8dd4c7;
  --color-background: #ffffff;
  --color-background-alt: #f8fcfd;
  --color-text: #2c3e50;
  --color-text-light: #5a6c7d;
  --color-border: #e1eef4;
  --color-success: #6bc4a6;
}

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

/* Header Styles */
header {
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(74, 159, 216, 0.08);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--color-primary);
}

nav a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8f6fc 0%, #f8fcfd 100%);
  padding: 5rem 2rem;
  text-align: center;
}

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

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(74, 159, 216, 0.2);
}

/* Three Box Layout */
.three-box-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

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

.box {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(74, 159, 216, 0.15);
  border-color: var(--color-primary);
}

.box-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background-color: var(--color-background-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

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

.box p {
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 1rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background-color: var(--color-background-alt);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

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

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

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

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

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--color-text);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Added sticky contact buttons for WhatsApp and Call */
/* Sticky Contact Buttons */
.sticky-contact-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.sticky-btn:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

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

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

/* Added web view container for home page */
/* Web View Container */
.web-view-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: var(--color-background-alt);
}

.web-view-container {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(74, 159, 216, 0.1);
}

.web-view-container h2 {
  padding: 1.5rem 2rem;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 0;
}

.web-view-container iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Gallery Styles */
.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.gallery-slider {
  position: relative;
  width: 100%;
  background-color: var(--color-background);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74, 159, 216, 0.15);
}

.gallery-slides {
  position: relative;
  width: 100%;
  height: 600px;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
}

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

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 2rem;
}

.slide-caption h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.slide-caption p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Gallery Navigation Buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--color-text);
}

.gallery-nav:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

/* Gallery Indicators */
.gallery-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.indicator.active {
  background-color: white;
  border-color: var(--color-primary);
  transform: scale(1.2);
}

/* Gallery Info Section */
.gallery-info {
  text-align: center;
  padding: 2rem;
  background-color: var(--color-background-alt);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.gallery-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.gallery-info p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.gallery-info .cta-button {
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

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

  .three-boxes {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  /* Adjusted sticky buttons for mobile */
  .sticky-contact-buttons {
    bottom: 15px;
    left: 15px;
  }

  .sticky-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .web-view-container iframe {
    height: 400px;
  }

  /* Responsive Gallery */
  .gallery-slides {
    height: 400px;
  }

  .slide-caption {
    padding: 1.5rem;
  }

  .slide-caption h3 {
    font-size: 1.25rem;
  }

  .slide-caption p {
    font-size: 0.9rem;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .sticky-contact-buttons {
    bottom: 10px;
    left: 10px;
  }

  .sticky-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .gallery-slides {
    height: 300px;
  }

  .slide-caption {
    padding: 1rem;
  }

  .slide-caption h3 {
    font-size: 1.125rem;
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
  }
}
