/*
Theme Name: HC Group Care UK My
Theme URI: https://hcgroupuk.co.uk
Description: HC Group Care home care theme.
Version: 3.0
Author: Web Solutions
*/

@font-face {
    font-family: 'Poppins-Light';
    src: url('/wp-content/themes/hcgroupuk/assets/fonts/Poppins-Light.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('/wp-content/themes/hcgroupuk/assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'fredoka-latin-500-normal';
    src: url('/wp-content/themes/hcgroupuk/assets/fonts/fredoka-latin-500-normal.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'fredoka-latin-600-normal';
    src: url('/wp-content/themes/hcgroupuk/assets/fonts/fredoka-latin-600-normal.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('/wp-content/themes/hcgroupuk/assets/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

/* ================================= VARIABLES ================================= */
:root {
    --green-bg: green;
    --green-text: darkgreen;

    --primary-hc: #ff8a65;
    --primary2-hc) #ff8a65;
    --primary-hc-light: #FFA88D;
    --primary-hc-dark: #FF7B51;
    --text-on-white: #FFA88D;
    --text-on-primary: rgba(255, 255, 255, 0.53);
    --btn-on-primary: rgba(255, 255, 255, 0.93) !important;
    --btn-on-primary-hover: rgba(255, 255, 255, 0.23) !important;
    --btn-on-white: rgba(255, 255, 255, 0.53);
    --accent-hc: #017AC1;
    --accent-hc-icon: #FF7B51;
    --accent-hc-hover: #FFA88D;
    --red-hc: #c0392b;
    --under-short: #E1AA7E;
    --cream-hc: #fcfcfc;
    --cream-hc-dark: #e3eef8;
    --text-hc: #5b5b5b;
    --text-hc-muted: #6b7280;
    --white-hc: #ffffff;
    --border-hc: #D0DBE5;
    --shadow-hc-sm: 0 2px 8px rgba(28, 117, 188, 0.08);
    --shadow-hc-md: 0 6px 14px rgba(90, 90, 90, 0.12);
    --shadow-hc-lg: 0 16px 48px rgba(28, 117, 188, 0.15);
    --radius-hc: 9px;
    --radius-hc-lg: 10px;
}

/* ================================= RESET ================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins-Regular';
    margin: 0;
    font-size: 1.15rem;
/*background: var(--cream-hc);*/
color: var(--text-hc);
/*line-height: 1.8;*/
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-top: 0;
}

h1 {
    font-family: 'fredoka-latin-600-normal';
    font-size: clamp(30px, 5.5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(30px, 3.5vw, 46px);
    color: #666;
    font-weight: 300;
/*    padding-bottom: 16px;
margin-bottom: 34px;*/
position: relative;

}

.text-on-white {
    color: var(--text-on-white);
}

.text-on-primary {
    color: var(--text-on-primary);
}

.accent {
    color: #F19955;
}

.hero .accent {
    color: #f4a261;
}

/*h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 56px;
height: 3px;
background: var(--under-short);
border-radius: 2px;
}*/


/* Centred h2 underline */
.services h2::after,
.how-care-works h2::after,
.cta-care h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.how-care-works h2 {
    color: white;
}

.how-care-works h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.cta-care h2 {
    color: white;
}

.cta-care h2::after {
    background: rgba(255, 255, 255, 0.5);
}

h3 {
    font-size: clamp(18px, 2vw, 22px);
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    color: var(--text-hc-muted);
    font-size: 19px;
    margin-top: 0;
}

/* ================================= LAYOUT ================================= */
/*.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
}*/

section {
    /*padding: 87px 0;*/
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 90px;
}

/* ================================= HEADER ================================= */
.header-topbar {
    background: var(--primary-hc);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-topbar-inner {
    max-width: 1280px;
    margin: auto;
    padding: 8px 24px;
    display: flex;
    justify-content: flex-end;
}

.header-topbar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.header-topbar a:hover {
    color: #fff;
}

.site-header {
    background: var(--white-hc);
    border-bottom: 1px solid var(--border-hc);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-hc-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 14px 24px;
    gap: 10px;
}

.logo img {
    height: 50px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-hc);
    font-weight: 500;
    font-size: 17px;
    padding: 8px 9px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
/*border-right: 1px solid var(--border-hc);*/
}

.main-nav a:last-child {
    border-right: none;
}

.main-nav a:hover {
/*background: #0389BF;*/
/*color: #999;*/
background-color: #f7f7f7;
/*color: var(--primary-hc-light);*/
/*    background: var(--cream-hc-dark);
color: var(--primary-hc);*/
}

.header-cta a {
    background: var(--primary-hc);
    color: white;
    padding: 8px 18px 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}

.header-cta a:hover {
    background: var(--primary-hc-light);
    color: #fff;
}

/* ================================= HAMBURGER ================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 6px;
    border: none;
    background: none;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-hc);
    display: block;
    border-radius: 2px;
}

/* ================================= HERO ================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: url('/wp-content/uploads/services/hero-banner.webp') center/cover no-repeat;
    padding: 0;
}

.hero-bg {
    display: none;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(90, 90, 90, 0.72) 0%, rgba(60, 60, 60, 0.65) 100%);
    padding: 160px 24px 120px;
    text-align: left;
    color: white;
}

.hero-inner {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    color: white;
    /*text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);*/
}

.hero h2 {
    color: white;
    padding-bottom: 0;
}

.hero h2::after {
    display: none;
}

.hero p {
    font-size: clamp(17px, 2vw, 21px);
    max-width: 560px;
    opacity: 0.95;
    margin-bottom: 36px;
}


.landing-hero-edgbaston {
    position: relative;
    z-index: 1002;
    height: 200px;
    width: 100%;
    height: auto;
    background: var(--primary-hc);
    /*background: url('/wp-content/themes/hcgroupuk/assets/img/edgbaston-hero.jpg') center/cover no-repeat;*/
    padding: 0;
}

.landing-hero-edgbaston .landing-hero-edgbaston-overlay {
    position: relative;
    z-index: 2023;
    height: 200px;
    width: 100%;
    top: 100px;
    left: 0;
    background: rgba(30, 30, 30, .9);
}
/* ================================= BUTTONS ================================= */

div.wpforms-container-full button[type="submit"] {
    background-color: var(--primary-hc) !important;
}
.hero-btn-primary, .hero-btn-secondary, .hero-btn-white {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    /*margin-bottom: 2px;*/
    display: inline-block;
    transition: background 0.2s, border-color 0.2s;
}

.hero-btn-primary {
    padding: 14px 28px;
    /*border: 2px solid var(--primary-hc);*/
    background-color: var(--primary-hc);
    color: white;
}

.hero-btn-primary:hover {
    /*border: 2px solid var(--primary-hc-light);*/
    background-color: var(--primary-hc-light);
}

.hero-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.65);

    color: white;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

.hero-btn-white {
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 1);
    color: var(--primary-hc);
}

