:root {
  /* Color Palette */
  --primary-color: #6a4c93;
  --primary-light: #9277b0;
  --primary-dark: #4a2c73;
  --secondary-color: #f8961e;
  --secondary-light: #ffa94d;
  --secondary-dark: #c66700;
  --accent-color: #1982c4;
  --accent-light: #4ba3e2;
  --accent-dark: #0b5e96;
  --neutral-color: #f2f5f7;
  --neutral-dark: #e0e5e9;
  --dark-color: #343a40;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
  background-color: var(--neutral-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

section {
  padding: 80px 0;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  position: relative;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-link:hover:before, .nav-link.active:before {
  visibility: visible;
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section .shape {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
  background: white;
}

.hero-section .shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
}

.hero-section .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
}

/* About Section */
.about-section {
  background-color: white;
}

.about-feature {
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--neutral-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: var(--neutral-color);
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .card-img {
  height: 200px;
  overflow: hidden;
}

.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.1);
}

.service-card .card-body {
  padding: 25px;
}

.service-price {
  background-color: var(--secondary-color);
  color: white;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
}

.service-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.service-features li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-features li:before {
  content: '✓';
  color: var(--primary-color);
  margin-right: 10px;
  font-weight: bold;
}

/* Features Section */
.features-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.features-section .shape {
  position: absolute;
  background-color: var(--primary-light);
  opacity: 0.05;
  z-index: 0;
}

.features-section .shape-1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: -250px;
  left: -250px;
}

.features-section .shape-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  bottom: -200px;
  right: -200px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Price Plan Section */
.price-plan-section {
  background-color: var(--neutral-color);
}

.price-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--secondary-color);
}

.price-card.featured:before {
  content: 'Popular';
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  border-bottom-left-radius: 10px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.price-features {
  list-style-type: none;
  padding-left: 0;
  margin: 25px 0;
  text-align: left;
}

.price-features li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.price-features li:before {
  content: '✓';
  color: var(--primary-color);
  margin-right: 10px;
  font-weight: bold;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.team-card img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  transition: all 0.3s ease;
}

.team-card:hover .team-info {
  bottom: 0;
}

.team-name {
  margin-bottom: 5px;
  font-weight: 600;
}

.team-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--neutral-color);
  position: relative;
  overflow: hidden;
}

.swiper-container {
  padding: 30px 0;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  margin: 20px 0;
}

.review-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.review-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Core Info Section */
.core-info-section {
  background-color: white;
}

.core-info-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--neutral-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-color);
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: none;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: var(--neutral-color);
}

textarea.form-control {
  min-height: 120px;
}

.form-check {
  margin: 20px 0;
}

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  background-color: white;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  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: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
  color: #6c757d;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.blog-link:after {
  content: '→';
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover:after {
  margin-left: 10px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--neutral-color);
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: white;
  font-weight: 600;
  padding: 20px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a4c93'%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: 20px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: white;
  padding-bottom: 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  grid-gap: 10px;
  margin-bottom: 80px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:nth-child(4n-2) {
  grid-column: span 2;
}

.gallery-item:nth-child(5n) {
  grid-row: span 2;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--secondary-color);
}

.footer-title {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.footer-policies {
  margin-bottom: 30px;
}

.footer-policy-links {
  list-style-type: none;
  padding-left: 0;
}

.footer-policy-links li {
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 30px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--neutral-color);
  padding: 150px 0 30px;
}

.breadcrumb-section .breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

/* Additional Pages */
.additional-page-section {
  padding: 80px 0;
}

.additional-page-section:nth-child(odd) {
  background-color: white;
}

.additional-page-section:nth-child(even) {
  background-color: var(--neutral-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* Utility classes */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
} 