/* Variables & Reset */
:root {
  --primary-blue: #1b3c76;
  --primary-red: #c11022;
  --light-blue-bg: #e9f0f9;
  --bg-color: #f8f9fa;
  --text-color: #333333;
  --light-text: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 5px 15px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --font-main: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

/* Typography & Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--light-text); }

.section-padding { padding: 60px 0; }
.section-title {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 700;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.align-center { align-items: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-red {
  background-color: var(--primary-red);
  color: var(--light-text);
  border: 2px solid var(--primary-red);
}
.btn-red:hover {
  background-color: transparent;
  color: var(--primary-red);
}

.btn-blue {
  background-color: var(--primary-blue);
  color: var(--light-text);
  border: 2px solid var(--primary-blue);
}
.btn-blue:hover {
  background-color: transparent;
  color: var(--primary-blue);
}

/* Top Utility Bar */
.utility-bar {
  background-color: #0f172a; /* Slate 900 */
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
}
.utility-left img {
  height: 20px;
  width: auto;
}
.utility-right a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.utility-right a:hover {
  color: #facc15;
}
.utility-right a strong {
  color: #facc15; /* Yellow/Gold text for emergency phone number */
  font-weight: 800;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .utility-bar-inner {
    justify-content: center;
    gap: 15px;
  }
  .utility-left span {
    display: none; /* Hide label on mobile to keep it compact */
  }
}
@media (max-width: 480px) {
  .utility-left {
    display: none; /* Hide gas safe icon on very narrow mobile screens */
  }
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #ffffff 0%, var(--light-blue-bg) 100%);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.6rem;
}
.logo img { height: 50px; margin-right: 10px; }

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.postcode-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 6px 6px 6px 20px;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}
.postcode-search:focus-within {
  box-shadow: 0 8px 25px rgba(27, 60, 118, 0.15);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}
.postcode-search span { 
  font-size: 0.95rem; 
  font-weight: 700; 
  color: var(--primary-blue);
  margin-right: 10px;
}
.postcode-search input {
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  outline: none;
  background: #f8fafc;
  font-size: 0.95rem;
  width: 220px;
  color: #334155;
  transition: var(--transition);
}
.postcode-search input:focus { background: #f1f5f9; }
.postcode-search button {
  background: linear-gradient(135deg, var(--primary-red), #900a18);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  margin-left: 8px;
  box-shadow: 0 4px 10px rgba(193, 16, 34, 0.3);
  transition: var(--transition);
}
.postcode-search button:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 12px rgba(193, 16, 34, 0.35);
}

.header-contact { 
  text-align: right; 
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(27, 60, 118, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.header-contact p { 
  font-size: 0.75rem; 
  color: #64748b; 
  margin-bottom: 0; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-contact p::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
  border-radius: 50%;
  animation: pulse-red-dot 2s infinite;
}
.header-contact .phone-large {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-red);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.header-contact .phone-large:hover {
  transform: scale(1.05);
}

.btn-header-book {
  background: linear-gradient(135deg, var(--primary-red) 0%, #900a18 100%);
  color: white !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(193, 16, 34, 0.25);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-header-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(193, 16, 34, 0.35);
  background: linear-gradient(135deg, #e51d32 0%, #b90e20 100%);
}
@media (max-width: 992px) {
  .btn-header-book {
    display: none;
  }
}

@keyframes pulse-red-dot {
  0% { box-shadow: 0 0 0 0 rgba(193, 16, 34, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(193, 16, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 16, 34, 0); }
}

/* Nav Container (Red Bar) */
.nav-container {
  background-color: var(--primary-red);
  color: var(--light-text);
}
.nav-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
}
.nav-list > li > a {
  display: block;
  padding: 15px 20px;
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-list > li > a:hover { background-color: rgba(0,0,0,0.1); }

/* Dropdown Styles — Premium Animated */
.nav-list .dropdown {
  position: relative;
}

/* Invisible hover bridge to prevent gap flicker */
.nav-list .dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
  display: none;
}
.nav-list .dropdown:hover::after {
  display: block;
}

/* Chevron indicator for dropdown parents */
.nav-list .dropdown > a {
  display: flex !important;
  align-items: center;
  gap: 6px;
}
.nav-list .dropdown > a::before {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #ffffff;
  transition: transform 0.3s ease;
  order: 1;
}

/* Desktop dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  width: max-content;
  max-width: 90vw;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.06);
  list-style: none;
  padding: 15px 10px;
  border-radius: 10px;
  border-top: 3px solid var(--primary-red);
  z-index: 100;
  
  /* Multi-column layout */
  display: grid;
  grid-template-rows: repeat(14, auto);
  grid-auto-flow: column;
  column-gap: 20px;

  /* Animation: hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

/* Pointer caret arrow pointing up to parent item */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -11px;
  left: 28px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 8px solid var(--primary-red);
}

/* Show on hover (desktop) */
.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown menu items */
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 16px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--primary-blue);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
  position: relative;
}

.dropdown-menu li a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', FontAwesome;
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--primary-red);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: #f1f5f9;
  border-left-color: var(--primary-red);
  color: var(--primary-red);
  padding-left: 20px;
}