.hero-btn-white:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* ================================= TRUST STRIP ================================= */
.trust-strip {
    background: var(--white-hc);
    border-top: 1px solid var(--border-hc);
    border-bottom: 1px solid var(--border-hc);
    padding: 22px 0;
}


.trust-inner::before {
    position: relative;
    content: '✓';
    width: 26px;
    height: 26px;
    background: var(--primary-hc-light);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 14px;
}

/* ================================= INTRO STATEMENT ================================= */
/*.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #d0e3f5;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.stat-block {
    padding: 36px 32px;
    border-right: 1px solid #d0e3f5;
    border-bottom: 1px solid #d0e3f5;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.2s;
}

.stat-block:hover {
    background-color: #fcfcfc;
}

.stat-number {
    font-size: 40px;
    font-family: Poppins-SemiBold;
    color: #666;
    line-height: 1;
}

.stat-block:hover .stat-number {
    color: var(--primary-hc);
}

.stat-block:hover .stat-label {
    color: black;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-block:nth-child(2),
.stat-block:nth-child(4) {
    border-right: none;
}

.stat-block:nth-child(3),
.stat-block:nth-child(4) {
    border-bottom: none;
}


@media (max-width: 480px) {
    .stat-block {
        padding: 24px 20px;
    }

    .stat-number {
        font-size: 32px;
    }
}*/

/* ================================= SECTION INTRO ================================= */
.section-intro {
    font-size: 20px;
    color: var(--text-hc-muted);
    max-width: 580px;
    margin: -16px auto 52px;
    text-align: center;
    padding-top: 20px;
}

/*/*/* ================================= SERVICES ================================= */
.services {
    background: #fbfbfb;
    text-align: center;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}

/*.services { background: var(--cream-hc); text-align: center; }*/

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white-hc);
    padding: 40px 32px;
    border-radius: var(--radius-hc-lg);
/*box-shadow: var(--shadow-hc-sm);*/
text-align: center;
transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
border: 1px solid #eee;
/*border: 1px solid var(--border-hc);*/
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e7e7;
/*border-color: transparent;*/
}

.service-icon-wrap {
    width: 96px;
    height: 96px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon {
    width: 96px;
    height: 96px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 20px;
    color: var(--text-hc-muted);
    margin: 0;
    line-height: 1.65;
}

/* HOW IT WORKS */
.how-care-works {
/*background: var(--primary-hc);*/
/*background: linear-gradient(135deg, var(--primary-hc-dark) 30%, var(--primary-hc) 100%);*/
padding: 80px 0;
position: relative;
overflow: hidden;
}

.how-care-works::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.how-care-works .hiw-label {
  color: #f4a261;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.how-care-works h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 34px;
  text-align: center;
}

.how-care-works .section-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.how-care-works .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.how-care-works .step {
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.how-care-works .step:first-child {
  padding-left: 0;
}

.how-care-works .step:last-child {
  border-right: none;
  padding-right: 0;
}

.how-care-works .step-number {
  font-size: 50px;
  font-weight: 600;
  color: var(--text-on-primary);
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: 1.2px;
}

.how-care-works .step-tag {
  display: inline-block;
  background: rgba(244, 162, 97, 0.15);
  color: #f4a261;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.how-care-works .step h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

.how-care-works .step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .how-care-works {
    padding: 60px 20px;
}

.how-care-works .steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
}

.how-care-works .step {
    border-right: none;
    padding: 0 !important;
}

.how-care-works .step-number {
    font-size: 64px;
}

.how-care-works h2 {
    font-size: 28px;
}
}

@media (max-width: 480px) {
  .how-care-works .steps {
    grid-template-columns: 1fr;
    gap: 36px;
}

}

/* MOBILE */
@media (max-width: 768px) {
  .how-care-works {
    padding: 60px 20px;
}

.how-care-works .steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
}

.how-care-works .step {
    border-right: none;
    padding: 0 !important;
}

.how-care-works .step-number {
    font-size: 34px;
}

.how-care-works h2 {
    font-size: 28px;
}
}

