/* bootstrap-custom.css
   Bootstrap 5.3 button + theme overrides using CSS variables.
   Works for both home page and interior service pages.
   Put this file AFTER bootstrap.min.css.
*/

:root {
  /* Brand Colors */
  --brand-primary: #6a0066;
  --brand-primary-hover: #a1079b;
  --brand-accent: #dd7bdf;
  --brand-secondary: #333;
  --purple-primary: #7b2d7d;
  --pink-primary: #DD7BDF;
  --purple-dark: #5a1c5c;
  --purple-light: #9b4d9d;
  --purple-accent: #c36ec6;

  /* Backgrounds */
  --bg-soft: #f8f9fa;
  --bg-hero-a: #f5f5f5;
  --bg-hero-b: #e8e8e8;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-700: #374151;
  --gray-900: #111827;

  /* Text */
  --text-dark: #333;
  --text-body: #666;

  /* UI */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.15);
  --shadow-hover: 0 5px 15px rgba(221, 123, 223, 0.3);
  --transition: all 0.3s ease;

  /* Buttons */
  --btn-padding-y: 15px;
  --btn-padding-x: 30px;
  --btn-font-size: 18px;
  --btn-font-weight: 700;

  /* Form */
  --form-control-padding: 12px;
  --form-control-border: 1px solid #ddd;
  --focus-ring: 0 0 0 2px rgba(106, 0, 102, 0.12);

  /* Header Heights */
  /*--top-header-height: 0px;
  --navbar-height: 0px;*/
  --top-header-height: 46px; 
  --navbar-height: 106px;

}

/* ------------------------------------------------------------------
   Bootstrap 5 Theme Variable Overrides
------------------------------------------------------------------ */
:root {
  --bs-primary: var(--brand-primary);
  --bs-secondary: var(--brand-secondary);
  --bs-link-color: var(--brand-primary);
  --bs-link-hover-color: var(--brand-primary-hover);
  --bs-btn-font-weight: var(--btn-font-weight);
  --bs-btn-border-radius: var(--radius-sm);
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-primary-hover);
  --bs-btn-hover-border-color: var(--brand-primary-hover);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-primary-hover);
  --bs-btn-active-border-color: var(--brand-primary-hover);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--brand-primary);
  --bs-btn-disabled-border-color: var(--brand-primary);
  --bs-btn-focus-shadow-rgb: 106, 0, 102;
}