.dropdown-menu li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.instant-quote {
  background-color: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu-btn { 
  display: none; 
  background: none; 
  border: none; 
  color: white; 
  font-size: 1.4rem; 
  padding: 8px 12px; 
  cursor: pointer;
  margin-left: auto;
  border-radius: 6px;
  transition: background 0.2s ease;
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.15); }

/* Mobile close button: hidden on desktop */
.mobile-close-item { display: none; }
.mobile-close-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.5px;
}
.mobile-close-btn i { font-size: 1.1rem; color: #fbbf24; }

/* Dark overlay backdrop */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile chevron: hidden on desktop, only shown via media query */
.mobile-chevron { display: none; }

/* Hero Section */
.hero-screenshot {
  background-size: cover;
  background-position: center;
  padding: 100px 0 150px; /* Extra padding for floating boxes */
  position: relative;
  color: var(--primary-blue);
}
.hero-screenshot::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--primary-blue);
}
.hero-content .subtitle { font-size: 1.2rem; color: var(--primary-red); font-weight: 600; margin-bottom: 20px; }
.hero-content .rapid-response { background: var(--primary-blue); color: white; display: inline-block; padding: 5px 15px; font-weight: 600; margin-bottom: 20px; border-radius: 4px; }
.hero-benefits { list-style: none; margin-bottom: 25px; }
.hero-benefits li { font-weight: 600; font-size: 1.1rem; margin-bottom: 5px; }
.hero-benefits i { color: var(--primary-red); margin-right: 10px; }

.hero-buttons { display: flex; gap: 15px; margin-bottom: 30px; }
.hero-badges { position: relative; z-index: 1; display: flex; gap: 20px; margin-top: 20px; }
.badge { text-align: center; background: white; padding: 10px 20px; border-radius: 8px; box-shadow: var(--shadow); }
.badge img { height: 30px; }
.badge .stars { color: #fbbc05; font-size: 1.2rem; letter-spacing: 2px; }

/* Hybrid Grid for Hero (Desktop-only Phone Card move to right) */
.hero-grid-hybrid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left-column {
  display: flex;
  flex-direction: column;
}
.hero-right-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop Call Card styling */
.hero-desktop-call-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(27, 60, 118, 0.08);
  padding: 35px 30px;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}
.hero-desktop-call-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-blue) 100%);
}
.hero-desktop-call-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(27, 60, 118, 0.15);
}

.call-card-icon-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(193, 16, 34, 0.08);
  border: 2px solid rgba(193, 16, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-red);
  font-size: 2rem;
  animation: card-phone-pulse 2.5s infinite;
}
@keyframes card-phone-pulse {
  0% { box-shadow: 0 0 0 0 rgba(193, 16, 34, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(193, 16, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 16, 34, 0); }
}

.hero-desktop-call-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 8px;
}
.hero-desktop-call-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 25px;
}

.call-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-red) 0%, #900a18 100%);
  color: white !important;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 14px 25px;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 8px 20px rgba(193, 16, 34, 0.35);
  transition: var(--transition);
}
.call-card-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(193, 16, 34, 0.45);
}

.call-card-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 15px;
  font-weight: 600;
}

.mobile-only-phone-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .hero-grid-hybrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-right-column {
    display: none !important;
  }
  .mobile-only-phone-btn {
    display: inline-block !important;
  }
}

