/***********************************************
  SEAL PLUMBING & HEATING - STYLE.CSS V2
  Production replacement for css/style.css

  Built from your uploaded stylesheet. The visual design is preserved,
  with a safe final override layer for maintainability, accessibility,
  clickable service cards and cleaner shared design tokens.

  Keep bootstrap.min.css separate. Replace only css/style.css.
***********************************************/

:root {
    --premium-dark: #080808;
    --premium-dark-2: #101317;
    --premium-dark-soft: #161B20;
    --premium-card-dark: #0f1114;
    --premium-Black: #000000;

    --seal-grey: #DDE3E6;
    --seal-grey-soft: #E8ECEF;
    --seal-card: #F7F8F9;
    --seal-border: #C6CED3;

    --text-dark: #26313D;
    --text-muted: #5D6975;
    --text-light: #F2F5F8;
    --text-light-muted: #C9D1D9;

    --brand-blue: #0177CD;
    --brand-orange: #ff6401;
    --brand-orange-dark: #e85b00;

    /* V2 shared tokens */
    --premium-black: #000000;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --transition-fast: .25s ease;
    --transition-main: .35s ease;
    --shadow-card-dark: 0 18px 40px rgba(0,0,0,.45);
    --shadow-card-light: 0 18px 40px rgba(38,49,61,.16);
    --focus-ring: 0 0 0 .22rem rgba(1,119,205,.32);
}

/* ==========================
   GENERAL
   ========================== */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background: var(--seal-grey);
}

.wow {
    animation-duration: .55s !important;
}

a {
    transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* ==========================
   SPINNER
   ========================== */

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease-out, visibility 0s linear 0s;
}

/* ==========================
   BUTTONS
   ========================== */

.btn {
    font-weight: 600;
    transition: var(--transition-main);
    border-radius: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }

.btn-primary {
    position: relative;
    overflow: hidden;
    color: #fff !important;
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    box-shadow: 0 10px 24px rgba(255,100,1,.22);
}

.btn-primary span {
    position: relative;
    z-index: 2;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff !important;
    background: var(--brand-orange-dark) !important;
    border-color: var(--brand-orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255,100,1,.32);
}

.btn-primary:hover span,
.btn-primary:focus span {
    color: #fff !important;
}

.glow-btn {
    background: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    color: #fff !important;
    transition: all .35s ease;
    font-weight: 600;
    letter-spacing: .3px;
}

.glow-btn:hover,
.glow-btn:focus {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff !important;
    box-shadow:
        0 0 10px rgba(1,119,205,.35),
        0 0 20px rgba(255,100,1,.45);
    transform: translateY(-2px);
}

.glow-btn i {
    transition: transform .3s ease;
}

.glow-btn:hover i {
    transform: translateX(4px);
}

/* ==========================
   NAVBAR
   ========================== */

.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: var(--transition-main);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--brand-blue);
}

.logo-simple {
    width: 10em;
}

.phone-icon {
    color: var(--brand-blue);
    line-height: 1;
    transform: translateY(2px);
    transition: color .35s ease, text-shadow .35s ease, transform .35s ease;
}

.phone-contact a {
    text-decoration: none;
}

.phone-contact:hover .phone-icon {
    color: var(--brand-orange);
    text-shadow:
        0 0 6px rgba(1,119,205,.55),
        0 0 12px rgba(255,100,1,.75),
        0 0 20px rgba(255,100,1,.5);
    transform: translateY(2px) scale(1.08);
}

@media (max-width: 991.98px) {
    .navbar,
    .navbar.bg-dark{
        background-color: #000 !important;
    }

    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(255,255,255,.16);
    }

    .navbar .d-flex.justify-content-center.align-items-center {
        display: none !important;
    }

    .logo-simple {
        width: 6em;
        padding: .5em;
    }
}

/* ==========================
   HERO SECTION
   ========================== */

.hero-premium,
.hero-premium .carousel-inner,
.hero-premium .carousel-item {
    min-height: 100vh;
    position: relative;
    background: var(--premium-dark);
}

.hero-premium .carousel-img {
    width: 100%;
    height: 100vh;
    min-height: 820px;
    object-fit: cover;
    object-position: center;
}

.hero-premium-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at 45% 34%,
            rgba(1,119,205,.09) 0%,
            rgba(1,119,205,.045) 15%,
            transparent 44%
        ),

        radial-gradient(
            circle at 88% 42%,
            rgba(255,100,1,.045) 0%,
            rgba(255,100,1,.025) 25%,
            transparent 42%
        ),

        linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.90) 30%,
            rgba(0,0,0,.62) 68%,
            rgba(0,0,0,.82) 100%
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,.42) 0%,
            rgba(0,0,0,.78) 100%
        );
        
}
.carousel-caption.hero-premium-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 118px 22px 46px;
    text-align: center;
    background: transparent !important;
}

.hero-premium-logo {
    width: clamp(360px, 40vw, 690px);
    height: auto;
    margin: 1.1rem auto 1.2rem;
}

.hero-location {
    color: var(--brand-blue) !important;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-premium-title {
    color: #fff !important;
    font-size: clamp(2.35rem, 4.8vw, 5.1rem);
    line-height: 1.03;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: none;
}

.hero-premium-text {
    color: var(--text-light-muted) !important;
    max-width: 780px;
    font-size: clamp(.96rem, 1.2vw, 1.14rem);
    line-height: 1.55;
    margin-bottom: 24px;
}

.hero-proof-bar {
    width: min(96%, 980px);
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 auto 28px;
    background: rgba(255,255,255,.085);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
        0 15px 35px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-proof-item {
    position: relative;
    width: auto !important;
    min-width: 0;
    padding: 18px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.12);
}

.hero-proof-item:last-child {
    border-right: none;
}

.hero-icon {
    display: block;
    color: var(--brand-blue);
    font-size: 27px;
    margin: 0 auto 10px;
}

.hero-proof-item strong {
    display: block;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
}

.hero-proof-item small {
    display: block;
    color: #d0d5da;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.25;
}

.google-review-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.google-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
    flex-shrink: 0;
}

.google-proof strong {
    margin-bottom: 0 !important;
}

.google-stars {
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.google-stars i {
    color: #FABB05 !important;
    font-size: .76rem;
    margin: 0 1px;
}

.hero-premium-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-call-btn {
    background: rgba(255,255,255,.10);
    border: 2px solid rgba(255,255,255,.25);
    color: #fff !important;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 700;
    transition: all .3s ease;
    backdrop-filter: blur(8px);
}

.hero-call-btn:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff !important;
    transform: translateY(-2px);
}

.hero-urgent-note {
    color: var(--text-light-muted) !important;
    margin-top: 13px;
    font-size: .88rem;
}

.logo-img {
    width: clamp(360px, 42vw, 780px);
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 0;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .hero-premium .carousel-img {
        min-height: 830px;
    }

    .carousel-caption.hero-premium-content {
        padding: 110px 18px 40px;
    }

    .hero-premium-logo {
        width: clamp(280px, 62vw, 520px);
    }

    .hero-proof-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 680px;
    }

    .hero-proof-item:nth-child(2) {
        border-right: none;
    }

    .hero-proof-item:nth-child(1),
    .hero-proof-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
}

