/* North Point Review Labs - Global Styles */

:root {
  --bs-primary: #0d3d3d;
  --bs-primary-rgb: 13, 61, 61;
  --bs-secondary: #c5a569;
  --bs-secondary-rgb: 197, 165, 105;
  --bs-light: #f8f6f2;
  --bs-light-rgb: 248, 246, 242;
  --bs-dark: #1e1e1e;
  --bs-dark-rgb: 30, 30, 30;
  --bs-success: #2a7a4a;
  --bs-success-rgb: 42, 122, 74;
  --bs-info: #3b6e7a;
  --bs-info-rgb: 59, 110, 122;
  --gold: #c5a569;
  --teal: #0d3d3d;
  --cream: #f8f6f2;
  --charcoal: #1e1e1e;
  --shadow-sm: 0 0.125rem 0.5rem rgba(13, 61, 61, 0.08);
  --shadow-lg: 0 1rem 2.5rem rgba(13, 61, 61, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

a:hover {
  color: var(--gold);
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-padding-lg {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.bg-primary-custom {
  background-color: var(--teal);
}

.bg-dark-custom {
  background-color: var(--charcoal);
}

.bg-light-custom {
  background-color: var(--cream);
}

.text-gold {
  color: var(--gold);
}

.text-cream {
  color: var(--cream);
}

.text-teal {
  color: var(--teal);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 0.25rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold:hover {
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 0.25rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--charcoal);
}

.btn-teal {
  background-color: var(--teal);
  color: var(--cream);
  border: none;
  border-radius: 0.25rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-teal:hover {
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-teal {
  background-color: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 0.25rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline-teal:hover {
  background-color: var(--teal);
  color: var(--cream);
}

.navbar-custom {
  background-color: var(--teal);
  border-bottom: 1px solid rgba(197, 165, 105, 0.15);
}

.navbar-custom .navbar-nav .nav-link {
  color: rgba(248, 246, 242, 0.85);
  font-weight: 500;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link:focus {
  color: var(--gold);
}

.navbar-custom .navbar-toggler {
  border-color: rgba(197, 165, 105, 0.5);
}

.navbar-custom .navbar-toggler-icon {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.navbar-contact-line {
  font-size: 0.85rem;
  color: rgba(248, 246, 242, 0.75);
}

.navbar-contact-line a {
  color: rgba(248, 246, 242, 0.85);
}

.navbar-contact-line a:hover {
  color: var(--gold);
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--teal);
}



.hero-section > .container,
.hero-section > .container-fluid {
  position: relative;
  z-index: 2;
}

.hero-section .display-3,
.hero-section .display-4 {
  color: var(--cream);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.section-hero-sm {
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--teal);
  background-size: cover;
  background-position: center;
}

.section-hero-sm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 61, 61, 0.85), rgba(13, 61, 61, 0.7));
}

.section-hero-sm > .container {
  position: relative;
  z-index: 2;
}

.bg-section-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
}

.bg-section-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 61, 61, 0.88), rgba(13, 61, 61, 0.82));
  z-index: 0;
}

.bg-section-overlay > .container,
.bg-section-overlay > .container-fluid {
  position: relative;
  z-index: 1;
}

.card-gold {
  border-top: 3px solid var(--gold);
}

.card-shadow {
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  background-color: var(--cream);
}

.card-shadow:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card .card-title {
  color: var(--teal);
  font-weight: 700;
}

.service-card .price-tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
}

.review-card {
  background-color: var(--cream);
  border: none;
  box-shadow: var(--shadow-sm);
}

.review-card .stars {
  color: var(--gold);
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background-color: rgba(248, 246, 242, 0.05);
  border: 1px solid rgba(197, 165, 105, 0.2);
  border-radius: 0.5rem;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-card .stat-label {
  color: rgba(248, 246, 242, 0.8);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.deco-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.25rem;
}

.deco-line-center {
  margin-left: auto;
  margin-right: auto;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 105, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.badge-gold {
  background-color: var(--gold);
  color: var(--charcoal);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(197, 165, 105, 0.1);
  color: var(--teal);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(197, 165, 105, 0.3);
}

.footer-main {
  background-color: var(--charcoal);
  color: rgba(248, 246, 242, 0.8);
  padding: 4rem 0 2rem;
}

.footer-main a {
  color: rgba(248, 246, 242, 0.8);
}

.footer-main a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 246, 242, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(248, 246, 242, 0.08);
  color: var(--cream);
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: var(--gold);
  color: var(--charcoal);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  color: var(--cream);
  padding: 1rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  transform: translateY(120%);
  transition: transform 0.35s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.form-control-custom {
  background-color: var(--cream);
  border: 1px solid rgba(13, 61, 61, 0.2);
  border-radius: 0.25rem;
  padding: 0.85rem;
}

.form-control-custom:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 165, 105, 0.25);
  background-color: var(--cream);
}

.img-placeholder {
  background-color: rgba(13, 61, 61, 0.08);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 61, 61, 0.35);
}

.table-price thead {
  background-color: var(--teal);
  color: var(--cream);
}

.table-price tbody tr:nth-of-type(odd) {
  background-color: rgba(13, 61, 61, 0.03);
}

.table-price .check {
  color: var(--bs-success);
}

.table-price .times {
  color: #8c6a6a;
}

@media (max-width: 991px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-padding-lg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-section {
    min-height: 75vh;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-section .display-3 {
    font-size: 2.25rem;
  }

  .hero-section .display-4 {
    font-size: 1.75rem;
  }
}