/* Floating Services */
.floating-services {
  margin-top: -80px;
  position: relative;
  z-index: 10;
}
.float-card {
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary-blue);
  transition: var(--transition);
}
.float-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.float-card i { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 15px; }
.float-card h3, .float-card h2 { color: var(--primary-blue); font-size: 1.1rem; margin: 0; font-weight: 700; }

/* About Section */
.about-text p { margin-bottom: 15px; }
.video-placeholder {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-placeholder img { width: 100%; display: block; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(0,0,0,0.7);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.play-btn:hover { background: var(--primary-red); }
.video-caption { text-align: center; font-weight: 500; margin-top: 10px; color: #555; }

/* CTA Banner */
.cta-banner {
  background-color: var(--light-blue-bg);
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.cta-banner h3 { color: var(--primary-blue); font-size: 1.8rem; margin-bottom: 30px; }
.cta-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}
.cta-grid ul { list-style: none; text-align: left; }
.cta-grid ul li { font-size: 1.1rem; margin-bottom: 10px; position: relative; padding-left: 20px; }
.cta-grid ul li::before {
  content: '•';
  color: var(--primary-blue);
  font-weight: bold;
  position: absolute;
  left: 0; top: 0;
}
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

/* Why Choose Us Modern Design */
.why-choose-us {
  position: relative;
  background-color: #f1f5f9;
  overflow: hidden;
}
.why-choose-us::before {
  content: '';
  position: absolute;
  top: -10%; right: 0;
  width: 60%; height: 120%;
  background: #e2e8f0;
  border-radius: 50% 0 0 50%;
  transform: translateX(20%);
  z-index: 0;
}
.why-choose-us .container { position: relative; z-index: 1; }
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-red);
  margin: -15px auto 50px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 30px;
  align-items: start;
}
.why-box { position: relative; margin-bottom: 30px; }
.why-left .why-box { text-align: right; padding-right: 40px; }
.why-right .why-box { text-align: left; padding-left: 40px; }

.why-box h4, .why-box h3 {
  color: #1e293b;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.why-box p { font-size: 0.95rem; color: #475569; }

/* Connectors */
.connector-left {
  position: absolute;
  right: -10px;
  top: 12px;
  width: 40px;
  height: 2px;
  background: #64748b;
}
.connector-left::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid #64748b;
  background: #f1f5f9;
}
.connector-right {
  position: absolute;
  left: -10px;
  top: 12px;
  width: 40px;
  height: 2px;
  background: #64748b;
}
.connector-right::after {
  content: '';
  position: absolute;
  left: -5px;
  top: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid #64748b;
  background: #f1f5f9;
}
.pipe-graphic { text-align: center; }

/* Detailed Services */
.detailed-services { background: var(--bg-color); padding: 80px 0; }
.service-list-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-top: 20px; /* Space for the overlapping icon if we use it, wait, the icon overlaps the header */
}
.service-list-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(193, 16, 34, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-list-card:hover {
  transform: translateY(-10px);
}
.service-list-card:hover::after {
  opacity: 1;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-red), #8a0b18);
  color: white;
  text-align: center;
  padding: 25px 20px 45px; /* Extra padding at bottom for icon overlap */
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.card-icon {
  text-align: center;
  padding: 0;
  margin: -35px auto 25px;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-red);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.service-list-card:hover .card-icon {
  transform: rotateY(180deg);
}

.service-list-card ul { list-style: none; padding: 0 25px 25px; }
.service-list-card ul li {
  border-bottom: 1px dashed #e2e8f0;
}
.service-list-card ul li:last-child { border-bottom: none; }
.service-list-card ul li a {
  display: flex;
  align-items: center;
  padding: 16px 0;
  color: #334155;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-list-card ul li a::before {
  content: '\f101';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-red);
  font-size: 0.85rem;
  opacity: 0;
  width: 0;
  transform: translateX(-15px);
  transition: all 0.3s ease;
  display: inline-block;
}
.service-list-card ul li a:hover { 
  color: var(--primary-red); 
}
.service-list-card ul li a:hover::before {
  opacity: 1;
  width: 20px;
  transform: translateX(0);
}