@media (max-width: 575.98px) {
    .hero-premium,
    .hero-premium .carousel-inner,
    .hero-premium .carousel-item {
        min-height: 100svh;
    }

    .hero-premium .carousel-img {
        height: 100svh;
        min-height: 790px;
    }

    .carousel-caption.hero-premium-content {
        padding: 96px 15px 32px;
    }

    .hero-premium-logo {
        width: 260px;
        margin: .6rem auto .8rem;
    }

    .hero-location {
        font-size: .7rem;
        margin-bottom: 8px;
    }

    .hero-premium-title {
        font-size: 2.05rem;
        margin-bottom: 11px;
    }

    .hero-premium-text {
        font-size: .88rem;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .hero-proof-bar {
        max-width: 340px;
        margin-bottom: 18px;
    }

    .hero-proof-item {
        padding: 11px 7px;
    }

    .hero-icon {
        font-size: 21px;
        margin-bottom: 6px;
    }

    .hero-proof-item strong {
        font-size: .9rem;
    }

    .hero-proof-item small {
        font-size: .66rem;
    }

    .google-logo {
        width: 18px;
        height: 18px;
    }

    .google-stars i {
        font-size: .6rem;
    }

    .hero-call-btn,
    .hero-premium-buttons .btn-primary {
        width: 100%;
        max-width: 330px;
        justify-content: center;
    }
}

/* ==========================
   PAGE HEADER
   ========================== */

.page-header {
    padding-top: 200px;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.88) 75%,
            rgba(0,0,0,.55) 100%
        ),
        url("../img/carousel-1.webp") center center / cover no-repeat;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* ==========================
   TITLES
   ========================== */

.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center { text-align: center; }
.title .title-right { text-align: right; }

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

/* ==========================
   SECTION COLOR SCHEME
   ========================== */

.container-fluid.bg-secondary {
    background: var(--seal-grey) !important;
    color: var(--text-dark) !important;
}

.container-fluid.bg-secondary h1,
.container-fluid.bg-secondary h2,
.container-fluid.bg-secondary h3,
.container-fluid.bg-secondary h4,
.container-fluid.bg-secondary h5,
.container-fluid.bg-secondary strong {
    color: var(--text-dark) !important;
}

.container-fluid.bg-secondary p,
.container-fluid.bg-secondary li,
.container-fluid.bg-secondary label,
.container-fluid.bg-secondary .form-check-label {
    color: var(--text-muted) !important;
}

.container-fluid.bg-secondary .title h5 {
    color: var(--brand-blue) !important;
}

.container-fluid.bg-secondary .col-lg-6.bg-secondary {
    background: transparent !important;
}

.container-fluid[style*="background-color: black"],
.services-compact-section,
.footer {
    background: var(--premium-dark) !important;
}

.container-fluid[style*="background-color: black"] h1,
.container-fluid[style*="background-color: black"] h2,
.container-fluid[style*="background-color: black"] h3,
.container-fluid[style*="background-color: black"] h4,
.container-fluid[style*="background-color: black"] h5,
.container-fluid[style*="background-color: black"] p,
.services-compact-section h1,
.services-compact-section h2,
.services-compact-section h3,
.services-compact-section h4,
.services-compact-section h5,
.services-compact-section p {
    color: var(--text-light) !important;
}

/* ==========================
   ABOUT
   ========================== */

.bg-secondary .list-group-item {
    background: transparent !important;
    color: var(--text-muted) !important;
    border-color: var(--seal-border) !important;
}

.bg-secondary .list-group-item i {
    color: var(--brand-blue) !important;
}

/* ==========================
   SERVICES GRID
   ========================== */

.service-card {
    height: 100%;
    background: linear-gradient(180deg, var(--premium-dark-soft), var(--premium-card-dark));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 26px;
    overflow: hidden;
    position: relative;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,100,1,.65);
    box-shadow:
        0 18px 40px rgba(0,0,0,.45),
        0 0 20px rgba(1,119,205,.18);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1,119,205,.16), rgba(255,100,1,.09));
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    margin-bottom: 22px;
    transition: transform .55s ease, filter .55s ease;
}

.service-card:hover img {
    transform: scale(1.07);
    filter: brightness(1.08) contrast(1.05);
}

.service-card h3,
.service-card p,
.service-card a,
.service-card i {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    color: #fff !important;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light-muted) !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-link {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 700;
}

.service-card-link:hover {
    color: var(--brand-blue);
}

.service-card-link i {
    transition: transform .3s ease;
}

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

.service-card-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.service-card-cta > i {
    color: var(--brand-blue);
    font-size: 3rem;
    margin-bottom: 20px;
}

@media (max-width: 575.98px) {
    .service-card {
        padding: 22px;
    }

    .service-card img {
        height: 220px;
    }
}

/* ==========================
   AREAS COVERED
   ========================== */

.service-town {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 8px 14px;
    background: var(--seal-card);
    color: var(--text-dark);
    border: 1px solid var(--seal-border);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.2;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.service-town i {
    color: var(--brand-blue) !important;
    font-size: 14px;
    line-height: 1;
}

.service-town:hover {
    background: var(--brand-blue) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(1,119,205,.2);
}

.service-town:hover i {
    color: #fff !important;
}

.map-wrapper {
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--seal-card);
    border: 1px solid var(--seal-border);
}

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

@media (max-width: 767.98px) {
    .service-town {
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 7px;
        font-size: 14px;
    }

    .service-town:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ==========================
   TESTIMONIALS
   ========================== */

.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-item {
    background: var(--premium-dark-soft);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 35px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--premium-dark-soft);
    border-radius: 100px;
    transition: var(--transition-main);
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .2;
    transition: var(--transition-main);
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

/* ==========================
   CONTACT
   ========================== */

.contact-link {
    color: var(--brand-blue) !important;
    text-decoration: none;
    transition: color .35s ease, text-shadow .35s ease;
}

.contact-link:hover,
.contact-link:focus {
    color: var(--brand-orange) !important;
    text-shadow:
        0 0 6px rgba(1,119,205,.35),
        0 0 12px rgba(255,100,1,.45);
}

.bg-secondary .table-dark,
.bg-secondary .table-dark tr,
.bg-secondary .table-dark td {
    background: transparent !important;
    color: var(--text-dark) !important;
    border-color: var(--seal-border) !important;
}

.bg-secondary .table-dark td:first-child {
    color: var(--text-muted) !important;
    font-weight: 700;
    letter-spacing: .5px;
}

.bg-secondary form {
    background: var(--seal-grey-soft);
    border: 1px solid var(--seal-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.bg-secondary .form-control {
    background: var(--seal-card) !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--seal-border) !important;
}

.bg-secondary .form-control:focus {
    border-color: var(--brand-blue) !important;
    box-shadow: 0 0 0 .2rem rgba(1,119,205,.15) !important;
}

.bg-secondary .form-floating label {
    color: #6b7280 !important;
}

.bg-secondary select,
.bg-secondary option,
#service,
#service option {
    color: var(--text-dark) !important;
    background: var(--seal-card) !important;
}

#service option:disabled {
    color: #666;
}

.bg-secondary .form-check-input {
    border-color: var(--seal-border);
}

.bg-secondary .form-check-input:checked {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.form-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    flex-wrap: wrap;
    color: var(--text-muted) !important;
}

.form-benefits span {
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
}

@media (max-width: 575.98px) {
    .bg-secondary form {
        padding: 22px;
    }

    .form-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ==========================
   FOOTER / LOGO SLIDER
   ========================== */

.footer {
    background: var(--premium-dark) !important;
    background-image: none !important;
    color: #fff !important;
}

.footer p,
.footer a,
.footer span {
    color: #fff !important;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: .75rem;
}

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

.trust-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.trust-slider {
    width: 100%;
    overflow: hidden;
}

.trust-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollTrust 30s linear infinite;
}

