/* ============================================================
   SMASHRITE BRAND OVERRIDES
   Always loaded last — sits on top of style.css
   
   Colors:
     Primary (Deep Blue):    #0F2B6D
     Secondary (Orange):     #FF7A00
     Accent (Soft Grey):     #F4F4F7
     Dark Navy:              #0A1E4E
============================================================ */

:root {
    --sr-blue:   #0F2B6D;
    --sr-orange: #FF7A00;
    --sr-grey:   #F4F4F7;
    --sr-navy:   #0A1E4E;
    --sr-text:   #1E293B;
    --sr-muted:  #6B7280;
    --sr-white:  #FFFFFF;
}

/* ── CTA BUTTON ────────────────────────────────────── */
.smashrite-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background-color: var(--sr-orange);
    color: var(--sr-white) !important;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 4px;
    border: 2px solid var(--sr-orange);
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}
.smashrite-btn-primary:hover {
    background-color: transparent;
    color: var(--sr-orange) !important;
}
.smashrite-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background-color: transparent;
    color: var(--sr-blue) !important;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 4px;
    border: 2px solid var(--sr-blue);
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}
.smashrite-btn-outline:hover {
    background-color: var(--sr-blue);
    color: var(--sr-white) !important;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.smashrite-header .header-area-wrap {
    background: var(--sr-white);
    border-bottom: 1px solid rgba(15, 43, 109, 0.08);
    box-shadow: 0 2px 16px rgba(15, 43, 109, 0.06);
}
.smashrite-header .main-menu .menu-list > li > a {
    color: var(--sr-blue);
    font-weight: 500;
    font-size: 0.9375rem;
}
.smashrite-header .main-menu .menu-list > li > a:hover {
    color: var(--sr-orange);
}
.smashrite-header .main-menu .menu-list > li.active > a {
    color: var(--sr-orange);
}

/* ── SECTION LABELS (small uppercase tag above headings) ── */
.smashrite-label {
    display: inline-block;
    color: var(--sr-orange);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
/* Override template's default label color */
.section-title span,
.home5-section-title span {
    color: var(--sr-orange) !important;
}

/* ── HEADINGS ───────────────────────────────────────── */
h1, h2, h3 {
    color: var(--sr-blue);
}

/* ── FOOTER ─────────────────────────────────────────── */
.smashrite-footer {
    background: var(--sr-navy);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 80px;
}
.smashrite-footer .widget-title h3 {
    color: var(--sr-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.smashrite-footer .widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.smashrite-footer .widget-list li {
    margin-bottom: 10px;
}
.smashrite-footer .widget-list li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}
.smashrite-footer .widget-list li a:hover {
    color: var(--sr-orange);
}
.smashrite-footer .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.smashrite-footer .contact-list .single-contact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.smashrite-footer .contact-list .single-contact .icon {
    color: var(--sr-orange);
    font-size: 1.1rem;
    min-width: 20px;
    padding-top: 2px;
}
.smashrite-footer .contact-list .single-contact .content span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.smashrite-footer .contact-list .single-contact .content a {
    color: var(--sr-white);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}
.smashrite-footer .contact-list .single-contact .content a:hover {
    color: var(--sr-orange);
}
.smashrite-footer .footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 340px;
}
.smashrite-footer .social-list {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.smashrite-footer .social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.smashrite-footer .social-list li a:hover {
    background: var(--sr-orange);
    color: var(--sr-white);
    border-color: var(--sr-orange);
}

/* ── COPYRIGHT BAR ──────────────────────────────────── */
.smashrite-footer .copyright-and-social-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding: 28px 0;
}
.smashrite-footer .copyright-and-social-area p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}
.smashrite-footer .copyright-and-social-area p strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}
.smashrite-footer .service-list {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.smashrite-footer .service-list li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.smashrite-footer .service-list li a:hover {
    color: var(--sr-orange);
}

/* ── TEMPLATE PRIMARY-BTN1 OVERRIDE ────────────────── */
/* Points the template's generic button class to Smashrite orange */
.primary-btn1 span,
.primary-btn1:hover span {
    background: none !important;
}

/* ── SCROLL INDICATOR COLOR ────────────────────────── */
#scroll-percentage svg path {
    fill: var(--sr-orange);
}


/* ── home3 service cards — Smashrite colour overrides ── */
.home3-service-card .vector-icon span {
    color: var(--sr-orange);
    font-size: 35px;
}

