:root {
  /* Color Palette */
  --primary-1: #6a8d92; /* Soft teal */
  --primary-2: #e8c07d; /* Warm gold */
  --primary-3: #b05574; /* Muted raspberry */
  --primary-4: #3d5a6c; /* Deep slate blue */
  --primary-5: #a4be7b; /* Sage green */
  
  /* Light/Dark Variations */
  --primary-1-light: #8aacb1;
  --primary-1-dark: #4d6a6f;
  --primary-2-light: #f2d69c;
  --primary-2-dark: #c9a35f;
  --primary-3-light: #cc7695;
  --primary-3-dark: #8f3659;
  --primary-4-light: #5c798b;
  --primary-4-dark: #2a404c;
  --primary-5-light: #c2d8a4;
  --primary-5-dark: #83a35a;
  
  /* Neutrals */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-400: #cccccc;
  --neutral-500: #999999;
  --neutral-600: #666666;
  --neutral-700: #444444;
  --neutral-800: #222222;
  --neutral-900: #111111;

  /* Typography */
  --font-family-primary: 'Montserrat', sans-serif;
  --font-family-secondary: 'Lora', serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

/* General Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  line-height: var(--line-height-base);
  color: var(--neutral-800);
  background-color: var(--neutral-100);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-secondary);
  margin-bottom: 0.5em;
  line-height: 1.2;
  color: var(--neutral-800);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 5rem 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--neutral-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-1);
}

.navbar-menu {
  display: flex;
  list-style: none;
}

.navbar-menu li {
  margin-left: 2rem;
}

.navbar-menu a {
  font-weight: 500;
  color: var(--neutral-700);
  position: relative;
}

.navbar-menu a:hover {
  color: var(--primary-1);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--neutral-700);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-1-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../HEL_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--neutral-600);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  flex: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  padding: 1.5rem;
  background-color: var(--neutral-200);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature h4 {
  color: var(--primary-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: var(--neutral-200);
  position: relative;
}

.services-content {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-details {
  padding: 1.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--primary-2);
  color: var(--neutral-800);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background-color: var(--neutral-100);
}

.features-content {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--neutral-200);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-1);
}

.feature-text h4 {
  margin-bottom: 0.5rem;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.priceplan-content {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-item:hover {
  transform: translateY(-10px);
}

.pricing-header {
  padding: 2rem;
  background-color: var(--primary-1);
  text-align: center;
}

.pricing-header h4 {
  color: var(--neutral-100);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: 0.5rem;
}

.pricing-details {
  padding: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-300);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-1);
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background-color: var(--neutral-100);
}

.team-content {
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--neutral-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-details {
  padding: 1.5rem;
  text-align: center;
}

.team-details h4 {
  margin-bottom: 0.5rem;
}

.team-details p {
  color: var(--neutral-600);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-1-light);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../HEL_images/testimonial-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.reviews-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-slider {
  position: relative;
  z-index: 2;
  padding: 0 50px;
}

.review-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.review-text::before,
.review-text::after {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary-1-light);
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: serif;
  line-height: 1;
}

.review-text::after {
  content: '\201D';
  top: auto;
  left: auto;
  bottom: -3rem;
  right: -1rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo {
  background-color: var(--neutral-100);
}

.coreinfo-content {
  text-align: center;
  margin-bottom: 3rem;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.coreinfo-item {
  padding: 2rem;
  background-color: var(--neutral-200);
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: var(--neutral-200);
  position: relative;
}

.contact-content {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--neutral-100);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: 5px;
  font-family: var(--font-family-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-1);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.form-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-1);
  color: var(--neutral-100);
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-1-dark);
}

/* Blog Section */
.blog {
  background-color: var(--neutral-100);
}

.blog-content {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-item {
  background-color: var(--neutral-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-details {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background-color: var(--neutral-200);
}

.faq-content {
  text-align: center;
  margin-bottom: 3rem;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--neutral-100);
  border-radius: 5px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  padding: 1.25rem;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--primary-1);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content {
  padding: 0 1.25rem 1.25rem;
}

/* Gallery Section */
.gallery {
  background-color: var(--neutral-100);
}

.gallery-content {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-4-dark);
  color: var(--neutral-300);
  padding: 3rem 0 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--neutral-400);
}

.footer-heading {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--neutral-100);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--primary-1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

#site-copyright {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

@media (max-width: 991.98px) {
  .about-content {
    flex-direction: column;
  }
  
  .services-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--neutral-100);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
  }
  
  .navbar-menu.active {
    display: flex;
  }
  
  .navbar-menu li {
    margin: 0.5rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .about-features,
  .features-grid,
  .services-grid,
  .pricing-grid,
  .coreinfo-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .form-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
} 