@media (max-width: 480px) {
  .how-care-works .steps {
    grid-template-columns: 1fr;
    gap: 36px;
}
}

/* ================================= ABOUT ================================= */
.about-home {
    background: #fdfdfd;
    border-bottom: 1px solid #f0f0f0;
/*background: var(--cream-hc);*/
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
/*text-align: left;*/
}

.about-text .cta-primary {
    margin-top: 8px;
}

.about-text .cta-primary:hover {
    background: var(--primary-hc-light);
}

.about-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--radius-hc-lg);
    /*box-shadow: var(--shadow-hc-lg);*/
    display: block;
}

/* ================================= TESTIMONIALS ================================= */
/*.testimonials {
background: var(--cream-hc);
text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.testimonial-card {
    background: var(--white-hc);
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc-lg);
    padding: 36px 32px;
    text-align: left;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
    background: white;
    transition: all .2s ease-in-out;
}

.testimonial-card:hover {
    background: #fcfcfc;
    border: 1px solid var(--primary-hc);
    transform: translateY(-6px);
    box-shadow:  0 7px 7px rgba(90, 90, 90, 0.1);;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 90px;
    color: var(--cream-hc-dark);
    position: absolute;
    top: 8px;
    left: 22px;
    line-height: 1;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-hc-muted);
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .03rem;
    color: #555;
}

.testimonial-card:hover .testimonial-author {
    color: #444;
    color: var(--primary-hc);
}*/
/* ================================= WHY CHOOSE ================================= */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    background: #fdfdfd;
    padding: 36px 28px;
    border-radius: var(--radius-hc-lg);
    border: 1px solid #ddd;
/*text-align: left;*/
transition: box-shadow 0.25s, transform 0.25s;
}

.trust-item:hover {
    box-shadow: 0px 7px 7px -2px rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-hc-md);
    transform: translateY(-4px);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: #F4A261;
/*background: var(--accent-hc-icon);*/
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 17px;
    color: var(--text-hc-muted);
    margin: 0;
}

/* ================================= CTA ================================= */
.cta-care {
    background: var(--primary-hc);
    background: linear-gradient(135deg, var(--primary-hc-dark) 40%, var(--primary-hc) 90%);
/*background: linear-gradient(135deg, var(--primary-hc-dark) 0%, var(--primary-hc) 30%, var(--primary-hc-light) 100%);*/
text-align: center;
padding: 96px 24px;
position: relative;
overflow: hidden;
}

.cta-care h2 {
    margin-bottom: 14px;
}

.cta-care {
    color: white;
}

.cta-care p {
    font-size: 20px;
    opacity: 0.92;
    max-width: 520px;
    margin: 0 auto 36px;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-care .cta-primary {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-hc);
    border: 2px solid rgba(255, 255, 255, 0);
}

.cta-care .cta-primary:hover {
    background: rgba(255, 255, 255, .20);
    border: 2px solid rgba(255, 255, 255, .65);
    color: white;
/*color: var(--primary-hc-dark);*/
}

.cta-care .cta-secondary {
    border-color: rgba(255, 255, 255, 0.7);
}

/* ================================= FOOTER ================================= */
footer {
    background: var(--text-hc);
    color: rgba(255, 255, 255, 0.6);
    padding: 36px 0 24px;
    text-align: center;
    font-size: 15px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}

/* ================================= PAGE HERO ================================= */
.page-hero {
/*background: linear-gradient(135deg, var(--primary-hc-dark) 0%, var(--primary-hc) 100%);*/
/*padding: 40px 0 90px;*/
/*text-align: center;*/
color: white;
}

/*.page-hero-inner {
    max-width: 700px;
    margin: auto;
}*/

.page-hero h1 {
    color: white;
    /*font-size: clamp(30px, 5vw, 63px);*/
    margin-bottom: 16px;
}

.page-hero h2 {
    display: none;
}

.page-hero p {
    font-size: clamp(17px, 2vw, 21px);
    opacity: 0.9;
    margin: 0;
}

/* ================================= ABOUT PAGE ================================= */
.about-intro {
    background: var(--cream-hc);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-intro-text h2 {
    text-align: left;
}

.about-intro-text h2::after {
    left: 0;
    transform: none;
}

.about-intro-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-hc-lg);
    /*box-shadow: var(--shadow-hc-lg);*/
    display: block;
}

.about-intro-text p {
    color: var(--text-hc-muted);
    font-size: 17px;
    margin-bottom: 18px;
}

.our-values h2,
.our-team h2 {
    text-align: center;
}

.our-values h2::after,
.our-team h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.our-values {
    background: var(--white-hc);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: var(--cream-hc);
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
    background: white;
    border: 1px solid var(--primary-hc);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hc-md);
}

.value-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--primary-hc);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 18px;
    color: var(--text-hc-muted);
    margin: 0;
}

.our-team {
    background: var(--cream-hc);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.team-card {
    background: var(--white-hc);
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc-lg);
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hc-md);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--cream-hc-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--border-hc);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    font-size: 21px;
    margin-bottom: 4px;
}

.team-role {
    color: var(--accent-hc);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px !important;
}

.team-card p {
    font-size: 15px;
    color: var(--text-hc-muted);
    margin: 0;
}

