:root {
  /* Primary Colors */
  --primary-1: #4a6d8c; /* Rich Blue */
  --primary-2: #d1a77e; /* Warm Beige */
  --primary-3: #5a8270; /* Sage Green */
  --primary-4: #c67d7b; /* Dusty Rose */
  --primary-5: #514b64; /* Muted Purple */
  
  /* Light/Dark Shades */
  --primary-1-light: #6b8eaa;
  --primary-1-dark: #395470;
  --primary-2-light: #e3c4a1;
  --primary-2-dark: #b08a60;
  --primary-3-light: #7aa08f;
  --primary-3-dark: #476553;
  --primary-4-light: #daa3a1;
  --primary-4-dark: #a45d5b;
  --primary-5-light: #726b84;
  --primary-5-dark: #373246;
  
  /* Neutrals */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-800);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-outline-primary {
  border-color: var(--primary-1);
  color: var(--primary-1);
}

.btn-outline-primary:hover {
  background-color: var(--primary-1);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--primary-2);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}

header.sticky {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 0;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-1-light);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-1);
}

/* Services Section */
.services-section {
  background-color: var(--neutral-200);
  position: relative;
}

.service-item {
  padding: 2.5rem;
  border-radius: 15px;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-item-icon i {
  font-size: 2rem;
  color: var(--neutral-100);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

.service-features {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-3);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-4);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-200);
}

.price-card {
  padding: 3rem 2rem;
  border-radius: 15px;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary-2);
}

.price-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-2-light);
  opacity: 0.3;
  z-index: 0;
}

.price-card-popular {
  position: absolute;
  top: 0;
  right: 2rem;
  background-color: var(--primary-2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 20px 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-card-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-5);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.price-card-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.price-card-features {
  margin: 2rem 0;
  padding-left: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.price-card-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-card-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-3);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member-img {
  position: relative;
  overflow: hidden;
}

.team-member-img img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.team-member:hover .team-member-img img {
  transform: scale(1.1);
}

.team-member-info {
  padding: 1.5rem;
  background-color: var(--neutral-100);
  text-align: center;
}

.team-member-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.team-member-role {
  color: var(--primary-4);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.review-item {
  background-color: var(--neutral-100);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.review-item::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 2rem;
  color: var(--primary-2-light);
  opacity: 0.3;
  z-index: -1;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-5);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--primary-1-light);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
}

.coreinfo-item-title {
  color: var(--neutral-100);
  font-weight: 600;
  margin-bottom: 1rem;
}

.coreinfo-item-desc {
  color: var(--neutral-200);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-200);
}

.contact-form {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--neutral-300);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  position: relative;
  overflow: hidden;
}

.blog-item-img img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 1.5rem;
  background-color: var(--neutral-100);
}

.blog-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-item-excerpt {
  margin-bottom: 1.5rem;
}

.blog-item-link {
  font-weight: 500;
  color: var(--primary-1);
  transition: all 0.3s ease;
}

.blog-item-link:hover {
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--neutral-200);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  background-color: transparent;
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  background-color: var(--neutral-100);
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1-light);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a6d8c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1rem 1.5rem;
  background-color: var(--neutral-100);
  border-radius: 0 0 10px 10px;
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-5-dark);
  color: var(--neutral-300);
  padding: 4rem 0 0;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-heading {
  color: var(--neutral-100);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-item i {
  margin-right: 1rem;
  color: var(--primary-2);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-2);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
} 