/* JVM Painting Website Styles */

/* Global Styles */
:root {
  --primary-color: #c25b7a;
  --primary-dark: #9e3a59;
  --primary-light: #f8b8c9;
  --secondary-color: #34495e;
  --light-color: #f8f9fa;
  --dark-color: #7c2946;
  --success-color: #27ae60;
  --accent-color: #f8b8c9;
  --text-color: #333333;
  --light-gray: #ecf0f1;
  --bg-pink: #f8b8c9;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.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);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.site-header {
  position: relative;
  z-index: 1000;
}

.top-bar {
  font-size: 0.85rem;
}

.top-bar a {
  font-size: 0.85rem;
}

.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.top-bar {
  font-size: 0.85rem;
  background-color: var(--primary-dark) !important;
}

.top-bar .social-icons a:hover {
  transform: translateY(-2px);
  color: var(--accent-color) !important;
}

.navbar {
  padding: 0.5rem 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--primary-color);
  will-change: padding;
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s;
}

/* Shrinking header effect */
.navbar-shrink {
  padding: 0.25rem 0;
  transition: all 0.3s ease;
}

.navbar-shrink .navbar-brand img.logo {
  max-height: 80px; /* ~67% of original 120px instead of 50% */
  transition: all 0.3s ease;
}

.navbar-shrink .navbar-nav .nav-link {
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
}

.navbar-shrink .navbar-nav .nav-link::after {
  bottom: 0.5rem;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.navbar-brand img.logo {
  max-height: 120px;
  width: auto;
  transition: all 0.3s ease;
  padding: 5px 0;
  will-change: max-height;
}

.navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 600;
  padding: 1.5rem 1rem;
  margin: 0 0.25rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(194, 91, 122, 0.3);
}

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

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-nav .nav-item.ms-lg-3 {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item.ms-lg-3 .btn {
  padding: 0.6rem 1.5rem;
}

@media (max-width: 992px) {
  .navbar-brand img.logo {
    max-height: 90px;
  }

  .navbar-shrink .navbar-brand img.logo {
    max-height: 60px; /* ~67% of 90px */
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }

  .navbar-nav .nav-link::after {
    bottom: 0.5rem;
  }

  .navbar-nav .nav-item.ms-lg-3 {
    margin-top: 0;
  }

  .navbar-nav .btn {
    display: inline-block;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-brand img.logo {
    max-height: 70px;
  }

  .navbar-shrink .navbar-brand img.logo {
    max-height: 48px; /* ~67% of 70px */
  }

  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
  }

  .footer-logo {
    max-height: 60px;
    margin: 0 auto 20px;
    display: block;
  }

  .footer-social {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* Footer Styles */
.site-footer {
  flex-shrink: 0;
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  background-color: var(--secondary-color);
}

.footer-bottom {
  background-color: var(--primary-dark);
  color: white;
}

.footer-logo {
  max-height: 70px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.woman-owned-badge .badge {
  background-color: var(--primary-color);
  color: white;
  font-size: 0.9rem;
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.woman-owned-badge .badge:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 20px;
}

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

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--primary-color);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.text-primary {
  color: var(--primary-light) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: -1px; /* Fix any potential gap between header and hero */
}

/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  filter: brightness(0.9);
}

.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
              linear-gradient(to right, rgba(194, 91, 122, 0.3), rgba(52, 73, 94, 0.3));
}

.hero-content {
  max-width: 900px;
  padding: 2rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-section .btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.hero-section .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-section .btn-primary:hover:before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-section .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .navbar-brand img.logo {
    max-height: 70px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 100vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 1.5rem;
  }
}

/* Experience Excellence Section */
.experience-excellence {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
}

.experience-excellence::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23f8b8c9" opacity="0.05"/></svg>');
  background-size: 20px 20px;
  opacity: 0.5;
}

.section-title {
  color: var(--primary-dark);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto;
}

.excellence-card {
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.excellence-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(194, 91, 122, 0.1);
}

.excellence-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.excellence-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  border-radius: 8px;
  padding: 10px;
}

.excellence-card:hover .excellence-image {
  transform: scale(1.05);
}

.excellence-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(194, 91, 122, 0.05), rgba(194, 91, 122, 0.1));
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.excellence-card:hover .excellence-image-container::after {
  opacity: 1;
}

.excellence-card h4 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.excellence-card h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M15 5L20 20L5 15L20 10L15 25L10 10L25 15L10 20L15 5Z" stroke="%23c25b7a" fill="none" opacity="0.05"/></svg>');
  background-size: 60px 60px;
  opacity: 0.3;
}

.testimonial-carousel-container {
  position: relative;
  padding: 0 60px;
}

.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  gap: 20px;
  padding: 20px 0;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
  flex: 0 0 auto;
  width: calc(33.333% - 20px);
  scroll-snap-align: start;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
  min-height: 500px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(194, 91, 122, 0.1);
}

