:root {
  /* Color Palette - Pastel tones for estate planning */
  --primary-color: #7a9e9f; /* Soft teal */
  --secondary-color: #b88e8d; /* Dusty rose */
  --accent-color-1: #deb887; /* Beige/Burlywood */
  --accent-color-2: #a8c3bc; /* Sage green */
  --accent-color-3: #d1c2d3; /* Lavender */
  
  /* Light and dark shades */
  --primary-light: #9cbebf;
  --primary-dark: #5d7879;
  --secondary-light: #d4b3b2;
  --secondary-dark: #8c6c6b;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #555555;
  --black: #333333;
  
  /* Fonts */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Raleway', sans-serif;
}

/* Base styling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--black);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Section styling */
section {
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-heading h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color-1);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--dark-gray);
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--primary-dark) !important;
  font-size: 1rem;
}

.nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-slide {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-slide h2 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-slide p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About section */
.about-section {
  background-color: var(--white);
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 2rem;
}

.feature-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Services section */
.services-section {
  background-color: var(--light-gray);
}

.service-card {
  background-color: var(--white);
  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;
  height: 100%;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.service-price {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5rem;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Features section */
.features-section {
  background-color: var(--white);
}

.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon-lg {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--accent-color-2);
  color: var(--primary-dark);
  font-size: 2.5rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-lg {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

/* Price plan section */
.priceplan-section {
  background-color: var(--light-gray);
}

.price-card {
  background-color: var(--white);
  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;
  height: 100%;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem 1rem;
}

.price-header h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-content {
  padding: 2rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

/* Team section */
.team-section {
  background-color: var(--white);
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  background-color: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Reviews section */
.reviews-section {
  background-color: var(--light-gray);
}

.review-slide {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
}

.review-text {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1rem;
  color: var(--accent-color-1);
  position: absolute;
  left: 0;
  top: -10px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  margin-bottom: 0.2rem;
}

.review-author-info p {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin: 0;
}

/* Core info section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-item {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 1rem;
  text-align: center;
  background-color: var(--accent-color-2);
  color: var(--primary-dark);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.coreinfo-item:hover .coreinfo-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

/* Contact section */
.contact-section {
  background-color: var(--light-gray);
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 1px solid var(--medium-gray);
  border-radius: 3px;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.contact-info {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  border-radius: 50%;
  margin-right: 1rem;
}

.contact-info-content h5 {
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-info-content p {
  margin: 0;
}

/* Blog section */
.blog-section {
  background-color: var(--white);
}

.blog-card {
  background-color: var(--white);
  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;
  height: 100%;
  margin-bottom: 30px;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-logo {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Additional Pages */
.page-header {
  height: 300px;
  position: relative;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 76px; /* Header height */
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-section {
  padding: 5rem 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease;
}

.slide-in-up {
  animation: slideInUp 0.8s ease;
}

/* Decorative elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider .shape-fill {
  fill: var(--white);
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .hero-slide h2 {
    font-size: 2.8rem;
  }
  
  .section-heading h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-slide h2 {
    font-size: 2.2rem;
  }
  
  .section-heading h2 {
    font-size: 2rem;
  }
  
  .about-content {
    padding: 1rem 0;
  }
}

@media (max-width: 575.98px) {
  .hero-slide h2 {
    font-size: 1rem;
  }
  
  .section-heading h2 {
    font-size: 1rem;
  }
} 