:root {
  /* Color Palette - Pastel Legal Theme */
  --primary-color: #8c7aa9; /* Primary Purple - main accent */
  --secondary-color: #c8a2c8; /* Lavender - secondary accent */
  --tertiary-color: #e5c1c5; /* Rose - highlights */
  --accent-color: #bcd8bf; /* Sage - accents */
  --neutral-color: #f5e6e8; /* Pale Pink - backgrounds */
  
  /* Light/Dark Shades */
  --primary-light: #a498bd;
  --primary-dark: #665980;
  --secondary-light: #d8bfd8;
  --secondary-dark: #9a7d9a;
  --tertiary-light: #f0d4d7;
  --tertiary-dark: #c9a1a7;
  --accent-light: #d0e6d2;
  --accent-dark: #94b097;
  --neutral-light: #faf2f3;
  --neutral-dark: #d9c6c8;
  
  /* Font Sizes */
  --font-size-base: 16px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-small: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}

/* Basic Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

p {
  margin-bottom: var(--spacing-sm);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: var(--spacing-lg) 0;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

/* Header & Navigation */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav-link {
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 var(--spacing-xs);
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 76px;
}

.hero-slider .swiper-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--spacing-md);
  color: #fff;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1.2s ease;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1.4s ease;
}

/* About Section */
.about-section {
  background-color: var(--neutral-light);
  position: relative;
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.about-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--secondary-dark);
}

.about-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.feature-card {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.feature-name {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.feature-desc {
  color: #666;
}

/* Services Section */
.services-section {
  background-color: #fff;
  position: relative;
}

.services-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.services-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.services-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
}

.service-content {
  padding: var(--spacing-md);
}

.service-name {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.service-desc {
  color: #666;
  margin-bottom: var(--spacing-sm);
}

.service-features {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

.service-features li {
  margin-bottom: var(--spacing-xs);
  color: #555;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Features Section */
.features-section {
  background-color: var(--neutral-light);
  position: relative;
}

.features-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.features-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.features-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.features-item {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.features-icon {
  font-size: 2.5rem;
  color: var(--tertiary-color);
  margin-bottom: var(--spacing-sm);
}

.features-item-name {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.features-item-desc {
  color: #666;
}

/* Price Plan Section */
.priceplan-section {
  background-color: #fff;
  position: relative;
}

.priceplan-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.priceplan-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.priceplan-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.priceplan-card {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--neutral-dark);
}

.priceplan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.priceplan-name {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
  font-size: 1.5rem;
}

.priceplan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.priceplan-desc {
  color: #666;
  margin-bottom: var(--spacing-md);
}

.priceplan-features {
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.priceplan-features li {
  margin-bottom: var(--spacing-xs);
  color: #555;
  padding-left: 1.5rem;
  position: relative;
}

.priceplan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Team Section */
.team-section {
  background-color: var(--neutral-light);
  position: relative;
}

.team-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.team-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.team-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.team-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.team-image {
  height: 300px;
  background-size: cover;
  background-position: top center;
  position: relative;
}

.team-content {
  padding: var(--spacing-md);
  text-align: center;
}

.team-member-name {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.team-member-role {
  color: var(--secondary-dark);
}

/* Reviews Section */
.reviews-section {
  background-color: #fff;
  position: relative;
}

.reviews-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.reviews-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.reviews-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.reviews-slider {
  width: 100%;
  padding-bottom: var(--spacing-xl);
}

.review-card {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: var(--spacing-sm);
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: #555;
  position: relative;
  padding-top: var(--spacing-sm);
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
}

.review-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--spacing-sm);
  object-fit: cover;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--neutral-light);
  position: relative;
}

.coreinfo-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.coreinfo-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.coreinfo-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.coreinfo-item {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.coreinfo-item-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: var(--spacing-sm);
}

.coreinfo-item-title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.coreinfo-item-desc {
  color: #666;
}

/* Blog Section */
.blog-section {
  background-color: #fff;
  position: relative;
}

.blog-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.blog-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.blog-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-item-title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.blog-item-excerpt {
  color: #666;
  margin-bottom: var(--spacing-sm);
}

.blog-item-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s ease;
}

.blog-item-link:hover {
  color: var(--primary-dark);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-light);
  position: relative;
}

.contact-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.contact-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.contact-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.contact-form-container {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: #444;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.form-check-input {
  margin-right: var(--spacing-xs);
}

.btn-submit {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

.contact-info {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
}

.contact-info-text {
  color: #555;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.footer-column {
  margin-bottom: var(--spacing-md);
}

.footer-title {
  color: #fff;
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.footer-text {
  color: #ddd;
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: var(--spacing-xs);
}

.footer-link a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-md);
  text-align: center;
}

.copyright {
  color: #aaa;
  font-size: var(--font-size-small);
}

/* Decorative Elements */
.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: 70px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* Additional Page Styles */
.additional-page-section {
  background-color: var(--neutral-light);
  padding: var(--spacing-xl) 0;
}

.additional-page-title {
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.additional-page-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.additional-page-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.additional-page-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.additional-page-item {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.additional-page-item-title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.additional-page-item-desc {
  color: #666;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} 