/* ================================= CONTACT PAGE ================================= */
.contact-section {
    background: var(--cream-hc);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-form-wrap h2,
.contact-info h2 {
    text-align: left;
}

.contact-form-wrap h2::after,
.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-form-wrap>p,
.contact-info>p {
    color: var(--text-hc-muted);
    margin-bottom: 32px;
}

/* Fix WPForms select/dropdown padding */
.wpforms-container .wpforms-form select {
    padding: 13px 16px !important;
    height: auto !important;
    line-height: 1.5 !important;
    appearance: auto !important;
}

.form-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 16px 20px;
    border-radius: var(--radius-hc);
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 17px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-hc);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--border-hc);
    border-radius: var(--radius-hc);
    font-size: 16px;
    color: var(--text-hc);
    background: var(--white-hc);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-hc);
    box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    background: var(--accent-hc);
    color: white;
    padding: 15px 36px;
    border: none;
    border-radius: var(--radius-hc);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--accent-hc-hover);
    transform: translateY(-2px);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: var(--white-hc);
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc);
    padding: 22px 24px;
/*display: flex;*/
/*align-items: flex-start;*/
/*gap: 18px;*/
transition: box-shadow 0.2s, transform 0.2s;
}

.info-card:hover {
    box-shadow: var(--shadow-hc-sm);
    transform: translateX(4px);
}

.info-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--primary-hc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-icon-outline {
    flex-shrink: 0;
    width: 48px;
/*display: flex;*/
align-items: center;
justify-content: center;
margin-top: 2px;
}

.info-card {
    background: var(--white-hc);
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc);
    padding: 22px 12px;
/*display: flex;*/
/*align-items: flex-start;*/
/*gap: 20px;*/
transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.info-card:hover {
    box-shadow: var(--shadow-hc-md);
    transform: translateX(4px);
    border-color: var(--primary-hc);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 18px;
    color: var(--text-hc-muted);
    margin: 0;
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-hc);
    text-decoration: none;
    font-weight: 700;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 13px !important;
    color: #999 !important;
}

.intro-quote {
    font-family: 'Poppins-SemiBold';
    font-size: 1.35rem;
    border-left: none;
    font-style: italic;
    border-left: 3px solid #999;
    padding: 18px 18px 18px 30px;
    text-align: left;
    color: #fe6903;
}

/* ================================= TABLET ================================= */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

/*    .intro-statement-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }*/

/*.intro-image-col { display: none; }*/
.intro-sub {
    text-align: center;
    font-size: 16px;
}

/*.intro-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
}*/

.stat {
    text-align: center;
    align-items: center;
}

.values-grid {
    grid-template-columns: repeat(2, 1fr);
}

.team-grid {
    grid-template-columns: repeat(2, 1fr);
}

.about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
}

.form-row {
    grid-template-columns: 1fr;
    gap: 16px;
}

.logo img {
    height: 42px;
}

.header-phone a {
    font-size: 13px;
    padding: 9px 14px;
}

.hero-overlay {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 100px;
    /*padding: 120px 24px 100px;*/
    text-align: center;
}

.hero-inner {
    max-width: 100%;
}

.hero p {
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    justify-content: center;
}

.trust-inner {
    justify-content: start;
}

}

/* ================================= MOBILE ================================= */
@media (max-width: 600px) {
    body {
        font-size: 20px;
    }

    .services-grid,
    .steps,
    .trust-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card,
    .step,
    .trust-item,
    .value-card {
        padding: 28px 22px;
    }

/*    .intro-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
*/
    .trust-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 12px;
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        text-align: center;
    }

    .form-submit {
        width: 100%;
        text-align: center;
    }
}

/* ================================= FOOTER ================================= */
.site-footer {
    background: #1a1f2e;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 38px;
    padding: 72px 24px 56px;
}

.footer-logo {
    height: 72px;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-cqc {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    stroke: var(--primary-hc-light);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 48px 24px 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================= CONTACT PAGE UPGRADES ================================= */

/* Style WPForms to match theme */
.wpforms-container .wpforms-form .wpforms-field-label {
    font-weight: 600 !important;
    font-size: 15px !important;
    color: var(--text-hc) !important;
    margin-bottom: 8px !important;
}

.wpforms-container .wpforms-form input[type=text],
.wpforms-container .wpforms-form input[type=email],
.wpforms-container .wpforms-form input[type=tel],
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
    font-size: 16px !important;
    padding: 13px 16px !important;
    border: 1.5px solid var(--border-hc) !important;
    border-radius: var(--radius-hc) !important;
    color: var(--text-hc) !important;
    background: var(--white-hc) !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    width: 100% !important;
    box-shadow: none !important;
}

.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form select:focus,
.wpforms-container .wpforms-form textarea:focus {
    border-color: var(--primary-hc) !important;
    box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1) !important;
    outline: none !important;
}

.wpforms-container .wpforms-form textarea {
    min-height: 140px !important;
    resize: vertical !important;
}

.wpforms-container .wpforms-form .wpforms-submit-container {
    padding: 0 !important;
}

.wpforms-container .wpforms-form button[type=submit] {
    background: var(--primary-hc) !important;
    color: white !important;
    padding: 14px 50px !important;
    border: none !important;
    border-radius: var(--radius-hc) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    /*transition: background 0.2s, transform 0.15s !important;*/
    /*box-shadow: 0 4px 14px rgba(224, 123, 90, 0.3) !important;*/
}

.wpforms-container .wpforms-form button[type=submit]:hover {
    background: var(--accent-hc-hover) !important;
    /*transform: translateY(-2px) !important;*/
}

/* Quick CTA box */
.contact-cta-box {
    background: linear-gradient(135deg, var(--primary-hc-dark) 0%, var(--primary-hc) 100%);
    border-radius: var(--radius-hc-lg);
    padding: 28px 32px;
    margin-top: 24px;
    text-align: center;
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 16px;
}

