/* ==========================================================================
   Bonilla Construction LLC - Main Stylesheet
   Framework: Bootstrap 5 + Custom Classes
   Constraint: NO CSS :root color variables used
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Base Typography & Defaults
   -------------------------------------------------------------------------- */
body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #334155;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
    color: #0b192c;
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   1. Header Navigation (#header)
   -------------------------------------------------------------------------- */
.bc-header {
    position: relative;
    z-index: 1040;
    width: 100%;
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 15px rgba(11, 25, 44, 0.05);
}

.bc-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: bcHeaderSlideDown 0.3s ease;
    box-shadow: 0 8px 25px rgba(11, 25, 44, 0.1);
}

@keyframes bcHeaderSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.bc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    gap: 20px;
}

.bc-brand {
    display: flex;
    align-items: center;
    height: 60px;
    text-decoration: none;
}

.bc-brand-logo {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.bc-desktop-nav {
    display: block;
}

.bc-nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bc-nav-item {
    position: relative;
}

.bc-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    color: #0b192c !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.bc-nav-link:hover,
.bc-nav-link.active {
    color: #ff6b00 !important;
    background-color: rgba(255, 107, 0, 0.08);
}

/* Dropdown Menu */
.bc-nav-dropdown {
    position: relative;
}

.bc-dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    padding: 10px 0;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(11, 25, 44, 0.12);
    z-index: 1050;
    list-style: none;
    margin: 0;
}

.bc-nav-dropdown:hover .bc-dropdown-menu {
    display: block !important;
}

.bc-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: #334155 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.bc-dropdown-item:hover {
    color: #ff6b00 !important;
    background-color: #fff7ed !important;
    padding-left: 22px;
}

/* Right Header Controls */
.bc-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bc-lang-switcher {
    display: inline-flex;
    align-items: center;
    background-color: #f1f5f9;
    border-radius: 20px;
    padding: 3px 8px;
    border: 1px solid #cbd5e1;
}

.bc-lang-btn {
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 14px;
}

.bc-lang-btn.active {
    background-color: #0b192c !important;
    color: #ffffff !important;
}

.bc-lang-sep {
    color: #cbd5e1;
    font-size: 12px;
    margin: 0 2px;
}

.bc-navigation-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background-color: #ff6b00 !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.25);
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
}

.bc-navigation-cta:hover {
    background-color: #ea580c !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.bc-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #0b192c;
    font-size: 24px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .bc-desktop-nav {
        display: none !important;
    }

    .bc-mobile-toggle {
        display: flex !important;
    }
}

/* --------------------------------------------------------------------------
   Mobile Drawer Offcanvas (.bc-offcanvas)
   -------------------------------------------------------------------------- */
.bc-offcanvas {
    display: none !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 310px;
    height: 100vh;
    background-color: #ffffff !important;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(11, 25, 44, 0.18);
    flex-direction: column;
}

.bc-offcanvas.show {
    display: flex !important;
}

.bc-offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(11, 25, 44, 0.5);
    z-index: 1995;
    display: none;
}

.bc-offcanvas-backdrop.show {
    display: block;
}

.bc-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.bc-offcanvas-logo {
    max-height: 45px;
    width: auto;
}

.bc-offcanvas-body {
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bc-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-mobile-nav-list li {
    border-bottom: 1px solid #f1f5f9;
}

.bc-mobile-nav-list a {
    display: block;
    padding: 12px 0;
    color: #0b192c !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.bc-mobile-contact-box {
    background-color: #0b192c;
    color: #ffffff;
    border-radius: 10px;
    padding: 18px;
}

.bc-mobile-contact-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
}

.bc-mobile-phone {
    display: flex;
    align-items: center;
    color: #ffffff !important;
    font-size: 13px;
    margin-bottom: 6px;
    text-decoration: none;
}

.bc-mobile-phone i {
    color: #ff6b00;
}

/* --------------------------------------------------------------------------
   Floating Left Social Sidebar (.social-sidebar)
   -------------------------------------------------------------------------- */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-phone-wrapper {
    position: relative;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease;
}

.social-icon.phone {
    background-color: #22c55e !important;
    border: none;
    cursor: pointer;
}

.social-icon.mail {
    background-color: #64748b !important;
}

