/* ======================================== */
/* CSS VARIABLES & RESET                    */
/* ======================================== */
:root {
    --primary:       #AD2A37;
    --primary-dark:  #8e1e2a;
    --accent:        #B86E28;
    --accent-dark:   #9a5a1f;
    --black:         #1a1a1a;
    --off-black:     #222222;
    --gray-dark:     #333333;
    --gray-mid:      #555555;
    --gray-light:    #f5f5f5;
    --gray-border:   #e2e2e2;
    --white:         #ffffff;
    --header-h:      120px;
    --header-h-mob:  74px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #222222;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ======================================== */
/* CONTAINER                                */
/* ======================================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================================== */
/* SCROLL ANIMATIONS                        */
/* ======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

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

/* ======================================== */
/* GLOBAL BUTTON STYLES                     */
/* ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #AD2A37;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 16px 32px;
    border-radius: 4px;
    border: 2px solid #AD2A37;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #8e1e2a;
    border-color: #8e1e2a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #B86E28;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 18px 36px;
    border-radius: 4px;
    border: 2px solid #B86E28;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-accent:hover {
    background-color: #9a5a1f;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #AD2A37;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 22px 48px;
    border-radius: 4px;
    border: 2px solid #AD2A37;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-hero:hover {
    background-color: #8e1e2a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ======================================== */
/* HEADER SECTION                           */
/* ======================================== */
.site-header {
    width: 100%;
    height: var(--header-h);
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid #e2e2e2;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo img {
    height: 88px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #333333;
    padding: 8px 14px;
    border-radius: 3px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #AD2A37;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: #AD2A37;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #AD2A37;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-socials a {
    display: flex;
    align-items: center;
    color: #777777;
    transition: color 0.2s ease;
}

.nav-socials a:hover {
    color: #B86E28;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #AD2A37;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 12px 22px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.nav-cta-btn:hover {
    background-color: #8e1e2a;
    color: #ffffff;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid #dddddd;
    border-radius: 4px;
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Dropdown */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h-mob);
    left: 0;
    right: 0;
    background-color: #111111;
    z-index: 999;
    padding: 0 20px 24px;
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0s linear 0.35s;
    border-top: 3px solid #AD2A37;
    max-height: calc(100vh - var(--header-h-mob));
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0s linear 0s;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.mobile-nav ul li a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-transform: uppercase;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav ul li a:hover {
    color: #AD2A37;
    padding-left: 6px;
}

.mobile-nav-footer {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-socials {
    display: flex;
    gap: 18px;
}

.mobile-nav-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.mobile-nav-socials a:hover {
    color: #B86E28;
}

.mobile-nav-phone {
    display: block;
    background-color: #AD2A37;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 18px 24px;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.mobile-nav-phone:hover {
    background-color: #8e1e2a;
    color: #ffffff;
}

/* ======================================== */
/* HERO SECTION                             */
/* ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 740px;
    background-image: url('images/hero1.jpg');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(10, 10, 10, 0.68) 0%,
        rgba(10, 10, 10, 0.42) 50%,
        rgba(10, 10, 10, 0.15) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 640px;
}


.hero-services {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.30);
    padding: 10px 18px;
    border-radius: 3px;
    border-left: 4px solid #B86E28;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.03;
    color: #ffffff;
    margin-bottom: 38px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #AD2A37;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1;
    padding: 22px 44px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(173, 42, 55, 0.35);
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.hero-cta-btn:hover {
    background-color: #8e1e2a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(173, 42, 55, 0.40);
}

/* 30-Year Badge */
.hero-badge {
    flex-shrink: 0;
    position: relative;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-ring {
    position: relative;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d4882e 0%, #9e5a18 50%, #c87820 100%);
    border: 5px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 0 0 4px rgba(245, 200, 66, 0.55),
        0 0 0 10px rgba(184, 110, 40, 0.22),
        0 0 0 11px rgba(245, 200, 66, 0.10),
        0 18px 50px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: badge-pulse 3.5s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
}

.badge-star {
    font-size: 18px;
    color: #f5c842;
    line-height: 1;
    text-shadow: 0 0 8px rgba(245, 200, 66, 0.9);
    letter-spacing: 6px;
}

.badge-star-bottom {
    margin-top: 2px;
}

.badge-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 74px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.88;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255,255,255,0.15);
}

.badge-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    color: #ffffff;
    margin-top: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.badge-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.80);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ======================================== */
/* SUB-PAGE TITLE BAR (all sub-pages)      */
/* ======================================== */
.page-title-bar {
    width: 100%;
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-title-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.28) 0%,
        rgba(10, 10, 10, 0.50) 100%
    );
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.page-title-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.55);
}