.contact-cta-box .cta-primary {
    background: white;
    color: var(--primary-hc);
    font-size: 16px;
}

.contact-cta-box .cta-primary:hover {
    background: var(--cream-hc);
}

/* Map */
.contact-map {
    padding: 0;
    line-height: 0;
    filter: grayscale(15%);
    transition: filter 0.3s;
}

.contact-map:hover {
    filter: grayscale(0%);
}

/* ===== CONTACT INTRO STRIP ===== */
.contact-intro-strip {
    background: white;
    border-bottom: 1px solid var(--border-hc);
    padding: 56px 0;
}

.contact-intro-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.contact-intro-text h2 {
    font-size: 28px;
    margin-bottom: 12px;
    text-align: left;
}

.contact-intro-text h2::after {
    left: 0;
    transform: none;
}

.contact-intro-text p {
    color: var(--text-hc-muted);
    max-width: 580px;
    margin: 0;
}

.contact-phone-block {
    background: #0475C6;
/*background: linear-gradient(135deg, var(--primary-hc-dark), var(--primary-hc));*/
border-radius: var(--radius-hc-lg);
padding: 28px 36px;
/*display: flex;*/
align-items: center;
gap: 20px;
min-width: 280px;
/*box-shadow: 0 8px 24px rgba(28, 117, 188, 0.25);*/
}

.contact-phone-icon {
    background: var(--accent-hc-hover);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-phone-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-phone-number {
    display: block;
    color: white;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.2s;
}

.contact-phone-number:hover {
    opacity: 0.85;
}

.contact-phone-hours {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 4px;
}

.intro-statement-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.mobile-shade {
    background: linear-gradient( 90deg, rgba(231,128,49, 1) 40%, rgba(0, 0, 0, 0) 80%);
}
@media (max-width: 768px) {

    .mobile-shade {
        background: linear-gradient( 360deg, rgba(48,56,65, .95) 40%, rgba(48,56,65, .8) 80%);

    }

    .contact-intro-inner {
        grid-template-columns: 1fr;
    }

    .contact-phone-block {
        min-width: unset;
    }

    .intro-quote {
        border-left: none !important;
        padding-left: 0 !important;
        /*border-top: 3px solid #999 !important;*/
        padding-top: 18px !important;
        text-align: center !important;
        font-size: 18px !important;
    }

    .intro-sub {
        text-align: center !important;
    }

    .stat {
        text-align: center !important;
        align-items: center !important;
    }

    .intro-statement-inner {
        grid-template-columns: 1fr !important;
    }

    .intro-image-col {
        display: block !important;
        order: 3;
    }

    .intro-image-col img {
        height: 280px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        margin-top: 8px !important;
    }
}

/* ===== CONTACT PAGE HERO WITH IMAGE ===== */
.contact-page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 90, 90, 0.72) 0%, rgba(90, 90, 90, 0.45) 100%);
}

.contact-page-hero .container {
    position: relative;
    z-index: 1;
}

/* ===== FIX WPFORMS PHONE/NUMBER FIELD ===== */
.wpforms-container .wpforms-form input[type=number],
.wpforms-container .wpforms-form input[type=tel] {
    font-size: 16px !important;
    padding: 13px 16px !important;
    border: 1.5px solid var(--border-hc) !important;
    border-radius: var(--radius-hc) !important;
    color: var(--text-hc) !important;
    background: var(--white-hc) !important;
    width: 100% !important;
    box-shadow: none !important;
    -moz-appearance: textfield !important;
}

/* Remove spinner arrows */
.wpforms-container .wpforms-form input[type=number]::-webkit-outer-spin-button,
.wpforms-container .wpforms-form input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.wpforms-container .wpforms-form input[type=number]:focus,
.wpforms-container .wpforms-form input[type=tel]:focus {
    border-color: var(--primary-hc) !important;
    box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1) !important;
    outline: none !important;
}

/* ============================================
FAQ PAGE
============================================ */

.faq-page-hero {
    background: linear-gradient(135deg, var(--primary-hc-dark) 0%, var(--primary-hc) 100%);
}

/* Intro strip */
.faq-intro-strip {
    background: white;
    border-bottom: 1px solid var(--border-hc);
    padding: 24px 0;
}

.faq-intro-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.faq-intro-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-hc);
}

.faq-intro-item a {
    color: var(--primary-hc);
    text-decoration: none;
}

.faq-intro-item a:hover {
    text-decoration: underline;
}

/* Layout */
.faq-section {
    padding: 64px 0 80px;
}

.faq-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* Category nav */
.faq-nav {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-nav-btn {
    background: none;
    border: none;
    text-align: left;
    padding: 12px 16px;
    border-radius: var(--radius-hc);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-hc-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.faq-nav-btn:hover {
    background: var(--cream-hc-dark);
    color: var(--primary-hc);
}

.faq-nav-btn.active {
    background: var(--cream-hc-dark);
    color: var(--primary-hc);
    font-weight: 700;
}

/* FAQ groups */
.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-group-title {
    font-size: 26px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-hc);
    text-align: left;
}

.faq-group-title::after {
    display: none;
}

/* FAQ accordion items */
.faq-item {
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc);
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--primary-hc-light);
}

.faq-item.open {
    border-color: var(--primary-hc);
    box-shadow: 0 4px 16px rgba(28, 117, 188, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-hc);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-hc);
}

