/* ==================================================
   United Security Guard Services — Design Refresh
   Additional styling layered on top of the base theme
================================================== */

/* ---- General card polish (services / who-we-protect / why-choose-us) ---- */
.single-service {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}
.single-service:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.10);
    transform: translateY(-4px);
    border-color: #f0d3d4;
}
.single-service .service-icon {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.single-service > h3,
.single-service > h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.3px;
}
.single-service > h3 > a,
.single-service > h5 > a {
    color: #333;
}
.single-service > h3 > a:hover,
.single-service > h5 > a:hover {
    color: #d81f25;
}
.single-service > p {
    color: #666;
    font-size: 14.5px;
    line-height: 24px;
}

/* Equal height cards in a row — scoped ONLY to rows explicitly marked as card
   rows, so heading rows (site-heading) are never turned into flex items and
   never lose their center alignment. */
.usg-card-row {
    display: flex;
    flex-wrap: wrap;
}
.usg-card-row > div {
    display: flex;
}
.usg-card-row .single-service {
    width: 100%;
}

/* ---- Section heading — guaranteed centering, regardless of parent context ---- */
.site-heading, .site-heading-black {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
.site-heading > h3:first-child,
.site-heading-black > h3:first-child {
    display: block;
    width: 100%;
    font-size: 13px;
    letter-spacing: 2px;
    color: #d81f25;
    font-weight: 600;
    margin-bottom: 6px;
}
.site-heading > h3:nth-child(2) {
    display: block;
    width: 100%;
}
.section-lead {
    max-width: 820px;
    margin: 14px auto 0;
    color: #666;
    font-size: 15.5px;
    line-height: 26px;
    text-align: center;
}

/* ---- Who We Protect / Why Choose Us six-card grid ---- */
.usg-card-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -15px 0;
}
.usg-card-grid .usg-card-col {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* ---- Stat / trust band (replaces the shouty uppercase count block) ---- */
.usg-stat-band {
    background: #14161c;
    padding: 60px 0 50px;
    text-align: center;
    color: #fff;
}
.usg-stat-band .usg-stat-lead {
    max-width: 760px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #d9d9d9;
}
.usg-stat-band .count-box {
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    width: 100%;
}
.usg-stat-band .count-box h3.counter {
    color: #d81f25;
    font-size: 40px;
}
.usg-stat-band .count-box h4 {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ccc;
    margin-top: 6px;
}

/* ---- FAQ accordion ---- */
.usg-faq .panel {
    border: 1px solid #ececec;
    border-radius: 4px;
    box-shadow: none;
    margin-bottom: 14px;
    overflow: hidden;
}
.usg-faq .panel-heading {
    padding: 0;
    background: #fff;
    border: 0;
}
.usg-faq .panel-title a {
    display: block;
    padding: 18px 45px 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    position: relative;
    font-family: "Oswald", sans-serif;
}
.usg-faq .panel-title a:after {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 18px;
    color: #d81f25;
    transition: transform 0.25s ease;
}
.usg-faq .panel-title a.collapsed:after {
    transform: rotate(-90deg);
}
.usg-faq .panel-title a:hover {
    color: #d81f25;
    text-decoration: none;
}
.usg-faq .panel-body {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14.5px;
    line-height: 24px;
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
}

/* ---- CTA band (replaces the cramped brochure banner for long copy) ---- */
.usg-cta-band {
    background: linear-gradient(135deg, #d81f25 0%, #a8161b 100%);
    padding: 50px 0;
}
.usg-cta-band h3 {
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin: 0;
}
.usg-cta-band .usg-cta-actions {
    text-align: right;
}
.usg-cta-band .bleezy-btn,
.usg-cta-band .download-btn > a {
    background: #fff;
    color: #d81f25;
    display: inline-block;
    font-family: "Oswald", sans-serif;
    letter-spacing: 1px;
    padding: 13px 28px;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.usg-cta-band .bleezy-btn:hover,
.usg-cta-band .download-btn > a:hover {
    background: #14161c;
    color: #fff;
}
@media (max-width: 767px) {
    .usg-cta-band .usg-cta-actions {
        text-align: left;
        margin-top: 20px;
    }
}

/* ---- Hero intro section polish ---- */
.about-right {
    background: #fff;
    border: 1px solid #ececec;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}
.about-right img {
    border-radius: 2px;
    display: block;
    width: 100%;
}
.usg-eyebrow {
    display: inline-block;
    background: #fdeceb;
    color: #d81f25;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px 20px !important;
}
.hero-highlights li {
    width: 50%;
    box-sizing: border-box;
    font-size: 14.5px;
    color: #333;
}
@media (max-width: 767px) {
    .hero-highlights li { width: 100%; }
}

.slider-text .bleezy-btn {
    display: inline-block;
    margin-top: 10px;
}
.bleezy-main-slide {
    position: relative;
}
.bleezy-main-caption {
    background: linear-gradient(90deg, rgba(8,9,13,0.82) 0%, rgba(8,9,13,0.55) 45%, rgba(8,9,13,0.15) 100%);
}
.slider-text {
    width: 58%;
}
.slider-text .usg-eyebrow {
    background: rgba(216,31,37,0.15);
    color: #ff5b60;
    border: 1px solid rgba(255,91,96,0.4);
}
.slider-text h2 {
    line-height: 44px;
    margin-top: 10px;
}
.slider-text p {
    max-width: 520px;
    line-height: 26px;
}
@media (max-width: 767px) {
    .slider-text { width: 100%; }
    .bleezy-main-caption { background: rgba(8,9,13,0.72); }
}

/* ---- Testimonial card polish ---- */
.single-testimonial {
    background: #fff;
    border-radius: 4px;
    padding: 10px 10px 5px;
}
.single-testimonial .testimonial-text {
    position: relative;
}
.single-testimonial .testimonial-text:before {
    content: "\f10d";
    font-family: FontAwesome;
    color: #f0d3d4;
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

/* ---- General card polish already applied above ---- */