/* ------------------------------------------------------------------
   Typography & Base Styles
------------------------------------------------------------------ */
html, body {
  font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

body {
  font-size: 18px;
 padding-top: 152px;
  transition: none;
/*  transition: padding-top 0.3s ease-in-out;*/
}

html {
  scroll-behavior: smooth;
}

/* Utility Classes */
.text-white { color: #fff; }
.text-purple { color: var(--purple-primary); }
.text-pink { color: var(--pink-primary); }
.text-purple-accent { color: var(--purple-accent); }
.accent { color: var(--brand-accent); }
.centered { text-align: center; margin: 0 auto; }

.bg-purple { background-color: var(--purple-primary); }
.bg-purple-light { background: linear-gradient(135deg, #f5f3f7 0%, #fff 100%); }

/* ------------------------------------------------------------------
   Buttons
------------------------------------------------------------------ */
.btn {
  transition: var(--transition);
}

.btn-primary {
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-primary);
  --bs-btn-hover-border-color: var(--brand-primary);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-primary-hover);
  --bs-btn-active-border-color: var(--brand-primary-hover);
  --bs-btn-focus-shadow-rgb: 106, 0, 102;
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn.btn-lg, .btn-lg {
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight);
  border-radius: var(--radius-sm);
}

.btn-purple {
  background-color: var(--purple-primary);
  border-color: var(--purple-primary);
  color: white;
  transition: all 0.3s ease;
}

.btn-purple:hover {
  background-color: var(--purple-dark);
  border-color: var(--purple-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(123, 45, 125, 0.2);
}

.btn-outline-purple {
  border: 2px solid var(--purple-primary);
  color: var(--purple-primary);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-purple:hover {
  background-color: var(--purple-primary);
  color: white;
  transform: translateY(-2px);
}

/* Custom CTA Buttons */
.btn-primary-cta, .btn-submit {
  background: var(--brand-primary);
  color: #fff;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-primary-cta:hover, .btn-submit:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #fff;
  text-decoration: none;
}

.btn-secondary-cta {
  background: var(--brand-secondary);
  color: #fff;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight);
  border: 2px solid var(--brand-secondary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-secondary-cta:hover {
  background: transparent;
  color: var(--brand-secondary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------
   Header & Navigation
------------------------------------------------------------------ */
#top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
/*  transition: transform 0.3s ease-in-out;*/
  background: white;
  border-bottom: 1px solid rgb(106, 0, 10);
}

#navbar_top {
  position: fixed;
  top: var(--top-header-height);
  left: 0;
  right: 0;
  z-index: 1020;
/*  transition: top 0.3s ease-in-out;*/
  background: white;
  border-bottom: 1px solid rgb(106, 0, 10);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-brand { padding: 4px; }
.navbar-brand:before {
  content: unset;
  font-family: unset;
}

.nav-link {
  font-size: 22px;
  font-weight: strong;
}

.navbar-nav .nav-link {
  color: #374151;
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #7b2d7d;
}

.navbar-nav .nav-link.active {
  color: #7b2d7d;
  font-weight: 600;
}

.navbar .dropdown-menu {
  display: none;
  margin-top: 0;
  border-top: 3px solid var(--purple-primary);
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

.navbar .dropdown-toggle::after {
  margin-left: 0.5em;
}

/* ------------------------------------------------------------------
   Hero Sections
------------------------------------------------------------------ */

/* Home Page Hero */
.hero-home {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 50%, var(--purple-light) 100%);
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.05) 75%);
  background-size: 60px 60px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-image {
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 60%, transparent 100%);
}

/* Service Page Hero */
.hero-section {
  background: linear-gradient(135deg, var(--bg-hero-a) 0%, var(--bg-hero-b) 100%);
  /*padding: 60px 0 40px;
  padding-top: 180px;*/
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/colour-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}



.garage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/garage-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.interior-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/interior-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.commercial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/commercial-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.condo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/condo-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.exterior-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/exterior-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}


.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/services-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/contact-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/quote-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/about-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.privacy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/privacy-painting.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}




.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--brand-accent);
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}

.hero-description {
  font-size: 20px !important;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ------------------------------------------------------------------
   Value Props
------------------------------------------------------------------ */
.value-props {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.value-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.value-prop-item:hover {
  border-color: var(--purple-primary);
  box-shadow: 0 4px 12px rgba(123, 45, 125, 0.1);
}

.value-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.value-prop-item h4 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.value-prop-item p {
  margin: 0;
  font-size: 18px !important;
  color: var(--text-body);
  line-height: 1.5;
}

/* ------------------------------------------------------------------
   Forms
------------------------------------------------------------------ */
.form-container {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
/*  position: sticky;
  top: 120px;*/
}

.form-header {
  background: var(--brand-primary);
  color: #fff;
  padding: 20px;
  margin: -30px -30px 25px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  text-align: center;
}

.form-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.form-header p {
  margin: 5px 0 0;
  font-size: 16px !important;
  opacity: 0.95;
}

.form-group, .mb-3 {
  margin-bottom: 20px;
}

.form-group label, .form-label {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  padding: var(--form-control-padding);
  font-size: 16px !important;
  border: var(--form-control-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--brand-primary);
  outline: none;
  box-shadow: var(--focus-ring);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.form-trust {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.form-trust p {
  color: var(--text-body);
  font-size: 16px !important;
  margin: 0;
}

.form-trust strong {
  color: var(--text-dark);
  font-size: 16px;
}

.success-message {
  display: none;
  background: #28a745;
  color: #fff;
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 20px;
}

.success-message.show {
  display: block;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------------
   Guarantee Section
------------------------------------------------------------------ */
.guarantee-section {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  padding: 4rem 0;
/*  margin: 4rem 0;*/
}

.guarantee-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.guarantee-badge {
  flex: 0 0 200px;
}

.guarantee-content {
  flex: 1;
  color: white;
}

.guarantee-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guarantee-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.guarantee-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.guarantee-list li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.guarantee-list li:before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: white;
  color: var(--purple-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ------------------------------------------------------------------
   Feature Boxes (Why Choose Us)
------------------------------------------------------------------ */
.feature-box {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--purple-primary);
  box-shadow: 0 4px 12px rgba(123, 45, 125, 0.1);
}

.feature-icon {
  color: var(--purple-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------------
   Service Cards
------------------------------------------------------------------ */
.services-grid {
  padding: 60px 0;
  background: var(--bg-soft);
}

.services-grid h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
/*  color: var(--text-dark);*/
}

.services-grid h2 span {
  color: var(--brand-accent);
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--gray-200);
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

/*.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(123, 45, 125, 0.15);
  border-color: var(--purple-accent);
}
*/
.service-card h4 {
  color: var(--brand-primary);
  font-size: 20px !important;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 18px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.service-card ul li {
  padding-left: 20px;
  position: relative;
  color: var(--text-body);
  margin-bottom: 8px;
  font-size: 18px;
}
/*
.service-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--purple-accent);
  font-weight: 700;
}
*/
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

/* ------------------------------------------------------------------
   Process Steps
------------------------------------------------------------------ */
.process-step {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--purple-primary);
}

.block-border {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--purple-primary);
}

/*
.process-step:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(123, 45, 125, 0.15);
}*/

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
  border: 4px solid white;
}

/* ------------------------------------------------------------------
   Room Section
------------------------------------------------------------------ */
.room-specific {
  padding: 60px 0;
  background: #fff;
}

.room-specific h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
/*  color: var(--text-dark);*/
}

.room-specific .subtitle {
  text-align: center;
  color: var(--text-body);
  font-size: 18px !important;
  margin-bottom: 40px;
}

.room-row {
  margin-bottom: 30px;
}

.room-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.room-card h3 {
  color: var(--brand-primary);
  font-size: 24px;
  margin-bottom: 15px;
}

.room-card p {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 18px;
}

.room-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ------------------------------------------------------------------
   Testimonials / Reviews
------------------------------------------------------------------ */
.testimonial-section {
  padding: 60px 0;
  background: #fff;
}

.testimonial-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
/*  color: var(--text-dark);*/
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-sm);
  border-top: 4px solid var(--purple-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-size: 16px !important;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 700;
  color: var(--purple-primary);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
  border-top: 4px solid var(--purple-accent);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: var(--purple-primary);
  opacity: 0.1;
}

/* ------------------------------------------------------------------
   Trust Badge
------------------------------------------------------------------ */
.trust-badge {
  text-align: center;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  margin-top: 30px;
}

.trust-badge h3 {
  color: var(--brand-primary);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.trust-badge p {
  color: var(--text-body);
  font-size: 18px;
  margin: 0;
}

/* ------------------------------------------------------------------
   FAQ Section
------------------------------------------------------------------ */
.faq-section {
  padding: 60px 0;
  background: var(--bg-soft);
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
/*  color: var(--text-dark);*/
}

.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
  color: var(--text-dark);
  font-size: 18px !important;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-item p {
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  font-size: 18px;
}

/* ------------------------------------------------------------------
   Final CTA Section
------------------------------------------------------------------ */
.final-cta {
  background: var(--brand-primary);
  padding: 50px 0;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.final-cta p {
  color: #fff;
  font-size: 20px !important;
  margin-bottom: 30px;
}

.final-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta-buttons .btn {
  padding: 15px 40px;
  font-size: 20px !important;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.final-cta-buttons .btn-white {
  background: #fff;
  color: var(--brand-primary);
}

.final-cta-buttons .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover) !important;
}

.final-cta-buttons .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.final-cta-buttons .btn-outline:hover {
  background: #fff;
  color: var(--brand-primary);
}

.cta-banner {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L50 50 L100 0 L50 100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 100px 100px;
}

/* ------------------------------------------------------------------
   Service Area Badges
------------------------------------------------------------------ */
.area-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gray-100);
  border-radius: 50px;
  color: var(--purple-primary);
  font-weight: 600;
  margin: 0.5rem;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.area-badge:hover {
  background: var(--purple-primary);
  color: white;
  transform: scale(1.05);
  border-color: var(--purple-primary);
}

/* ------------------------------------------------------------------
   Section Divider
------------------------------------------------------------------ */
.section-divider {
  height: 2px;
  border-top: 2px solid rgb(106, 0, 102);
  margin: 0;
}

/* ------------------------------------------------------------------
   Misc Utilities
------------------------------------------------------------------ */
span.anchor {
  display: block;
  position: relative;
  top: -340px;
  visibility: hidden;
}

.thumbnail {
  border-radius: var(--radius-md);
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.footer-icon {
  color: #fff;
}

.social-icon {
  width: 24px;
}

footer a {
  color: rgb(229 229 229);
}

footer a:hover {
  color: rgb(210 210 210);
}

footer .text-muted {
  color: rgba(255,255,255,.5)!important;
}

footer .brand-footer .brand_name-footer {
  color: var(--brand-primary);
}

.text-bold {
  font-weight: bold;
}

/* ------------------------------------------------------------------
   Responsive Styles
------------------------------------------------------------------ */

/* Desktop nav spacing */
@media (min-width: 992px) {
  .navbar-nav .nav-item {
    margin-left: 1.5rem;
  }
  .navbar-nav .nav-item:last-child {
    margin-left: 2.5rem;
  }
}

/* Tablet nav spacing */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-left: 0.75rem;
  }
  .navbar-nav .nav-item:last-child {
    margin-left: 1rem;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 0.75rem !important;
    font-size: 0.95rem;
  }
}

/* Larger desktop */
@media (min-width: 1200px) {
  .navbar-nav .nav-item {
    margin-left: 1.5rem;
  }
  .navbar-nav .nav-item:last-child {
    margin-left: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  .navbar-nav .nav-item:last-child {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-title span {
    font-size: 20px !important;
  }
  .hero-section {
/*    padding-top: 140px;*/
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn-primary-cta, .btn-secondary-cta {
    width: 100%;
    text-align: center;
  }
  .form-container {
    position: relative;
    margin-top: 40px;
    top: 0;
  }
  .guarantee-container {
    flex-direction: column;
    text-align: center;
  }
  .guarantee-badge {
    margin: 0 auto 20px;
  }
  .guarantee-list {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .final-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ------------------------------------------------------------------
   Animations
------------------------------------------------------------------ */
@keyframes shimmer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20%, -20%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}












hr {
  border-top:2px solid var(--purple-primary);
  margin:0;
  padding:0;
}


.border-radius {
  border-radius:8px;
}

.guarantee-badge {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
    color: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    position: relative;
}


.form-container {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Sticky form on desktop only */
@media (min-width: 992px) {
  .form-container {
    position: sticky;
    top: 120px;
    z-index: 100;
  }
}

.hero-section {
  /* ... other styles ... */
  overflow: visible; /* NOT overflow: hidden */
}

.btn-submit {
      width: 100%;
}



span.anchor {
    display: block;
    position: relative;
    top: -340px;
    visibility: hidden;
}






/* ------------------------------------------------------------------
   New Form Structure - Interior Service Page
------------------------------------------------------------------ */

.form-container-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.form-header-section {
  background: var(--brand-primary);
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.form-header-section h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.form-header-section .no-wrap {
  white-space: nowrap;
}

.form-body-section {
  padding: 2rem;
}

.custom-form-group {
  margin-bottom: 1.25rem;
}

.custom-form-label {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.custom-form-control {
  width: 100%;
  padding: var(--form-control-padding);
  font-size: 16px !important;
  border: var(--form-control-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-form-control:focus {
  border-color: var(--brand-primary);
  outline: none;
  box-shadow: var(--focus-ring);
}

textarea.custom-form-control {
  min-height: 100px;
  resize: vertical;
}

/* Honeypot field - hidden */
.checker {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Mobile spacing */
.mobile-margin-top {
  margin-top: 2rem;
}

/* Sticky form on desktop */
@media (min-width: 992px) {
  .form-container-wrapper {
    position: sticky;
    top: 120px;
    z-index: 100;
  }
  
  .mobile-margin-top {
    margin-top: 0;
  }
}

/* Success message styling */
.contact-form-submit {
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

#success {
  background: #28a745;
  color: white;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

#errors {
  background: #dc3545;
  color: white;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}







/* ------------------------------------------------------------------
   Contact Page Specific Styles
------------------------------------------------------------------ */

/* Shadow wrapper for forms */
.shadow-wrap-br {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Alert messages */
.alert {
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: none;
}

.alert-danger {
  background: #dc3545;
  color: white;
}

.alert-success {
  background: #28a745;
  color: white;
}

/* Validation error messages */
.errMessage {
  display: inline-block;
  color: white;
}

.errMessage i {
  margin-right: 8px;
}

/* Badge styling for service areas */
.badge.bg-purple-light {
  background: var(--bg-soft) !important;
  color: var(--purple-primary) !important;
}





/* Fix for Why Choose Us and Service Areas boxes on contact page */
.feature-box {
  background: white;
  padding: 2rem;
  border-radius:  var(--radius-md);
  border-left: 4px solid var(--purple-accent);
  transition: all 0.3s ease;
  height: auto; /* Change from h-100 to auto */
}

/*.feature-box:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(123, 45, 125, 0.1);
}*/

/* Ensure list items don't have excessive spacing */
.feature-box ul {
  margin-bottom: 0;
}

.feature-box ul li:last-child {
  margin-bottom: 0;
}

/* Service area badges - ensure proper wrapping */
.feature-box .d-flex.flex-wrap {
  margin-bottom: 0;
}

.badge.bg-purple-light {
  background: var(--gray-100) !important;
  color: var(--purple-primary) !important;
  font-weight: 600;
}



/* ------------------------------------------------------------------
   Free Estimate Page Specific Styles
------------------------------------------------------------------ */

/* Room checkboxes styling */
.rooms-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.checkbox-label:hover {
  background-color: var(--bg-soft);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--purple-primary);
}

/* Form section dividers */
.form-body-section hr {
  border-color: var(--gray-200);
  opacity: 0.5;
}

.form-body-section h5 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Select dropdowns */
select.custom-form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Mobile responsive checkboxes */
@media (max-width: 576px) {
  .rooms-checkboxes {
    grid-template-columns: 1fr;
  }
}


h3.lead {
  color:#575757;
  font-weight:bold;
}

h2 span {
  font-weight:bold;
  color: var(--brand-accent);;
}

h2 {
  font-weight:bold !important;
  color: var(--purple-primary);
}

h1.hero-title {
  color: #7b2d7d;
}




/* ------------------------------------------------------------------
   Services Page Specific Styles
------------------------------------------------------------------ */

/* Service features list */
.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

/* Outline button style */
.btn-outline-purple {
  background: transparent;
  color: var(--purple-primary);
  border: 2px solid var(--purple-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline-purple:hover {
  background: var(--purple-primary);
  color: white;
  text-decoration: none;
}

/* Area badges */
.area-badge {
  display: inline-block;
  background: white;
  color: var(--purple-primary);
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--purple-primary);
}







.home-banner {
max-width: 500px; 
margin-right: -50px;
}

.two-five {
  font-size: 2.5rem;
}
.rounded-border {
  border: 2px solid var(--purple-accent);
  border-radius:var(--radius-md);
}
.one-five {
  font-size: 1.5rem;
}
.max-220 {
  max-width: 220px;
}
.guarantee-badge-block {
  width: 150px; 
  height: 150px;
}
.review-circ {
  width: 50px; 
  height: 50px; 
  font-size: 1.25rem;
}


.faq-item h5 {
  font-weight:bold;
  margin-top:12px;
}


a {
  color: var(--purple-primary);
}

a:hover {
  color: var(--brand-accent);
}



h2.mb-0 {
      font-size: clamp(1.375rem, calc(1.375rem + 1.5vw), 2.5rem);
      line-height: 1.2;
}

h3.lead {
      font-size: clamp(1.2rem, calc(1.2rem + 1.5vw), 1.5rem);
      line-height: 1.2;
      margin-top:12px !important;
}


h2.serving {
      font-size: clamp(20px, calc(20px + 1.5vw), 22px);
      line-height: 1.2;
}


@media (max-width: 420px) {
  .hidden-mobile {
    display: none !important;
  }
}


.dropdown-item:active {
  background-color:#f3f3f3;
  color:#000;
}


/* Headers start with NO transition */
#top-header {
  transition: none;  /* ← Prevents initial slide */
}

#navbar_top {
  transition: none;  /* ← Prevents initial slide */
}

/* Transitions enabled AFTER page loads */
.header-loaded #top-header {
  transition: transform 0.3s ease-in-out;
}

.header-loaded #navbar_top {
  transition: top 0.3s ease-in-out;
}