/* FAQS */
.faqs-section { background: white; }
.faq-item { margin-bottom: 15px; }
.faq-question {
  background: var(--bg-color);
  padding: 15px 20px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.faq-question:hover { background: var(--light-blue-bg); }

/* Testimonials */
.testimonials-section {
  background-color: var(--primary-blue);
  color: var(--light-text);
}
.testi-card {
  background: white;
  color: var(--text-color);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: left;
}
.testi-card .stars { color: #fbbc05; font-size: 1.2rem; margin-bottom: 15px; }
.testi-card p { font-style: italic; font-size: 0.95rem; margin-bottom: 20px; color: #555; }
.testi-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid #eee; padding-top: 15px; }
.testi-author .avatar i { font-size: 2rem; color: var(--primary-blue); }
.testi-author span { font-weight: 600; color: var(--primary-blue); }

/* Latest News */
.news-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow);
}
.news-date {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  border-radius: 4px;
  margin-bottom: 15px;
}
.news-card h4 { color: var(--primary-blue); margin-bottom: 10px; font-size: 1.1rem; }
.news-card p { font-size: 0.95rem; color: #666; margin-bottom: 15px; }
.read-more { color: var(--primary-red); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.read-more:hover { text-decoration: underline; }

/* Contact & Map */
.contact-map-section { background: var(--light-blue-bg); }
.info-block { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.info-block i { font-size: 2rem; color: var(--primary-red); margin-top: 5px; }
.info-block strong { display: block; color: var(--primary-blue); margin-bottom: 5px; }
.map-placeholder { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }

/* Footer */
.main-footer { 
  background: linear-gradient(135deg, #1b3c76 0%, #0f2557 100%); 
  color: white; 
  padding-top: 70px; 
  position: relative;
}
.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), #ff4d4d);
}
.footer-col h3 { 
  margin-bottom: 30px; 
  font-size: 1.3rem; 
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { 
  color: #cbd5e1; 
  text-decoration: none; 
  transition: all 0.3s ease; 
  font-size: 1.05rem; 
  display: flex;
  align-items: center;
}
.footer-col ul li a::before {
  content: '\f105'; /* FontAwesome right angle bracket */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 10px;
  color: var(--primary-red);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
  font-size: 0.9rem;
}
.footer-col ul li a:hover { 
  color: #ffffff; 
  transform: translateX(8px);
}
.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-bottom { 
  background: rgba(0, 0, 0, 0.25); 
  padding: 25px 0; 
  margin-top: 50px; 
  font-size: 0.95rem; 
  color: #94a3b8; 
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* WhatsApp Sticky */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.whatsapp-sticky:hover { transform: scale(1.1); color: white; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .header-right { flex-direction: column; gap: 10px; align-items: flex-end; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-center { display: none; }
  .why-left .why-box, .why-right .why-box { text-align: center; }
  .cta-grid { flex-direction: column; gap: 20px; align-items: center; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* ── Compact Top Bar ── */
  .top-bar { padding: 8px 0; }
  .top-bar-inner { 
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    flex-direction: row;
    text-align: left;
  }
  .logo img { height: 36px !important; }
  .logo > div { display: none; } /* hide text wordmark, keep icon */
  .header-right { 
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row;
    width: auto;
    margin-left: auto;
  }
  .postcode-search { display: none; } /* hide postcode bar on mobile */
  .header-contact { 
    display: flex !important;
    align-items: center;
    gap: 6px;
    text-align: left;
  }
  .header-contact img { height: 28px !important; }
  .header-contact p { display: none; } /* hide "24/7 emergency service" label */
  .header-contact .phone-large {
    font-size: 1rem !important;
    white-space: nowrap;
    font-weight: 700;
  }

  /* ── Nav bar layout ── */
  .nav-container .container { 
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 4px 16px;
  }
  .main-nav { flex: 1; }

  /* ── Mobile Menu Button: right side ── */
  .mobile-menu-btn { 
    display: flex;
    order: 99;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
  }

  /* ── Right-side slide-in drawer ── */
  .nav-list { 
    display: flex;
    flex-direction: column; 
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 88vw;
    height: 100dvh;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f2557 100%);
    box-shadow: -8px 0 30px rgba(0,0,0,0.5);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 40px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
  }
  .nav-list.active { 
    right: 0;
  }

  /* ── Close button row ── */
  .mobile-close-item { 
    display: block;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  /* ── Nav items ── */
  .nav-list > li { width: 100%; }
  .nav-list > li > a { 
    padding: 14px 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.07); 
    width: 100%; 
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #e2e8f0;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, padding-left 0.2s ease;
  }
  .nav-list > li > a:hover { 
    background: rgba(255,255,255,0.07);
    color: #fff;
    padding-left: 26px;
  }

  /* ── Hide desktop chevron, show mobile chevron pill ── */
  .nav-list .dropdown > a::before { display: none; }
  .nav-list .dropdown > a .mobile-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.2s ease;
    font-size: 0.72rem;
    flex-shrink: 0;
  }
  .nav-list .dropdown.submenu-open > a .mobile-chevron {
    transform: rotate(180deg);
    background: var(--primary-red);
  }

  /* ── Scrollable submenu with smooth transition ── */
  .nav-list .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: rgba(0,0,0,0.25);
    border-left: 3px solid var(--primary-red);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: block;
    width: 100%;
    max-width: none;
  }
  .nav-list .dropdown-menu::before { display: none; }
  .nav-list .dropdown.submenu-open > .dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) rgba(255,255,255,0.05);
  }
  .nav-list .dropdown.submenu-open > .dropdown-menu::-webkit-scrollbar { width: 3px; }
  .nav-list .dropdown.submenu-open > .dropdown-menu::-webkit-scrollbar-track { background: transparent; }
  .nav-list .dropdown.submenu-open > .dropdown-menu::-webkit-scrollbar-thumb { background: var(--primary-red); border-radius: 3px; }

  .nav-list .dropdown-menu li a {
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-left: none;
    padding: 11px 20px 11px 24px;
    font-weight: 500;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, padding-left 0.2s;
  }
  .nav-list .dropdown-menu li a::before {
    content: '›';
    color: var(--primary-red);
    opacity: 0.9;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    transform: none;
    margin-right: 0;
  }
  .nav-list .dropdown-menu li a:hover,
  .nav-list .dropdown-menu li a:active {
    background: rgba(255,255,255,0.07);
    color: #ffffff;
    padding-left: 30px;
  }

  .instant-quote { display: none; }
  .hero-screenshot { padding: 60px 0 100px; text-align: center; }
  .hero-buttons { justify-content: center; flex-direction: column; gap: 15px; }
  .hero-buttons .btn { width: 100%; }
  .hero-badges { justify-content: center; }
  .floating-services { margin-top: -50px; }
}

/* --- FAQ Answers --- */
.faq-answer {
  display: none;
  padding: 15px 20px;
  background: white;
  border: 1px solid var(--border-color);
  border-top: none;
  color: #555;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-question i { transition: transform 0.3s ease; }

/* --- Service Pages CSS --- */
.page-hero {
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 100px 0;
  text-align: center;
}
.page-hero h1 { font-size: 3rem; margin-bottom: 15px; }
.page-content { background: white; }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.main-text h2 { color: var(--primary-blue); font-size: 2.2rem; margin-bottom: 20px; }
.main-text p { margin-bottom: 20px; font-size: 1.05rem; }
.benefits-list { list-style: none; margin: 20px 0 30px; }
.benefits-list li { margin-bottom: 10px; font-size: 1.05rem; }
.benefits-list i { color: var(--primary-red); margin-right: 10px; }
.cta-box {
  background-color: var(--light-blue-bg);
  border-left: 4px solid var(--primary-red);
  padding: 30px;
  margin-top: 40px;
}
.cta-box h3 { color: var(--primary-blue); margin-bottom: 10px; }
.service-widget {
  background: #FFFFFF;
  padding: 25px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}
.service-widget h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-red);
}
.service-widget ul { list-style: none; }
.service-widget ul li a {
  display: block;
  padding: 10px 0;
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.service-widget ul li a:hover {
  color: var(--primary-red);
  padding-left: 10px;
}


/* --- PREMIUM CTA BANNER --- */
.premium-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.premium-cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(193, 16, 34, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.premium-cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27, 60, 118, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.premium-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.cta-content { flex: 1.1; color: #fff; text-align: left; }
.cta-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.25; color: white; letter-spacing: -1px; }
.cta-content p { font-size: 1.15rem; color: #94a3b8; margin-bottom: 35px; line-height: 1.6; }

/* Modern Features Grid inside CTA */
.cta-features-grid {
  flex: 0.9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cta-feature-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.cta-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.card-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(193, 16, 34, 0.15);
  border: 1px solid rgba(193, 16, 34, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon-wrapper i {
  color: #ff4d4d;
  font-size: 1.15rem;
}
.cta-feature-card:nth-child(2) .card-icon-wrapper {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}
.cta-feature-card:nth-child(2) .card-icon-wrapper i {
  color: #60a5fa;
}
.cta-feature-card:nth-child(3) .card-icon-wrapper {
  background: rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.3);
}
.cta-feature-card:nth-child(3) .card-icon-wrapper i {
  color: #fde047;
}
.cta-feature-card:nth-child(4) .card-icon-wrapper {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
.cta-feature-card:nth-child(4) .card-icon-wrapper i {
  color: #34d399;
}
.card-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.card-info span {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: block;
}

/* --- ENHANCED SERVICE PAGES --- */
.service-hero {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.hero-text-content { flex: 1; text-align: left;}
.hero-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-text-content h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); color: white;}
.hero-text-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; color: #e2e8f0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.hero-action-buttons { display: flex; gap: 20px; align-items: center; }
.btn-outline-white {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}
.btn-outline-white:hover { background: white; color: var(--primary-blue); }

.hero-guarantee {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.guarantee-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  min-width: 250px;
  text-align: left;
}
.guarantee-box i { font-size: 2rem; color: #facc15; }
.guarantee-box strong { display: block; font-size: 1.1rem; margin-bottom: 5px; color: white;}
.guarantee-box span { display: block; font-size: 0.9rem; color: #cbd5e1; }

.service-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.main-content-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
}
.main-content-box h2 { color: #0f172a; font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
.title-underline { width: 60px; height: 4px; background: var(--primary-red); margin-bottom: 25px; }
.lead-text { font-size: 1.15rem; color: #475569; line-height: 1.8; margin-bottom: 30px; }

.service-highlights { margin: 40px 0; }
.highlight-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.hi-icon {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.highlight-item h4 { color: #1e293b; margin-bottom: 5px; font-size: 1.1rem; }
.highlight-item p { color: #64748b; font-size: 0.95rem; line-height: 1.5; margin: 0; }

.main-content-box h3 { color: #1e293b; font-size: 1.8rem; margin: 30px 0 15px; }
.main-content-box p { color: #475569; line-height: 1.7; margin-bottom: 20px; }

.inline-cta-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary-red);
  padding: 30px;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.inline-cta-icon {
  width: 60px; height: 60px;
  background: var(--primary-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.inline-cta-text { text-align: left;}
.inline-cta-text h3 { margin: 0 0 5px 0 !important; color: #0f172a !important; font-size: 1.4rem !important; }
.inline-cta-text p { margin: 0 !important; color: #64748b !important; }

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 120px; /* Offset for sticky header */
  align-self: start;
}
.sidebar-widget {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  margin-bottom: 30px;
  text-align: left;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}
.sidebar-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary-blue);
}
.sidebar-widget h3 { color: #0f172a; font-size: 1.5rem; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid #f1f5f9; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.sidebar-form input, .sidebar-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  box-sizing: border-box;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.sidebar-form input:focus, .sidebar-form textarea:focus { outline: none; border-color: var(--primary-blue); background: white; box-shadow: 0 0 0 4px rgba(27, 60, 118, 0.1); }
.w-100 { width: 100%; }

.links-widget ul { list-style: none; padding: 0; margin: 0; }
.links-widget li { border-bottom: 1px solid #f1f5f9; transition: background 0.3s ease; }
.links-widget li:last-child { border-bottom: none; }
.links-widget a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 10px;
  color: #334155;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}
.links-widget li:hover { background: #f8fafc; }
.links-widget a:hover { color: var(--primary-blue); padding-left: 15px; }
.links-widget i { color: var(--primary-red); font-size: 0.9rem; }

.help-widget { background: linear-gradient(135deg, var(--primary-blue), #0f2557); color: white; text-align: center; }
.help-widget::before { background: var(--primary-red); }
.help-widget h3 { color: white; border-bottom: none; margin-bottom: 10px; justify-content: center; }
.help-widget h4 { color: white; border-bottom: none; margin-bottom: 10px; font-size: 1.3rem; font-weight: 700; }
.help-widget i { font-size: 3.5rem; color: #facc15; margin-bottom: 20px; }
.help-widget p { color: #cbd5e1; margin-bottom: 20px; font-size: 1.1rem; }
.help-widget a { display: inline-block; font-size: 1.8rem; font-weight: 800; color: white; text-decoration: none; padding: 10px 20px; border-radius: 8px; background: rgba(255,255,255,0.1); transition: all 0.3s ease; }
.help-widget a:hover { background: var(--primary-red); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(193, 16, 34, 0.4); }

/* --- Desktop Hover Lift --- */
.hover-lift:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* --- Mobile view responsive overrides for service page and others --- */
@media (max-width: 900px) {
  .hero-container, .premium-cta-inner { flex-direction: column; text-align: center; }
  .hero-text-content, .cta-content { text-align: center; }
  .hero-action-buttons { justify-content: center; }
  .cta-content .cta-buttons { justify-content: center !important; }
  .cta-features-grid { grid-template-columns: 1fr !important; width: 100%; gap: 15px; }
  .cta-feature-card { text-align: left; }
  .feature-card { grid-column: span 1 !important; }

  /* Stack Service Page Layout */
  .service-layout {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .service-sidebar {
    position: static !important;
    width: 100% !important;
  }
  .main-content-box {
    text-align: left !important; /* Keep service page content left-aligned for readability */
    padding: 25px 20px !important; /* Reduce padding to save horizontal space on mobile */
  }
  .sidebar-widget {
    padding: 25px 20px !important;
  }
}

@media (max-width: 600px) {
  .service-hero {
    padding: 65px 0 !important;
  }
  .hero-text-content h1 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }
  .hero-text-content p {
    font-size: 1.05rem !important;
  }
  .hero-action-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
  .hero-action-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-guarantee {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .guarantee-box {
    flex: 1 1 100% !important;
    padding: 15px !important;
  }
  .inline-cta-box {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px !important;
  }
  .inline-cta-text {
    text-align: center !important;
  }
  .inline-cta-box .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}


/* --- ENHANCED WHY CHOOSE US OVERRIDES --- */
.why-box { 
  position: relative; 
  margin-bottom: 30px; 
  background: white;
  padding: 30px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}
.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}
.why-left .why-box { text-align: right; border-right: 5px solid var(--primary-blue); padding-right: 30px; }
.why-right .why-box { text-align: left; border-left: 5px solid var(--primary-red); padding-left: 30px; }

.why-box h4, .why-box h3 {
  color: var(--primary-blue);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.why-box p { font-size: 1rem; color: #475569; line-height: 1.6; }

/* Fixed Connectors to match padding */
.connector-left {
  position: absolute;
  right: -30px;
  top: 35px; /* matches padding-top + heading offset */
  width: 30px;
  height: 2px;
  background: #cbd5e1;
}
.connector-left::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary-blue);
}
.connector-right {
  position: absolute;
  left: -30px;
  top: 35px;
  width: 30px;
  height: 2px;
  background: #cbd5e1;
}
.connector-right::after {
  content: '';
  position: absolute;
  left: -5px;
  top: -4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary-red);
}


/* --- NO CALL-OUT FEE BADGES --- */
.hero-badges-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.badge-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
  color: #0f172a !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  border: 1px solid #fcd34d;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.no-call-out-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
  text-transform: uppercase;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}


/* --- PREMIUM NAV CONTAINER OVERRIDES --- */
.nav-container {
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 50%, #7f1d1d 100%) !important;
  color: var(--light-text);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  position: relative;
  z-index: 50;
  border-bottom: 2px solid #ef4444;
}
.nav-list > li > a {
  display: block;
  padding: 18px 24px !important;
  color: var(--light-text);
  text-decoration: none;
  font-weight: 700 !important;
  font-size: 1rem !important;
  transition: var(--transition);
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}
.nav-list > li:hover > a::after {
  transform: scaleX(1);
}
.nav-list > li:hover > a { 
  background-color: rgba(0,0,0,0.15) !important; 
}

/* --- Postcode Modal --- */
.postcode-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 32, 39, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.postcode-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.postcode-modal {
  background: white;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.postcode-modal-overlay.active .postcode-modal {
  transform: translateY(0) scale(1);
}
.postcode-close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.3s;
}
.postcode-close:hover { color: var(--primary-red); }
.postcode-icon {
  width: 80px; height: 80px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}
.postcode-icon.error {
  background: #fef2f2;
  color: #ef4444;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
}
.postcode-modal h3 {
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 15px;
}
.postcode-modal p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.postcode-modal .highlight-area {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.2rem;
}
.postcode-modal .btn-red {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1.1rem;
}

/* --- Sticky Header --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* --- Other Services Section --- */
.other-services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.other-service-card {
  background: white;
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .other-service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.other-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.other-service-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.4rem;
  line-height: 1.3;
}
.other-service-title a {
  color: var(--primary-blue);
  text-decoration: none;
}
.other-service-title a:hover {
  color: var(--primary-red);
}
.other-service-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.other-service-btn {
  display: inline-block;
  background: white;
  color: var(--primary-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--primary-red);
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(193, 16, 34, 0.15);
  text-align: center;
}
.other-service-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.other-service-btn:hover,
.other-service-card:hover .other-service-btn {
  background: linear-gradient(135deg, var(--primary-red), #900a18);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(193, 16, 34, 0.3);
}
.other-service-card:hover .other-service-btn i {
  transform: translateX(6px);
}
@media (max-width: 768px) {
  .other-service-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
  }
  .other-service-action {
    width: 100%;
  }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(27, 60, 118, 0.95);
  color: white;
  padding: 15px 0;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  backdrop-filter: blur(5px);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-content a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
}
.cookie-content a:hover {
  text-decoration: underline;
}
.cookie-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(193, 16, 34, 0.3);
}
.cookie-btn:hover {
  background: #900a18;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* Accessibility: Inline links in paragraphs should be underlined and readable */
p a, .main-content-box p a, .other-service-desc a {
  text-decoration: underline !important;
  color: var(--primary-blue) !important;
}
p a:hover, .main-content-box p a:hover, .other-service-desc a:hover {
  color: var(--primary-red) !important;
}

/* Mobile Sticky Call Bar */
.mobile-sticky-call-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #c11022, #900a18);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    padding: 12px 10px;
    border-top: 2px solid rgba(255,255,255,0.1);
    animation: slideUpCallBar 0.5s ease-out;
  }

  .sticky-call-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: white !important;
    gap: 15px;
  }

  .pulse-phone-icon {
    background: white;
    color: #c11022;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phonePulse 1.8s infinite ease-in-out;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
  }

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

  .sticky-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .sticky-call-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .sticky-call-number {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.2px;
  }

  .whatsapp-sticky {
    bottom: 85px !important;
    z-index: 9998;
  }

  body {
    padding-bottom: 70px !important;
  }
}

@keyframes slideUpCallBar {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes phonePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* --- Modern Breadcrumbs --- */
.breadcrumb-nav {
  margin-bottom: 20px;
  display: block;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-item a:hover {
  color: #facc15;
}
.breadcrumb-item.active {
  color: #ffffff;
  font-weight: 700;
}
.breadcrumb-item .separator {
  font-size: 0.7rem;
  margin-left: 6px;
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.35);
  display: inline-block;
}
.breadcrumb-item i.fa-home {
  font-size: 0.85rem;
}

/* --- Mobile Nav Postcode Search --- */
.mobile-nav-postcode {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav-postcode {
    display: flex !important;
    background: #ffffff;
    padding: 2px 2px 2px 12px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-blue);
    margin-right: auto;
    width: calc(100% - 60px);
    max-width: 320px;
    align-items: center;
    height: 42px;
  }
  .mobile-nav-postcode input {
    background: transparent;
    padding: 6px 4px;
    font-size: 0.85rem;
    font-weight: 700;
    width: 100%;
    border: none;
    outline: none;
    color: var(--primary-blue);
  }
  .mobile-nav-postcode input::placeholder {
    color: #475569 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
  }
  .mobile-nav-postcode button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.85rem;
    margin-left: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
  }
  .mobile-nav-postcode button:hover {
    background: #0f2557;
  }
}


