:root {
  /* Primary color palette */
  --primary-1: #4e79a7; /* Main brand color */
  --primary-1-light: #7a9bc0;
  --primary-1-dark: #325780;
  
  --primary-2: #e07a5f; /* Accent color */
  --primary-2-light: #e9a08b;
  --primary-2-dark: #c05a3e;
  
  --primary-3: #81b29a; /* Success/positive color */
  --primary-3-light: #a4ccb9;
  --primary-3-dark: #5e9278;
  
  --primary-4: #f2cc8f; /* Warning/highlight color */
  --primary-4-light: #f7dfb6;
  --primary-4-dark: #deb46d;
  
  --primary-5: #3d405b; /* Dark accent */
  --primary-5-light: #5d607c;
  --primary-5-dark: #292b3d;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #dee2e6;
  --dark-gray: #343a40;
  --black: #212529;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-5);
}

/* Section styles */
section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

section:nth-child(even) {
  background-color: var(--light-gray);
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  color: var(--primary-2);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Button styles */
.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

/* Shape decorations */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-1);
  top: -100px;
  left: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background-color: var(--primary-2);
  bottom: -200px;
  right: -200px;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background-color: var(--primary-3);
  top: 30%;
  right: 10%;
}

/* Card styles */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background-color: var(--primary-5-light);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 2rem 0;
}

.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--primary-4);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-desc {
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Services */
.service-card {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  object-fit: cover;
  position: relative;
}

.service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-price {
  background-color: var(--primary-3);
  color: var(--white);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-features {
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-3);
}

/* Team section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-name {
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-2);
  font-style: italic;
}

/* Testimonials */
.testimonial-item {
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.testimonial-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-2);
  opacity: 0.3;
  font-size: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  display: block;
}

/* Contact form */
.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--medium-gray);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.form-check {
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--primary-5);
  color: var(--white);
  padding: 3rem 0 1rem;
}

footer p {
  color: var(--medium-gray);
}

footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

footer small {
  display: block;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* FAQ section */
.accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  background-color: var(--white);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--primary-5);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 1.25rem;
  background-color: var(--white);
}

/* Gallery */
.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Blog section */
.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

/* Core info section */
.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

.core-info-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.core-info-desc {
  margin-bottom: 2rem;
}

/* Price plans */
.price-plan {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.price-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-plan.featured {
  border: 2px solid var(--primary-1);
}

.price-plan.featured::before {
  content: 'Popular';
  position: absolute;
  top: 0;
  right: 2rem;
  background-color: var(--primary-1);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
}

.price-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-5);
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Features section */
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

.feature-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 1rem 0;
  background-color: var(--light-gray);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeIn 0.5s ease-in;
  }
  
  .slide-in-left {
    animation: slideInLeft 0.5s ease-in;
  }
  
  .slide-in-right {
    animation: slideInRight 0.5s ease-in;
  }
  
  .zoom-in {
    animation: zoomIn 0.5s ease-in;
  }
  
  @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 zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
}

/* Disable animations on mobile */
@media (max-width: 767.98px) {
  @media (prefers-reduced-motion: no-preference) {
    .fade-in, .slide-in-left, .slide-in-right, .zoom-in {
      animation: none;
    }
  }
} 