/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: #cc0000;
  color: white;
}

.btn-primary:hover {
  background-color: #aa0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #cc0000;
  border: 2px solid #cc0000;
}

.btn-secondary:hover {
  background-color: #cc0000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Quote Button */
.quote-button {
  display: inline-block;
  background-color: #cc0000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.quote-button:hover {
  background-color: #aa0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

/* Navigation */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #cc0000;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #cc0000;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #cc0000;
}

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slogan {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #cc0000 0%, #aa0000 100%);
  color: white;
  text-align: center;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #cc0000;
  margin-bottom: 3rem;
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: #cc0000;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.services-cta {
  text-align: center;
}

/* Services Detailed */
.services-detailed {
  padding: 80px 0;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card-detailed {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card-detailed:hover {
  transform: translateY(-5px);
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content .service-icon {
  font-size: 2rem;
  color: #cc0000;
  margin-bottom: 1rem;
}

.service-content h3 {
  color: #333;
  margin-bottom: 1rem;
}

/* Service Process */
.service-process {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #cc0000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-content h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: #cc0000;
  margin-bottom: 1rem;
}

.feature-item h3 {
  color: #333;
  margin-bottom: 1rem;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  color: #cc0000;
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  color: #cc0000;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #333;
  margin-bottom: 1rem;
}


/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.reasons-grid {
  display: grid;
  gap: 2rem;
}

.reason-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reason-number {
  background-color: #cc0000;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reason-content h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

/* Gallery */
.gallery {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  transition: clip-path 0.3s ease;
}

.before-after-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #cc0000;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: #cc0000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-info h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

/* Projects */
.projects {
  padding: 80px 0;
}

.project-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #eee;
}

.project-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-item.reverse {
  direction: rtl;
}

.project-item.reverse > * {
  direction: ltr;
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-category {
  color: #cc0000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.project-content h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.project-details {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
  margin: 1.5rem 0;
}

.detail-item {
  margin-bottom: 0.5rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.see-gallery-link {
  color: #cc0000;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.see-gallery-link:hover {
  color: #aa0000;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-section h2 {
  color: #cc0000;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  background-color: #cc0000;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-text p {
  margin-bottom: 0.25rem;
}

.contact-text small {
  color: #999;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  color: #cc0000;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #cc0000;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #cc0000 0%, #aa0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Make text inside map placeholder white */
.map-placeholder .map-content h3,
.map-placeholder .map-content p {
    color: white;
}

/* Make the "Get Directions" button white text with red background */
.map-placeholder .btn.btn-secondary {
    background-color: #cc0000;
    color: white;
    border: 2px solid #cc0000;
}

/* Make the "Get Directions" button white text on hover, with darker red background */
.map-placeholder .btn.btn-secondary:hover {
    background-color: #aa0000;
    color: white;
}

.map-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.map-content h3 {
  margin-bottom: 0.5rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 80%;
  max-height: 80%;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  opacity: 0.7;
}

.modal-info {
  background: white;
  padding: 1rem;
  border-radius: 0 0 10px 10px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #cc0000 0%, #aa0000 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #cc0000;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #cc0000;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #aa0000;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #cc0000;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.contact-info i {
  color: #cc0000;
  width: 20px;
}

.hours p {
  color: #ccc;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .hero-slogan {
    font-size: 1.2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .services-grid,
  .services-grid-detailed,
  .features-grid,
  .values-grid,
  .team-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .contact-content,
  .project-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-item.reverse {
    direction: ltr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

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

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 10% auto;
    max-width: 95%;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hamburger,
  .btn,
  .social-links,
  .map-section {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .page-header {
    background: none;
    color: #333;
    margin-top: 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .btn-primary {
    background-color: #000;
    border: 2px solid #000;
  }

  .btn-secondary {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
  }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid #cc0000;
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FAQ Specialist Services */
.specialist-services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.services-grid-specialist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.specialist-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.specialist-card:hover {
  transform: translateY(-5px);
}

.specialist-icon {
  font-size: 3rem;
  color: #cc0000;
  margin-bottom: 1rem;
  text-align: center;
}

.specialist-card h3 {
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.specialist-card p {
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  color: #cc0000;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-features li:last-child {
  border-bottom: none;
}

.quote-cta {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote-link {
  color: #cc0000;
  text-decoration: none;
  font-weight: 600;
}

.quote-link:hover {
  text-decoration: underline;
}

/* Insurance Partners */
.insurance-partners {
  padding: 80px 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.insurance-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.insurance-logo {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.insurance-logo:hover {
  transform: translateY(-5px);
}

.insurance-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.insurance-logo:hover img {
  filter: grayscale(0%);
}

/* Regional Services */
.regional-services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.regional-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.regional-logo {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.regional-logo:hover {
  transform: translateY(-5px);
}

.regional-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.regional-logo h4 {
  color: #333;
  margin: 0;
  font-size: 1.1rem;
}

/* FAQ Sections */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.faq-category {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-category-title {
  background-color: #cc0000;
  color: white;
  padding: 1.5rem;
  margin: 0;
  font-size: 1.3rem;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h4 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

.faq-question i {
  color: #cc0000;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 300px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Privacy Policy */
.privacy-content {
  padding: 80px 0;
}

.privacy-document {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.last-updated {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  border-left: 4px solid #cc0000;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  color: #cc0000;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.privacy-section h3 {
  color: #333;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.privacy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  color: #666;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-method {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
}

.contact-method h4 {
  color: #cc0000;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-method p {
  margin: 0;
  color: #333;
  font-size: 0.9rem;
}

.acknowledgment {
  background-color: #cc0000;
  color: white;
  padding: 1.5rem;
  border-radius: 5px;
  text-align: center;
  margin-top: 2rem;
}

.acknowledgment p {
  margin: 0;
  color: white;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .services-grid-specialist,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .insurance-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .regional-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
  
  .privacy-document {
    padding: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .insurance-logos,
  .regional-logos {
    grid-template-columns: 1fr;
  }
  
  .privacy-document {
    padding: 1.5rem;
  }
}

/* Form Message Styles */
.form-message {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.form-message p {
  margin: 0;
  color: inherit;
}
/* Loading state for submit button */
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =============
   FLOATING WHATSAPP BUTTON
   ============= */

/* Target the existing WhatsApp container */
.whatsapp-chat {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Style the WhatsApp link/button */
.whatsapp-btn {
    display: flex !important;
    align-items: center !important;
    background-color: #25D366 !important; /* WhatsApp green */
    color: white !important;
    padding: 14px 20px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    font-size: 1rem !important;
}

/* Hover effect */
.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
    background-color: #128C7E !important; /* Darker green */
}

/* Icon styling */
.whatsapp-btn i {
    font-size: 1.6rem !important;
    margin-right: 10px !important;
}

/* Mobile: Show only icon */
@media (max-width: 768px) {
    .whatsapp-btn span {
        display: none !important;
    }
    .whatsapp-btn {
        padding: 16px !important;
        border-radius: 50% !important;
    }
    .whatsapp-btn i {
        margin-right: 0 !important;
        font-size: 1.8rem !important;
    }
}

/* Optional: Gentle pulse animation */
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
    animation: whatsappPulse 2s infinite !important;
}