.testimonial-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-quote {
  color: var(--primary-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-highlight {
  color: var(--primary-dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.testimonial-content p {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(194, 91, 122, 0.1);
  padding-top: 15px;
}

.testimonial-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.testimonial-author-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--secondary-color);
}

.testimonial-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.testimonial-prev-btn,
.testimonial-next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-dark);
  pointer-events: auto;
}

.testimonial-prev-btn:hover,
.testimonial-next-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .testimonial-card {
    width: calc(50% - 20px);
    min-height: 500px;
  }

  .testimonial-content p {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: calc(100% - 20px);
    min-height: 550px; /* Increased minimum height for mobile */
  }

  .testimonial-carousel-container {
    padding: 0 40px;
  }

  .testimonial-prev-btn,
  .testimonial-next-btn {
    width: 40px;
    height: 40px;
  }

  .testimonial-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .testimonial-highlight {
    font-size: 1.1rem;
  }

  .testimonial-author {
    padding-top: 20px;
    margin-top: 20px;
    min-height: 70px; /* Ensure enough space for author info */
  }

  .testimonial-author-info {
    min-height: 50px;
  }

  .testimonial-content p {
    margin-bottom: 20px;
  }
}

/* Additional styles for extra small devices */
@media (max-width: 576px) {
  .testimonial-card {
    min-height: 650px; /* Even more height for very small screens */
  }

  .testimonial-author {
    min-height: 80px;
  }
}

/* Specific styles for very narrow screens */
@media (max-width: 400px) {
  .testimonial-card {
    min-height: 750px; /* Much more height for extremely narrow screens */
  }

  .testimonial-content {
    padding: 1.2rem;
  }

  .testimonial-content p {
    margin-bottom: 30px;
    -webkit-line-clamp: none; /* Remove line clamping on narrow screens */
    display: block; /* Show full text */
    max-height: none;
  }

  .testimonial-author {
    min-height: 90px;
    padding-top: 25px;
  }

  .testimonial-author-info {
    min-height: 60px;
  }
}

/* Extra styles for extremely narrow screens */
@media (max-width: 360px) {
  .testimonial-card {
    min-height: 800px;
  }

  .testimonial-content p {
    margin-bottom: 40px;
  }

  .testimonial-author {
    min-height: 100px;
  }
}

/* Services Section Styles */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9f4f6 100%);
  position: relative;
}

.services-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
  border-bottom: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(194, 91, 122, 0.15);
}

.service-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 1.5rem;
  text-align: center;
}

.service-content h4 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-content p {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .service-image-container {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .service-image-container {
    height: 180px;
  }
}

/* Credentials Section Styles */
.credentials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4f6 0%, #ffffff 100%);
  position: relative;
}

.credentials-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
}

.credential-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.credential-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(194, 91, 122, 0.15);
}

.credential-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.credential-card h4 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.credential-card p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.credential-number {
  display: inline-block;
  background-color: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.credentials-note {
  font-style: italic;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Estimate Form Section Styles */
.estimate-form-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
  position: relative;
}

.estimate-form-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
}

.estimate-info {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
}

.estimate-info h3 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.estimate-benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.estimate-benefits li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.estimate-benefits li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.estimate-contact-info {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.estimate-contact-info h4 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.estimate-contact-info p {
  margin-bottom: 0;
}

/* Added styling for the estimate image container */
.estimate-image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.estimate-image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.estimate-image-container:hover img {
  transform: scale(1.03);
}

.image-caption {
  background-color: rgba(194, 91, 122, 0.8);
  color: white;
  padding: 8px 12px;
  font-size: 0.9rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-weight: 500;
}

.estimate-form-container {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-right: 4px solid var(--primary-color);
}

.estimate-form .form-label {
  color: var(--secondary-color);
  font-weight: 500;
}

.estimate-form .form-control,
.estimate-form .form-select {
  border-color: #e0e0e0;
  border-radius: 5px;
  padding: 0.6rem 1rem;
}

.estimate-form .form-control:focus,
.estimate-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(194, 91, 122, 0.25);
}

.estimate-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.estimate-form .btn-primary {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .estimate-info,
  .estimate-form-container {
    margin-bottom: 2rem;
  }
}

.estimate-success {
  text-align: center;
  padding: 2rem;
}

.estimate-success-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.estimate-success h3 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.estimate-success p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.estimate-reference {
  display: inline-block;
  background-color: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 500;
}

/* FAQ Section Styles */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f4f6 0%, #ffffff 100%);
  position: relative;
}

.faq-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
}

.faq-cards {
  margin-top: 2rem;
}

.faq-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  border-top: 4px solid var(--primary-color);
  background-color: white;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-top-color: var(--primary-dark);
}

.faq-card .card-body {
  padding: 1.75rem;
}

.faq-card .card-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-card .card-title span {
  flex: 1;
  padding-right: 15px;
}

.faq-icon {
  color: var(--primary-color);
  transition: all 0.3s ease;
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

.faq-card.active {
  box-shadow: 0 8px 25px rgba(194, 91, 122, 0.15);
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-dark);
}

.faq-answer {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(194, 91, 122, 0.1);
}

@media (max-width: 992px) {
  .faq-card {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}