.faq-item.open .faq-question {
    color: var(--primary-hc);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-hc);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-hc-muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-hc);
}

/* CTA strip */
.faq-cta-strip {
    background: var(--primary-hc-dark);
    /*background: linear-gradient(135deg, var(--primary-hc-dark) 0%, var(--primary-hc) 70%);*/
    padding: 56px 0;
}

.faq-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.faq-cta-strip h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 8px;
    text-align: left;
}

.faq-cta-strip h2::after {
    display: none;
}

.faq-cta-strip p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 17px;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-cta-strip .cta-primary {
    border: 2px solid transparent;
    color: var(--primary-hc);
}

.faq-cta-strip .cta-primary:hover {
    border: 2px solid white;
    background: var(--btn-on-primary-hover);
    color: white;
}

.faq-cta-strip .cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.faq-cta-strip .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* FAQ mobile */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .faq-nav-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    .faq-nav-btn.active {
        background: var(--cream-hc-dark);
        color: var(--primary-hc);
    }

    .faq-intro-inner {
        gap: 24px;
        justify-content: flex-start;
    }

    .faq-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .faq-cta-strip h2 {
        text-align: center;
    }
}

/* ============================================
LEGAL PAGES (Privacy, Terms, Cookies)
============================================ */

.legal-hero {
    background: linear-gradient(135deg, var(--primary-hc-dark) 0%, var(--primary-hc) 100%);
}

.legal-section {
    padding: 64px 0 80px;
}

.legal-container {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
}

/* Sticky contents nav */
.legal-nav {
    position: sticky;
    top: 100px;
    background: white;
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-nav-title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-hc-muted);
    margin-bottom: 8px;
}

.legal-nav a {
    font-size: 14px;
    color: var(--text-hc-muted);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: var(--radius-hc);
    transition: all 0.2s;
    line-height: 1.4;
}

.legal-nav a:hover {
    background: var(--cream-hc-dark);
    color: var(--primary-hc);
}

/* Legal content */
.legal-content h2 {
    font-size: 22px;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 48px;
    border-top: 1px solid var(--border-hc);
    text-align: left;
    scroll-margin-top: 100px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h2::after {
    display: none;
}

.legal-content p {
    color: var(--text-hc-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.legal-content ul {
    color: var(--text-hc-muted);
    font-size: 16px;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-hc);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-intro-box {
    background: var(--cream-hc-dark);
    border-left: 4px solid var(--primary-hc);
    border-radius: 0 var(--radius-hc) var(--radius-hc) 0;
    padding: 20px 24px;
    margin-bottom: 40px;
}

.legal-intro-box p {
    margin: 0;
    font-size: 16px;
    color: var(--text-hc);
    font-weight: 500;
}

/* Cookie table */
.cookie-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-hc);
    border: 1px solid var(--border-hc);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.cookie-table th {
    background: var(--primary-hc);
    color: white;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cookie-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-hc);
    color: var(--text-hc-muted);
    line-height: 1.6;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) td {
    background: var(--cream-hc);
}

/* Legal mobile */
@media (max-width: 768px) {
    .legal-container {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }

    .legal-content h2 {
        scroll-margin-top: 80px;
    }
    .personal-care {
        /*background: url('/wp-content/uploads/personal-care-hero.webp') no-repeat;*/
        background-size: cover !important;
        background-position: bottom right !important;
    }
}

/* ============================================
SERVICE PAGES
============================================ */

.service-hero {
    background: var(--primary-hc-dark);
}

.personal-care {
  position: relative;
  background-color: var(--primary-hc) !important;
  background: url('/wp-content/uploads/personal-care-hero.webp') no-repeat;
  background-position: top right;
  background-color: <?= $bg_color ?> !important;
}

.service-hero-breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.service-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.service-hero-breadcrumb a:hover {
    color: white;
}

.service-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Intro section */
.service-intro {
    background: white;
    padding: 80px 0;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: start;
}

.service-intro-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.service-intro-content h2::after {
    left: 0;
    transform: none;
}

.service-intro-content p {
    color: var(--text-hc-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-intro-box {
    background: var(--cream-hc);
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.service-intro-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-hc);
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-hc);
    font-size: 15px;
    color: var(--text-hc);
}

.service-includes li:last-child {
    border-bottom: none;
}

.service-includes svg {
    flex-shrink: 0;
}

/* Why section */
.service-why {
    background: var(--cream-hc);
    padding: 80px 0;
    text-align: center;
}

.service-why h2 {
    margin-bottom: 12px;
}

.service-why .section-intro {
    margin-bottom: 48px;
}

.service-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-why-card {
    background: white;
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc-lg);
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-why-card:hover {
    box-shadow: var(--shadow-hc-md);
    transform: translateY(-4px);
}

.service-why-card svg {
    margin-bottom: 16px;
}

.service-why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-why-card p {
    font-size: 15px;
    color: var(--text-hc-muted);
    margin: 0;
    line-height: 1.7;
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, #0d3d6e 0%, #1c75bc 100%);
    padding: 64px 0;
}

.service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.service-cta h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 8px;
    text-align: left;
}

.service-cta h2::after {
    display: none;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 17px;
}

.service-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.service-cta .cta-primary {
    background: white;
    color: var(--primary-hc);
}

.service-cta .cta-primary:hover {
    background: var(--cream-hc);
}