.trust-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    opacity: .9;
    transition: .3s ease;
}

.trust-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.trust-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

@keyframes scrollTrust {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================
   WORK / GALLERY
   ========================== */

.work-intro,
.gallery-section {
    background-color: var(--premium-dark);
}

.gallery-section.bg-alt {
    background-color: var(--seal-grey);
}

.gallery-filter-card,
.gallery-card,
.blog-featured,
.blog-list-item,
.blog-article,
.service-package-card {
    background: #050505;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    transition: all .35s ease;
}

.gallery-filter-card,
.blog-article,
.service-package-card {
    padding: 30px;
}

.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-card:hover,
.blog-featured:hover,
.blog-list-item:hover,
.service-package-card:hover {
    border-color: var(--brand-blue);
    box-shadow:
        0 0 10px rgba(1,119,205,.25),
        0 0 22px rgba(1,119,205,.18);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, opacity .45s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
    opacity: .65;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 22px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.9) 100%);
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.6rem;
    color: var(--brand-blue);
}

.gallery-card:hover .gallery-overlay i {
    color: var(--brand-orange);
}

.gallery-overlay h5,
.blog-featured-content h2,
.blog-list-item h4,
.blog-article h1,
.blog-article h2,
.service-package-card h3 {
    color: #fff;
    text-transform: uppercase;
}

.gallery-overlay span,
.blog-featured-content p,
.blog-list-item p,
.blog-article p {
    color: #d1d1d1;
}

.gallery-nav-link {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: all .3s ease;
}

.gallery-nav-link:hover {
    color: var(--brand-orange);
    padding-left: 6px;
}

.service-gallery-note {
    border-left: 4px solid var(--brand-blue);
    padding-left: 18px;
    color: #fff;
}

/* ==========================
   BLOG / PACKAGE / FAQ
   ========================== */

.blog-featured {
    overflow: hidden;
}

.blog-featured img {
    width: 100%;
    height: 420px;
    padding: 30px;
    object-fit: cover;
    border-radius: 42px;
}

.blog-featured-content {
    padding: 45px;
}

.blog-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px;
    text-decoration: none;
    height: 100%;
}

.blog-list-item:hover {
    transform: translateY(-5px);
}

.blog-list-item img {
    width: 140px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 10px;
}

.blog-list-item:hover h4 {
    color: var(--brand-orange);
}

.blog-category,
.blog-meta i,
.blog-check-list i {
    color: var(--brand-blue);
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #8a8a8a;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    margin-bottom: 40px;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.blog-inline-img {
    width: 100%;
    margin: 35px 0;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.blog-check-list {
    list-style: none;
    padding-left: 0;
}

.blog-check-list li {
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.6;
}

.blog-cta {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid #3a3a3a;
}

.service-package-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-package-card:hover {
    transform: translateY(-6px);
}

.package-price {
    color: var(--brand-orange);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.package-subtitle {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.7;
}

.package-icon {
    width: 70px;
    height: 70px;
    background: #111;
    border: 1px solid #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all .35s ease;
}

.package-icon i {
    color: var(--brand-blue);
    font-size: 30px;
}

.service-package-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-package-card li {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-package-card li i {
    color: var(--brand-blue);
    margin-right: 8px;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-blue);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50px;
}

.service-package-card .btn {
    margin-top: auto !important;
    width: 100%;
}

.package-boiler-model {
    background: #111;
    border: 1px solid #3a3a3a;
    border-left: 4px solid var(--brand-blue);
    padding: 14px 16px;
    margin-bottom: 22px;
    border-radius: 8px;
}

.package-boiler-model span {
    display: block;
    color: #9f9f9f;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.package-boiler-model strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-section .accordion-item {
    background: transparent;
    border: 1px solid #3a3a3a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: #050505;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    box-shadow: none;
    padding: 22px 24px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #111;
    color: #fff;
    border-bottom: 1px solid #3a3a3a;
}

.faq-section .accordion-button::after {
    background-image: none;
    content: "\f078";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--brand-orange);
}

.faq-section .accordion-body {
    background: #000;
    color: #d1d1d1;
    line-height: 1.8;
    padding: 24px;
}

/* ==========================
   HEART EFFECT
   ========================== */

.heart-pop {
    position: fixed;
    pointer-events: none;
    font-size: 2.2rem;
    z-index: 9999;
    animation: heartFloatFade 1.2s ease-out forwards;
    transform: translate(-50%, -50%);
    user-select: none;
}

@keyframes heartFloatFade {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
    15% { opacity: 1; transform: translate(-50%, -55%) scale(1.15); }
    35% { opacity: 1; transform: translate(-50%, -65%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -120%) scale(.8); }
}

/* ==========================
   RESPONSIVE EXTRAS
   ========================== */

@media (max-width: 991px) {
    .blog-article {
        padding: 30px;
    }

    .blog-hero-img {
        height: 320px;
    }

    .faq-section .accordion-button {
        font-size: 18px;
    }

    .trust-logo {
        margin: 0 4px;
    }
}

@media (max-width: 575px) {
    .blog-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-list-item img {
        width: 100%;
        height: 220px;
    }

    .blog-featured-content {
        padding: 30px;
    }

    .blog-featured img {
        height: 280px;
        padding: 20px;
    }

    .gallery-overlay {
        opacity: 1;
        padding: 16px;
    }

    .trust-logo {
        margin: 0;
    }
}


/* Happy seal */

.happy-seal{

    width:180px;
    max-width:45vw;

    display:block;

    margin:0 auto -55px;

    position:relative;
    z-index:5;

    animation:sealFloat 4s ease-in-out infinite;
    filter:drop-shadow(0 12px 30px rgba(0,0,0,.35));
}

@keyframes sealFloat{

0%{
    transform:translateY(0px) rotate(-2deg);
}

50%{
    transform:translateY(-10px) rotate(2deg);
}

100%{
    transform:translateY(0px) rotate(-2deg);
}

}









/* THANK YOU PAGE CLEAN */

.thank-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.thank-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thank-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at center, rgba(1,119,205,.25), transparent 35%),
        linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.88));
}

.thank-content {
    position: relative;
    z-index: 3;
    width: min(92%, 760px);
    text-align: center;
    padding: 40px 0;
}

.thank-logo {
    width: clamp(260px, 36vw, 520px);
    margin-bottom: 35px;
}

.thank-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    padding: 48px;
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 70px rgba(0,0,0,.45);
}

.thank-icon {
    font-size: 64px;
    color: #2ecc71;
    margin-bottom: 22px;
}

.thank-card h1 {
    color: #fff !important;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.thank-lead {
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 600;
}

.thank-card p {
    color: #d8dee5 !important;
    line-height: 1.7;
}

.thank-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 575.98px) {
    .thank-logo {
        width: 260px;
    }

    .thank-card {
        padding: 32px 22px;
    }

    .thank-buttons .btn {
        width: 100%;
    }
}

.google-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px; /* Space between the rating and stars */
}

.google-stars strong {
    margin-right: 4px;
}

.google-stars i {
    color: #fbbc05; /* Google star yellow */
}



.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-link:hover {
    color: #FF6401;
}

.footer p a {
    transition: color .25s ease;
}

.footer p a:hover {
    color: #FF6401 !important;
    text-decoration: none;
}

.footer {
    background: #000 !important;
    background-image: none !important;
}




.team-section{
    background: var(--premium-dark);
}

