:root {
  /* Color Palette */
  --primary-color-1: #4A6FDC; /* Primary Blue */
  --primary-color-2: #FF6B6B; /* Coral Red */
  --primary-color-3: #29B474; /* Green */
  --primary-color-4: #FFC65C; /* Amber */
  --primary-color-5: #8A56AC; /* Purple */
  
  /* Shades and Tints */
  --primary-color-1-light: #7992E5;
  --primary-color-1-dark: #2A4EBA;
  --primary-color-2-light: #FF9999;
  --primary-color-2-dark: #D84848;
  --primary-color-3-light: #53D498;
  --primary-color-3-dark: #1A8B54;
  --primary-color-4-light: #FFD688;
  --primary-color-4-dark: #D9A33D;
  --primary-color-5-light: #A778C3;
  --primary-color-5-dark: #6B3F89;
  
  /* Neutral Colors */
  --neutral-100: #FFFFFF;
  --neutral-200: #F8F9FA;
  --neutral-300: #E9ECEF;
  --neutral-400: #DEE2E6;
  --neutral-500: #CED4DA;
  --neutral-600: #6C757D;
  --neutral-700: #495057;
  --neutral-800: #343A40;
  --neutral-900: #212529;
}

/* Base Elements */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Utility Classes */
.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--neutral-200);
}

.text-primary {
  color: var(--primary-color-1) !important;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
}

/* Header */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--neutral-200);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(74, 111, 220, 0.7), rgba(138, 86, 172, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

/* Services Section */
.services-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  background-color: var(--neutral-100);
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.services-item-header {
  padding: 20px;
  background-color: var(--primary-color-1);
  color: var(--neutral-100);
}

.services-item-body {
  padding: 30px 20px;
}

.services-item-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.services-item-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-300);
}

.services-item-features li:last-child {
  border-bottom: none;
}

.services-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Features Section */
.features-item {
  padding: 30px;
  text-align: center;
  background-color: var(--neutral-100);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.features-item:hover {
  transform: translateY(-10px);
}

.features-item i {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 12px;
  background-color: var(--neutral-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.priceplan-item:hover {
  transform: translateY(-15px);
}

.priceplan-item-popular {
  position: absolute;
  top: 30px;
  right: -30px;
  background-color: var(--primary-color-2);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: 500;
  font-size: 0.75rem;
  z-index: 1;
}

.priceplan-item-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--neutral-800);
}

.priceplan-item-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.priceplan-item-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-300);
}

.priceplan-item-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-member-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-color-3);
  font-weight: 500;
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews-slider {
  padding: 30px 0;
}

.reviews-item {
  text-align: center;
  padding: 30px;
  background-color: var(--neutral-100);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 20px 15px;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.reviews-item-text:before,
.reviews-item-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color-4);
  position: absolute;
}

.reviews-item-text:before {
  top: -10px;
  left: -10px;
}

.reviews-item-text:after {
  bottom: -30px;
  right: -10px;
}

.reviews-item-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-item {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: var(--neutral-200);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  background-color: var(--primary-color-1);
  color: var(--neutral-100);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.coreinfo-item:hover i {
  color: var(--neutral-100);
}

.coreinfo-item-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.coreinfo-item:hover .coreinfo-item-title {
  color: var(--neutral-100);
}

/* Contact Section */
.contact-form {
  background-color: var(--neutral-100);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  padding: 12px 15px;
  border: 1px solid var(--neutral-400);
  border-radius: 6px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.25rem rgba(74, 111, 220, 0.25);
}

/* Blog Section */
#blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  background-color: var(--neutral-100);
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 20px;
}

.blog-item-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.blog-item-excerpt {
  margin-bottom: 20px;
  color: var(--neutral-700);
}

.blog-item-link {
  color: var(--primary-color-1);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-item-link:hover {
  color: var(--primary-color-1-dark);
}

/* FAQ Section */
.faq-accordion {
  margin-bottom: 50px;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: none;
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: var(--neutral-200);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: var(--neutral-200);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--neutral-300);
}

.accordion-body {
  padding: 20px;
  background-color: var(--neutral-100);
}

/* Gallery Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.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(--neutral-800);
  color: var(--neutral-300);
  padding: 60px 0 20px;
}

footer h5 {
  color: var(--neutral-100);
  margin-bottom: 25px;
  font-size: 1.25rem;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-color-1);
}

#site-copyright {
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid var(--neutral-700);
  text-align: center;
  font-size: 0.875rem;
} 