/* ===== GLOBAL STYLES ===== */
:root {
  /* SaniTherm brand colors */
  --brand-purple: #652d90;
  --brand-orange: #fca311;
  --brand-green: #14AF7A;
  --brand-dark-purple: #2e004f;
  
  /* Supporting colors */
  --primary-color: var(--brand-green);
  --secondary-color: #e6f0fa;
  --accent-color: var(--brand-orange);
  
  /* Neutral colors */
  --text-color: #333333;
  --light-text: #ffffff;
  --background-light: #f8f8f8;
  --border-color: #e0e0e0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: var(--text-color);
  background: linear-gradient(0deg, #f8f8f8, #d8d8d8, #f8f8f8);
  line-height: 1.6;
}

/* GLOBAL TEXT STYLING - All text black and Arial */
body *:not(header *):not(footer *) {
  font-family: 'Arial', sans-serif !important;
  color: #000000 !important;
}

/* Header and footer keep white text */
header *, .site-footer * {
  color: #ffffff !important;
  font-weight: bold !important;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: var(--brand-dark-purple);
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.nav-content {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo img {
  max-width: 200px;
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  justify-content: center;
}

nav a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

nav a:hover, 
nav a.active {
  color: var(--brand-orange);
}

nav a.active {
  position: relative;
}

nav a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-orange);
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.phone-link, .email-link {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}

.phone-link:hover, 
.email-link:hover {
  color: var(--brand-orange);
}

.contact-divider {
  color: rgba(255,255,255,0.5);
}

.header-social {
  display: flex;
  gap: 21px;
  align-items: center;
}

.header-social img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.header-social img:hover {
  transform: scale(1.1);
}

/* ===== SPECIAL OFFER BANNER ===== */
.offer-banner {
    background: linear-gradient(to right, var(--brand-green), #1e8a5e);
    color: white;
    padding: 0.3rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0;
    border-radius: 8px;
}

.offer-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.1;
}

.offer-badge {
    background: white;
    color: var(--brand-green);
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.offer-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
    color: white !important;
    margin: 0;
}

.offer-text strong {
    color: white !important;
}

.offer-cta {
    background: var(--brand-orange);
    color: white !important;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s;
    white-space: nowrap;
    border: none;
}

.offer-cta:hover {
    background: #e69500;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.offer-banner * {
    background: transparent !important;
}

/* ===== MAIN CONTENT AREA ===== */
.content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

h1 {
  color: var(--brand-dark-purple);
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  color: var(--brand-purple);
  margin-top: 3rem;
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 0.5rem;
  background: none;
  box-shadow: none;
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.highlight {
  color: var(--brand-orange);
  font-weight: 600;
}

/* ===== SERVICE CARDS ===== */
.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-category {
  background-color: var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-category:hover {
  transform: translateY(-5px);
}

.service-image {
    width: 300px !important;
    height: 200px !important;
    object-fit: contain !important;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-details {
  padding: 1.5rem;
}

.service-details h2 {
  color: var(--brand-purple);
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.service-features {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
}

.service-features li::before {
  content: "•";
  color: var(--brand-orange);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.price-range {
  font-weight: bold;
  color: var(--brand-green);
  margin: 1rem 0;
}

.service-cta {
  display: inline-block;
  background-color: var(--brand-orange);
  color: var(--light-text);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1rem;
}

.service-cta:hover {
  background-color: var(--brand-purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===== SPECIAL OFFERS ===== */
.special-offers {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-dark-purple) 100%);
  color: var(--light-text) !important;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
  text-align: center;
}

.special-offers * {
  color: var(--light-text) !important;
}

.special-offers h2 {
  margin-top: 0;
  color: var(--light-text) !important;
  border-bottom: 2px solid var(--brand-orange) !important;
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.value-card {
  background-color: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-card h3 {
  color: var(--brand-purple);
  margin-top: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-dark-purple) 100%);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.cta-section h2 {
  border-bottom: 2px solid var(--brand-orange) !important;
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* WHITE TEXT FOR PURPLE BOXES */
.cta-section,
.cta-section *,
.special-offers,
.special-offers *,
.service-cta-section,
.service-cta-section *,
.area-header,
.area-header * {
  color: #ffffff !important;
}

.cta-button {
  background: var(--brand-orange) !important;
  color: var(--light-text) !important;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 163, 17, 0.3);
  margin-top: 1.5rem;
  font-weight: 600;
}

.cta-button:hover {
  background: #e69500 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 163, 17, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--brand-dark-purple);
  color: var(--light-text);
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-locations ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 1rem 0 2rem;
}

.footer-locations li {
  display: inline-block;
  margin: 0;
}

.footer-locations a {
  color: var(--light-text);
  text-decoration: none;
  padding: 0.5rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.footer-locations a:hover {
  color: var(--brand-orange);
}

.footer-legal {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--light-text) !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--brand-orange) !important;
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.about-section {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.about-section:nth-child(even) {
  background: linear-gradient(90deg, rgba(230, 240, 250, 0.3) 0%, rgba(230, 240, 250, 0) 100%);
  padding: 2rem;
  border-radius: 12px;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-top: 0;
  color: var(--brand-purple);
  border-bottom: 3px solid var(--brand-orange);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.about-text ul {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.about-text li {
  margin-bottom: 0.8rem;
  position: relative;
  list-style-type: none;
}

.about-text li:before {
  content: "•";
  color: var(--brand-orange);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: -1.5rem;
  top: -0.2rem;
}

/* About Page Value Cards */
.about-page .value-card {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid var(--brand-orange);
  box-shadow: none;
}

/* Equipment Specifications */
.equipment-spec {
  margin-bottom: 2rem;
}

.equipment-spec h3 {
  color: var(--brand-purple);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  text-align: center;
}

.spec-list {
  padding-left: 1rem;
  margin-top: 0;
}

.spec-list li {
  margin-bottom: 0.8rem;
  position: relative;
  list-style-type: none;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.spec-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: bold;
  font-size: 1.5rem;
  top: -0.2rem;
}

.benefits-list {
  padding-left: 1rem;
}

.benefits-list li {
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Full-width equipment section */
.about-text.full-width {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Equipment grid layout */
.equipment-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.equipment-column {
  flex: 1;
  min-width: 0;
}

.equipment-banner {
  margin: 3rem 0;
}

.equipment-banner img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.equipment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page .content {
  max-width: 800px;
  text-align: center;
}

.contact-info {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: left;
}

.contact-info a {
  color: var(--brand-green);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-media {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-media img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-media img:hover {
  transform: scale(1.1);
}

/* ===== TESTIMONIALS PAGE STYLES ===== */
.testimonials-page .content {
  max-width: 1000px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--brand-orange);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 10px;
}

.testimonial-card blockquote {
  font-style: italic;
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: bold;
  color: var(--brand-purple);
  margin: 0;
  text-align: right;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.process-step {
  background-color: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--brand-orange);
}

.process-step h3 {
  color: var(--brand-purple);
  margin-top: 0;
  font-size: 1.2rem;
}

.process-step p {
  margin-bottom: 0;
}

/* ===== LOCATION PAGE STYLES ===== */
.location-hero {
  height: auto;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--brand-dark-purple);
  margin-bottom: 3rem;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

.location-hero img {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-content h1,
.hero-content p {
  color: var(--brand-dark-purple);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: none !important;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.3rem;
}

.service-area-header {
  text-align: center;
  margin-bottom: 3rem;
  background: none;
  box-shadow: none;
  padding: 0;
}

.service-area-header h2 {
  font-size: 2.2rem;
}

/* Area Cards */
.area-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.area-header {
  background: linear-gradient(to right, var(--brand-purple), var(--brand-dark-purple));
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
}

.area-header h3 {
  color: white !important;
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

.area-content {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Village Grid */
.village-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0;
}

.village {
  background: var(--secondary-color);
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

.village a {
  color: inherit;
  text-decoration: none;
}

.village a:hover {
  color: var(--brand-orange);
}

/* Postcode Section */
.postcode-section {
  background: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  margin: 2rem 0;
}

.postcodes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.postcode {
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid var(--brand-green);
  color: var(--brand-green);
  font-size: 0.9rem;
}

.coverage-map {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coverage-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== SERVICE AREA PAGE SPECIFIC STYLES ===== */
.service-area-page .radius-map {
  margin-bottom: 3rem;
}

.service-area-page .radius-map-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-area-page .postcode-checker {
  text-align: center;
  margin: 3rem auto;
  max-width: 600px;
  padding: 2rem;
  background-color: var(--secondary-color);
  border-radius: 8px;
}

.service-area-page .postcode-checker input {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  width: 200px;
  margin-right: 1rem;
  font-size: 1rem;
}

.service-area-page .result-message {
  margin-top: 1rem;
  font-weight: 500;
}

/* Testimonials */
.local-testimonials {
  background: var(--secondary-color);
  padding: 40px 30px;
  border-top: 3px solid var(--brand-orange);
  margin-top: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

/* CTA Section */
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background: linear-gradient(to right, var(--brand-orange), #e69500);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  background: linear-gradient(to right, #e69500, var(--brand-orange));
}

.btn-light {
  background: white;
  color: var(--brand-purple);
}

.btn-light:hover {
  background: var(--brand-orange);
  color: white;
}

/* ===== GALLERY PAGE ===== */
.gallery-page .content {
  max-width: 1200px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(46, 0, 79, 0.8);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ===== BEFORE/AFTER SLIDER ===== */
.ba-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 450px;
}

.ba-before,
.ba-after {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  width: 50%;
  z-index: 2;
  overflow: hidden;
}

.before-label,
.after-label {
  position: absolute;
  top: 15px;
  padding: 8px 15px;
  background: rgba(46, 0, 79, 0.85);
  color: #ffffff !important;
  font-weight: bold;
  font-size: 16px;
  z-index: 4;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.before-label {
  left: 15px;
}

.after-label {
  right: 15px;
}

.ba-slider-input {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: ew-resize;
}

.ba-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 4px;
  height: 450px;
  background: var(--brand-orange);
  cursor: ew-resize;
}

.ba-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(46, 0, 79, 0.8);
  color: white;
  padding: 1rem;
  z-index: 2;
}

.ba-caption h3,
.ba-caption p {
  color: #ffffff !important;
}

/* ===== VIDEO GALLERY STYLES ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    padding: 1.2rem;
    background: var(--secondary-color);
    border-top: 1px solid var(--border-color);
}

.video-caption h3 {
    color: var(--brand-purple) !important;
    margin-top: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.video-caption p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #555 !important;
    line-height: 1.5;
}

/* ===== INTERACTIVE MAP STYLES ===== */
.interactive-map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: white;
  padding: 20px;
}

.interactive-map {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  z-index: 1;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.2);
}

.legend-text {
  font-size: 14px;
  color: var(--text-color);
}

.map-controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}

.map-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.2s;
  font-weight: bold;
  font-size: 16px;
}

.map-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.postcode-marker {
  background-color: var(--brand-orange);
  border: 2px solid white;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.service-location-marker {
  background: transparent !important;
  border: none !important;
}

/* Leaflet overrides */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.leaflet-popup-content {
  margin: 12px;
  font-size: 14px;
}

.leaflet-popup-content h4 {
  color: var(--brand-purple);
  margin: 0 0 8px 0;
}

/* ===== QUOTE FORM STYLES ===== */
.quote-form-container {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.multi-step-form {
  position: relative;
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.form-step.active {
  display: block;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: var(--secondary-color);
  border-radius: 5px;
  margin-bottom: 2rem;
  position: relative;
}

.progress-bar .progress {
  height: 100%;
  background: var(--brand-green);
  border-radius: 5px;
  transition: width 0.3s ease;
}

.progress-bar span {
  position: absolute;
  right: 0;
  top: -25px;
  font-size: 0.9rem;
  color: var(--brand-purple);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--brand-dark-purple);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-purple);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 2px solid var(--border-color);
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--brand-purple);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.next-btn, .submit-btn {
  background: var(--brand-green);
  color: white;
  margin-left: auto;
}

.next-btn:hover, .submit-btn:hover {
  background: var(--brand-dark-purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.prev-btn {
  background: white;
  color: var(--brand-purple);
  border: 1px solid var(--border-color);
}

.prev-btn:hover {
  background: var(--secondary-color);
}

.form-confirmation {
  text-align: center;
  padding: 2rem;
}

.confirmation-icon {
  font-size: 4rem;
  color: var(--brand-green);
  margin-bottom: 1rem;
}

.form-confirmation h2 {
  color: var(--brand-purple);
  margin-bottom: 1rem;
}

.form-confirmation p {
  margin-bottom: 0.5rem;
}

/* ===== SERVICE PAGE STYLES ===== */
.service-hero {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail p:first-of-type {
    margin-bottom: 3rem !important;
}

.service-detail h2:first-of-type {
    text-align: center !important;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method-card {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--brand-orange);
}

.method-card h4 {
    color: var(--brand-purple);
    margin-top: 0;
}

.service-cta-section {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-dark-purple) 100%);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-button-large {
    background: var(--brand-orange);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background: #e69500;
    transform: translateY(-2px);
}

.cta-subtext {
    margin-top: 1rem;
    opacity: 0.9;
}

.cta-subtext a {
    color: var(--brand-orange);
    font-weight: 600;
}

.back-to-services {
    text-align: center;
    margin: 2rem 0;
}

.back-to-services a {
    color: var(--brand-purple);
    text-decoration: none;
    font-weight: 600;
}

.back-to-services a:hover {
    color: var(--brand-orange);
}

.related-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 3rem 0;
}

.related-service {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-service h4 {
    color: var(--brand-green);
    margin: 1.2rem 1rem 0.5rem 1rem;
    font-size: 1.2rem;
}

.related-service p {
    margin: 0 1rem 1.2rem 1rem;
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-link {
    display: inline-block;
    margin: 0 1rem 1.5rem 1rem;
    padding: 0.5rem 1.2rem;
    background: var(--brand-green);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.service-link:hover {
    background: #1e5f3a;
}

.included-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.included-service-column {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--brand-orange);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-dark-purple);
  color: white;
  padding: 1rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-consent.active {
  display: block;
  animation: slideUp 0.5s ease-out;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-consent-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}

.cookie-consent-accept {
  background: var(--brand-green);
  color: white;
}

.cookie-consent-decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-consent-accept:hover {
  background: #00664d;
}

.cookie-consent-decline:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-consent * {
  color: #ffffff !important;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== TERMS PAGE STYLES ===== */
.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.terms-section h2 {
    color: var(--brand-purple);
    margin-top: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-orange);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-section strong {
    color: var(--brand-dark-purple);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-section {
  animation: fadeIn 0.6s ease-out forwards;
}

.about-section:nth-child(odd) {
  animation-delay: 0.1s;
}

.about-section:nth-child(even) {
  animation-delay: 0.2s;
}

.values-grid {
  animation: fadeIn 0.6s ease-out 0.3s forwards;
}

/* ===== RESPONSIVE MEDIA QUERIES (CONSOLIDATED) ===== */
@media (max-width: 1200px) {
  .nav-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .contact-social {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
  }
  
  .contact-divider {
    display: none;
  }
  
  .header-social {
    margin-left: 0;
    margin-top: 0.5rem;
    gap: 21px;
  }
  
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Navigation Fixes */
  nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-social {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .phone-link, 
  .email-link {
    text-align: center;
    width: 100%;
    font-size: 1.1rem;
    padding: 0.25rem 0;
  }
  
  .contact-divider {
    display: none;
  }
  
  .header-social {
    justify-content: center;
    gap: 21px;
    margin-top: 0.25rem;
    margin-bottom: 1rem !important;
    width: 100%;
  }
  
  .header-social img {
    width: 35px;
    height: 35px;
  }
  
  /* Banner Fix */
  .offer-banner {
    margin-top: 1rem !important;
    padding: 0.4rem 0.8rem;
    width: 100%;
  }
  
  .offer-banner-content {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }
  
  .offer-text {
    min-width: 100%;
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
    padding: 0 0.5rem;
  }
  
  /* Service Cards Fix */
  .service-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .service-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto 2rem auto;
    padding: 1rem;
  }
  
  .service-image {
    margin: 0 auto !important;
    display: block !important;
    max-width: 100%;
    width: 280px;
    height: 180px;
    object-fit: cover !important;  /* Changed from contain to cover */
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }
  
  .service-details {
    text-align: center;
    padding: 1rem 0.5rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .service-details h2,
  .service-details p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-cta {
    display: inline-block;
    margin: 1rem auto 0;
  }
  
  /* About Page Fixes */
  .about-page .content,
  .about-intro {
    padding: 0 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .about-intro {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 2rem;
  }
  
  .about-section {
    flex-direction: column;
    padding: 1.5rem 1rem;
    width: 100%;
  }
  
  .about-section:nth-child(even) {
    flex-direction: column-reverse;
    background: linear-gradient(180deg, rgba(230, 240, 250, 0.3) 0%, rgba(230, 240, 250, 0) 100%);
  }
  
  .about-img {
    max-width: 100%;
  }
  
  .about-section h2 {
    font-size: 1.3rem !important;
    line-height: 1.3;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .equipment-row {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .equipment-column {
    width: 100%;
    padding: 0;
  }
  
  .equipment-spec h3 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--brand-orange);
  }
  
  .spec-list,
  .benefits-list {
    padding-left: 1.25rem;
    width: 100%;
  }
  
  .spec-list li,
  .benefits-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
  }
  
  .about-page .values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .about-page h2 {
    text-align: left;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    padding-left: 0.25rem;
  }
  
  /* Equipment Section Fix - Added */
  .about-section:has(.equipment-intro) {
    background: none !important;
    padding: 0 !important;
    margin: 0 0 2rem 0 !important;
    box-shadow: none !important;
  }
  
  .equipment-intro {
    text-align: left;
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
  }
  
  .equipment-intro h2 {
    font-size: 1.5rem !important;
    text-align: left;
    margin: 0 0 0.75rem 0;
    padding: 0 0 0.5rem 0;
    border-bottom: 3px solid var(--brand-orange);
    display: inline-block;
    color: var(--brand-purple);
  }
  
  .spec-list li {
    font-size: 1rem !important;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #333333;
  }
  /* End Equipment Section Fix */
  
/* Before/After Slider Fix */
.ba-slider {
  height: 250px !important;
}

.ba-slider-input {
  height: 250px !important;
  top: 0 !important;
}

.ba-slider-input::-webkit-slider-thumb {
  height: 250px !important;
  top: 0 !important;
}

.ba-caption {
  position: relative !important;
  background: rgba(46, 0, 79, 0.9);
  padding: 0.75rem 1rem;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
  transform: none !important;
  bottom: auto !important;
  z-index: 5;
}

.ba-before,
.ba-after {
  object-fit: cover;
  height: 250px;
}
  
  /* Gallery & Video */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .video-caption {
    padding: 1rem;
  }
  
  .video-caption h3 {
    font-size: 1rem;
  }
  
  .video-caption p {
    font-size: 0.9rem;
  }
  
  /* Form & Other Elements */
  .quote-form-container {
    padding: 1.5rem;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .service-area-page .postcode-checker input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .service-area-page .postcode-checker button {
    width: 100%;
  }
  
  .interactive-map {
    height: 400px;
  }
  
  .map-legend {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .certification-badges img {
    height: 80px;
    margin: 0.5rem;
  }
  
  /* Word wrap for all text */
  p, li, h1, h2, h3, h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 480px) {
  .header-social img {
    width: 32px;
    height: 32px;
  }
  
  .header-social {
    margin-bottom: 1.25rem !important;
  }
  
  .offer-banner {
    margin-top: 1.25rem !important;
    padding: 0.25rem 0.5rem;
  }
  
  .offer-text {
    font-size: 0.8rem;
  }
  
  .offer-badge {
    font-size: 0.7rem;
    padding: 0.1rem 0.5rem;
  }
  
  .phone-link, 
  .email-link {
    font-size: 1rem;
  }
  
  .service-image {
    width: 240px;
    height: 160px;
    object-fit: cover !important;  /* Add this line */
    border-radius: 10px;
  }
  
  .service-details p {
    font-size: 0.95rem;
  }
  
  .about-intro {
    font-size: 0.95rem;
    padding: 0 0.75rem;
  }
  
  .spec-list li,
  .benefits-list li {
    font-size: 0.9rem;
  }
  
  .about-page h2 {
    font-size: 1.3rem;
  }
  
  .about-section h2 {
    font-size: 1.2rem !important;
  }
  
  .equipment-spec h3 {
    font-size: 1.1rem;
  }
  
.ba-slider {
  height: 200px !important;
}

.ba-slider-input {
  height: 200px !important;
}

.ba-slider-input::-webkit-slider-thumb {
  height: 200px !important;
}

.ba-before,
.ba-after {
  height: 200px;
}

.ba-caption {
  padding: 0.5rem 0.75rem;
}

.ba-caption h3 {
  font-size: 0.9rem;
}

.ba-caption p {
  font-size: 0.75rem;
}
  
  .interactive-map {
    height: 300px;
  }
  
  .map-controls {
    bottom: 10px;
    right: 10px;
  }
  
  .map-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .equipment-intro h2 {
    font-size: 1.3rem !important;
  }
}