.page-title-content h1::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    background-color: #AD2A37;
    margin: 18px auto 0;
    border-radius: 2px;
}

/* License / CTA bar (sub-pages) */
.license-cta-bar {
    width: 100%;
    background-color: #AD2A37;
    padding: 0;
}

.license-cta-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    gap: 20px;
}

.license-cta-bar .lic-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.90);
    text-transform: uppercase;
}

.license-cta-bar .lic-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #B86E28;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 10px 22px;
    border-radius: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.license-cta-bar .lic-btn:hover {
    background-color: #9a5a1f;
    color: #ffffff;
}

/* About page content */
.about-section {
    width: 100%;
    background-color: #ffffff;
    padding: 88px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: start;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #AD2A37;
    margin-bottom: 28px;
}

.about-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.80;
    color: #444444;
    margin-bottom: 20px;
}

.team-list {
    margin: 30px 0 36px;
    padding: 24px 28px;
    background-color: #f5f5f5;
    border-left: 4px solid #AD2A37;
    border-radius: 0 6px 6px 0;
}

.team-list h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
    color: #B86E28;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.team-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-list ul li {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.3;
    color: #222222;
}

.team-list ul li span {
    font-size: 13px;
    font-weight: 400;
    color: #777777;
    margin-left: 6px;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.about-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #AD2A37 0%, #B86E28 100%);
}

/* ======================================== */
/* SERVICES PAGE                            */
/* ======================================== */
.services-section {
    width: 100%;
    background-color: #ffffff;
    padding: 88px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.service-block {
    margin-bottom: 50px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #AD2A37;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.service-block p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #444444;
    margin-bottom: 16px;
}

.service-detail-list {
    list-style: none;
    margin: 16px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-detail-list li {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: #444444;
    padding-left: 16px;
    position: relative;
}

.service-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #AD2A37;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-detail-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

.service-type-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 14px 0 20px;
}

.service-type-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #ffffff;
    background-color: #333333;
    padding: 7px 14px;
    border-radius: 3px;
    text-transform: uppercase;
}

.offers-block {
    background-color: #f5f5f5;
    border-left: 4px solid #B86E28;
    border-radius: 0 6px 6px 0;
    padding: 24px 28px;
    margin-bottom: 32px;
}

.offers-block h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 16px;
    color: #B86E28;
    font-size: 26px;
}

.offers-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offers-block ul li {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.4;
    color: #333333;
    padding-left: 22px;
    position: relative;
}

.offers-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #AD2A37;
    font-weight: 700;
    font-size: 14px;
}

/* Responsive – About */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 360px;
        gap: 50px;
    }
    .about-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .page-title-content h1 {
        font-size: 38px;
    }
    .page-title-bar {
        height: 240px;
    }
    .license-cta-bar .container {
        flex-direction: column;
        height: auto;
        padding: 14px 20px;
        gap: 10px;
    }
    .license-cta-bar .lic-text {
        font-size: 11px;
        text-align: center;
    }
    .services-section {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .service-block h2 {
        font-size: 24px;
    }
    .about-section {
        padding: 60px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-image img {
        height: 300px;
    }
    .about-text h2 {
        font-size: 26px;
    }
    .about-text p {
        font-size: 16px;
    }
}

/* ======================================== */
/* SECTION 1: ICON CARDS & TRUST ROW       */
/* ======================================== */
.icon-section {
    width: 100%;
    background-color: #ffffff;
    padding: 64px 0 52px;
}

.icon-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 36px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-top: 4px solid #AD2A37;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.10);
}

.icon-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.icon-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.icon-card p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: #666666;
}

.icon-card p a {
    color: #AD2A37;
    font-weight: 600;
}

.icon-card p a:hover {
    color: #8e1e2a;
}

/* License Line (below trust row) */
.license-line {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #888888;
    text-transform: uppercase;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e8e8e8;
}

/* Trust Row */
.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 0 0;
    border-top: 1px solid #e8e8e8;
}

.trust-stars {
    display: flex;
    align-items: center;
    gap: 16px;
}

.star-icons {
    font-size: 30px;
    color: #B86E28;
    letter-spacing: 4px;
    line-height: 1;
}

.star-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #555555;
}

.trust-divider {
    width: 1px;
    height: 52px;
    background-color: #e2e2e2;
}

.trust-bbb img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

/* ======================================== */
/* SECTION 2 & 3: TWO-COLUMN CONTENT       */
/* ======================================== */
.eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    color: #B86E28;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow.light {
    color: #B86E28;
}

.content-section {
    width: 100%;
    padding: 96px 0;
}

.bg-light {
    background-color: #f5f5f5;
}

