* {
  box-sizing: border-box;
}


:root {
  --radius: 16px;
}

body {
  font-family: var(--font-body, "Open Sans", sans-serif);
  color: var(--text);
  background: var(--surface);
  font-size: 1.0625rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  color: var(--heading);
}

h1 {
  font-size: 3.125rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1.0625rem;
}

a {
  color: var(--primary);
}

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

.section-pad {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--surface-dark);
  color: var(--on-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: #FFFFFF;
}

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

.navbar {
  font-size: 1.125rem;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
}

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-phone-mobile {
  display: none;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-phone-btn svg {
  width: 18px;
  height: 18px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(126, 6, 0, 0.18) 0%, rgba(31, 30, 41, 0.08) 60%, rgba(255, 255, 255, 0.9) 100%);
  color: var(--text);
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
  color: var(--heading);
}

.hero-card {
  background: #FFFFFF;
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 18px 30px rgba(15, 15, 15, 0.2);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
}

.star-row {
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: 0.15rem;
}

.icon-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.icon-row svg {
  width: 32px;
  height: 32px;
}

.gallery-icon-row {
  align-items: center;
}

.gallery-icon-row img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.icon-primary {
  color: var(--primary);
}

.icon-secondary {
  color: var(--secondary);
}

.icon-accent {
  color: #FFFFFF;
  background: var(--secondary);
  border-radius: 50%;
  padding: 0.35rem;
}

.hero-image {
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(15, 15, 15, 0.25);
  object-fit: cover;
}

.hero-section .list-check li::before {
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(126, 6, 0, 0.2);
}

.service-card,
.feature-card,
.quote-card,
.visual-card {
  background: #FFFFFF;
  border: 1px solid rgba(31, 30, 41, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 12px 24px rgba(15, 15, 15, 0.08);
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  height: 220px;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.75rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(126, 6, 0, 0.2);
}

.btn {
  border-radius: var(--radius);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-light {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: #FFFFFF;
  color: var(--secondary);
}

.btn-hero-flash {
  background: #810600;
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 16px rgba(129, 6, 0, 0.6);
  animation: none;
}

.btn-hero-flash:hover,
.btn-hero-flash:focus {
  color: #FFFFFF;
  box-shadow: 0 0 24px rgba(129, 6, 0, 0.8);
}

.services-carousel .carousel-item,
.reviews-carousel .carousel-item {
  padding: 0.5rem 0;
}

.services-carousel .carousel-control-prev,
.services-carousel .carousel-control-next,
.reviews-carousel .carousel-control-prev,
.reviews-carousel .carousel-control-next {
  width: 3rem;
  opacity: 1;
}

.services-carousel .carousel-control-prev-icon,
.services-carousel .carousel-control-next-icon,
.reviews-carousel .carousel-control-prev-icon,
.reviews-carousel .carousel-control-next-icon {
  background-color: #FFFFFF;
  border-radius: 999px;
  width: 2.25rem;
  height: 2.25rem;
  background-size: 50% 50%;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.85), 0 6px 18px rgba(15, 23, 42, 0.35);
}

.mini-card {
  background: #FFFFFF;
  border: 1px solid rgba(31, 30, 41, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 22px rgba(15, 15, 15, 0.08);
}

.mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 6, 0, 0.12);
  color: var(--primary);
}

.mini-icon svg {
  width: 20px;
  height: 20px;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--heading);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--heading);
  background: rgba(126, 6, 0, 0.08);
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: var(--text);
}

.form-control,
.form-select,
.form-textarea {
  background-color: #FFFFFF;
  color: var(--text);
  border-color: rgba(31, 30, 41, 0.2);
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(126, 6, 0, 0.2);
}

.footer-text {
  font-size: 0.8125rem;
}

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

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

.section-dark a {
  color: #FFFFFF;
}

.section-dark a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.85rem 1rem;
}

.mobile-call-bar a {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 768px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .navbar-brand {
    flex: 1 1 60%;
    order: 1;
  }

  .nav-phone-mobile {
    display: block;
    flex: 1 1 auto;
    order: 2;
  }

  .navbar-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    order: 2;
  }

  .nav-phone-desktop {
    display: none;
  }

  .nav-phone-btn {
    padding: 0.45rem 0.65rem;
    font-size: 0.85rem;
  }

  .navbar-toggler {
    margin-left: 0;
  }

  body {
    font-size: 0.75rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  h4 {
    font-size: 1rem;
  }

  .hero-image {
    max-height: 300px;
  }

  .visual-card img {
    height: 180px;
  }

  p {
    font-size: 0.85rem;
  }

  .navbar {
    font-size: 0.85rem;
  }

  .navbar-brand {
    font-size: 1.05rem;
  }

  .footer-text {
    font-size: 0.7rem;
  }

  .mobile-call-bar {
    display: block;
  }

  .mobile-call-bar a {
    font-size: 18px;
  }
}