.social-icon.facebook {
    background-color: #1877f2 !important;
}

.social-icon.tiktok {
    background-color: #000000 !important;
}

.social-icon:hover {
    color: #ffffff !important;
    transform: translateX(6px);
}

.bc-phone-popover {
    display: none;
    position: absolute;
    left: 48px;
    top: -10px;
    width: 240px;
    background-color: #0b192c !important;
    border: 1px solid #ff6b00;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 12px 30px rgba(11, 25, 44, 0.45);
    z-index: 1050;
    color: #ffffff !important;
}

.bc-phone-popover.show {
    display: block !important;
    animation: bcPopFade 0.25s ease-out;
}

@keyframes bcPopFade {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bc-phone-popover-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8 !important;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
}

.bc-phone-popover-header i {
    color: #ff6b00 !important;
}

.bc-phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.07);
    color: #ffffff !important;
    text-decoration: none;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.bc-phone-item:last-child {
    margin-bottom: 0;
}

.bc-phone-item:hover {
    background-color: #ff6b00 !important;
    color: #ffffff !important;
}

.bc-phone-item i {
    font-size: 18px;
    color: #22c55e;
}

.bc-phone-item:hover i {
    color: #ffffff;
}

.bc-phone-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.bc-phone-item small {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

@media (max-width: 575px) {
    .social-sidebar {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   2. Hero Section (#hero with background image slider)
   -------------------------------------------------------------------------- */
.bc-hero {
    position: relative;
    padding: 120px 0 110px;
    color: #ffffff !important;
    overflow: hidden;
    background-color: #0b192c;
}

.bc-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bc-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: bcHeroSlideAnimation 15s infinite;
}

.bc-hero-slide-one {
    background-image: url('../img/1.webp');
    animation-delay: 0s;
}

.bc-hero-slide-two {
    background-image: url('../img/2.webp');
    animation-delay: 5s;
}

.bc-hero-slide-three {
    background-image: url('../img/3.webp');
    animation-delay: 10s;
}

@keyframes bcHeroSlideAnimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    6% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    39% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
    }
}

.bc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 25, 44, 0.92) 0%, rgba(11, 25, 44, 0.78) 60%, rgba(11, 25, 44, 0.45) 100%);
    z-index: 2;
}

.bc-hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

.bc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: rgba(255, 107, 0, 0.15) !important;
    border: 1px solid rgba(255, 107, 0, 0.4) !important;
    border-radius: 30px;
    color: #ff6b00 !important;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.bc-hero-title {
    color: #ffffff !important;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.bc-hero-title span {
    color: #ff6b00 !important;
    display: block;
}

.bc-hero-description {
    font-size: 17px;
    color: #cbd5e1 !important;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.bc-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: #ff6b00 !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bc-primary-button:hover {
    background-color: #ea580c !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.bc-secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bc-secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.bc-hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;
}

.bc-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
}

.bc-hero-trust-item i {
    color: #ff6b00 !important;
    font-size: 18px;
}

/* --------------------------------------------------------------------------
   3. Company Introduction (#about)
   -------------------------------------------------------------------------- */
.bc-about {
    padding: 95px 0;
    background-color: #ffffff;
}

.bc-section-label {
    display: inline-block;
    color: #ff6b00 !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.bc-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0b192c !important;
    margin-bottom: 20px;
}

.bc-section-title span {
    color: #ff6b00 !important;
}

.bc-section-desc {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 22px;
}

/* About Image Frame with Orange Offset & Floating Badge */
.bc-about-image-wrapper {
    position: relative;
    padding: 15px;
}

.bc-about-story-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 25px;
    bottom: 25px;
    border: 3px solid #ff6b00 !important;
    border-radius: 14px;
    z-index: 1;
    pointer-events: none;
}

.bc-about-img-box {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.12);
}

.bc-about-img-box img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bc-about-img-box:hover img {
    transform: scale(1.03);
}

.bc-about-experience-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    z-index: 3;
    background-color: #0b192c !important;
    color: #ffffff !important;
    padding: 18px 26px;
    border-radius: 10px;
    border-left: 5px solid #ff6b00 !important;
    box-shadow: 0 12px 25px rgba(11, 25, 44, 0.22);
    display: flex;
    align-items: center;
    gap: 14px;
}

