/* Document & Notary Express Bar Template
   Main Stylesheet
*/

:root {
  /* Color Palette */
  --primary-color: #507095;      /* Deep blue-gray */
  --secondary-color: #e9c46a;    /* Warm amber */
  --tertiary-color: #f4a261;     /* Peach */
  --accent-color: #e76f51;       /* Coral-red */
  --neutral-color: #2a3132;      /* Dark slate */
  
  /* Shades */
  --primary-light: #6d8cb3;
  --primary-dark: #3a5475;
  --secondary-light: #f1d68f;
  --secondary-dark: #c9a54a;
  --tertiary-light: #f7bb8a;
  --tertiary-dark: #d88240;
  --accent-light: #eb8f77;
  --accent-dark: #c55843;
  --neutral-light: #4a5355;
  --neutral-dark: #1a2022;
  
  /* Fonts */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--neutral-color);
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.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(--neutral-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--neutral-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Header */
header {
  padding: 1rem 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link {
  color: var(--neutral-color);
  font-weight: 600;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(42, 49, 50, 0.7), rgba(80, 112, 149, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

.hero-desc-1 {
  color: #fff;
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #fff;
}

.about-feature-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  height: 100%;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.service-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--neutral-dark);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 700;
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: #fff;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.price-card {
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.price-card.featured {
  border: 2px solid var(--accent-color);
}

.price-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 1.5rem;
  right: -4rem;
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.5rem 5rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 700;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: #fff;
}

.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-img-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 5px solid #f8f9fa;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.1);
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.review-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background-color: #fff;
  position: relative;
  margin-bottom: 2rem;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 2rem;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--primary-light);
  opacity: 0.2;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-section {
  padding: 5rem 0;
  background-color: #fff;
}

.coreinfo-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background-color: #f8f9fa;
  height: 100%;
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--tertiary-color);
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.contact-form {
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background-color: #fff;
}

.form-control {
  margin-bottom: 1.5rem;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  border: 1px solid #e9ecef;
}

.form-check {
  margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background-color: #fff;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background-color: #fff;
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--primary-color);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.accordion-button {
  box-shadow: none;
  background-color: #fff;
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #e9ecef;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: #fff;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  padding: 3rem 0 1.5rem;
  background-color: var(--neutral-dark);
  color: #fff;
}

.footer-link {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  opacity: 1;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.contact-info {
  margin-bottom: 0.5rem;
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Additional Pages */
.page-header {
  padding: 5rem 0;
  background-color: var(--primary-color);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(42, 49, 50, 0.7), rgba(80, 112, 149, 0.4));
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  color: #fff;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: #fff;
  opacity: 0.8;
}

.breadcrumb-item.active {
  color: var(--secondary-color);
}

/* Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

.bg-dots {
  background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
} 