/* PROBATE PROCESS HELPDESK - MAIN STYLES
--------------------------------------------------- */

:root {
  /* Primary Color Palette */
  --primary-1: #6a4c93; /* Deep Purple */
  --primary-2: #f7b801; /* Golden Yellow */
  --primary-3: #8ac4d0; /* Soft Teal */
  --primary-4: #e28413; /* Burnt Orange */
  --primary-5: #44663f; /* Forest Green */
  
  /* Light and Dark Shades */
  --primary-1-light: #8b6db5;
  --primary-1-dark: #4a3468;
  --primary-2-light: #ffcf47;
  --primary-2-dark: #c79500;
  --primary-3-light: #a4d4dd;
  --primary-3-dark: #68a7b3;
  --primary-4-light: #f39f43;
  --primary-4-dark: #b66a0e;
  --primary-5-light: #5e8558;
  --primary-5-dark: #2e442a;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #121212;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  
  /* Font Sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  
  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 1rem;
  --spacing-4: 1.5rem;
  --spacing-5: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-full: 50%;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--primary-1);
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  margin: 0 var(--spacing-2);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-1);
}

.nav-link.active {
  color: var(--primary-1);
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-2);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-1) 100%);
  padding: 12rem 0 8rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../INH_images/courthouse-pattern.webp');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  color: var(--primary-1);
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
.about-feature {
  padding: 2rem;
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}

/* Services Section */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 5px solid var(--primary-1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-1-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.service-price {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--primary-2);
  color: var(--primary-1-dark);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--primary-1);
}

/* Features Section */
.features-item {
  text-align: center;
  padding: 2rem;
}

.features-icon {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.price-plan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.price-plan-header {
  background: var(--primary-1);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.price-plan-header h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.price-plan-price {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 0;
}

.price-plan-features {
  padding: 2rem;
}

.price-plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-plan-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  padding-left: 2rem;
}

.price-plan-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--primary-1);
}

/* Team Section */
.team-member {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-info h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews-slider {
  padding-bottom: 3rem;
}

.review-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 0.5rem;
}

.review-text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-2);
  line-height: 0;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Core Info Section */
.core-info-item {
  text-align: center;
  margin-bottom: 2rem;
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-4);
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(106, 76, 147, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: var(--white);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

/* Blog Section */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  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);
}

.blog-image {
  height: 220px;
  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.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.blog-link:after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: margin-left 0.3s ease;
}

.blog-link:hover:after {
  margin-left: 0.75rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--gray-100);
}

.accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 1rem;
}

.accordion-button {
  background-color: var(--white);
  border-radius: var(--radius-md) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--primary-1);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1-light);
}

.accordion-button:not(.collapsed)::after {
  color: var(--white);
}

.accordion-body {
  background-color: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Gallery Section */
.gallery-section {
  overflow: hidden;
}

.gallery-container {
  margin: -5px;
}

.gallery-item {
  padding: 5px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.gallery-item a:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-1-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #121212;
}

.footer-desc {
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.footer-title {
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-2);
}

.footer-contact {
  margin-bottom: 0.75rem;
  color: var(--gray-400);
}

.footer-contact i {
  color: var(--primary-2);
  margin-right: 0.5rem;
  width: 20px;
}

.footer-disclaimer {
  color: var(--gray-400);
  font-size: var(--font-size-sm);
  margin-top: 2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

#site-copyright {
  color: var(--gray-500);
  font-size: var(--font-size-sm);
} 