/*
Theme Name: South Liverpool Gas
Theme URI: https://hamzashakeel.com/
Author: Hamza Shakeel
Author URI: https://hamzashakeel.com/
Description: South Liverpool Gas is a modern, responsive theme designed for heating and plumbing businesses. It offers a clean, professional look with easy-to-use features for showcasing services and building a strong online presence.
Text Domain: southliverpoolgas
Version: 0.0.72343
*/

@font-face {
    font-family: 'Montserrat';
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
	src: url('/wp-content/themes/theme/fonts/Montserrat/Montserrat-VariableFont_wght.woff2') format('woff2');
}
.trust-badge__text span:nth-child(1) {
    letter-spacing: 0;
    font-size: 15px;
    font-weight: 700;
}

.trust-badges__section, footer {
    overflow: hidden;
}

.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-parent > a,
.nav-links .current-menu-ancestor > a {
    color: #d4a843;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

    width: 100%;
}

.cta-actions a {
    min-height: 51px;
}



:root {
    --bg-primary: #1A1A1A;
    --bg-secondary: #1A1A1A;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --accent-gold: #C9A35A;
    --accent-gold-hover: #A97C38;
    --accent-blue: #2F8EF5;
	--accent-blue-hover: #1F6ED4;
    --text-primary: #ffffff;
    --text-secondary: #ffffff80;
    --text-muted: #ffffff70;
    --border: #A97C38;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
img.custom-logo {
    width: 160px;
    height: auto;
}
.hero-buttons i {
    font-size: 25px;
}

.navbar{
    border-bottom:1px solid #fff0;
}
.navbar.scrolled{
    background:var(--bg-primary);
    border-bottom:1px solid #fff1;
}
.navbar.scrolled .btn-gold{
    background:var(--text-primary);
}
.logo-scrolled img {
    width: 160px;
}
.logo-block {
    display: flex;
}
.logo-scrolled {
    position: absolute;
    opacity:0;
    transition:.5s;
}
.navbar.scrolled .logo-scrolled {
    opacity: 1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.navbar.scrolled {
	background:var(--bg-primary: #1A1A1A;);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.btn-gold:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 168, 56, 0.3);
}

.btn-dark {
    background: var(--accent-blue);
    color: var(--text-primary);
}

.btn-dark:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-large {
    padding: 16px 32px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 16px;
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
    justify-content: space-between;
}

.trust-badge-text span {
    display: block;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 500;
}

.trust-badge i {
    font-size: 32px;
    color: var(--accent-blue);
}
.trust-badge {
    display: flex;
}
.trust-badge-text span {
    color: var(--accent-blue);
}


/* Section Styles */
.section {
    padding: 100px 24px;
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
	display: flex;
	gap: 24px;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid #2f8ef545;
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
	width: calc(33.33% - 20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card.active, .service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(232, 168, 56, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card.active::before .service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgb(92 56 232 / 10%);
    border: 1px solid rgb(147 56 232 / 20%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(
    --transition);
}

.service-card.active .service-icon, .service-card:hover .service-icon {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.service-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -1.2px;
    text-transform: capitalize;
    line-height: normal;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-card.active .service-link i, .service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Content Sections */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.content-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.content-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: block;
}

.content-title {
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1px;
	width: 80%;
}

.content-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-list {
    list-style: none;
    margin: 24px 0;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 15px;
}

.content-list li i {
    color: var(--accent-gold);
    margin-top: 4px;
    font-size: 14px;
}

/* Services List (Right side of image) */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.service-item:hover {
    border-color: rgba(232, 168, 56, 0.3);
    transform: translateX(8px);
}

.service-item-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-item-content h3 i {
    color: var(--accent-gold);
    font-size: 22px;
}

.service-item-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.service-item-arrow {
    color: var(--accent-gold);
    font-size: 20px;
    transition: var(--transition);
}

.service-item:hover .service-item-arrow {
    transform: translateX(8px);
}

.service-item-image {
    width: 200px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* CTA Section */
.cta-section {
    background: 
        linear-gradient(135deg, rgba(232, 168, 56, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}


@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    background: #000;
    padding: 80px 24px 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-primary);
    font-size: 12px;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 9px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: var(--accent-gold);
    border-bottom: 2px solid #0f7feb5c;
    width: max-content;
    padding-bottom: 5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
	text-decoration:none;
}

.footer-contact-item i {
    color: var(--accent-gold);
    margin-top: 4px;
    font-size: 16px;
    width: 20px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .content-grid {
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .service-item {
        grid-template-columns: 1fr 160px;
        gap: 24px;
    }
    .service-item-image {
        width: 160px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        order: -1;
    }
    .hero-image-wrapper {
        max-width: 350px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-grid.reverse {
        direction: ltr;
    }
    .content-image img {
        height: 350px;
    }
    .service-item {
        grid-template-columns: 1fr;
    }
    .service-item-image {
        width: 100%;
        height: 200px;
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .section {
        padding: 70px 24px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 2000;
    padding: 100px 40px 40px;
    transition: var(--transition);
    border-left: 1px solid var(--border);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 24px;
}

.mobile-nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-cta .btn {
    justify-content: center;
}
.cta-section {
    width: 100%;
    padding: 64px 24px;
    background: #111111;
    border-top: 0;
    border-bottom: 0;
  }

  .cta-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-text {
    flex: 1;
    min-width: 260px;
  }

  .cta-text h2 {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #f5f5f5;
    line-height: 1.25;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
  }

  .cta-text p {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: #888888;
    line-height: 1.5;
    margin: 0;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-gold {
    background: #d4a843;
    color: #0a0a0a;
  }

  .btn-gold:hover {
    background: #e0b84f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.2);
  }

  .btn-gold span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .btn-gold span small {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 1px;
  }

  .btn-whatsapp {
    background: #1a1a1a;
    color: #e5e5e5;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .btn-whatsapp:hover {
    background: #222222;
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: #aaaaaa;
    border: 1px solid rgba(255,255,255,0.12);
  }

  .btn-outline:hover {
    color: #f5f5f5;
    border-color: rgba(212, 168, 67, 0.5);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .cta-wrapper {
      flex-direction: column;
      text-align: center;
      gap: 28px;
    }

    .cta-text p {
      margin: 0 auto;
    }

    .cta-actions {
      justify-content: center;
      width: 100%;
    }

    .btn {
      flex: 1;
      min-width: 140px;
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .cta-section {
      padding: 48px 20px;
    }

    .cta-text h2 {
      font-size: 22px;
    }

    .cta-actions {
      flex-direction: column;
      width: 100%;
    }

    .btn {
      width: 100%;
    }
  }


.btn-gold:hover {
    background: #107dec !important;
    color: #fff;
}
.btn-outline:hover {
    background: #0c79ea !important;
    border-color: var(--accent-blue);
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero-label{
    --angle:0deg;
    position:relative;
    display:inline-flex;
    align-items:center;
    padding:12px 20px;
    border-radius:999px;
    border:2px solid transparent;
    background:
        linear-gradient(#292a2e,#292a2e) padding-box,
        conic-gradient(from var(--angle), transparent 85%, #E8A838, transparent) border-box;
    animation:edgespin 4s linear infinite;
}

@keyframes edgespin{
    to{
        --angle:360deg;
    }
}

.divider {
    background: var(--accent-gold);
    height: 2px;
    margin: 20px 0px;
}

.footer-links li.current_page_item  a {
    color: var(--accent-gold);
    padding-left: 12px;
}
.footer-links li.current_page_item a::before{
    width: 8px;
}
@media (max-width: 767.98px) { 
 .btn-large {
    padding: 6px 13px;
    font-size: 12px;
    min-width: max-content;
 }
	.content-text-wrapper .btn {
		max-width: max-content;
	}
 .trust-badges__inner {display: flex;flex-direction: row;flex-wrap: wrap;max-width: 100%;}

	.trust-badge__box {
		max-width: max-content;
		gap: 10px;
		flex: unset !important;
		max-width: 44%;
	}

	.trust-badge__icon {
		width: 30px;
		height: 30px;
	}

	.trust-badge__box svg {
		width: 30px !important;
	}
	.trust-badge__box span{
		font-size:10px;
		letter-spacing:0;
	}
 .services-grid {
    display: flex;
    flex-direction: column;
 }
 
 .service-card {
    width: calc(100% - 20px);
 }
 
    .contact-form-wrapper img {
       height: 380px;
    }
   .hero {
      min-height: unset;
      padding: 40px 24px 50px;
      background-size: cover;
      background-repeat: no-repeat;
      align-items: center;
      display: flex;
      background-position: top right;
      justify-content: flex-start;
   }
	.hero:after{
		content:'';
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: radial-gradient(#000000c2 40%, #000000);
	}
   .hero-content.fade-in.visible {
       display: flex;
       flex-direction: column;
       align-items: flex-start;
   }
   .hero-label {
       padding: 6px 14px;
       font-size: 10px;
   }
   
   h1.hero-title {
       font-size: 36px;
       text-align: left;
   }
   
   p.hero-desc {
       font-size: 14px;
       line-height: 18px;
       text-align: left;
   }
   
   .service-card {}
   
   .mobile-nav-links a {
       padding: 7px 0px;
       border: 0;
   }
   .mobile-nav-cta .btn-large {
       padding: 12px 13px;
       font-size: 12px;
       min-width: max-content;
    }
    .logo-block img {
    padding: 0px 20px;
}

button#mobileMenuBtn {
    padding-right: 14px;
}
	.service-card {
    width: 48%;
    padding: 10px;
    display: inline-block;
    padding-bottom: 38px;
}

.services-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.service-icon {
    width: 40px;
    height: 40px;
    padding: 0px;
    margin-bottom: 10px;
}

.service-card img {
    padding: 8px;
}

.service-title {
    font-size: 16px;
}

a.service-link {
    font-size: 10px;
}

.section-header {
    margin-bottom: 30px;
}

.section-header p {
    font-size: 14px;
}

section#services {
    padding-top: 60px;
    padding-bottom: 30px;
}

.hero a.btn, .services-grid ~ a.btn{
    padding-top: 10px;
    padding-bottom: 10px;
}
.services-grid ~ a.btn {
    margin-top: 40px !important;
}
.hero .trust-badges {
    width: 100%;
    text-align: left;
    padding-top: 30px;
}

.trust-badge__box svg {
    width: 50px !important;
}

.trust-badge__icon {
    width: 50px !important;
    height: 50px !important;
}

.trust-badges__inner {
    padding: 10px 15px;
}

a.service-link {
    position: absolute;
    bottom: 10px;
}

.content-title {
    width: 100%;
}
}

.trust-badges__section {
    background: #0a0a0a;
    padding: 20px 20px;
    width: 100%;
    box-sizing: border-box;
  }

section.trust-badges__section {
    background-image: url(/wp-content/uploads/2026/08/Screenshot-2026-08-07-200047.png);
    background-size: 60%;
    position:relative;
}
section.trust-badges__section > *{
    z-index:2;
    position:relative;
}
section.trust-badges__section:after{
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #00000082;
}

  .trust-badges__inner {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .trust-badge__box {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .trust-badge__icon {
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .trust-badge__icon img {
    width: 100%;
    height: 100%;
    display: block;
	  object-fit:contain;
  }

	.trust-badge__icon svg {
		width: 40px;
	}

  .trust-badge__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .trust-badge__text span {
    color: #b0b0b0;
    font-size: 10.5px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    white-space: nowrap;
  }

  /* Tablet: 2x2 grid */
  @media (max-width: 860px) {
    .trust-badges__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px 16px;
    }
    .trust-badge__box {
      justify-content: flex-start;
    }
  }

  /* Mobile: stacked */
  @media (max-width: 480px) {
    .trust-badges__inner {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .trust-badge__box {
      width: 100%;
      justify-content: flex-start;
    }
  }


/* Main Footer */
.site-footer,
footer {
    position: relative;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

/* Liverpool Skyline Background */
.site-footer::before,
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    /* Replace with your image */
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,0.98) 20%,
            rgba(0,0,0,0.92) 45%,
            rgb(0 0 0 / 44%) 70%,
            rgb(0 0 0 / 27%) 100%
        ),
        url("/wp-content/uploads/2026/08/footer-image-slg-page-1.webp");

    background-repeat: no-repeat;
    background-position: center 60%;
    background-size: cover;

    opacity: 0.28; /* 20–30% visibility */
    pointer-events: none;
}

/* Keep footer content above image */
.site-footer > *,
footer > * {
    position: relative;
    z-index: 2;
}