.service-cta .cta-secondary {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.service-cta .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Other services */
.other-services {
    background: white;
    padding: 64px 0;
    text-align: center;
}

.other-services h2 {
    margin-bottom: 32px;
}

.other-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.other-service-card {
    background: var(--cream-hc);
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc);
    padding: 14px 24px;
    text-decoration: none;
    color: var(--primary-hc);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.other-service-card:hover {
    background: var(--primary-hc);
    color: white;
    border-color: var(--primary-hc);
}

/* Service page mobile */
@media (max-width: 768px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
    }

    .service-intro-box {
        position: static;
    }

    .service-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .service-cta h2 {
        text-align: center;
    }

    .service-hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .service-why-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-cta-buttons a {
        text-align: center;
    }
}

/* ============================================
SERVICE PAGES
============================================ */

.service-hero {
/*background: linear-gradient(135deg, #0d3d6e 0%, #1c75bc 60%, #2e8fd8 100%);*/
}

.service-hero-breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.service-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.service-hero-breadcrumb a:hover {
    color: white;
}

/* Intro grid */
.service-intro {
    padding: 72px 0;
    background: white;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

.service-intro-content h2 {
    text-align: left;
    font-size: 28px;
}

.service-intro-content h2::after {
    left: 0;
    transform: none;
}

.service-intro-content p {
    color: var(--text-hc-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.service-includes {
    margin-top: 36px;
    background: var(--cream-hc);
    border-radius: var(--radius-hc-lg);
    padding: 28px 32px;
}

.service-includes h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-hc);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    column-gap: 32px;
}

.service-list li {
    font-size: 1rem;
    color: var(--text-hc-muted);
    padding: 12px 0 12px 24px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-hc);
    align-self: stretch;
    display: flex;
    align-items: center;
}

.service-list li:nth-last-child(1),
.service-list li:nth-last-child(2) {
    border-bottom: none;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background: var(--primary-hc);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-cta-card {
    background: var(--primary-hc);
    border-radius: var(--radius-hc-lg);
    padding: 28px;
    text-align: center;
}

.service-cta-card h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 10px;
}

.service-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-cta-card .cta-primary {
    background: white;
    color: var(--primary-hc);
    width: 100%;
    text-align: center;
    display: block;
}

.service-cta-card .cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.service-cta-card .cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 100%;
    text-align: center;
    display: block;
}

.service-cta-card .cta-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.service-trust-card {
    background: white;
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-hc);
}

/* Who section */
.service-who {
    background: var(--cream-hc);
    padding: 72px 0;
    text-align: center;
}

.service-who h2 {
    margin-bottom: 12px;
}

.service-who .section-intro {
    margin-bottom: 40px;
}

.service-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-who-card {
    background: white;
    border-radius: var(--radius-hc-lg);
    padding: 28px 24px;
    text-align: left;
    border: 1px solid var(--border-hc);
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-who-card:hover {
    box-shadow: var(--shadow-hc-md);
    transform: translateY(-4px);
}

.service-who-card h3 {
    letter-spacing: .07rem;
    font-size: 17px;
    color: var(--primary-hc);
    margin-bottom: 10px;
}

.service-who-card p {
    font-size: 15px;
    color: var(--text-hc-muted);
    margin: 0;
    line-height: 1.6;
}

/* Why section */
.service-why {
    background: white;
    padding: 72px 0;
}

.service-why-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
}

.service-why-inner h2 {
/*text-align: left;*/
margin-bottom: 16px;
}

.service-why-inner p {
    color: var(--text-hc-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 17px;
}

.service-why-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 180px;
}

.service-stat {
    border-radius: var(--radius-hc-lg);
    padding: 20px 24px;
    text-align: center;
    font-family: 'Poppins-SemiBold';
    border: 1px solid var(--border-hc);
    color: black;
}

.service-stat span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-on-white);
    line-height: 1;
    margin-bottom: 6px;
}

.service-stat p {
    font-size: 13px;
    color: var(--text-hc-muted);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Other services */
.service-other {
    background: var(--cream-hc);
    padding: 56px 0;
    text-align: center;
}

.service-other h2 {
    margin-bottom: 28px;
}

.service-other-grid {
    letter-spacing: .05rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.service-other-card {
    background: white;
    border: 1.5px solid var(--border-hc);
    border-radius: 7px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #666 !important;
    text-decoration: none;
    transition: all 0.2s;
}

.service-other-card:hover {
    background: var(--primary-hc);
    color: white !important;
}

/* Service page mobile */
@media (max-width: 900px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-cta-card,
    .service-trust-card {
        flex: 1;
        min-width: 280px;
    }

    .service-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-why-inner {
        grid-template-columns: 1fr;
    }

    .service-why-stats {
        flex-direction: row;
        justify-content: center;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .service-who-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        flex-direction: column;
    }

    .service-why-stats {
        flex-direction: column;
    }
}

/* ============================================
NAV DROPDOWN
============================================ */

.nav-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-top: 1px;
}

.nav-dropdown-wrap:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 8px;
    min-width: 220px;
    z-index: 200;
    flex-direction: column;
}

.nav-dropdown.open {
    display: flex;
}

.nav-dropdown-inner {
    background: white;
    border: 1px solid var(--border-hc);
    border-radius: var(--radius-hc);
    box-shadow: var(--shadow-hc-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nav-dropdown a {
    padding: 13px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-hc) !important;
    border-radius: 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--text-hc) !important;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s !important;
}

.nav-dropdown a:last-child {
    border-bottom: none !important;
}

.nav-dropdown a:hover {
    background: var(--primary-hc) !important;
    color: white !important;
/*    background: var(--cream-hc) !important;
color: var(--primary-hc) !important;*/
}




