:root {
  --primary: #c0392b;
  --primary-dark: #a93226;
  --secondary: #d35400;
  --accent: #e67e22;
  --dark: #1a1a2e;
  --gray-dark: #2c2c3e;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --light: #f8f5f0;
  --white: #ffffff;
  --black: #000000;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
}
body {
  font-family: var(--font-family);
  color: var(--gray-dark);
  background-color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}
/* Override heading color when text-white is applied directly */
h1.text-white, h2.text-white, h3.text-white, h4.text-white, h5.text-white, h6.text-white {
  color: #ffffff !important;
}
a {
  color: var(--primary);
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
}
.text-primary { color: var(--primary) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-light { background-color: var(--light) !important; }
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
}
.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--dark);
}
/* Fix contrast for btn-outline-primary on light backgrounds */
.btn-outline-primary {
  color: #962d22 !important;
  border-color: #962d22 !important;
}
.btn-outline-primary:hover {
  background-color: #962d22 !important;
  color: #ffffff !important;
}
/* Dark text variant for buttons on light backgrounds */
.btn-dark-text {
  color: #962d22 !important;
  border-color: #962d22 !important;
}
.btn-dark-text:hover {
  background-color: #962d22 !important;
  color: #ffffff !important;
}
header {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-md);
}
header .navbar-brand img {
  filter: brightness(0) invert(1);
}
header .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}
header .nav-link:hover, header .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1);
}
header .contact-info {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
header .contact-info i {
  color: var(--primary);
  margin-right: 0.5rem;
}
.navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark);
  color: var(--white);
}
#hero-slider {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark);
  color: var(--white);
}
#hero-slider h1 {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero-section .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  color: #ffffff !important;
}
.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  color: #ffffff;
}
.section-padding {
  padding: 5rem 0;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #5a6268;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card .card-img-top {
  height: 250px;
  object-fit: cover;
  background-color: var(--gray-light);
}
.service-card .card-body {
  padding: 1.75rem;
}
.service-card .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card .card-text {
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin: 1rem;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 20px;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
}
.testimonial-card .rating {
  color: #f1c40f;
}
.testimonial-card .author {
  font-weight: 600;
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  background: var(--gray-light);
}
.parallax-section {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.parallax-section .overlay {
  background: rgba(0,0,0,0.6);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 300px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay {
  opacity: 1;
}
/* Gallery overlay text styling for contrast */
.gallery-item .overlay span {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 1.25rem 0;
}
.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1rem 1rem 0;
}
.price-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.price-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary);
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
}
.price-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}
.price-card .price sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.price-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.price-card ul li:last-child {
  border-bottom: none;
}
.price-card .btn {
  margin-top: 1rem;
}
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1rem;
  font-size: 0.95rem;
}
footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
footer a:hover {
  color: var(--primary);
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 0.75rem;
}
footer .contact-list i {
  width: 1.5rem;
  color: var(--primary);
}
footer .bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
  border-left: 4px solid var(--primary);
}
.notification.success {
  border-left-color: #27ae60;
}
.notification i {
  font-size: 1.25rem;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  margin-bottom: 0;
}
.cookie-banner .btn {
  margin-left: 1rem;
}
/* Ensure cookie banner text has sufficient contrast */
.cookie-banner .btn-outline-light {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.cookie-banner .btn-outline-light:hover {
  background-color: #ffffff !important;
  color: #1a1a2e !important;
}
.map-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
/* Dark section fallback background */
.dark-section-bg {
  background-color: #1a1a2e !important;
}
/* Sections with background images - add solid color fallback */
section[style*="background-image"] {
  background-color: #1a1a2e;
}
/* Mobile header overlap fix */
@media (max-width: 768px) {
  #hero-slider {
    min-height: calc(80vh - 56px);
    padding-top: 56px;
  }
  .hero-section {
    min-height: calc(70vh - 56px);
    padding-top: 56px;
  }
}
@media (max-width: 576px) {
  #hero-slider {
    min-height: calc(80vh - 56px);
    padding-top: 56px;
  }
  .hero-section {
    min-height: calc(60vh - 56px);
    padding-top: 56px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .price-card.featured {
    transform: none;
  }
  .parallax-section {
    background-attachment: scroll;
  }
}