.bc-about-experience-badge strong {
    font-family: "Outfit", sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #ff6b00 !important;
    line-height: 1;
}

.bc-about-experience-badge span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.bc-company-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.bc-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.bc-highlight-item i {
    color: #ff6b00 !important;
    font-size: 18px;
}

/* --------------------------------------------------------------------------
   4. Services Section (#services)
   -------------------------------------------------------------------------- */
.bc-services {
    padding: 95px 0;
    background-color: #0b192c !important;
}

.bc-services .bc-section-title {
    color: #ffffff !important;
}

.bc-services .bc-section-desc {
    color: #cbd5e1 !important;
}

.bc-service-item {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(11, 25, 44, 0.4);
}

.bc-service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 107, 0, 0.5);
}

.bc-service-image-wrapper {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.bc-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bc-service-item:hover .bc-service-image {
    transform: scale(1.08);
}

.bc-service-icon-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #ffffff !important;
    color: #ff6b00 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.bc-service-item:hover .bc-service-icon-badge {
    background-color: #ff6b00 !important;
    color: #ffffff !important;
}

.bc-service-content {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bc-service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b192c !important;
    margin-bottom: 10px;
}

.bc-service-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bc-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b192c !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s ease;
    margin-top: auto;
}

.bc-service-item:hover .bc-service-link {
    color: #ff6b00 !important;
}

.bc-service-siding {
    border-top: 4px solid #ff6b00 !important;
}

.bc-service-gutter {
    border-top: 4px solid #0284c7 !important;
}

.bc-service-roofing {
    border-top: 4px solid #0b192c !important;
}

.bc-service-drywall {
    border-top: 4px solid #16a34a !important;
}

/* --------------------------------------------------------------------------
   5. Why Choose Us (#why-us)
   -------------------------------------------------------------------------- */
.bc-why-us {
    padding: 95px 0;
    background-color: #ffffff;
}

.bc-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
}

.bc-benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bc-benefit-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff7ed !important;
    color: #ff6b00 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bc-benefit-text h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bc-benefit-text p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Dark Navy Card with Circle Ring Accent Overlay */
.bc-why-us-cta {
    position: relative;
    background-color: #0b192c !important;
    color: #ffffff !important;
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(11, 25, 44, 0.18);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bc-why-us-cta::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 28px solid rgba(255, 107, 0, 0.15);
    pointer-events: none;
    transition: transform 0.5s ease;
}

.bc-why-us-cta:hover::after {
    transform: scale(1.08);
}

.bc-why-us-number {
    font-family: "Outfit", sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: #ff6b00 !important;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.bc-why-us-number-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8 !important;
    display: block;
    margin-bottom: 22px;
}

.bc-why-us-cta h3 {
    color: #ffffff !important;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 14px;
}

.bc-why-us-cta p {
    color: #cbd5e1 !important;
    font-size: 15px;
    margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   6. Service Areas (#service-areas)
   -------------------------------------------------------------------------- */
.bc-service-areas {
    padding: 95px 0;
    background-color: #0b192c !important;
}

.bc-service-areas .bc-section-title {
    color: #ffffff !important;
}

.bc-service-areas .bc-section-desc {
    color: #cbd5e1 !important;
}

.bc-area-item {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 22px;
    transition: all 0.3s ease;
    height: 100%;
}

.bc-area-item:hover {
    border-color: #ff6b00 !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.bc-area-number {
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #ff6b00 !important;
    display: block;
    margin-bottom: 8px;
}

.bc-area-item h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0b192c !important;
    margin-bottom: 8px;
}

.bc-area-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.bc-coverage-details {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.06) !important;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 28px;
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   7. Our Work Process (#process)
   -------------------------------------------------------------------------- */
.bc-process {
    padding: 95px 0;
    background-color: #ffffff !important;
}

.bc-process .bc-section-title {
    color: #0b192c !important;
}

.bc-process .bc-section-desc {
    color: #0b192c !important;
}

.bc-process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 55px;
    gap: 15px;
}

.bc-process-timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    height: 2px;
    border-top: 2px dashed rgba(11, 25, 44, 0.35);
    z-index: 1;
}

