:root {
  /* Primary colors with light/dark shades */
  --primary-color-1: #4A6FA5; /* Deep blue */
  --primary-color-1-light: #7B92BD;
  --primary-color-1-dark: #345183;
  
  --primary-color-2: #5EAE8F; /* Teal */
  --primary-color-2-light: #8CCBB3;
  --primary-color-2-dark: #3F8E70;
  
  --primary-color-3: #E5A556; /* Amber */
  --primary-color-3-light: #F0C288;
  --primary-color-3-dark: #C98A37;
  
  --primary-color-4: #D05D5D; /* Coral */
  --primary-color-4-light: #E08B8B;
  --primary-color-4-dark: #B13E3E;
  
  --primary-color-5: #8B6DAB; /* Lavender */
  --primary-color-5-light: #AB95C4;
  --primary-color-5-dark: #6D5189;
  
  /* Neutrals */
  --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;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--neutral-800);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.6;
}

.bg-primary-1 {
  background-color: var(--primary-color-1);
}

.bg-primary-2 {
  background-color: var(--primary-color-2);
}

.bg-primary-3 {
  background-color: var(--primary-color-3);
}

.bg-primary-4 {
  background-color: var(--primary-color-4);
}

.bg-primary-5 {
  background-color: var(--primary-color-5);
}

.text-primary-1 {
  color: var(--primary-color-1);
}

.text-primary-2 {
  color: var(--primary-color-2);
}

.text-primary-3 {
  color: var(--primary-color-3);
}

.text-primary-4 {
  color: var(--primary-color-4);
}

.text-primary-5 {
  color: var(--primary-color-5);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--neutral-600);
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Services */
.service-card {
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Team */
.team-member {
  margin-bottom: 2rem;
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Reviews/Testimonials */
.review-card {
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.swiper-container {
  padding: 1rem 0 3rem 0;
}

/* Contact Form */
.contact-form {
  background-color: var(--neutral-200);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Blog */
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  height: 100%;
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ */
.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1-light);
  color: var(--neutral-800);
}

/* Footer */
footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 4rem 0 2rem;
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-100);
}

/* Shapes & Decorations */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.shape-divider .shape-fill {
  fill: var(--neutral-100);
}

/* Buttons */
.btn-primary-1 {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: white;
}

.btn-primary-1:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
  color: white;
}

.btn-outline-primary-1 {
  color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.btn-outline-primary-1:hover {
  background-color: var(--primary-color-1);
  color: white;
} 