.team-intro {
    max-width: 760px;
    margin: 0 auto;
    color: #c9d1d9;
    line-height: 1.7;
}

.team-tile {
    height: 100%;
    background: linear-gradient(180deg, #101317, #050505);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.team-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(255,100,1,.65);
    box-shadow:
        0 22px 55px rgba(0,0,0,.55),
        0 0 22px rgba(1,119,205,.18);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
    transition: transform .55s ease, filter .55s ease;
}

.team-tile:hover .team-image img {
    transform: scale(1.05);
    filter: brightness(.9) contrast(1.08);
}

.team-content {
    padding: 30px;
}

.team-role {
    display: inline-block;
    color: var(--brand-orange);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-content h3 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.team-content p {
    color: #c9d1d9;
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.team-tags span {
    color: #fff;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: .78rem;
    font-weight: 600;
}

.team-tags span:hover {
    border-color: var(--brand-blue);
    color: var(--brand-orange);
}

@media (max-width: 575.98px) {
    .team-image img {
        height: 340px;
    }

    .team-content {
        padding: 24px;
    }
}

.team-subtitle {
    color: var(--brand-orange);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.team-values {
    background: linear-gradient(180deg, #101317, #050505);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.team-values h4 {
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.team-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-values-grid strong {
    display: block;
    color: #fff;
    margin-bottom: 8px;
}

.team-values-grid p {
    color: #c9d1d9;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .team-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .team-values {
        padding: 26px;
    }

    .team-values-grid {
        grid-template-columns: 1fr;
    }
}


.team-fun-note {
    color: #e4e8ec !important;
    background: rgba(255,255,255,.055);
    border-left: 3px solid var(--brand-orange);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: .95rem;
}

.google-stars {
    position: relative;
    display: inline-flex;
    gap: 2px;
    color: #fbbc04; /* Google-style star yellow */
    overflow: visible;
}

.google-stars i {
    position: relative;
    animation: subtleStarGlow 3s ease-in-out infinite;
}

.google-stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.google-stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.google-stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.google-stars i:nth-child(5) {
    animation-delay: 0.8s;
}


/* Very gentle glow */
@keyframes subtleStarGlow {
    0%, 70%, 100% {
        text-shadow: none;
        transform: scale(1);
    }

    75% {
        text-shadow: 0 0 8px rgba(251, 189, 4, 0.911);
        transform: scale(1.04);
    }
}


/* Respect users who disable animations */
@media (prefers-reduced-motion: reduce) {
    .google-stars i,
    .google-stars::after {
        animation: none;
    }
}

/* ==========================
   SEAL SERVICES PAGE
   Dark grey + white/grey sections to match index/about
   Load after css/style.css
   ========================== */

.service-section {
    position: relative;
    overflow: hidden;
}

.service-section .row {
    position: relative;
    z-index: 2;
}

.service-section .title {
    margin-bottom: 1.65rem;
}

.service-section .title h5 {
    color: var(--brand-blue) !important;
    font-weight: 300;
}

.service-section h1 {
    line-height: 1.12;
    margin-bottom: 0;
}

.service-section p {
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-section img {
    width: 100%;
    border-radius: 18px !important;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.service-section .list-group {
    margin-top: 1.5rem;
}

.service-section .list-group-item {
    background: transparent !important;
    padding-top: 13px;
    padding-bottom: 13px;
    line-height: 1.55;
}

.service-section .fa-check-circle {
    color: var(--brand-blue) !important;
    margin-right: 8px !important;
}

.service-section .btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* DARK GREY ROWS
   Keep the old class name so your HTML does not need changing. */
.service-section--black {
    background: linear-gradient(180deg, #181d22 0%, #14191d 50%, #101317 100%) !important;
    color: var(--text-light) !important;
}

.service-section--black::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(1,119,205,.10), transparent 30%),
        radial-gradient(circle at 88% 75%, rgba(255,100,1,.08), transparent 28%);
    pointer-events: none;
}

.service-section--black h1,
.service-section--black h2,
.service-section--black h3,
.service-section--black h4,
.service-section--black strong {
    color: #fff !important;
}

.service-section--black p,
.service-section--black li {
    color: var(--text-light-muted) !important;
}

.service-section--black .list-group-item {
    color: var(--text-light-muted) !important;
    border-color: rgba(255,255,255,.14) !important;
}

.service-section--black .fa-check-circle {
    color: var(--brand-orange) !important;
}

.service-section--black img {
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 22px 55px rgba(0,0,0,.42);
}

.service-section--black .btn:not(.btn-primary) {
    color: #fff !important;
    background: transparent !important;
    border: 2px solid var(--brand-blue) !important;
}

.service-section--black .btn:not(.btn-primary):hover,
.service-section--black .btn:not(.btn-primary):focus {
    color: #fff !important;
    background: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    transform: translateY(-2px);
}

/* WHITE / SOFT GREY ROWS */
.service-section--grey {
    background: linear-gradient(180deg, #E8ECEF 0%, #DDE3E6 100%) !important;
    color: var(--text-dark) !important;
}

.service-section--grey h1,
.service-section--grey h2,
.service-section--grey h3,
.service-section--grey h4,
.service-section--grey strong {
    color: var(--text-dark) !important;
}

.service-section--grey p,
.service-section--grey li {
    color: var(--text-muted) !important;
}

.service-section--grey .list-group-item {
    color: var(--text-muted) !important;
    border-color: var(--seal-border) !important;
}

.service-section--grey .fa-check-circle {
    color: var(--brand-blue) !important;
}

.service-section--grey img {
    border: 1px solid rgba(38,49,61,.10);
    box-shadow: 0 18px 40px rgba(38,49,61,.16);
}

.service-section--grey .btn:not(.btn-primary) {
    color: var(--text-dark) !important;
    background: transparent !important;
    border: 2px solid var(--brand-blue) !important;
}

.service-section--grey .btn:not(.btn-primary):hover,
.service-section--grey .btn:not(.btn-primary):focus {
    color: #fff !important;
    background: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    transform: translateY(-2px);
}

/* Fix old inline spans that force white text on light sections */
.service-section--grey span[style*="color: white"],
.service-section--grey p span {
    color: var(--text-muted) !important;
}

.service-section--black span[style*="color: white"],
.service-section--black p span {
    color: var(--text-light-muted) !important;
}

/* Better spacing on mobile */
@media (max-width: 991.98px) {
    .service-section .pb-0.pb-lg-5.py-5,
    .service-section .col-lg-7.pb-0.pb-lg-5.py-5 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .service-section h1 {
        font-size: 1.95rem;
    }

    .service-section p,
    .service-section .list-group-item {
        font-size: .95rem;
    }

    .service-section img {
        border-radius: 14px !important;
    }

    .service-section .btn {
        width: 100%;
    }
}


/* ==========================
   GLOBAL SECTION GRADIENT UPGRADE
   Dark grey + deeper SEAL grey
   For index + about + services
   ========================== */

/* Main page background */
body {
    background: linear-gradient(180deg, #DDE3E6 0%, #C9D2D7 100%);
}

/* LIGHT / DEEP SOFT GREY SECTIONS */
.container-fluid.bg-secondary,
.service-section--grey {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #DDE3E6 0%, #CDD6DB 55%, #C3CDD3 100%) !important;
    color: var(--text-dark) !important;
}

/* Subtle blue/orange glow on grey sections */
.container-fluid.bg-secondary::before,
.service-section--grey::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(1,119,205,.075), transparent 32%),
        radial-gradient(circle at 88% 82%, rgba(255,100,1,.055), transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.container-fluid.bg-secondary > .container,
.service-section--grey > .container {
    position: relative;
    z-index: 2;
}

.container-fluid.bg-secondary h1,
.container-fluid.bg-secondary h2,
.container-fluid.bg-secondary h3,
.container-fluid.bg-secondary h4,
.container-fluid.bg-secondary strong,
.service-section--grey h1,
.service-section--grey h2,
.service-section--grey h3,
.service-section--grey h4,
.service-section--grey strong {
    color: var(--text-dark) !important;
}

.container-fluid.bg-secondary h5,
.service-section--grey h5 {
    color: var(--brand-blue) !important;
}

.container-fluid.bg-secondary p,
.container-fluid.bg-secondary li,
.container-fluid.bg-secondary label,
.container-fluid.bg-secondary .form-check-label,
.service-section--grey p,
.service-section--grey li {
    color: var(--text-muted) !important;
}

/* Grey section list items */
.bg-secondary .list-group-item,
.service-section--grey .list-group-item {
    background: transparent !important;
    color: var(--text-muted) !important;
    border-color: rgba(38,49,61,.20) !important;
}

.bg-secondary .list-group-item i,
.service-section--grey .list-group-item i {
    color: var(--brand-blue) !important;
}

/* Grey section images */
.container-fluid.bg-secondary img.rounded,
.container-fluid.bg-secondary .img-fluid.rounded,
.service-section--grey img {
    border: 1px solid rgba(38,49,61,.12);
    box-shadow: 0 18px 40px rgba(38,49,61,.18);
}

/* DARK GREY / CHARCOAL SECTIONS */
.container-fluid[style*="background-color: black"],
.container-fluid[style*="background-color : black"],
.service-section--black,
.services-compact-section,
.team-section,
.work-intro,
.gallery-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #181d22 0%, #14191d 55%, #101317 100%) !important;
    color: var(--text-light) !important;
}

/* Subtle glow on dark sections */
.container-fluid[style*="background-color: black"]::before,
.container-fluid[style*="background-color : black"]::before,
.service-section--black::before,
.services-compact-section::before,
.team-section::before,
.work-intro::before,
.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(1,119,205,.10), transparent 30%),
        radial-gradient(circle at 88% 75%, rgba(255,100,1,.08), transparent 28%);
    pointer-events: none;
    z-index: 1;
}

.container-fluid[style*="background-color: black"] > .container,
.container-fluid[style*="background-color : black"] > .container,
.service-section--black > .container,
.services-compact-section > .container,
.team-section > .container,
.work-intro > .container,
.gallery-section > .container {
    position: relative;
    z-index: 2;
}

.container-fluid[style*="background-color: black"] h1,
.container-fluid[style*="background-color: black"] h2,
.container-fluid[style*="background-color: black"] h3,
.container-fluid[style*="background-color: black"] h4,
.container-fluid[style*="background-color : black"] h1,
.container-fluid[style*="background-color : black"] h2,
.container-fluid[style*="background-color : black"] h3,
.container-fluid[style*="background-color : black"] h4,
.service-section--black h1,
.service-section--black h2,
.service-section--black h3,
.service-section--black h4,
.services-compact-section h1,
.services-compact-section h2,
.services-compact-section h3,
.services-compact-section h4,
.team-section h1,
.team-section h2,
.team-section h3,
.team-section h4,
.work-intro h1,
.work-intro h2,
.work-intro h3,
.work-intro h4,
.gallery-section h1,
.gallery-section h2,
.gallery-section h3,
.gallery-section h4 {
    color: #fff !important;
}

.container-fluid[style*="background-color: black"] h5,
.container-fluid[style*="background-color : black"] h5,
.service-section--black h5,
.services-compact-section h5,
.team-section h5,
.work-intro h5,
.gallery-section h5 {
    color: var(--brand-blue) !important;
}

.container-fluid[style*="background-color: black"] p,
.container-fluid[style*="background-color: black"] li,
.container-fluid[style*="background-color : black"] p,
.container-fluid[style*="background-color : black"] li,
.service-section--black p,
.service-section--black li,
.services-compact-section p,
.services-compact-section li,
.team-section p,
.team-section li,
.work-intro p,
.work-intro li,
.gallery-section p,
.gallery-section li {
    color: var(--text-light-muted) !important;
}

/* Dark section list items */
.container-fluid[style*="background-color: black"] .list-group-item,
.container-fluid[style*="background-color : black"] .list-group-item,
.service-section--black .list-group-item {
    background: transparent !important;
    color: var(--text-light-muted) !important;
    border-color: rgba(255,255,255,.14) !important;
}

.container-fluid[style*="background-color: black"] .list-group-item i,
.container-fluid[style*="background-color : black"] .list-group-item i,
.service-section--black .list-group-item i {
    color: var(--brand-orange) !important;
}

/* Dark section images */
.container-fluid[style*="background-color: black"] img.rounded,
.container-fluid[style*="background-color : black"] img.rounded,
.container-fluid[style*="background-color: black"] .img-fluid.rounded,
.container-fluid[style*="background-color : black"] .img-fluid.rounded,
.service-section--black img {
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 22px 55px rgba(0,0,0,.42);
}

/* Fix old inline white span text inside grey sections */
.container-fluid.bg-secondary span[style*="color: white"],
.service-section--grey span[style*="color: white"],
.service-section--grey p span {
    color: var(--text-muted) !important;
}

/* Keep footer pure black */
.footer {
    background: #000 !important;
    background-image: none !important;
}

/* Image consistency */
.img-fluid.rounded {
    border-radius: 18px !important;
}

@media (max-width: 575.98px) {
    .img-fluid.rounded {
        border-radius: 14px !important;
    }
}


.cylinder-trust-section {
    background:
        radial-gradient(circle at top left, rgba(1,119,205,.16), transparent 32%),
        linear-gradient(180deg, var(--seal-grey), var(--seal-grey-soft));
    color: var(--text-dark);
}

.cylinder-trust-section .title h5 {
    color: var(--brand-blue) !important;
}

.cylinder-trust-section h1,
.cylinder-trust-section h3,
.cylinder-trust-section h4 {
    color: var(--text-dark) !important;
}

.cylinder-trust-section p {
    color: var(--text-muted) !important;
    line-height: 1.7;
}

.cylinder-trust-card {
    height: 100%;
    background: var(--seal-card);
    border: 1px solid var(--seal-border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.cylinder-trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(1,119,205,.55);
    box-shadow: 0 16px 35px rgba(1,119,205,.12);
}

.cylinder-trust-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--premium-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cylinder-trust-icon i {
    color: var(--brand-orange);
    font-size: 28px;
}

.cylinder-trust-card h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cylinder-proof-box {
    background: var(--premium-dark);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.cylinder-proof-box h3 {
    color: #fff !important;
    margin-bottom: 12px;
}

.cylinder-proof-box p {
    color: var(--text-light-muted) !important;
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .cylinder-trust-card {
        padding: 26px 20px;
    }

    .cylinder-proof-box {
        padding: 26px 22px;
    }

    .cylinder-proof-box .btn {
        width: 100%;
    }
}




.package-image {
    width: 100%;
    height: 220px;
    background: #f5f5f5;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.package-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

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

.featured-package .package-image {
    border: 2px solid var(--primary);
}


/* ==========================================
   TRADIFY GLASS CARD
========================================== */

.tradify-wrapper {
    position: relative;
    overflow: hidden;

    height: 1078px; /* iframe 1050px + 14px top/bottom padding */
    padding: 14px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.18) 0%,
            rgba(255,255,255,.08) 30%,
            rgba(255,255,255,.28) 55%,
            rgba(255,255,255,.10) 100%
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.35);

    box-shadow:
        0 20px 60px rgba(0,0,0,.08),
        inset 0 1px rgba(255,255,255,.45);
}

/* subtle glow */
.tradify-wrapper::before {
    content: "";
    position: absolute;
    inset: -120px;

    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,.55), transparent 45%),
        radial-gradient(circle at 85% 90%, rgba(1,119,205,.10), transparent 40%);

    z-index: 0;
    pointer-events: none;
}

/* white centre behind iframe */
.tradify-wrapper::after {
    content: "";
    position: absolute;

    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;

    border-radius: 16px;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,1) 45%,
            rgba(250,252,255,.98) 70%,
            rgba(236,242,247,.94) 100%
        );

    z-index: 1;
    pointer-events: none;
}

/* iframe */
.tradify-frame {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 1050px;

    border: 0;
    border-radius: 14px;

    display: block;
    background: #fff;
}

/* covers Tradify footer */
.tradify-footer-cover {
    position: absolute;

    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);

    width: 92%;
    height: 70px;

    background: #ffffff;

    z-index: 9999;
    pointer-events: none;

    border-radius: 0 0 14px 14px;
}

/* ==========================================
   CONTACT LEFT SIDE
========================================== */

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 100%;
    min-height: 1078px;
}

