:root {
  /* Color Palette - Professional Pastel Theme for Notary */
  --primary-1: #dbe4ee; /* Light Blue */
  --primary-2: #f6e7d8; /* Soft Peach */
  --primary-3: #e8e1d9; /* Warm Beige */
  --primary-4: #d1dbd0; /* Sage Green */
  --primary-5: #e0d6e4; /* Lavender */
  
  /* Shades */
  --primary-1-dark: #a7b8cf;
  --primary-2-dark: #d6c0a6;
  --primary-3-dark: #c2b9ae;
  --primary-4-dark: #a5b4a3;
  --primary-5-dark: #baaec6;
  
  /* Text Colors */
  --text-dark: #2c3e50;
  --text-medium: #566573;
  --text-light: #f8f9fa;
  
  /* Additional */
  --accent: #b18e71;
  --success: #7fa99b;
  --warning: #e8c07d;
  --error: #d88373;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
}

p {
  color: var(--text-medium);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-5-dark);
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 26px;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--white);
}

/* Section Styles */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.header.scrolled {
  padding: 15px 0;
  background-color: var(--white);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 10px 20px;
  position: relative;
  transition: color 0.3s ease;
}

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

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 30px;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-3);
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--white);
}

.hero-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image-container {
  position: relative;
  z-index: 5;
  transition: all 0.5s ease;
}

.hero-image-container img {
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-feature {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--white);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent);
  z-index: -1;
  transition: all 0.3s ease;
}

.about-feature:hover::before {
  width: 100%;
  opacity: 0.1;
}

.about-feature i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-feature h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--primary-1);
  position: relative;
  overflow: hidden;
}

.service-item {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--accent);
  z-index: -1;
  transition: all 0.3s ease;
  opacity: 0.1;
}

.service-item:hover::after {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--primary-1);
  color: var(--accent);
  font-size: 30px;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  background-color: var(--accent);
  color: var(--white);
}

.service-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--success);
  font-size: 14px;
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.feature-item {
  text-align: center;
  margin-bottom: 40px;
}

.feature-icon {
  font-size: 50px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Price Plan Section */
.price-plan-section {
  background-color: var(--primary-2);
  position: relative;
}

.price-plan-item {
  background-color: var(--white);
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 1;
}

.price-plan-item.featured {
  transform: scale(1.05);
  border: 2px solid var(--accent);
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-plan-title {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.price-plan-price {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}

.price-plan-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.price-plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--medium-gray);
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.team-role {
  color: var(--accent);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-5);
  position: relative;
}

.reviews-slider .swiper-slide {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.review-text::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 20px;
}

.review-author {
  font-weight: 700;
  color: var(--text-dark);
}

/* Core Info Section */
.core-info-section {
  background-color: var(--white);
}

.core-info-item {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--primary-3);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.core-info-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

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

.contact-form {
  background-color: var(--white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 55px;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--accent);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-info {
  background-color: var(--primary-1);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-icon {
  font-size: 24px;
  color: var(--accent);
  margin-right: 20px;
  margin-top: 5px;
}

.contact-info-content h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-checkbox-group input {
  margin-right: 10px;
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.blog-excerpt {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-title {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-icon {
  font-size: 18px;
  color: var(--accent);
  margin-right: 15px;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Decorative Elements */
.shape-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-2);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
}

.shape-2 {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-5);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
}

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

.fadeInUp {
  animation: fadeInUp 0.5s ease forwards;
}

/* Swiper Slider Styles */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-5);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent);
}

/* Utility Classes */
.text-accent {
  color: var(--accent);
}

.bg-primary-1 {
  background-color: var(--primary-1);
}

.bg-primary-2 {
  background-color: var(--primary-2);
}

.bg-primary-3 {
  background-color: var(--primary-3);
}

.bg-primary-4 {
  background-color: var(--primary-4);
}

.bg-primary-5 {
  background-color: var(--primary-5);
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
} 