.bc-process-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.bc-process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ff6b00 !important;
    color: #ffffff !important;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 4px solid #0b192c;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bc-process-step:hover .bc-process-number {
    background-color: #ffffff !important;
    color: #ff6b00 !important;
    transform: scale(1.12);
}

.bc-process-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0b192c !important;
    margin-bottom: 6px;
}

.bc-process-content p {
    color: #0b192c !important;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 991px) {
    .bc-process-timeline {
        flex-direction: column;
        gap: 26px;
    }

    .bc-process-timeline::before {
        top: 28px;
        bottom: 28px;
        left: 28px;
        width: 2px;
        height: auto;
    }

    .bc-process-step {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        text-align: left;
    }

    .bc-process-number {
        margin: 0;
        flex-shrink: 0;
    }
}

/* --------------------------------------------------------------------------
   8. Business Information (#business-info - White Section)
   -------------------------------------------------------------------------- */
.bc-business-info {
    padding: 95px 0;
    background-color: #0b192c !important;
}

.bc-company-details {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.05);
}

.bc-company-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.bc-company-detail-item:last-child {
    border-bottom: none;
}

.bc-company-detail-item span {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.bc-company-detail-item strong {
    color: #0b192c !important;
    font-size: 15px;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. Business Hours & Payment Methods (#business-hours)
   -------------------------------------------------------------------------- */
.bc-hours-section {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.05);
    height: 100%;
}

.bc-business-hours h3,
.bc-payment-methods h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0b192c !important;
}

.bc-payment-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
}

.bc-payment-item span {
    font-size: 14px;
    color: #334155;
}

.bc-payment-item strong {
    font-size: 14px;
    color: #0b192c !important;
}

/* --------------------------------------------------------------------------
   10. Contact / Free Estimate (#contact - Dark Navy Section)
   -------------------------------------------------------------------------- */
.bc-contact {
    padding: 95px 0;
    background-color: #ffffff !important;
}

.bc-contact-details {
    background-color: #0b192c !important;
    color: #ffffff !important;
    border-radius: 18px;
    padding: 42px 32px;
    height: 100%;
}

.bc-contact-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-contact-person i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.2) !important;
    color: #ff6b00 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.bc-contact-person-info h4 {
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.bc-contact-person-info a {
    color: #cbd5e1 !important;
    font-size: 15px;
}

.bc-contact-person-info a:hover {
    color: #ff6b00 !important;
}

.bc-estimate-form {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 38px;
}

.bc-form-group {
    margin-bottom: 18px;
}

.bc-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #0b192c !important;
    margin-bottom: 8px;
    display: block;
}

.bc-form-control {
    width: 100%;
    padding: 11px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #ffffff !important;
    font-size: 14px;
}

.bc-form-control:focus {
    outline: none;
    border-color: #ff6b00 !important;
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.15);
}

/* --------------------------------------------------------------------------
   Form Submit Button (Premium)
   -------------------------------------------------------------------------- */
.bc-form-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b00 0%, #f97316 50%, #ff6b00 100%);
    background-size: 200% auto;
    color: #ffffff !important;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(255, 107, 0, 0.35),
        0 1px 3px rgba(0, 0, 0, 0.12);
    transition: background-position 0.5s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

/* Shimmer sweep animation */
.bc-form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.28) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.bc-form-submit-btn:hover::before {
    left: 130%;
}

