:root {
  /* Primary colors */
  --primary-color-1: #4A6DA7; /* Deep blue */
  --primary-color-2: #E8505B; /* Coral red */
  --primary-color-3: #53B0AE; /* Teal */
  --primary-color-4: #F2C14E; /* Warm yellow */
  --primary-color-5: #5E4B8B; /* Purple */
  
  /* Light and dark shades */
  --primary-color-1-light: #7893C2;
  --primary-color-1-dark: #345286;
  --primary-color-2-light: #EF7F87;
  --primary-color-2-dark: #C23845;
  --primary-color-3-light: #7FC5C3;
  --primary-color-3-dark: #3A8F8D;
  --primary-color-4-light: #F7D67F;
  --primary-color-4-dark: #DBA82C;
  --primary-color-5-light: #7F6CA7;
  --primary-color-5-dark: #43346A;
  
  /* 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;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Section spacing */
section {
  padding: 5rem 0;
}

/* Container tweaks */
.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

/* Header Styling */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  color: var(--neutral-700);
}

.nav-link:hover {
  color: var(--primary-color-2);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-color-1-light);
  opacity: 0.1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* About Section */
#about {
  background-color: var(--neutral-100);
}

.about-feature {
  background-color: var(--neutral-200);
  padding: 2rem;
  border-radius: 8px;
  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-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

/* Services Section */
#services {
  background-color: var(--neutral-200);
}

.service-card {
  background-color: var(--neutral-100);
  border-radius: 8px;
  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(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
}

.service-features li::before {
  content: '✓';
  color: var(--primary-color-3);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* Features Section */
#features {
  background-color: var(--neutral-100);
}

.feature-item {
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.feature-item:hover {
  background-color: var(--neutral-200);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color-4);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--neutral-200);
}

.price-card {
  background-color: var(--neutral-100);
  border-radius: 8px;
  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(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card-popular {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color-2);
  color: white;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 8px;
  font-weight: 500;
}

.price-card-body {
  padding: 2rem;
  text-align: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1rem 0;
}

.price-period {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral-600);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

/* Team Section */
#team {
  background-color: var(--neutral-100);
}

.team-member {
  background-color: var(--neutral-200);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color-3);
  font-weight: 500;
}

/* Reviews Section */
#reviews {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.review-item {
  background-color: var(--neutral-100);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-author {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.review-author-name {
  font-weight: 600;
  margin-bottom: 0;
}

.review-text {
  font-style: italic;
  color: var(--neutral-700);
}

/* Core Info Section */
#coreinfo {
  background-color: var(--neutral-100);
}

.coreinfo-item {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--neutral-200);
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color-5);
}

/* Contact Form Section */
#contact {
  background-color: var(--neutral-200);
}

.contact-form {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 4px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-400);
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.2rem rgba(74, 109, 167, 0.25);
}

.btn-submit {
  background-color: var(--primary-color-2);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: var(--primary-color-2-dark);
}

/* Blog Section */
#blog {
  background-color: var(--neutral-100);
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  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;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding:
  1.5rem;
  background-color: var(--neutral-100);
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

.blog-link {
  font-weight: 500;
  color: var(--primary-color-1);
  text-decoration: none;
}

/* FAQ Section */
#faq {
  background-color: var(--neutral-200);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--neutral-100);
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-body {
  background-color: var(--neutral-200);
  padding: 1.5rem;
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-item.active .accordion-header .accordion-icon {
  transform: rotate(180deg);
}

/* Gallery Section */
#gallery {
  background-color: var(--neutral-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  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;
}

#sitename-footer {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-100);
}

#sitedesc {
  margin-bottom: 2rem;
}

.footer-links h4 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-2);
}

#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 0.75rem;
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--neutral-700);
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* Utilities */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-2);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--neutral-600);
}

.bg-shape {
  position: absolute;
  z-index: 0;
}

.bg-shape-1 {
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-1);
  opacity: 0.05;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.bg-shape-2 {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color-3);
  opacity: 0.05;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  animation: slideInRight 1s ease forwards;
}

.slide-in-up {
  animation: slideInUp 1s ease forwards;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Additional Page Styles */
.page-header {
  background-color: var(--primary-color-1);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.page-title {
  position: relative;
  color: var(--neutral-100);
  text-align: center;
}

.additional-section {
  padding: 5rem 0;
}

.additional-section:nth-child(odd) {
  background-color: var(--neutral-200);
}

.additional-section:nth-child(even) {
  background-color: var(--neutral-100);
}

/* Breadcrumb styles */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: inline-block;
}

.breadcrumb-item a {
  color: var(--neutral-600);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--primary-color-1);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: var(--neutral-500);
} 