:root {
  /* Eco-friendly Color Palette */
  --primary-green: #4a7c59;
  --secondary-sage: #87a96b;
  --accent-mint: #a8d5ba;
  --warm-earth: #d4a574;
  --soft-cream: #f5f3f0;
  
  /* Light/Dark Shades */
  --primary-green-light: #6b9b7a;
  --primary-green-dark: #2d4a35;
  --secondary-sage-light: #a4c088;
  --secondary-sage-dark: #6a8554;
  --accent-mint-light: #c5e4d3;
  --accent-mint-dark: #8bc4a1;
  --warm-earth-light: #e2c09b;
  --warm-earth-dark: #b8925d;
  --soft-cream-light: #faf9f7;
  --soft-cream-dark: #e8e4df;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
  
  /* Transitions */
  --transition-smooth: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary-green-dark);
  background-color: var(--soft-cream);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--primary-green-dark);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-sage));
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(74, 124, 89, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  transition: var(--transition-smooth);
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--accent-mint), var(--secondary-sage));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../SUP_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-mint), var(--warm-earth));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.section-subtitle {
  text-align: center;
  color: var(--secondary-sage);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--primary-green-dark);
}

/* About Section */
.about {
  background-color: white;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--soft-cream), white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(74, 124, 89, 0.1);
  transition: var(--transition-smooth);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(74, 124, 89, 0.15);
}

.about-feature i {
  font-size: 3rem;
  color: var(--secondary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, var(--soft-cream), var(--accent-mint-light));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-sage));
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(74, 124, 89, 0.15);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-green);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--soft-cream);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--accent-mint-light), var(--soft-cream));
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: scale(1.05);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: linear-gradient(135deg, var(--primary-green-light), var(--secondary-sage));
  color: white;
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-item {
  background: white;
  color: var(--primary-green-dark);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.priceplan-item:hover {
  transform: translateY(-10px);
}

.priceplan-item:nth-child(2) {
  transform: scale(1.05);
  border: 3px solid var(--warm-earth);
}

/* Team Section */
.team {
  background-color: var(--soft-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(74, 124, 89, 0.1);
  transition: var(--transition-smooth);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--accent-mint);
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, var(--accent-mint), var(--secondary-sage-light));
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(74, 124, 89, 0.1);
  margin: 0 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: bold;
  color: var(--primary-green);
}

/* Core Info Section */
.coreinfo {
  background-color: white;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  padding: 2rem;
  background: linear-gradient(135deg, var(--soft-cream), var(--accent-mint-light));
  border-radius: 15px;
  text-align: center;
  transition: var(--transition-smooth);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

/* Contact Form */
.contact {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-sage));
  color: white;
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--soft-cream);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background-color: var(--soft-cream-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  background-color: white;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-sage));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

/* Blog Section */
.blog {
  background-color: var(--soft-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(74, 124, 89, 0.1);
  transition: var(--transition-smooth);
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--secondary-sage);
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--soft-cream);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: var(--soft-cream);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-green);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: var(--accent-mint-light);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  display: none;
  border-top: 1px solid var(--soft-cream);
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, var(--accent-mint-light), var(--soft-cream));
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(74, 124, 89, 0.1);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  color: white;
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-mint);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--accent-mint);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--soft-cream);
  margin-top: 80px;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.6;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  text-align: center;
  background: transparent;
}

.swiper-pagination-bullet {
  background: var(--primary-green);
}

.swiper-pagination-bullet-active {
  background: var(--secondary-sage);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn-submit:focus,
.form-control:focus {
  outline: 2px solid var(--warm-earth);
  outline-offset: 2px;
} 