:root {
  --primary: #c1121f;
  --primary-dark: #8f0d16;
  --black: #111111;
  --dark: #1c1c1c;
  --light: #f8f8f8;
  --white: #ffffff;
  --muted: #666666;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--light);
  font-family: "Roboto", Arial, sans-serif;
  color: var(--black);
  margin: 0;
  padding: 0;
}

/* General Button */
.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Header */
.logo-icon {
  width: 90px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  transition: 0.3s ease;
  background: var(--black);
}

.main-nav.scrolled {
  background: var(--black);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navbar-toggler {
  border: none;
  color: var(--white) !important;
}

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

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 6px;
}

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

.brand-logo h4,
.brand-logo i {
  color: var(--white) !important;
}

.offcanvas {
  background: var(--black);
}

/* Hero Section */
.hero-modern {
  padding: 125px 0 60px;
  background: linear-gradient(
    135deg,
    #111111 0%,
    #1c1c1c 45%,
    #8f0d16 75%,
    #c1121f 100%
  );
  border-radius: 0 0 28px 28px;
  color: var(--white);
  overflow: hidden;
}

.hero-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.2;
  color: var(--white);
}

.hero-desc {
  margin-top: 15px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.6;
}

.hero-btn {
  background: var(--white);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 700;
}

.hero-btn:hover {
  background: #f1f1f1;
  color: var(--primary-dark);
}

.hero-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  margin: 20px auto 0;
  position: static;
}

.hero-rating {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 12px 18px;
  width: fit-content;
  margin-top: 20px;
}

.rating-value {
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}

.rating-text {
  opacity: 0.95;
  margin-left: 6px;
  color: var(--white);
}

/* Contact Bar */
.appointment-bar {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  margin-top: -35px;
  margin-bottom: 25px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 5;
}

.form-field {
  border-radius: 12px;
  height: 42px;
  border: 1px solid #dddddd;
}

.make-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  border-radius: 24px;
}

.make-btn:hover {
  color: var(--white);
}

/* Features Section */
.features-grid {
  padding-top: 25px;
  padding-bottom: 35px;
}

.feature-item {
  text-align: center;
  background: var(--white);
  border-radius: 18px;
  padding: 28px 22px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--primary);
}

.feature-icon {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 10px;
}

.feature-item h5 {
  font-weight: 700;
  color: var(--black);
}

.feature-item p {
  color: var(--muted);
  margin-bottom: 0;
}

/* About Section */
.about-section {
  margin-top: 25px;
  margin-bottom: 35px;
}

.testimonial-box {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  padding: 35px;
  text-align: left;
}

.tag {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.quote-icon {
  font-size: 34px;
  color: var(--primary);
  margin: 8px 0;
}

.testimonial-text {
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

/* Services Highlight Section */
.services-highlight {
  margin-top: 35px;
  margin-bottom: 35px;
}

.blog-tag,
.faq-tag {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.blog-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.blog-img {
  width: 170px;
  min-width: 170px;
  height: 170px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h5 {
  color: var(--black);
}

.blog-content p {
  color: var(--muted);
  font-size: 15px;
}

.read-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}

.read-link:hover {
  color: var(--primary-dark);
}

/* Stats Section */
.stats-section {
  margin-top: 35px;
  margin-bottom: 35px;
}

.stats-box {
  background: linear-gradient(135deg, var(--black), var(--primary-dark));
  padding: 32px 35px;
  border-radius: 20px;
  color: var(--white);
}

.stats-icon {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 8px;
}

.counter {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}

.stats-label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

/* FAQ */
.faq-section {
  margin-top: 35px;
  margin-bottom: 35px;
}

.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 700;
  color: var(--black);
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* CTA Section */
.cta-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--black));
  color: var(--white);
  padding: 35px;
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.cta-box p {
  margin-bottom: 0;
}

.cta-btn {
  background: var(--white);
  color: var(--primary);
  min-width: 140px;
  text-align: center;
}

.cta-btn:hover {
  color: var(--primary-dark);
}

/* Footer */
.footer-section {
  background: var(--black);
  color: var(--white);
}

.footer-section h6 {
  color: var(--white);
}

.footer-section .text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}

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

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

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

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

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

.footer-contact li {
  margin-bottom: 9px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact i {
  color: var(--primary);
  margin-right: 7px;
}

/* Blank Space Fix */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .main-nav {
    background: var(--black);
  }

  .hero-modern {
    padding: 115px 0 50px;
    text-align: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-rating {
    margin-left: auto;
    margin-right: auto;
  }

  .appointment-bar {
    margin-top: -20px;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-img {
    max-height: 280px;
  }

  .testimonial-img {
    height: 260px;
  }

  .testimonial-content {
    padding: 25px;
    text-align: center;
  }

  .review-person {
    justify-content: center;
  }

  .stats-box {
    padding: 25px 18px;
  }

  .stats-box .col-md-3 {
    margin-bottom: 22px;
  }
}

/* Footer Social Links */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  transition: 0.25s ease;
}

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

.footer-social i {
  font-size: 18px;
}

/* Live Chat Floating Action Button */
.live-chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease;
}

.live-chat-fab:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.live-chat-fab i {
  font-size: 20px;
}

@media (max-width: 575px) {
  .live-chat-fab {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .live-chat-fab span {
    display: none;
  }

  .live-chat-fab i {
    font-size: 22px;
  }
}

/* Partners Section */
.partners-section {
  margin-top: 35px;
  margin-bottom: 35px;
}

.partners-tag {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.partner-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--primary);
  transition: 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  max-width: 145px;
  max-height: 62px;
  width: 100%;
  height: 62px;
  object-fit: contain;
  display: block;
}

.partner-card h6 {
  margin: 0;
  color: var(--black);
  font-weight: 700;
}

/* Live Chat Docked Widget */
.live-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.live-chat-fab {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease;
}

.live-chat-fab:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.live-chat-fab i {
  font-size: 20px;
}

.live-chat-panel {
  width: 390px;
  max-width: calc(100vw - 44px);
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.live-chat-panel-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-chat-panel-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.live-chat-panel-header small {
  color: rgba(255, 255, 255, 0.82);
}

.live-chat-close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.live-chat-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.live-chat-panel-body {
  height: 520px;
  background: var(--white);
}

.live-chat-panel-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 575px) {
  .live-chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .live-chat-panel {
    width: calc(100vw - 28px);
  }

  .live-chat-panel-body {
    height: 68vh;
  }

  .live-chat-fab {
    padding: 12px 14px;
  }

  .live-chat-fab span {
    display: none;
  }

  .live-chat-fab i {
    font-size: 22px;
  }
}