.bg-white {
    background-color: #ffffff;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.two-col.reverse {
    grid-template-areas: "img txt";
}

.two-col.reverse .col-image {
    grid-area: img;
}

.two-col.reverse .col-text {
    grid-area: txt;
}

.col-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.col-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #444444;
    margin-bottom: 18px;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin: 24px 0 34px;
}

.check-list li {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.4;
    color: #333333;
    padding-left: 22px;
    position: relative;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 9px;
    height: 9px;
    background-color: #AD2A37;
    border-radius: 50%;
}

.col-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.15);
}

.col-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.col-image:hover img {
    transform: scale(1.03);
}

/* Red accent bar on image frame */
.col-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #AD2A37 0%, #B86E28 100%);
}

/* ======================================== */
/* SECTION 4: DUMPSTER RENTALS              */
/* ======================================== */
.dumpster-section {
    width: 100%;
    background-color: #f5f5f5;
    padding: 96px 0;
}

.dumpster-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.dumpster-text .eyebrow {
    color: #B86E28;
}

.dumpster-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.dumpster-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #444444;
    margin-bottom: 16px;
}

.dumpster-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #B86E28;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.dumpster-image {
    border-radius: 10px;
    overflow: hidden;
}

.dumpster-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dumpster-image:hover img {
    transform: scale(1.03);
}

/* ======================================== */
/* SECTION 5: BRANDS MARQUEE               */
/* ======================================== */
.brands-section {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    padding: 44px 0 40px;
    overflow: hidden;
}

.brands-label {
    text-align: center;
    margin-bottom: 28px;
}

.brands-label p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    line-height: 1;
    color: #aaaaaa;
    text-transform: uppercase;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marquee-scroll 24s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track img {
    height: 56px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.marquee-track img:hover {
    opacity: 1;
}

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

/* ======================================== */
/* SECTION 6: PARALLAX FREE ESTIMATE       */
/* ======================================== */
.parallax-section {
    position: relative;
    width: 100%;
    min-height: 660px;
    padding: 140px 0;
    background-image: url('images/parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.80);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.parallax-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.06;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 16px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.financing-callout {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #B86E28;
    border-radius: 6px;
    padding: 22px 36px;
    margin-bottom: 44px;
    background: rgba(184, 110, 40, 0.12);
    max-width: 600px;
}

.financing-icon {
    font-size: 28px;
    color: #f5c842;
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(245, 200, 66, 0.7);
}

.financing-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.financing-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: #ffffff;
    display: block;
}

.financing-text span {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
    display: block;
}

/* ======================================== */
/* FAT FOOTER SECTION                       */
/* ======================================== */
.fat-footer {
    width: 100%;
    background-color: #111111;
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 50px;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #AD2A37;
}


.office-block {
    margin-bottom: 28px;
}

.office-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    color: #B86E28;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-contact address {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.footer-phone {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.footer-phone:hover {
    color: #AD2A37;
}

.footer-fax {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
    background-color: #AD2A37;
    color: #ffffff;
    border-color: #AD2A37;
}

/* Map */
.map-frame {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 300px;
    filter: brightness(0.85) contrast(1.05);
}

/* Project Gallery Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.project-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.project-thumb {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.80);
}

.project-thumb:hover img {
    transform: scale(1.1);
    filter: brightness(0.60);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-thumb:hover .thumb-overlay {
    opacity: 1;
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR                     */
/* ======================================== */
.copyright-bar {
    width: 100%;
    background-color: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
}

.copyright-bar p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

.copyright-bar a {
    color: #B86E28;
    font-weight: 500;
    transition: color 0.2s ease;
}

.copyright-bar a:hover {
    color: #ffffff;
}

/* ======================================== */
/* MOBILE STICKY PHONE BAR                  */
/* ======================================== */
.mobile-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #AD2A37;
    z-index: 1100;
    height: 54px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.mobile-phone-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.mobile-phone-bar a:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

/* ======================================== */
/* LIGHTBOX                                 */
/* ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.93);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lb-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 88vh;
}

.lb-img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7);
}

.lb-close {
    position: fixed;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 52px;
    line-height: 1;
    cursor: pointer;
    z-index: 2001;
    padding: 4px 10px;
    transition: color 0.2s ease;
}

.lb-close:hover {
    color: #ffffff;
}

.lb-prev,
.lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-prev:hover,
.lb-next:hover {
    background-color: rgba(173, 42, 55, 0.75);
    border-color: #AD2A37;
}

/* ======================================== */
/* OUR WORK PAGE                            */
/* ======================================== */
.work-section {
    width: 100%;
    background-color: #f2f2f2;
    padding: 80px 0 100px;
}

.work-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

.work-intro p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #555555;
}

