/* Start custom CSS for html, class: .elementor-element-c6383e3 */body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}
*{box-sizing:border-box;}

header .site-branding .container .navigation .main-navigation .nav-menu {
    display: flex;
    justify-content: start;
    gap: 60px !important;
    align-items: start;
}
.skyBlueBtn {
    background-color: #41b8ff !important;
    color: #fff !important;
}

.btn, button, input[type=button], input[type=reset], input[type=submit] {
    display: inline-block;
    padding: 11px 49px !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    text-decoration: none;
    border-radius: 999px !important;
    text-align: center;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    border: 0;
}

/* Top Orange Promo Bar */
.top-promo-bar {
    background-color: #FF5A26;
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Navbar Custom Styles */
.custom-navbar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Logo Styling mimicking "Swansea Gas and Oil" logo */

.logo-container{
        display: contents;
}

.logo-img{
    width: 10%;
    height: auto;
}

/* Navigation Links */
.nav-link-custom {
    color: #4A4A4A !important;
    font-weight: 500;
    font-size: 12px;
    padding: 8px 12px !important;
    transition: color 0.2s ease-in-out;
}
.nav-link-custom:hover {
    color: #FF5A26 !important;
}

/* Rounded Contact Button with Shadow */
.btn-contact {
    background-color: #38B6FF; /* Exact Sky Blue */
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    padding: 8px 24px !important;
    border: none;
    box-shadow: 0 4px 10px rgba(56, 182, 255, 0.3);
    transition: all 0.2s ease-in-out;
}
.btn-contact:hover {
    background-color: #1E90FF;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
    transform: translateY(-1px);
}

/* Phone and Whatsapp Icons styling */
.header-icon-link {
    color: #000000;
    font-size: 20px;
    transition: color 0.2s;
    text-decoration: none;
}
.header-icon-link:hover {
    color: #FF5A26;
}
.whatsapp-icon:hover {
    color: #25D366; /* WhatsApp Green on Hover */
}

/* Custom Hamburger (Toggler) Icon */
.navbar-toggler {
    border: none;
    outline: none;
    padding: 0;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon-custom {
    font-size: 24px;
    color: #FF5A26;
}

/* Alignment utility for Desktop Icons */
.action-icons-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Adjustments for Mobile and Tablet Screens */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 20px 0;
        border-top: 1px solid #f0f0f0;
        margin-top: 15px;
    }
    .nav-link-custom {
        padding: 10px 0 !important;
        border-bottom: 1px solid #f8f9fa;
    }
    .action-icons-group {
        margin-top: 15px;
        justify-content: flex-start;
        gap: 20px;
    }
    .btn-contact {
        display: inline-block;
        width: auto;
        text-align: center;
    }
}


/* --- Global Variables & Colors --- */
:root {
    --bs-orange: #FF5A26;
    --bs-orange-hover: #e04818;
    --bs-dark: #1a1a1a;
}

/* Background Utility Helpers */
.bg-orange {
    background-color: #FF5A26 !important; /* Pure solid orange background */
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 1. Hero Banner (Exact Unchanged Style) */
.bs-hero-banner {
    position: relative;
    background-image: url('https://www.swanseagasandoil.co.uk/wp-content/uploads/2026/08/boiler-servicing.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px 0;
}

.bs-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff5c2480; /* Pure white overlay */
    z-index: 1;
}

.bs-hero-banner .container {
    position: relative;
    z-index: 2;
}

.bs-tag {
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bs-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #f0f0f0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.bs-hero-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.bs-hero-text {
    font-size: 15.5px;
    color: #faf9f9;
    line-height: 1.6;
    font-weight: 500;
}

.bs-hero-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.bs-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.bs-btn-orange {
    background-color: #1E90FF;
    color: #ffffff !important;
}

.bs-btn-orange:hover {
    background-color: #037bf3;
}

.bs-btn-dark {
    background-color: var(--bs-dark);
    color: #ffffff !important;
}

.bs-btn-dark:hover {
    background-color: #333333;
}

/* Headings */
.bs-section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--bs-dark);
    margin-bottom: 10px;
}

.bs-section-intro {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Image Sections */
.bs-section-img {
    border-radius: 12px;
    max-width: 50% !important;
    object-fit: cover;
}

.bs-img-text-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 12px;
}

