:root {
  /* Primary Colors */
  --primary-1: #2A628F; /* Deep Blue */
  --primary-2: #E16F62; /* Coral */
  --primary-3: #FACB60; /* Golden */
  --primary-4: #51A3A3; /* Teal */
  --primary-5: #564256; /* Plum */
  
  /* Light and Dark Shades */
  --primary-1-light: #4C87B0;
  --primary-1-dark: #1A4266;
  --primary-2-light: #F08E84;
  --primary-2-dark: #C34E42;
  --primary-3-light: #FFDF8C;
  --primary-3-dark: #D1A639;
  --primary-4-light: #78C4C4;
  --primary-4-dark: #387979;
  --primary-5-light: #785C78;
  --primary-5-dark: #3D2F3D;
  
  /* Neutral Colors */
  --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 */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.btn {
  transition: all 0.3s ease;
  border-radius: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: var(--neutral-100);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--neutral-100);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 2.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-2);
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  top: 0;
  right: 0;
}

.shape-2 {
  bottom: 0;
  left: 0;
}

/* Header */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-1);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  color: var(--neutral-800);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-1);
}

.navbar-nav .nav-link.active {
  color: var(--primary-1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--neutral-100);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* About Section */
.about {
  background-color: var(--neutral-100);
}

.about-feature {
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-2);
}

/* Services Section */
.services {
  background-color: var(--neutral-200);
}

.service-card {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--primary-3);
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  background-color: var(--neutral-100);
}

.feature-item {
  display: flex;
  margin-bottom: 2rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-3-dark);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--neutral-200);
}

.price-card {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-2);
}

.price-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 0;
  right: 2rem;
  background-color: var(--primary-2);
  color: var(--neutral-100);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
  border-radius: 0 0 0.5rem 0.5rem;
}

.price-header {
  padding: 2rem;
  text-align: center;
  background-color: var(--primary-1-light);
  color: var(--neutral-100);
}

.price-header h3 {
  color: var(--neutral-100);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.875rem;
  opacity: 0.8;
}

.price-body {
  padding: 2rem;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--primary-3);
  margin-right: 0.5rem;
}

/* Team Section */
.team {
  background-color: var(--neutral-100);
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background-color: var(--neutral-100);
}

.team-name {
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-2);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: 0.5rem;
  margin: 1rem 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text::before {
  content: """;
  position: absolute;
  left: -0.5rem;
  top: -1rem;
  font-size: 5rem;
  color: var(--primary-3);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Core Info Section */
.coreinfo {
  background-color: var(--neutral-100);
}

.coreinfo-item {
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  background-color: var(--neutral-200);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-4);
}

/* Contact Form Section */
.contact {
  background-color: var(--neutral-200);
  position: relative;
}

.contact-form {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--neutral-400);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.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 {
  background-color: var(--neutral-100);
}

.blog-card {
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--neutral-100);
  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 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  background-color: var(--neutral-200);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
  font-weight: 600;
  box-shadow: none;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: var(--neutral-100);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.accordion-body {
  background-color: var(--neutral-100);
  padding: 1.25rem;
}

/* Gallery Section */
.gallery {
  background-color: var(--neutral-100);
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-title {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-2);
  text-decoration: none;
}

.footer-contact {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--primary-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

small {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Utilities */
.bg-light {
  background-color: var(--neutral-200) !important;
}

.text-primary {
  color: var(--primary-1) !important;
}

.text-secondary {
  color: var(--primary-2) !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
} 