/* Feature list */
.contact-highlights {
    margin: 35px 0;
}

.highlight-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.highlight-item i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(1,119,205,.10);
    color: var(--primary);

    font-size: 20px;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 4px;
}

.highlight-item p {
    margin: 0;
    color: #5f6774;
    line-height: 1.6;
}

/* ==========================================
   MOBILE
========================================== */

.tradify-wrapper{
    padding:8px;
    border-radius:22px;
}

.tradify-inner{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    height:100%;
}

.tradify-frame{
    width:100%;
    height:100%;
    border:0;
}

.refurb-workflow-line {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.refurb-workflow-line::before {
    content: "";
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 50%;
    width: 3px;
    background: linear-gradient(180deg, #0177CD, #FF6401);
    transform: translateX(-50%);
    border-radius: 10px;
}

.refurb-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}

.refurb-step:nth-child(even) {
    flex-direction: row-reverse;
}

.refurb-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #111827;
    border: 3px solid #0177CD;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Josefin Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 25px rgba(1, 119, 205, 0.45);
}

.refurb-step-content {
    width: calc(50% - 70px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 30px;
    transition: 0.3s ease;
}

.refurb-step-content:hover {
    transform: translateY(-5px);
    border-color: rgba(255,100,1,0.65);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.refurb-step-content i {
    font-size: 34px;
    color: #FF6401;
    margin-bottom: 18px;
}

.refurb-step-content h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.refurb-step-content p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .refurb-workflow-line::before {
        left: 34px;
    }

    .refurb-step,
    .refurb-step:nth-child(even) {
        flex-direction: row;
        padding-left: 84px;
    }

    .refurb-step-number {
        left: 34px;
        width: 58px;
        height: 58px;
        font-size: 18px;
    }

    .refurb-step-content {
        width: 100%;
        padding: 24px;
    }
}



/* ==========================================
   GENERAL MAINTENANCE PRICING
========================================== */

.maintenance-pricing-box {
    background: linear-gradient(
        135deg,
        rgba(1, 119, 205, 0.16),
        rgba(255, 100, 1, 0.10)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    padding: 42px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.maintenance-pricing-box h3 {
    color: #fff;
    margin-bottom: 15px;
}

.maintenance-pricing-box p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 0;
}

.maintenance-pricing-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.maintenance-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.maintenance-pricing-list li:last-child {
    margin-bottom: 0;
}

.maintenance-pricing-list i {
    color: #FF6401;
    margin-top: 4px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .maintenance-pricing-box {
        padding: 28px;
    }
}


.pricing-hero-card {
            background: linear-gradient(135deg, rgba(1,119,205,0.22), rgba(255,100,1,0.12));
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 30px;
            padding: 46px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.32);
            overflow: hidden;
            position: relative;
        }

        .pricing-hero-card::after {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            right: -90px;
            top: -90px;
            background: radial-gradient(circle, rgba(255,100,1,0.25), transparent 70%);
            pointer-events: none;
        }

        .pricing-hero-card h2,
        .pricing-card h3,
        .pricing-table-box h3,
        .pricing-note-box h3 {
            color: #ffffff;
        }

        .pricing-hero-card p,
        .pricing-card p,
        .pricing-note-box p,
        .price-small-text {
            color: rgba(255,255,255,0.78);
            line-height: 1.8;
        }

        .price-badge-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 999px;
            padding: 12px 20px;
            color: #ffffff;
            margin-bottom: 18px;
            font-weight: 600;
        }

        .price-badge-large i {
            color: #FF6401;
        }

        .main-price {
            font-family: 'Josefin Sans', sans-serif;
            font-size: clamp(3rem, 6vw, 5.8rem);
            line-height: 0.9;
            color: #ffffff;
            font-weight: 700;
            margin: 14px 0;
        }

        .main-price span {
            color: #FF6401;
        }

        .pricing-card {
            height: 100%;
            background: rgba(255,255,255,0.045);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 24px;
            padding: 30px;
            transition: 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255,100,1,0.45);
            box-shadow: 0 20px 45px rgba(0,0,0,0.25);
        }

        .pricing-icon {
            width: 62px;
            height: 62px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(1,119,205,0.35), rgba(255,100,1,0.22));
            margin-bottom: 22px;
        }

        .pricing-icon i {
            color: #ffffff;
            font-size: 26px;
        }

        .price-line {
            color: #ffffff;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .price-line span {
            color: #FF6401;
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
        }

        .pricing-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: rgba(255,255,255,0.82);
            margin-bottom: 12px;
            line-height: 1.65;
        }

        .pricing-list i {
            color: #FF6401;
            margin-top: 5px;
        }

        .pricing-table-box {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 28px;
            padding: 34px;
            box-shadow: 0 20px 55px rgba(0,0,0,0.24);
        }

        .pricing-job-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 12px;
        }

        .pricing-job-table th {
            color: #ffffff;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 0 18px 8px;
        }

        .pricing-job-table td {
            background: rgba(255,255,255,0.055);
            color: rgba(255,255,255,0.82);
            padding: 18px;
            vertical-align: middle;
            border-top: 1px solid rgba(255,255,255,0.08);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .pricing-job-table td:first-child {
            border-left: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px 0 0 16px;
            color: #ffffff;
            font-weight: 600;
        }

        .pricing-job-table td:last-child {
            border-right: 1px solid rgba(255,255,255,0.08);
            border-radius: 0 16px 16px 0;
            color: #ffffff;
            font-weight: 700;
            white-space: nowrap;
        }

        .pricing-job-table .job-note {
            color: rgba(255,255,255,0.64);
            font-size: 14px;
            margin-top: 4px;
            display: block;
            font-weight: 400;
        }

        .pricing-note-box {
            background: linear-gradient(135deg, rgba(1,119,205,0.14), rgba(255,100,1,0.08));
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 26px;
            padding: 34px;
        }

        .included-pill {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: #ffffff;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 999px;
            padding: 10px 16px;
            margin: 5px;
            font-size: 15px;
        }

        .included-pill i {
            color: #FF6401;
        }



        /* Pricing page readability fixes */
        .pricing-page .pricing-hero-card,
        .pricing-page .pricing-card,
        .pricing-page .pricing-table-box,
        .pricing-page .pricing-note-box {
            background: linear-gradient(135deg, #101923 0%, #172436 58%, #102132 100%) !important;
            border: 1px solid rgba(255,255,255,0.14) !important;
            color: #ffffff !important;
        }

        .pricing-page .pricing-card {
            background: #111b27 !important;
        }

        .pricing-page .pricing-table-box {
            background: #0f1722 !important;
        }

        .pricing-page .pricing-hero-card h2,
        .pricing-page .pricing-card h3,
        .pricing-page .pricing-table-box h3,
        .pricing-page .pricing-note-box h3,
        .pricing-page .pricing-card .price-line,
        .pricing-page .pricing-job-table th,
        .pricing-page .pricing-job-table td:first-child,
        .pricing-page .pricing-job-table td:last-child {
            color: #ffffff !important;
            text-shadow: none !important;
        }

        .pricing-page .pricing-hero-card p,
        .pricing-page .pricing-card p,
        .pricing-page .pricing-note-box p,
        .pricing-page .price-small-text,
        .pricing-page .pricing-list li,
        .pricing-page .pricing-job-table td,
        .pricing-page .pricing-job-table .job-note {
            color: rgba(255,255,255,0.84) !important;
        }

        .pricing-page .pricing-job-table td {
            background: #162232 !important;
        }

        .pricing-page .pricing-job-table tr:nth-child(even) td {
            background: #1a2a3d !important;
        }

        .pricing-page .price-badge-large,
        .pricing-page .included-pill {
            background: rgba(255,255,255,0.10) !important;
            color: #ffffff !important;
        }

        /* Light/grey sections need dark normal text outside the pricing cards */
        .pricing-page .service-section--grey > .container > .text-center h1,
        .pricing-page .service-section--grey > .container > .text-center p {
            color: #111827 !important;
        }

        .pricing-page .service-section--grey .title h5 {
            color: #0177CD !important;
        }

        .pricing-page .cylinder-trust-section p.fs-5 {
            color: #1f2937 !important;
        }

        @media (max-width: 767px) {
            .pricing-page .pricing-job-table tr {
                background: #162232 !important;
            }
        }

        @media (max-width: 767px) {
            .pricing-hero-card,
            .pricing-table-box,
            .pricing-note-box {
                padding: 26px;
            }

            .pricing-job-table,
            .pricing-job-table tbody,
            .pricing-job-table tr,
            .pricing-job-table td {
                display: block;
                width: 100%;
            }

            .pricing-job-table thead {
                display: none;
            }

            .pricing-job-table tr {
                background: rgba(255,255,255,0.055);
                border: 1px solid rgba(255,255,255,0.08);
                border-radius: var(--radius-lg);
                overflow: hidden;
                margin-bottom: 14px;
            }

            .pricing-job-table td {
                border: none !important;
                border-radius: 0 !important;
                padding: 14px 16px;
            }

            .pricing-job-table td:last-child {
                color: #FF6401;
                font-size: 1.15rem;
            }
        }

        .pricing-page .pricing-section-dark {
            background: #0b111a;
        }

        /* Compact price guide - brighter, larger and easier to read */
        .pricing-page .compact-pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        .pricing-page .compact-price-card {
            height: 100%;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.14);
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
        }

        .pricing-page .compact-price-card h3 {
            color: #0f172a;
            font-size: 1.36rem;
            line-height: 1.25;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .pricing-page .compact-price-card h3 i {
            color: #0177CD !important;
        }

        .pricing-page .compact-price-card > p {
            color: #374151;
            line-height: 1.6;
            margin-bottom: 16px;
            font-size: 1.03rem;
        }

        .pricing-page .compact-price-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-page .compact-price-list li {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 18px;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid rgba(15, 23, 42, 0.12);
        }

        .pricing-page .compact-price-list li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

        .pricing-page .compact-price-list strong {
            display: block;
            color: #111827;
            font-size: 1.05rem;
            line-height: 1.35;
            font-weight: 700;
        }

        .pricing-page .compact-price-list small {
            display: block;
            color: #4b5563;
            font-size: 0.94rem;
            line-height: 1.45;
            margin-top: 3px;
            font-weight: 400;
        }

        .pricing-page .compact-price {
            display: inline-block;
            background: #0177CD;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.02rem;
            line-height: 1.25;
            white-space: nowrap;
            text-align: center;
            padding: 9px 13px;
            border-radius: 999px;
            box-shadow: 0 8px 18px rgba(1, 119, 205, 0.22);
        }

        .pricing-page .compact-pricing-note {
            margin-top: 26px;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.14);
            border-left: 6px solid #FF6401;
            border-radius: 22px;
            padding: 22px 26px;
            color: #1f2937;
            line-height: 1.65;
            font-size: 1.04rem;
            box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
        }

        .pricing-page .compact-pricing-note strong {
            color: #0f172a;
        }

        @media (max-width: 991.98px) {
            .pricing-page .compact-pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .pricing-page .compact-price-card {
                padding: 22px;
                border-radius: 20px;
            }

            .pricing-page .compact-price-card h3 {
                font-size: 1.25rem;
            }

            .pricing-page .compact-price-card > p {
                font-size: 1rem;
            }

            .pricing-page .compact-price-list li {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 14px 0;
            }

            .pricing-page .compact-price-list strong {
                font-size: 1.03rem;
            }

            .pricing-page .compact-price-list small {
                font-size: 0.94rem;
            }

            .pricing-page .compact-price {
                width: fit-content;
                text-align: left;
                white-space: normal;
            }
        }
   


.gallery-disclaimer-box {
    background: #1b1b1b;
    border: 1px solid rgba(255,255,255,.08);
    border-left: 5px solid #0177CD;
    border-radius: 22px;
    padding: 30px;
    margin-bottom: 2em;
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.gallery-disclaimer-box h4{
    color:#ffffff;
    font-weight:700;
    margin-bottom:12px;
}

.gallery-disclaimer-box p{
    color:#d6d6d6;
    line-height:1.8;
    margin:0;
}

.gallery-disclaimer-box strong{
    color:#ffffff;
}

.gallery-disclaimer-icon{
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:50%;
    background:#0177CD;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}
.blog-featured .blog-featured-content.category h2 {
    color: #ffffff !important;
}

.blog-featured .blog-featured-content.category p {
    color: #e6e6e6 !important;
}

.blog-featured .blog-featured-content.category .blog-category {
    color: #FF6401 !important;
}

.blog-featured .blog-featured-content.category {
    background: #050505 !important;
}

.blog-article,
.blog-article p,
.blog-article li,
.blog-article span,
.blog-article .lead,
.blog-article .accordion-body {
    color: rgba(255,255,255,0.82) !important;
}

.blog-article h1,
.blog-article h2,
.blog-article h3,
.blog-article h4,
.blog-article strong,
.blog-article .accordion-button {
    color: #ffffff !important;
}

.blog-meta span,
.blog-article small {
    color: rgba(255,255,255,0.65) !important;
}

.blog-check-list i {
    color: #0177CD !important;
}

.blog-article a {
    color: #FF6401 !important;
}

/* BLOG ARTICLE READABILITY FIX */
.container-fluid.bg-secondary .blog-article {
    background: #050505 !important;
    color: #d1d1d1 !important;
}

.container-fluid.bg-secondary .blog-article h1,
.container-fluid.bg-secondary .blog-article h2,
.container-fluid.bg-secondary .blog-article h3,
.container-fluid.bg-secondary .blog-article h4,
.container-fluid.bg-secondary .blog-article strong {
    color: #ffffff !important;
}

.container-fluid.bg-secondary .blog-article p,
.container-fluid.bg-secondary .blog-article li,
.container-fluid.bg-secondary .blog-article .lead,
.container-fluid.bg-secondary .blog-article span,
.container-fluid.bg-secondary .blog-article .accordion-body {
    color: #d1d1d1 !important;
}

.container-fluid.bg-secondary .blog-article .blog-meta span {
    color: #9f9f9f !important;
}

.container-fluid.bg-secondary .blog-article .blog-category,
.container-fluid.bg-secondary .blog-article .blog-check-list i,
.container-fluid.bg-secondary .blog-article .blog-meta i {
    color: #0177CD !important;
}

.container-fluid.bg-secondary .blog-article .faq-section .accordion-button {
    background: #050505 !important;
    color: #ffffff !important;
}

.container-fluid.bg-secondary .blog-article .faq-section .accordion-body {
    background: #000000 !important;
    color: #d1d1d1 !important;
}

/* =========================================================
   V2 FINAL OVERRIDES
   These rules intentionally sit at the end of the stylesheet.
   They are safe production improvements and should override
   older duplicated rules above without changing the overall design.
   ========================================================= */

/* Better keyboard accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.navbar-toggler:focus-visible,
.form-control:focus-visible,
.form-check-input:focus-visible,
.gallery-card:focus-visible,
.service-card:focus-visible {
    outline: 3px solid rgba(1,119,205,.85);
    outline-offset: 4px;
    box-shadow: var(--focus-ring);
}

/* Full service cards can now be anchors: <a class="service-card" href="..."> */
a.service-card,
.service-card-link-wrapper {
    display: block;
    height: 100%;
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer;
}

a.service-card:hover,
a.service-card:focus,
.service-card-link-wrapper:hover,
.service-card-link-wrapper:focus {
    color: inherit !important;
    text-decoration: none !important;
}

a.service-card .service-card-link,
.service-card-link-wrapper .service-card-link {
    display: inline-flex;
    align-items: center;
}

.service-card-link:hover,
a.service-card:hover .service-card-link,
.service-card-link-wrapper:hover .service-card-link {
    color: var(--brand-orange);
}

/* Safer semantic section classes for future pages */
.section-dark,
.service-section--black,
.services-compact-section,
.work-intro,
.gallery-section,
.footer {
    background: var(--premium-dark) !important;
    color: var(--text-light) !important;
}

.section-light,
.service-section--grey,
.container-fluid.bg-secondary {
    background: var(--seal-grey) !important;
    color: var(--text-dark) !important;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark strong {
    color: #ffffff !important;
}

.section-dark p,
.section-dark li,
.section-dark span {
    color: var(--text-light-muted) !important;
}

/* Consistent image behaviour */
img {
    max-width: 100%;
}

.service-card img,
.blog-list-item img,
.blog-featured img,
.team-image img,
.gallery-card img {
    background: #111;
}

/* Testimonials: safe placeholder / real-review styling */
.testimonial-item p {
    color: var(--text-light-muted) !important;
}

.testimonial-item h5 {
    color: #ffffff !important;
}

/* Consolidated Google star styling */
.google-stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #fbbc04;
    line-height: 1;
    margin-bottom: 5px;
}

.google-stars i {
    color: #fbbc04 !important;
    margin: 0 1px;
}

/* Consolidated footer final state */
.footer {
    background: #000000 !important;
    background-image: none !important;
    color: #ffffff !important;
}

.footer p,
.footer span {
    color: rgba(255,255,255,.78) !important;
}

.footer a,
.footer-link {
    color: #ffffff !important;
    text-decoration: none;
}

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

/* Contact/form readability */
.bg-secondary form .btn,
.contact-section form .btn {
    min-height: 54px;
}

.form-control::placeholder {
    color: rgba(93,105,117,.68);
}

/* Better tap behaviour on mobile/touch */
@media (hover: none) {
    .service-card:hover,
    .blog-list-item:hover,
    .service-package-card:hover,
    .team-tile:hover,
    .gallery-card:hover img {
        transform: none;
    }
}

/* Performance and accessibility: reduce non-essential motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Mobile polish */
@media (max-width: 575.98px) {
    .back-to-top {
        right: 18px;
        bottom: 18px;
    }

    .page-header {
        padding-top: 145px;
    }

    .title {
        margin-bottom: 1.35rem;
    }
}


  .typical-price-wrap {
            max-width: 1050px;
            margin: 0 auto;
        }

        .typical-price-card {
            background: #ffffff;
            border: 1px solid rgba(1,119,205,0.18);
            border-radius: 22px;
            padding: 28px;
            box-shadow: 0 18px 45px rgba(0,0,0,0.12);
        }

        .typical-price-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 12px;
        }

        .typical-price-table tr {
            background: #f7faff;
        }

        .typical-price-table td {
            padding: 18px 20px;
            color: #1f2937;
            vertical-align: middle;
            border-top: 1px solid rgba(1,119,205,0.12);
            border-bottom: 1px solid rgba(1,119,205,0.12);
            font-size: 16px;
        }

        .typical-price-table td:first-child {
            border-left: 1px solid rgba(1,119,205,0.12);
            border-radius: 14px 0 0 14px;
        }

        .typical-price-table td:last-child {
            border-right: 1px solid rgba(1,119,205,0.12);
            border-radius: 0 14px 14px 0;
            text-align: right;
            white-space: nowrap;
        }

        .typical-price-table strong {
            display: block;
            color: #0f172a;
            font-size: 18px;
            margin-bottom: 3px;
        }

        .typical-price-table small {
            display: block;
            color: #4b5563;
            font-size: 14px;
            line-height: 1.5;
        }

        .typical-price-value {
            display: inline-block;
            background: #0177CD;
            color: #ffffff;
            padding: 10px 14px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 15px;
        }

        .package-link-card {
            height: 100%;
            background: linear-gradient(135deg, #ffffff, #f6faff);
            border: 1px solid rgba(1,119,205,0.20);
            border-radius: 22px;
            padding: 28px;
            box-shadow: 0 18px 45px rgba(0,0,0,0.12);
        }

        .package-link-card h3 {
            color: #0f172a;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .package-link-card p {
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .package-from-price {
            color: #0177CD;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .package-from-price span {
            display: block;
            color: #6b7280;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .pricing-short-note {
            background: rgba(1,119,205,0.08);
            border: 1px solid rgba(1,119,205,0.18);
            border-radius: 18px;
            color: #1f2937;
            padding: 20px 24px;
            margin-top: 24px;
            line-height: 1.7;
        }

        @media (max-width: 767px) {
            .typical-price-card,
            .package-link-card {
                padding: 20px;
            }

            .typical-price-table,
            .typical-price-table tbody,
            .typical-price-table tr,
            .typical-price-table td {
                display: block;
                width: 100%;
            }

            .typical-price-table tr {
                border: 1px solid rgba(1,119,205,0.12);
                border-radius: 16px;
                overflow: hidden;
                margin-bottom: 14px;
            }

            .typical-price-table td {
                border: 0 !important;
                border-radius: 0 !important;
                padding: 14px 16px;
            }

            .typical-price-table td:last-child {
                text-align: left;
                padding-top: 0;
            }
        }



        