/* Tab navigation */
.gallery-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #555555;
    background: #ffffff;
    border: 2px solid #dddddd;
    padding: 11px 20px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tab-btn:hover {
    border-color: #AD2A37;
    color: #AD2A37;
    background: #fff5f5;
}

.tab-btn.active {
    background: #AD2A37;
    border-color: #AD2A37;
    color: #ffffff;
}

/* Gallery panels wrapper */
.gallery-panels-wrap {
    /* default: block container - panels are hidden until activated */
}

/* "All Projects" unified grid: panels dissolve into the parent grid */
.gallery-panels-wrap.all-active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
    animation: fadeGallery 0.35s ease forwards;
}

.gallery-panels-wrap.all-active .gallery-panel {
    display: contents; /* children flow directly into parent grid */
}

/* Single-category panel */
.gallery-panel {
    display: none;
}

.gallery-panel.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
    animation: fadeGallery 0.35s ease forwards;
}

@keyframes fadeGallery {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Thumbnail */
.work-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background-color: #cccccc;
    text-decoration: none;
}

.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.work-thumb:hover img {
    transform: scale(1.07);
}

.work-thumb .work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(173, 42, 55, 0.70);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
    color: #ffffff;
}

.work-thumb:hover .work-overlay {
    opacity: 1;
}

/* ======================================== */
/* RESPONSIVE - TABLET (max 1024px)        */
/* ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 50px;
    }

    .badge-ring {
        width: 155px;
        height: 155px;
    }

    .badge-num {
        font-size: 60px;
    }

    .badge-label {
        font-size: 16px;
    }

    .col-text h2,
    .dumpster-text h2 {
        font-size: 32px;
    }

    .two-col {
        gap: 50px;
    }

    .dumpster-grid {
        gap: 50px;
    }

    .footer-grid {
        gap: 36px;
    }

    .parallax-content h2 {
        font-size: 42px;
    }
}

/* ======================================== */
/* RESPONSIVE - MOBILE (max 768px)         */
/* ======================================== */
@media (max-width: 768px) {

    /* Header */
    .site-header {
        height: var(--header-h-mob);
    }

    .nav-logo img {
        height: 52px;
    }

    .nav-links,
    .nav-socials,
    .nav-cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 540px;
        padding: 60px 0 56px;
        background-position: center;
    }

    .hero-content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 32px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }


    .hero-title {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .hero-cta-btn {
        display: none;
    }

    .badge-ring {
        width: 130px;
        height: 130px;
    }

    .badge-num {
        font-size: 50px;
    }

    .badge-label {
        font-size: 14px;
    }

    .badge-sub {
        font-size: 8px;
    }

    /* Icon Cards */
    .icon-cards-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-row {
        flex-direction: column;
        gap: 20px;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    /* Two-col Sections */
    .content-section {
        padding: 64px 0;
    }

    .two-col,
    .two-col.reverse {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 36px;
    }

    .two-col.reverse .col-image,
    .two-col.reverse .col-text {
        grid-area: auto;
    }

    .col-image img {
        height: 280px;
    }

    .col-text h2 {
        font-size: 26px;
    }

    .col-text p {
        font-size: 16px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    /* Dumpster Section */
    .dumpster-section {
        padding: 64px 0;
    }

    .dumpster-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dumpster-text h2 {
        font-size: 26px;
    }

    .dumpster-text p {
        font-size: 16px;
    }

    .dumpster-image img {
        height: 260px;
    }

    /* Parallax */
    .parallax-section {
        background-attachment: scroll;
        padding: 80px 0;
        min-height: auto;
    }

    .parallax-content h2 {
        font-size: 32px;
    }

    .parallax-content p {
        font-size: 16px;
    }

    /* Footer */
    .fat-footer {
        padding: 56px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-phone {
        font-size: 32px;
    }

    .project-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Mobile bar */
    .mobile-phone-bar {
        display: block;
    }

    body {
        padding-bottom: 54px;
    }

    /* Lightbox arrows */
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }

    .gallery-tabs-nav {
        gap: 6px;
    }
    .tab-btn {
        font-size: 11px;
        padding: 9px 14px;
    }
    .gallery-panels-wrap.all-active {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 7px;
    }
    .gallery-panel.active {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 7px;
    }
    .work-section {
        padding: 56px 0 72px;
    }
}

/* ======================================== */
/* RESPONSIVE - SMALL MOBILE (max 480px)   */
/* ======================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }


    .parallax-content h2 {
        font-size: 26px;
    }

    .btn-hero {
        font-size: 15px;
        padding: 18px 28px;
    }

    .brands-label p {
        font-size: 10px;
    }

    .marquee-track img {
        height: 42px;
    }
}