.bc-form-submit-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow:
        0 8px 28px rgba(255, 107, 0, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

.bc-form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.bc-form-submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.bc-form-submit-btn:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   11. Social Media / CTA Section (#social - Image Background + White Overlay)
   -------------------------------------------------------------------------- */
.bc-social-section.bc-cta-bg {
    position: relative;
    padding: 90px 0;
    background-image: url('../img/3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: none;
    text-align: center;
    overflow: hidden;
}

.bc-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.bc-cta-content {
    position: relative;
    z-index: 2;
}

.bc-social-section .bc-section-title {
    color: #0b192c !important;
}

.bc-social-section .bc-section-desc {
    color: #64748b !important;
}

.bc-social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 25px;
}

.bc-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 30px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bc-social-link.facebook {
    background-color: #1877f2 !important;
}

.bc-social-link.tiktok {
    background-color: #0b192c !important;
}

.bc-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   12. Footer (#footer)
   -------------------------------------------------------------------------- */
.bc-footer {
    background-color: #07111e !important;
    color: #94a3b8 !important;
    padding-top: 75px;
}

.bc-footer-title {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
}

.bc-footer-logo-link {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.bc-footer-logo {
    max-height: 85px;
    width: auto;
    display: inline-block;
}

.bc-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1 !important;
}

.bc-footer-hours span {
    color: #ffffff !important;
}

.bc-footer-hours small {
    color: #cbd5e1 !important;
    font-size: 13px;
    opacity: 0.95;
}

.bc-footer-payments span.badge {
    background-color: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 10px;
}

.bc-footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: rgba(255, 107, 0, 0.15) !important;
    color: #ff6b00 !important;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.bc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.bc-footer-links a {
    color: #cbd5e1 !important;
    font-size: 14px;
}

.bc-footer-links a:hover {
    color: #ff6b00 !important;
    padding-left: 4px;
}

.bc-footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.bc-footer-contact-info i {
    color: #ff6b00 !important;
    font-size: 16px;
    margin-top: 3px;
}

.bc-footer-contact-info small {
    display: block;
    color: #64748b !important;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.bc-footer-contact-info a {
    color: #ffffff !important;
    font-weight: 600;
}

.bc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 55px;
    font-size: 13px;
}

.bc-footer-bottom-links a {
    color: #94a3b8 !important;
}

.bc-footer-bottom-links a:hover {
    color: #ff6b00 !important;
}

/* --------------------------------------------------------------------------
   Subpage Hero Banner with Static Background Images (.bc-page-hero)
   -------------------------------------------------------------------------- */
.bc-page-hero {
    position: relative;
    padding: 110px 0 85px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff !important;
}

.bc-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.90) 0%, rgba(11, 25, 44, 0.78) 100%);
    z-index: 1;
}

.bc-page-hero .container {
    position: relative;
    z-index: 2;
}

.bc-hero-about {
    background-image: url('../img/1.webp');
}

.bc-hero-services {
    background-image: url('../img/2.webp');
}

.bc-hero-siding {
    background-image: url('../img/6.webp');
}

.bc-hero-gutters {
    background-image: url('../img/11.webp');
}

.bc-hero-roofing {
    background-image: url('../img/3.webp');
}

.bc-hero-drywall {
    background-image: url('../img/8.webp');
}

.bc-hero-gallery {
    background-image: url('../img/15.webp');
}

.bc-hero-contact {
    background-image: url('../img/14.webp');
}

/* --------------------------------------------------------------------------
   13. Scroll Reveal Animation Classes
   -------------------------------------------------------------------------- */
.bc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   14. Gallery Page (.bc-gallery-*)
   -------------------------------------------------------------------------- */
/* ... (Gallery Page styles previously added) ... */

/* --------------------------------------------------------------------------
   15. Service Page Gallery CTA
   -------------------------------------------------------------------------- */
.bc-service-gallery-cta {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff !important;
    overflow: hidden;
}

.bc-service-gallery-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.92) 0%, rgba(11, 25, 44, 0.85) 100%);
    z-index: 1;
}

.bc-service-gallery-cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.bc-service-gallery-cta h2 {
    color: #ffffff !important;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.bc-service-gallery-cta p {
    color: #cbd5e1 !important;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.bc-cta-siding {
    background-image: url('../img/7.webp');
}

.bc-cta-gutters {
    background-image: url('../img/12.webp');
}

.bc-cta-roofing {
    background-image: url('../img/4.webp');
}

.bc-cta-drywall {
    background-image: url('../img/13.webp');
}

.bc-cta-services-page {
    background-image: url('../img/9.webp');
}

.bc-cta-gallery-page {
    background-image: url('../img/10.webp');
}


/* --------------------------------------------------------------------------
   14. Gallery Page (.bc-gallery-*)
   -------------------------------------------------------------------------- */

/* Section wrapper */
.bc-gallery-section {
    padding: 80px 0 95px;
    background-color: #f8fafc;
}

.bc-section-padding {
    padding-top: 80px;
    padding-bottom: 95px;
}

/* Heading block */
.bc-gallery-heading {
    text-align: center;
    margin-bottom: 52px;
}

.bc-gallery-heading .bc-section-description {
    color: #64748b;
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto;
}

