:root {
  /* Primary Color Palette - 5 main colors */
  --primary-purple: #6c5ce7;
  --primary-orange: #fd79a8;
  --primary-green: #00b894;
  --primary-blue: #0984e3;
  --primary-coral: #e84393;
  
  /* Light shades */
  --light-purple: #a29bfe;
  --light-orange: #fd9cbd;
  --light-green: #55efc4;
  --light-blue: #74b9ff;
  --light-coral: #f8a5c2;
  
  /* Dark shades */
  --dark-purple: #5f3dc4;
  --dark-orange: #e84393;
  --dark-green: #00a085;
  --dark-blue: #0770c7;
  --dark-coral: #d63384;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Conservative font sizing */
  --base-font-size: 16px;
  --small-text: 0.875rem;
  --normal-text: 1rem;
  --large-text: 1.125rem;
  --h6-size: 1rem;
  --h5-size: 1.125rem;
  --h4-size: 1.25rem;
  --h3-size: 1.375rem;
  --h2-size: 1.5rem;
  --h1-size: 1.75rem;
  --navbar-brand-size: 1.25rem;
}

/* Base styles */
* {
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--normal-text);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Typography with conservative sizes */
h1 { 
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 { 
  font-size: var(--h2-size);
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 { 
  font-size: var(--h3-size);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 { 
  font-size: var(--h4-size);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5 { 
  font-size: var(--h5-size);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 { 
  font-size: var(--h6-size);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--normal-text);
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-orange) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue), var(--primary-green));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--h3-size);
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--large-text);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-purple);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--gray);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services-section {
  background: linear-gradient(45deg, var(--light-gray), var(--white));
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card .card-header {
  background: transparent;
  border: none;
  padding: 0 0 1rem 0;
  text-align: center;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.service-name {
  font-size: var(--h4-size);
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: var(--h3-size);
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--dark-gray);
}

.service-features li i {
  color: var(--primary-green);
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--white);
}

.features-section .section-title,
.features-section .section-subtitle,
.features-section .section-desc {
  color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--light-orange);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: var(--h5-size);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-desc {
  opacity: 0.9;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--light-purple), var(--light-blue));
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-purple);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.price-name {
  font-size: var(--h4-size);
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.price-desc {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Team Section */
.team-section {
  background: var(--light-gray);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-purple);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member-name {
  font-size: var(--h5-size);
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--gray);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(45deg, var(--primary-coral), var(--primary-orange));
  color: var(--white);
}

.reviews-section .section-title,
.reviews-section .section-subtitle,
.reviews-section .section-desc {
  color: var(--white);
}

.review-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: var(--large-text);
}

.review-author {
  font-weight: 600;
  text-align: right;
}

/* Case Study Section */
.casestudy-section {
  background: linear-gradient(45deg, var(--primary-green), var(--primary-blue));
  color: var(--white);
}

.casestudy-section .section-title,
.casestudy-section .section-subtitle,
.casestudy-section .section-desc {
  color: var(--white);
}

.casestudy-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

/* Process Section */
.process-section {
  background: var(--light-gray);
}

.process-item {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--h4-size);
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--white);
}

.timeline-item {
  border-left: 3px solid var(--primary-purple);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 15px;
  height: 15px;
  background: var(--primary-orange);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 0;
}

/* Career Section */
.career-section {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-orange));
  color: var(--white);
}

.career-section .section-title,
.career-section .section-subtitle,
.career-section .section-desc {
  color: var(--white);
}

.career-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--light-gray);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
  background: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--h5-size);
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-orange);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--light-gray);
  border: none;
  border-radius: 8px;
  padding: 1rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--primary-purple);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.faq-answer {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: none;
  border-radius: 0 0 8px 8px;
  color: var(--gray);
}

/* Gallery Section */
.gallery-section {
  background: var(--dark-gray);
  padding: 4rem 0;
}

.gallery-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
  color: var(--white);
}

.contact-section .section-title,
.contact-section .section-subtitle,
.contact-section .section-desc {
  color: var(--white);
}

.contact-form {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  background: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-coral));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-gray), var(--black));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.footer p, .footer small {
  color: rgba(255,255,255,0.8);
}

.footer a {
  color: var(--light-orange);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-orange);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
}

.bg-gradient-secondary {
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-coral));
}

/* Contact info styling */
#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.9);
}

/* Site copyright styling */
#site-copyright {
  opacity: 0.7;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Swiper customization */
.swiper-pagination-bullet-active {
  background: var(--primary-orange);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-orange);
}

/* Additional responsive utilities */
.col-lg-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 991.98px) {
  .col-lg-2-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 767.98px) {
  .col-lg-2-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
