.elementor-23270 .elementor-element.elementor-element-e76430d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-23270 .elementor-element.elementor-element-2e6f1a8{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;overflow:visible;}.elementor-23270 .elementor-element.elementor-element-c25b8f7{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-23270 .elementor-element.elementor-element-c25b8f7.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-23270 .elementor-element.elementor-element-f2dda57{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-c25b8f7 *//* =========================================================
   Verge Tech - Pure CSS Tabs + Tables (Elementor-friendly)
   Shows ONLY the selected borough tab content.
   Defaults to London on first load.
   ========================================================= */

/* Container */
.service-area-tabs{
  max-width: 1200px;
  margin: 0 auto;
  font-family: inherit;
}

/* Tabs nav */
.service-area-tabs .tabs-nav{
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  border: 1px solid #1ea7ff;
}

.service-area-tabs .tabs-nav li{
  flex: 1;
  margin: 0;
  padding: 0;
}

.service-area-tabs .tabs-nav a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  text-decoration: none;
  color: #111;
  background: #fff;
  border-right: 1px solid #1ea7ff;
  font-weight: 600;
  line-height: 1;
  position: relative;
}

.service-area-tabs .tabs-nav li:last-child a{
  border-right: 0;
}

.service-area-tabs .tabs-nav a::before{
  content: "📍";
  font-size: 16px;
  line-height: 1;
}

.service-area-tabs .tabs-nav a:hover{
  background: #f5fbff;
}

/* Panels: hide all by default */
.service-area-tabs .tab-content{
  display: none;
}

/* Show only targeted panel */
.service-area-tabs .tab-content:target{
  display: block;
}

/* Default: if no panel is targeted, show London */
.service-area-tabs:not(:has(.tab-content:target)) #london{
  display: block;
}

/* Active tab highlighting (pure CSS using :has) */
.service-area-tabs:has(#london:target) .tabs-nav a[href="#london"],
.service-area-tabs:has(#berkshire:target) .tabs-nav a[href="#berkshire"],
.service-area-tabs:has(#buckinghamshire:target) .tabs-nav a[href="#buckinghamshire"],
.service-area-tabs:has(#surrey:target) .tabs-nav a[href="#surrey"]{
  background: #f5fbff;
  font-weight: 700;
}

/* Default active state = London */
.service-area-tabs:not(:has(.tab-content:target)) .tabs-nav a[href="#london"]{
  background: #f5fbff;
  font-weight: 700;
}

/* Headings */
.service-area-tabs h3{
  margin: 0 0 18px 0;
  font-size: 28px;
  font-weight: 700;
}

/* Tables */
.service-area-tabs .service-table{
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 26px 0;
  background: #fff;
}

.service-area-tabs .service-table thead th{
  background: #09a6e9;
  color: #fff;
  text-align: left;
  padding: 16px 18px;
  font-weight: 700;
  border: 0;
}

.service-area-tabs .service-table td{
  padding: 14px 18px;
  border-bottom: 1px solid #e8eef3;
  vertical-align: top;
}

/* Clean empty cells */
.service-area-tabs .service-table td:empty{
  background: transparent;
}

/* Responsive */
@media (max-width: 900px){
  .service-area-tabs .tabs-nav{
    flex-direction: column;
  }

  .service-area-tabs .tabs-nav a{
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #1ea7ff;
    padding: 14px 16px;
  }

  .service-area-tabs .tabs-nav li:last-child a{
    border-bottom: 0;
  }

  .service-area-tabs h3{
    font-size: 22px;
  }

  .service-area-tabs .service-table td,
  .service-area-tabs .service-table thead th{
    padding: 12px 14px;
  }
}
/* ================================
   Prevent anchor jump on tab click
   ================================ */

/* Create invisible offset above each tab panel */
.service-area-tabs .tab-content::before{
  content: "";
  display: block;
  height: 180px;          /* adjust if needed */
  margin-top: -180px;
  visibility: hidden;
  pointer-events: none;
}

/* ======================================================
   Tabs: lock equal widths + prevent shifting on active
   ====================================================== */

/* Keep the tab bar a fixed, stable flex row */
.service-area-tabs .tabs-nav{
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Each tab item always takes equal space */
.service-area-tabs .tabs-nav li{
  flex: 1 1 0;
}

/* Anchor fills the entire cell and keeps identical sizing */
.service-area-tabs .tabs-nav a{
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;

  /* Lock typography so active state can't change layout */
  font-weight: 600;         /* fixed */
  letter-spacing: 0;        /* fixed */
  line-height: 1;           /* fixed */
}

/* Active tab: DO NOT change font-weight (prevents reflow) */
.service-area-tabs:has(#london:target) .tabs-nav a[href="#london"],
.service-area-tabs:has(#berkshire:target) .tabs-nav a[href="#berkshire"],
.service-area-tabs:has(#buckinghamshire:target) .tabs-nav a[href="#buckinghamshire"],
.service-area-tabs:has(#surrey:target) .tabs-nav a[href="#surrey"],
.service-area-tabs:not(:has(.tab-content:target)) .tabs-nav a[href="#london"]{
  background: #f5fbff;
  font-weight: 600;                 /* same as normal */
  box-shadow: inset 0 -3px 0 #1ea7ff; /* visual highlight instead */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cb32131 *//* Wrapper */
.vt-services-section {
  background: #f5f7fb;
  padding: 70px 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1f2937;
}

/* Max width container */
.vt-services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Eyebrow label */
.vt-services-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* Title */
.vt-services-title {
  font-size: 32px;
  margin: 0 0 15px 0;
  color: #111827;
}

/* Intro paragraph */
.vt-services-intro {
  font-size: 16px;
  color: #374151;
  max-width: 820px;
  line-height: 1.6;
}

/* Grid layout */
.vt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* Service cards */
.vt-services-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}

/* Card heading */
.vt-services-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0f172a;
}

/* List reset */
.vt-services-card ul {
  padding-left: 18px;
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

/* Footer */
.vt-services-footer {
  margin-top: 35px;
  font-size: 16px;
  color: #374151;
  max-width: 800px;
}

/* Responsive layout */
@media (max-width: 900px) {
  .vt-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .vt-services-grid {
    grid-template-columns: 1fr;
  }

  .vt-services-title {
    font-size: 26px;
  }
}/* End custom CSS */