.card {
    --services-forground: #666;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: white;
    border: 2px solid #dfdfdf;
    border-radius: 7px;
    transition: all .2s ease-in-out;
}

div > a {
    text-decoration: none;
}

.card .card-img {
    position: relative;
    z-index: 0;
    border-radius: 10px 10px 0 0 !important;
    transition: all .3s ease-in-out;
}

.card:hover .card-img {
    overflow: hidden;
    transform: scale(1.2) translateY(20px) translateX(-28px);
}

.card:hover {
    background: #f7f7f7;
    border-color: #bbb !important;
    transform:  translateY(-5px);
}
.card-img-top {
    width: 50px;
    padding-right: 15px;
}
.card .card-header {
    position: absolute;
    padding: 8px 10px 12px 10px !important;
    border: none;
    z-index: 100;
    width: 100%;
    font-family: Poppins-SemiBold;
    font-size: 1.5rem;
    color: #666;
    border-radius: 4px 4px 0 0;
    background: rgba(251, 251, 251, 1);
    letter-spacing: -.04rem;
    transition: all .2s ease-in-out;
}

.card:hover .card-header {
    background: RGB(90,90,90, .7);
    color: white;
}

.card .card-body {
    position: relative;
    z-index: 100;
    background: white;
    border-radius: 0 0 4px 4px;
    padding-bottom: 20px;
    transition: .2s ease-in-out;
}

.card .card-text {
    color: grey;
    transition: .2s ease-in-out;
}

.card:hover .card-text {
    color: white;
}

.card:hover.c-1 { border: 2px solid #4DB6AC !important; }
.card:hover.c-2 { border: 2px solid #FF8A65 !important; }
.card:hover.c-3 { border: 2px solid #9575CD !important; }
.card:hover.c-4 { border: 2px solid #4FC3F7 !important; }
.card:hover.c-5 { border: 2px solid #81C784 !important; }
.card:hover.c-6 { border: 2px solid #FFB74D !important; }
.card:hover .card-body.c-1 { background: #4DB6AC !important; }
.card:hover .card-body.c-2 { background: #FF8A65 !important; }
.card:hover .card-body.c-3 { background: #9575CD !important; }
.card:hover .card-body.c-4 { background: #4FC3F7 !important; }
.card:hover .card-body.c-5 { background: #81C784 !important; }
.card:hover .card-body.c-6 { background: #FFB74D !important; }

.card:hover .card-body {
/*background: linear-gradient(180deg,#2E91E0 90%);*/
background: #eee;
}

@media (max-width: 768px) {
}





@media (max-width: 1200px) {   /* Mobile dropdown */

    .nav-dropdown-wrap {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-dropdown-trigger {
        width: 100%;
        padding: 12px 16px;
        font-size: 17px;
        border-bottom: 1px solid var(--border-hc);
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        padding-top: 0;
        width: 100%;
    }

    .nav-dropdown-inner {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-hc);
        box-shadow: none;
        background: var(--cream-hc);
        width: 100%;
    }

    .nav-dropdown a {
        padding: 11px 16px 11px 32px !important;
        font-size: 15px !important;
        border-bottom: 1px solid var(--border-hc) !important;
        background: var(--cream-hc) !important;
    }

    .nav-dropdown a:last-child {
        border-bottom: none !important;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 17px;
        border-bottom: 1px solid var(--border-hc);
        border-radius: 0;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-hc);
        gap: 2px;
    }

}


/* Fix red underline alignment on service pages */
.service-who h2::after,
.service-other h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.service-why-inner h2::after {
    left: 0;
    transform: none;
}

@media (max-width: 768px) {
    .service-why-inner h2::after {
        display: inline-block;
        margin: 0 auto;
        width: 50px;
        /*left: 42%;*/
        transform: none;
    }
}


.title {
    display: inline-block;
}
.title h2{
    position: relative;
    padding-bottom: 90px;
    margin-bottom: 40px;
    padding: 0;
}




.title.center h2::before {
    position: absolute;
    content: '';
    bottom: -20px;
    width: 90px;
    height: 3px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #F6BA8A;
}
.title.left h2::before {
    position: absolute;
    content: '';
    bottom: -20px;
    width: 90px;
    height: 3px;
    left: 0;
    background: #F6BA8A;
}

@media (max-width: 768px){
    .title.left h2::before {
        position: absolute;
        content: '';
        bottom: -20px;
        width: 90px;
        height: 3px;
        left: 50%;
        transform: translate(-50%, 0);
        background: #F6BA8A;
    }
}


.w-toplink {
    position: fixed !important;
    z-index: 99;
    bottom: var(--site-outline-width, 0);
    transform: translate3d(0, 150%, 0) !important;
    margin: 15px
}

.w-toplink:not(.w-btn) {
    text-align: center;
    border-radius: .3rem;
    color: #fff !important;
    line-height: 50px;
    height: 50px;
    width: 50px
}

.w-toplink.pos_left {
    left: var(--site-outline-width, 0)
}

.w-toplink.pos_right {
    right: var(--site-outline-width, 0)
}

.w-toplink:focus-visible,
.w-toplink.active {
    transform: translate3d(0, 0, 0) !important
}

.w-toplink:not(.w-btn) i {
    font-size: 1.5em;
    line-height: inherit;
    min-width: 1em
}

body.us_iframe .w-toplink {
    bottom: 0
}

body.us_iframe .w-toplink.pos_left {
    left: 0
}

body.us_iframe .w-toplink.pos_right {
    right: 0
}