:root {
  --primary-color-1: #4A6D7C; /* Teal blue */
  --primary-color-2: #F1A952; /* Amber */
  --primary-color-3: #6A8D73; /* Sage green */
  --primary-color-4: #D65780; /* Raspberry */
  --primary-color-5: #8E6C88; /* Mauve */
  
  --light-1: #E8F0F2;
  --light-2: #FCF4E8;
  --light-3: #EEF2EF;
  --light-4: #FADCE7;
  --light-5: #F1EAF0;
  
  --dark-1: #2A3D45;
  --dark-2: #8F5F28;
  --dark-3: #3A4D3F;
  --dark-4: #9A2849;
  --dark-5: #5E3C58;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  margin-bottom: 15px;
  color: var(--dark-1);
  font-weight: 700;
}

.section-subtitle {
  margin-bottom: 25px;
  color: var(--primary-color-1);
  font-weight: 500;
}

.section-desc {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Styles */
.site-header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled {
  padding: 10px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav ul {
  display: flex;
  gap: 25px;
}

.site-nav ul li a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.site-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: width 0.3s ease;
}

.site-nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-1);
  position: relative;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-1);
}

.hero-subtitle-1 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--primary-color-1);
}

.hero-desc-1 {
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-shape {
  position: absolute;
  z-index: 1;
}

.hero-shape-1 {
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background-color: var(--light-2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-shape-2 {
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background-color: var(--light-3);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  background-color: var(--light-1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-name {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-1);
}

/* Services Section */
.services-section {
  background-color: var(--light-3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item-image {
  height: 200px;
  overflow: hidden;
}

.service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-item-image img {
  transform: scale(1.1);
}

.service-item-content {
  padding: 25px;
}

.service-item-name {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-1);
}

.service-item-price {
  font-weight: 700;
  color: var(--primary-color-2);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.service-item-features {
  margin-top: 20px;
}

.service-item-features li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-item-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background-color: var(--light-1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

.feature-item-name {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-1);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-5);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.priceplan-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  padding: 40px 30px;
  text-align: center;
  position: relative;
}

.priceplan-item:hover {
  transform: translateY(-10px);
}

.priceplan-item-name {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-1);
}

.priceplan-item-price {
  font-weight: 700;
  color: var(--primary-color-4);
  margin-bottom: 25px;
  font-size: 2rem;
}

.priceplan-item-features {
  margin: 30px 0;
  text-align: left;
}

.priceplan-item-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.priceplan-item-features li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--light-1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member-image {
  height: 250px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  padding: 20px;
  text-align: center;
}

.team-member-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-1);
}

.team-member-role {
  color: var(--primary-color-5);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-2);
  position: relative;
}

.reviews-swiper {
  padding: 40px 20px;
}

.review-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.review-item-text {
  margin-bottom: 20px;
  font-style: italic;
}

.review-item-author {
  font-weight: 600;
  color: var(--dark-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.coreinfo-item {
  padding: 30px;
  border-radius: 15px;
  background-color: var(--light-3);
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-1);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-4);
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  outline: none;
}

.form-check {
  margin-bottom: 25px;
}

.btn-submit {
  background-color: var(--primary-color-1);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--dark-1);
}

/* Blog Section */
.blog-section {
  background-color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-item {
  background-color: var(--light-1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item-image {
  height: 200px;
  overflow: hidden;
}

.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-image img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 25px;
}

.blog-item-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-1);
}

.blog-item-excerpt {
  margin-bottom: 20px;
}

.blog-item-link {
  color: var(--primary-color-1);
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.blog-item-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: width 0.3s ease;
}

.blog-item-link:hover::after {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-5);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.accordion-header {
  padding: 15px 20px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--light-1);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-icon.active {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
  padding: 20px;
  max-height: 1000px;
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.site-footer {
  background-color: var(--dark-1);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 30px;
  max-width: 300px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color-2);
}

.footer-contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact-icon {
  margin-right: 15px;
  font-size: 1.2rem;
  color: var(--primary-color-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

#site-copyright {
  color: rgba(255, 255, 255, 0.7);
}

/* Additional Pages */
.page-header {
  padding: 150px 0 80px;
  background-color: var(--light-1);
  text-align: center;
}

.page-title {
  font-weight: 700;
  color: var(--dark-1);
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-title-1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .hero-shape-1, .hero-shape-2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
} 