:root {
  /* Primary Color Palette */
  --primary-1: #216869; /* Teal green */
  --primary-1-light: #5ababb;
  --primary-1-dark: #134344;
  
  --primary-2: #9c5e7f; /* Muted purple */
  --primary-2-light: #c084a6;
  --primary-2-dark: #7a4562;
  
  --primary-3: #f2a365; /* Peach/orange */
  --primary-3-light: #ffc59c;
  --primary-3-dark: #cc7b3f;
  
  --primary-4: #ebebd3; /* Soft cream */
  --primary-4-light: #f5f5e8;
  --primary-4-dark: #d6d6b7;
  
  --primary-5: #49516f; /* Slate blue */
  --primary-5-light: #7a83a8;
  --primary-5-dark: #303651;
  
  /* Text Colors */
  --text-dark: #222831;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
  
  /* Utility Colors */
  --bg-light: #f8f9fa;
  --bg-dark: #1e2022;
  --border-color: #dee2e6;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

/* General Element Styling */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

/* Button Styles */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.btn-primary {
  background-color: var(--primary-1);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--primary-3);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-3-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
header {
  padding: 1rem 0;
  background-color: var(--bg-light);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0.75rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-4-light);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../PRO_images/pattern.webp') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-1-dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--primary-5);
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  bottom: -5%;
  right: -5%;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  opacity: 0.2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  top: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background-color: var(--primary-2-light);
  opacity: 0.15;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* About Section */
.about-section {
  padding: 7rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-5);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-3);
  margin-bottom: 2rem;
  font-weight: 500;
}

.section-desc {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-5-dark);
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Services Section */
.services-section {
  padding: 7rem 0;
  background-color: var(--primary-4-light);
  position: relative;
}

.service-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-1-dark);
}

.service-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  padding: 7rem 0;
  background-color: #fff;
}

.features-item {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.features-item:hover {
  background-color: var(--primary-4-light);
}

.features-icon {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

.features-item-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-5);
}

.features-item-desc {
  color: var(--text-muted);
}

/* Price Plan Section */
.priceplan-section {
  padding: 7rem 0;
  background-color: var(--primary-4-light);
}

.pricing-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  padding: 2rem;
  background-color: var(--primary-1);
  color: var(--text-light);
  text-align: center;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-desc {
  font-size: 1rem;
}

.pricing-features {
  padding: 2rem;
  list-style-type: none;
}

.pricing-features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-1);
  font-weight: bold;
}

.pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

/* Team Section */
.team-section {
  padding: 7rem 0;
  background-color: #fff;
}

.team-card {
  background-color: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-5);
}

.team-role {
  color: var(--primary-3);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  padding: 7rem 0;
  background-color: var(--primary-4-light);
  position: relative;
}

.swiper {
  width: 100%;
  padding-bottom: 50px;
}

.review-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  position: relative;
  padding-top: 2rem;
}

.review-text:before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: var(--primary-3-light);
  opacity: 0.3;
  line-height: 1;
}

.review-author {
  font-weight: 600;
  color: var(--primary-5);
  font-size: 1.1rem;
}

/* Core Info Section */
.coreinfo-section {
  padding: 7rem 0;
  background-color: #fff;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.coreinfo-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-5);
}

.coreinfo-desc {
  color: var(--text-muted);
}

/* Contact Section */
.contact-section {
  padding: 7rem 0;
  background-color: var(--primary-1-light);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../PRO_images/pattern.webp') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.contact-form-container {
  background-color: #fff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(33, 104, 105, 0.25);
}

.form-check {
  margin-top: 1.5rem;
}

.form-select {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.form-select:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(33, 104, 105, 0.25);
}

/* Blog Section */
.blog-section {
  padding: 7rem 0;
  background-color: var(--bg-light);
}

.blog-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-5);
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.blog-link {
  margin-top: auto;
  color: var(--primary-1);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
  padding: 7rem 0;
  background-color: #fff;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  color: var(--primary-5);
  background-color: var(--bg-light);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: var(--primary-4-light);
  box-shadow: none;
}

.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='%23216869'%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23216869'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 1.25rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background-color: var(--primary-5-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-3-light);
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary-3-light);
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--primary-3-light);
}

.footer-disclaimer {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 2rem;
}

.copyright {
  background-color: var(--primary-5-dark);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright-text {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 0;
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-1);
  padding: 8rem 0 4rem;
  color: var(--text-light);
  margin-bottom: 4rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}

.breadcrumb-item, .breadcrumb-item a {
  color: var(--text-light);
  opacity: 0.9;
}

.breadcrumb-item.active {
  color: var(--primary-3-light);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-1) !important;
}

.bg-primary {
  background-color: var(--primary-1) !important;
}

.text-secondary {
  color: var(--primary-3) !important;
}

.bg-secondary {
  background-color: var(--primary-3) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.rounded-custom {
  border-radius: 16px;
}

.shadow-custom {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.section-padding {
  padding: 7rem 0;
} 