:root {
  /* Primary color palette */
  --primary-color-1: #3a86ff; /* Blue */
  --primary-color-2: #8d56c5; /* Purple */
  --primary-color-3: #f07167; /* Coral */
  --primary-color-4: #00b4d8; /* Teal */
  --primary-color-5: #43aa8b; /* Green */
  
  /* Light and dark shades */
  --primary-color-1-light: #70a9ff;
  --primary-color-1-dark: #1a66df;
  --primary-color-2-light: #b184e0;
  --primary-color-2-dark: #6c3aa3;
  --primary-color-3-light: #f5a49e;
  --primary-color-3-dark: #d64339;
  --primary-color-4-light: #5cd7f5;
  --primary-color-4-dark: #0089a7;
  --primary-color-5-light: #6ec5ab;
  --primary-color-5-dark: #2d8b6f;
  
  /* Neutrals */
  --neutral-100: #ffffff;
  --neutral-200: #f7f9fc;
  --neutral-300: #edf2f7;
  --neutral-400: #e2e8f0;
  --neutral-500: #cbd5e0;
  --neutral-600: #a0aec0;
  --neutral-700: #718096;
  --neutral-800: #4a5568;
  --neutral-900: #2d3748;
  --neutral-1000: #1a202c;
}

/* Base styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-900);
  line-height: 1.6;
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--neutral-1000);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  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);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
}

/* Section styles */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.section-subtitle {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--neutral-700);
}

.section-desc {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header & Navigation */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 600;
  color: var(--neutral-800);
  margin: 0 0.5rem;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color-1);
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-color-1-light);
  opacity: 0.1;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-title-1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary-color-1), var(--primary-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--neutral-700);
}

.hero-desc-1 {
  margin-bottom: 2.5rem;
}

/* About section */
.about {
  background-color: var(--neutral-100);
}

.about-feature {
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--neutral-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-feature-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

/* Services section */
.services {
  background-color: var(--neutral-200);
}

.service-item {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-item-header {
  background-color: var(--primary-color-1);
  color: var(--neutral-100);
  padding: 2rem;
}

.service-item-body {
  padding: 2rem;
}

.service-item-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-item-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-item-feature {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.service-item-feature i {
  color: var(--primary-color-1);
  margin-right: 0.5rem;
}

/* Features section */
.features {
  background: linear-gradient(135deg, var(--primary-color-1-light), var(--primary-color-4-light));
  color: var(--neutral-100);
}

.features .section-title,
.features .section-subtitle {
  color: var(--neutral-100);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Price Plans */
.priceplan {
  background-color: var(--neutral-100);
}

.price-item {
  background-color: var(--neutral-200);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.price-item-header {
  background-color: var(--primary-color-1);
  color: var(--neutral-100);
  padding: 2rem;
  text-align: center;
}

.price-item-body {
  padding: 2rem;
}

.price-item-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-item-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price-item-feature {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.price-item-feature i {
  color: var(--primary-color-1);
  margin-right: 0.5rem;
}

/* Team section */
.team {
  background-color: var(--neutral-200);
}

.team-member {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px 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;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--neutral-700);
  font-size: 1rem;
}

/* Reviews section */
.reviews {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.reviews-bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--primary-color-3-light);
  opacity: 0.05;
  clip-path: polygon(0 50%, 100% 20%, 100% 100%, 0% 100%);
}

.review-item {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.review-item-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-item-text:before,
.review-item-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color-1-light);
  position: absolute;
}

.review-item-text:before {
  top: -1rem;
  left: -0.5rem;
}

.review-item-text:after {
  bottom: -2rem;
  right: -0.5rem;
}

.review-item-author {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.review-item-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

/* Core info section */
.coreinfo {
  background: linear-gradient(135deg, var(--primary-color-2-light), var(--primary-color-3-light));
  color: var(--neutral-100);
}

.coreinfo .section-title,
.coreinfo .section-subtitle {
  color: var(--neutral-100);
}

.coreinfo-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-100);
}

.coreinfo-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-100);
}

/* Contact section */
.contact {
  background-color: var(--neutral-200);
}

.contact-form {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--neutral-400);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

/* Blog section */
.blog {
  background-color: var(--neutral-100);
}

.blog-item {
  background-color: var(--neutral-200);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-item-excerpt {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

/* FAQ section */
.faq {
  background-color: var(--neutral-200);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--neutral-100);
  font-weight: 600;
  padding: 1.25rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: var(--neutral-200);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(58, 134, 255, 0.25);
}

.accordion-body {
  padding: 1.25rem;
  background-color: var(--neutral-200);
}

/* Gallery section */
.gallery {
  background-color: var(--neutral-100);
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--neutral-900);
  color: var(--neutral-300);
  padding: 4rem 0 1rem;
}

footer h5 {
  color: var(--neutral-100);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: var(--neutral-400);
}

footer a:hover {
  color: var(--primary-color-1-light);
}

#site-copyright {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--neutral-800);
  text-align: center;
  color: var(--neutral-600);
} 