:root {
  --primary-color-1: #6c9e9c; /* Teal */
  --primary-color-2: #f2b880; /* Peach */
  --primary-color-3: #d9bc9b; /* Sand */
  --primary-color-4: #e57f84; /* Coral */
  --primary-color-5: #a97c73; /* Mauve */
  
  --light-shade-1: #f8f9fa;
  --light-shade-2: #e9ecef;
  --dark-shade-1: #343a40;
  --dark-shade-2: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-shade-1);
  background-color: var(--light-shade-1);
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-5);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color-1);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--primary-color-5);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sitename {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.main-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-menu a {
  font-weight: 600;
  color: var(--dark-shade-1);
}

.main-menu a:hover {
  color: var(--primary-color-1);
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-shade-2);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 1;
}

.hero-content h1 {
  color: var(--dark-shade-2);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about {
  background-color: white;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.about-feature-item {
  background: var(--light-shade-1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-item h4 {
  color: var(--primary-color-3);
  margin-bottom: 10px;
}

/* Services Section */
.services {
  background-color: var(--light-shade-2);
}

.services-container {
  text-align: center;
}

.services-container h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: var(--primary-color-2);
  margin: 20px 0 15px;
}

.service-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-4);
  margin: 15px 0;
}

.service-card ul {
  list-style: none;
  margin: 20px 0;
}

.service-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-card ul li:before {
  content: "✓";
  color: var(--primary-color-1);
  position: absolute;
  left: 0;
  top: 0;
}

/* Features Section */
.features {
  background-color: white;
}

.features-container {
  text-align: center;
}

.features-container h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: var(--light-shade-1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
  color: var(--primary-color-3);
  margin: 20px 0 15px;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--light-shade-2);
}

.priceplan-container {
  text-align: center;
}

.priceplan-container h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: white;
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  color: var(--primary-color-2);
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-4);
  margin: 20px 0;
}

.pricing-card ul {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.pricing-card ul li:before {
  content: "✓";
  color: var(--primary-color-1);
  position: absolute;
  left: 0;
  top: 0;
}

/* Team Section */
.team {
  background-color: white;
}

.team-container {
  text-align: center;
}

.team-container h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  background: var(--light-shade-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member-info {
  padding: 20px;
}

.team-member-info h4 {
  color: var(--primary-color-3);
  margin-bottom: 5px;
}

.team-member-info p {
  color: var(--primary-color-5);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-shade-2);
  padding: 100px 0;
}

.reviews-container {
  text-align: center;
}

.reviews-container h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.swiper {
  width: 100%;
  margin-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.review-text:before,
.review-text:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color-3);
  opacity: 0.3;
  font-size: 1.5rem;
  position: absolute;
}

.review-text:before {
  content: "\f10d"; /* Quote left */
  top: -10px;
  left: -10px;
}

.review-text:after {
  content: "\f10e"; /* Quote right */
  bottom: -10px;
  right: -10px;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-5);
}

/* Core Info Section */
.coreinfo {
  background-color: white;
}

.coreinfo-container {
  text-align: center;
}

.coreinfo-container h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: var(--light-shade-1);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-item h3 {
  color: var(--primary-color-3);
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: var(--light-shade-2);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 30px;
}

.contact-details p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-details p i {
  color: var(--primary-color-1);
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check input {
  margin-right: 10px;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-container {
  text-align: center;
}

.blog-container h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: var(--light-shade-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  color: var(--primary-color-3);
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq {
  background-color: var(--light-shade-2);
}

.faq-container {
  text-align: center;
}

.faq-container h2 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.accordion {
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-shade-1);
}

.accordion-header i {
  transition: all 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content.active {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: white;
}

.gallery-container {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-shade-1);
  color: white;
  padding: 80px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-info h3 {
  color: white;
  margin-bottom: 20px;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 15px;
  color: var(--primary-color-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 10px 0;
  background-color: var(--light-shade-2);
}

.breadcrumb img {
  height: 30px;
  width: auto;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .services-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-img {
    opacity: 0.3;
    width: 100%;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
  }
  
  .main-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .main-menu ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .services-grid,
  .pricing-grid,
  .features-grid,
  .blog-grid,
  .gallery-grid,
  .coreinfo-grid {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
} 