.bs-img-text-box p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

/* Included Cards on Orange Background */
.bs-included-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bs-included-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-orange);
    margin-bottom: 10px;
}

.bs-included-card p {
    font-size: 14.5px;
    color: #444444;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Solid Orange Why Choose Section */
.bs-orange-title {
    font-size: 36px;
    font-weight: 800;
}

.bs-why-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

/* Accordion Custom Styling */
.bs-accordion-item {
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.bs-accordion-btn {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--bs-dark) !important;
    background-color: #ffffff !important;
    padding: 18px 24px !important;
    box-shadow: none !important;
}

.bs-accordion-btn:not(.collapsed) {
    background-color: #fff8f5 !important;
    color: var(--bs-orange) !important;
    border-bottom: 1px solid #f0f0f0;
}

.bs-accordion-body {
    padding: 24px;
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
}

.bs-list, .bs-card-list {
    padding-left: 20px;
    margin-top: 8px;
}

.bs-list li, .bs-card-list li {
    margin-bottom: 6px;
}

/* CTA Section */
.bs-cta-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff8f5;
    margin-bottom: 12px;
}

.bs-cta-text {
    font-size: 16px;
    color: #fff8f5;
    line-height: 1.6;
}

.bs-cta-subtext{
    color: #fff8f5;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .bs-hero-title {
        font-size: 34px;
    }
    .bs-hero-subtitle {
        font-size: 18px;
    }
    .bs-section-title, .bs-orange-title, .bs-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .bs-hero-title {
        font-size: 28px;
    }
    .bs-btn {
        width: 100%;
        text-align: center;
    }
}


.wa-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

.wa-btn img {
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
}

.wa-btn img:hover {
  transform: scale(1.1);
}


/* --- Footer Section Styles --- */
.main-footer {
    background-color: #ffffff;
    padding: 60px 0 50px 0;
    border-top: 1px solid #ECEFF1;
    font-family: 'Montserrat', sans-serif;
}

.footer-brand-col .tagline-text {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
}

.footer-brand-col .orange-text {
    color: #FF6B35;
}

.footer-brand-col .blue-text {
    color: #38B6FF;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.logo-title-top {
    font-size: 26px;
    font-weight: 800;
    color: #FF6B35;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-bottom-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: -2px;
}

.logo-title-bottom {
    font-size: 19px;
    font-weight: 800;
    color: #38B6FF;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-flame-icon {
    font-size: 18px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-tagline-desc {
    font-size: 12.5px;
    line-height: 1.7;
    color: #080808;
    font-weight: 500;
    margin: 0;
    max-width: 250px;
}

.orange-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #FF6B35;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
}

.hours-text, .address-text {
    font-size: 11.5px;
    line-height: 1.6;
    color: #000000;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 11.5px;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #FF6B35;
}

.oftec-badge {
    width: 42px;
    height: 38px;
    background-color: #10B981;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4px;
}

.oftec-badge .badge-inner-text {
    font-size: 7px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.gas-safe-badge {
    width: 44px;
    height: 38px;
    background-color: #FBBF24;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 3px;
}

.gas-safe-badge .badge-inner-text {
    font-size: 7px;
    font-weight: 900;
    color: #000000;
    line-height: 1;
}

.gas-safe-badge .badge-sub-text {
    font-size: 4px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.contact-label {
    font-size: 11px;
    color: #000000;
    margin-bottom: 2px;
    font-weight: 500;
}

.contact-value {
    font-size: 12.5px;
    font-weight: 700;
    color: #2D3748;
    text-decoration: none;
    display: inline-block;
}

.email-link {
    font-size: 11.5px;
    color: #2b6cb0;
}

.link-underline-effect:hover {
    text-decoration: underline;
}

.social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-circle:hover {
    opacity: 0.9;
}

.fb-color {
    background-color: #FF6B35;
}

.yt-color {
    background-color: #FF6B35;
}

.checkatrade-logo-link {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
}

.check-text-blue {
    color: #2b6cb0;
}

.check-text-orange {
    color: #FF6B35;
}

@media (max-width: 767.98px) {
    .main-footer {
        padding: 45px 0 35px 0;
    }
    .footer-brand-col {
        margin-bottom: 10px;
    }
    .footer-heading {
        margin-bottom: 15px;
    }
}/* End custom CSS */