/* Responsive masonry-style grid */
.bc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Every third item spans 2 columns for visual variety */
.bc-gallery-grid .bc-gallery-item:nth-child(5),
.bc-gallery-grid .bc-gallery-item:nth-child(10) {
    grid-column: span 2;
}

/* Gallery item button reset + card */
.bc-gallery-item {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    outline: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bc-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 25, 44, 0.18);
}

.bc-gallery-item:focus-visible {
    outline: 3px solid #ff6b00;
    outline-offset: 3px;
}

/* Inner wrapper keeps aspect ratio */
.bc-gallery-item-inner {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 72%;
    /* ~4:3 ratio */
    overflow: hidden;
    border-radius: 12px;
    background-color: #e2e8f0;
}

/* Wider items (span 2) get a cinematic ratio */
.bc-gallery-item:nth-child(5) .bc-gallery-item-inner,
.bc-gallery-item:nth-child(10) .bc-gallery-item-inner {
    padding-bottom: 48%;
}

/* The actual image */
.bc-gallery-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-gallery-item:hover .bc-gallery-image {
    transform: scale(1.08);
}

/* Hover overlay with zoom icon */
.bc-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 25, 44, 0) 40%, rgba(11, 25, 44, 0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 12px;
}

.bc-gallery-item:hover .bc-gallery-overlay {
    opacity: 1;
}

.bc-gallery-overlay i {
    font-size: 32px;
    color: #ff6b00;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transform: scale(0.7);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bc-gallery-item:hover .bc-gallery-overlay i {
    transform: scale(1);
}

.bc-gallery-overlay span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* CTA strip below gallery */
.bc-gallery-cta {
    padding: 80px 0;
    background-color: #0b192c;
}

.bc-gallery-cta h2 {
    color: #ffffff !important;
    font-size: 34px;
    margin-bottom: 14px;
}

.bc-gallery-cta p {
    color: #cbd5e1;
    font-size: 16px;
    margin-bottom: 28px;
}

.bc-gallery-cta .bc-section-label {
    display: block;
    margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Lightbox (.bc-gallery-lightbox)
   -------------------------------------------------------------------------- */
.bc-gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

.bc-gallery-lightbox.is-open {
    display: flex;
}

/* Dark backdrop */
.bc-gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 17, 30, 0.96);
    cursor: zoom-out;
    animation: bcLbFadeIn 0.3s ease;
}

@keyframes bcLbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Close button */
.bc-gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 9010;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.bc-gallery-lightbox-close:hover {
    background-color: #ff6b00;
    transform: rotate(90deg) scale(1.1);
}

/* Prev / Next nav buttons */
.bc-gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9010;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.bc-gallery-lightbox-prev {
    left: 18px;
}

.bc-gallery-lightbox-next {
    right: 18px;
}

.bc-gallery-lightbox-nav:hover {
    background-color: #ff6b00;
    border-color: #ff6b00;
}

.bc-gallery-lightbox-nav[hidden] {
    display: none;
}

/* Content frame */
.bc-gallery-lightbox-content {
    position: relative;
    z-index: 9005;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 90vw;
    max-height: 90vh;
    animation: bcLbZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bcLbZoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* The full-size image */
#bc-gallery-lightbox-image {
    max-width: 88vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    display: block;
}

/* Counter badge  "3 / 16" */
.bc-gallery-lightbox-counter {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Lock body scroll when lightbox is open */
body.bc-lightbox-active {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Gallery responsive breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .bc-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bc-gallery-grid .bc-gallery-item:nth-child(5),
    .bc-gallery-grid .bc-gallery-item:nth-child(10) {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .bc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .bc-gallery-grid .bc-gallery-item:nth-child(5),
    .bc-gallery-grid .bc-gallery-item:nth-child(10) {
        grid-column: span 1;
    }

    .bc-gallery-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .bc-gallery-lightbox-prev {
        left: 8px;
    }

    .bc-gallery-lightbox-next {
        right: 8px;
    }

    #bc-gallery-lightbox-image {
        max-width: 95vw;
    }

    .bc-gallery-cta h2 {
        font-size: 26px;
    }
}

@media (max-width: 479px) {
    .bc-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .bc-gallery-item-inner {
        padding-bottom: 80%;
    }
}