/* Scoped CSS for redesigned location details hero section */

.custom-hero-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0 120px 0;
    /* Generous top and bottom spacing */
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: #0d0f12;
    color: #ffffff;
}

/* Background image handling with slow-zoom animation on hover */
.custom-hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-hero-section:hover .custom-hero-bg {
    transform: scale(1.05);
}

/* Dark gradient overlay (black with 60-70% opacity) */
.custom-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.custom-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-hero-content {
    max-width: 900px;
    text-align: left;
    margin-bottom: 50px;
}

/* Hero Badge - using website theme red/orange */
.custom-hero-tag {
    display: inline-block;
    background: rgba(237, 55, 55, 0.12);
    border: 1px solid rgba(237, 55, 55, 0.25);
    color: var(--rs-theme-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(237, 55, 55, 0.05);
}

/* Large and bold H1 Heading */
.custom-hero-title {

    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Accent color for location/keyword to make it stand out - using website theme red/orange */
.custom-hero-title .highlight {
    color: var(--rs-theme-orange);
    position: relative;
    /* display: inline-block; */
}

/* Clean subtitle */
.custom-hero-subtitle {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}



/* Actions wrapper */
.custom-hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Redesigned CTA Button - Gradient from website orange/red to theme orange accent */
.custom-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rs-theme-orange) 0%, #ff5500 100%);
    color: #ffffff !important;

    font-weight: 700;
    font-size: 14px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 6px 20px rgba(237, 55, 55, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.custom-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5500 0%, var(--rs-theme-orange) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 55, 55, 0.5);
}

.custom-hero-btn:hover::before {
    opacity: 1;
}

.custom-hero-btn:active {
    transform: translateY(-1px);
}

.custom-hero-btn span {
    margin-right: 12px;
}

.custom-hero-btn .icon-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.custom-hero-btn:hover .icon-arrow {
    transform: translateX(6px);
}

/* Call Now Button style - Gradient from website light blue to theme deep blue */
.custom-hero-btn.btn-secondary {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    border: none;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(13, 128, 206, 0.3);
}

.custom-hero-btn.btn-secondary::before {
    background: linear-gradient(135deg, var(--rs-theme-blue) 0%, var(--rs-theme-light-blue) 100%);
}

.custom-hero-btn.btn-secondary:hover {
    box-shadow: 0 10px 25px rgba(13, 128, 206, 0.45);
}

.custom-hero-btn.btn-secondary .icon-phone {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.custom-hero-btn.btn-secondary:hover .icon-phone {
    transform: scale(1.2) rotate(15deg);
}

/* User Manual Button style - Transparent outline design */
.custom-hero-btn.btn-manual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: none;
    font-size: 0.95rem;
    padding: 12px 28px;
}

.custom-hero-btn.btn-manual::before {
    background: rgba(255, 255, 255, 0.1);
}

.custom-hero-btn.btn-manual:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
}

.custom-hero-btn.btn-manual .icon-pdf {
    font-size: 0.95rem;
    margin-left: 8px;
}

/* Trust Bar with No Background */
.custom-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    /* Clean border separator line on top */
    border-radius: 0;
    padding: 20px 0 0 0;
    margin-top: 20px;
    box-shadow: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--rs-theme-orange);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.trust-item:hover .trust-icon {
    background: var(--rs-theme-orange);
    border-color: var(--rs-theme-orange);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(237, 55, 55, 0.4);
}

.trust-info {
    display: flex;
    flex-direction: column;
}

.trust-val {

    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.8;
}

.trust-lbl {

    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .custom-hero-section {
        padding: 120px 0 100px 0;
        min-height: auto;
    }

    .custom-hero-title {
        font-size: 3rem;
    }

    .custom-trust-bar {
        gap: 20px;
        padding-top: 30px;
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .custom-hero-section {
        padding: 100px 0 80px 0;
    }

    .custom-hero-title {
        font-size: 2.6rem;
    }

    .custom-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .custom-hero-section {
        padding: 80px 0 60px 0;
    }

    .custom-hero-title {
        font-size: 2.1rem;
    }

    .custom-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .custom-hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .custom-hero-btn {
        width: 100%;
        padding: 14px 28px;
    }

    .custom-hero-btn.btn-secondary {
        margin-left: 0;
    }

    .custom-hero-btn.btn-manual {
        margin-left: 0;
        width: 100%;
        padding: 12px 28px;
    }

    .custom-trust-bar {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 25px;
        margin-top: 30px;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .trust-val {
        font-size: 1.1rem;
    }
}

/* Custom Products Section Scoped Styles */
.custom-products-section {
    padding: 100px 0;
    background-color: var(--rs-bg-primary);
}

.custom-products-section .rs-section-title-wrapper {
    margin-bottom: 45px;
}

.custom-products-section .descrip {
    font-size: 16px;
    line-height: 1.6;
    color: #616161;
}

.custom-prod-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.25, 1), box-shadow 0.3s ease;
}

.custom-prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(237, 55, 55, 0.15);
}

.custom-prod-img-box {
    background-color: #fff;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    /* internal padding to keep the transparent PNG sized nicely */
}

.custom-prod-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    width: 100%
}

.custom-prod-card:hover .custom-prod-img-box img {
    transform: scale(1.04);
}

.custom-prod-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
    background-color: #f7f7f7;
}

.custom-prod-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 12px;
    line-height: 1.4;
}

.custom-prod-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #616161;
    margin-bottom: 25px;
    flex-grow: 1;
}

.custom-prod-footer {
    margin-top: auto;
}

/* Redesigned link style */
.custom-prod-link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--rs-theme-orange) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-prod-link i {
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.custom-prod-link:hover {
    color: #000000 !important;
}

.custom-prod-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .custom-products-section {
        padding: 60px 0;
    }

    .custom-prod-img-box {
        height: 180px;
    }

    .custom-prod-name {
        font-size: 18px;
    }
}

/* Custom Industries We Serve Section Scoped Styles */
.custom-industries-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* Alternating white background */
}

.custom-industries-section .rs-section-title-wrapper {
    margin-bottom: 50px;
}

.custom-industries-section .descrip {
    font-size: 16px;
    line-height: 1.6;
    color: #616161;
}

.custom-industry-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.custom-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    border-color: rgba(237, 55, 55, 0.15);
    /* Soft theme orange/red highlight border */
}

.custom-industry-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(237, 55, 55, 0.08);
    /* Matches native orange/red */
    border: 1px solid rgba(237, 55, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-industry-icon-box i,
.custom-industry-icon-box svg {
    color: var(--rs-theme-orange) !important;
    fill: var(--rs-theme-orange) !important;
    font-size: 20px !important;
    display: inline-block;
    transition: all 0.4s ease;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif !important;
    font-style: normal;
    font-weight: 900 !important;
}

.custom-industry-card:hover .custom-industry-icon-box {
    background: var(--rs-theme-orange);
    transform: scale(1.08) rotate(10deg);
    box-shadow: 0 4px 12px rgba(237, 55, 55, 0.25);
    border-color: var(--rs-theme-orange);
}

.custom-industry-card:hover .custom-industry-icon-box i,
.custom-industry-card:hover .custom-industry-icon-box svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.custom-industry-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 10px;
    line-height: 1.4;
}

.custom-industry-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
    margin: 0;
}

/* CTA Area with light background and border like this section */
.custom-industries-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.custom-industries-cta .cta-box {
    background-color: #f7f7f7;
    /* Light background */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Border matching section style */
    border-radius: 8px;
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.custom-industries-cta .cta-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
}

.custom-industries-cta .cta-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--rs-theme-orange) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-industries-cta .cta-link i {
    font-size: 15px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.custom-industries-cta .cta-link:hover {
    color: #000000 !important;
}

.custom-industries-cta .cta-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-industries-section {
        padding: 80px 0;
    }

    .custom-industries-cta {
        margin-top: 45px;
    }
}

@media (max-width: 767px) {
    .custom-industries-section {
        padding: 60px 0;
    }

    .custom-industry-card {
        padding: 24px;
    }

    .custom-industry-name {
        font-size: 18px;
    }

    .custom-industries-cta .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
        width: 100%;
    }

    .custom-industries-cta .cta-text {
        font-size: 16px;
    }

    .custom-industries-cta .cta-link {
        font-size: 15px;
    }
}

/* Custom Why Choose Us Section Scoped Styles */
.custom-why-choose-section {
    padding: 100px 0;
    background-color: #11141b;
    /* Premium Dark Theme background */
    color: #ffffff;
}

.custom-why-choose-section .rs-section-subtitle {
    color: var(--rs-theme-orange) !important;
}

.custom-why-choose-section .rs-section-title {
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.custom-why-choose-section .descrip {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

.custom-why-card {
    background: rgba(255, 255, 255, 0.03);
    /* Subtle glass backdrop */
    border: 1px solid rgba(255, 255, 255, 0.07);
    /* Soft border */
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.custom-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(237, 55, 55, 0.3);
    /* Theme color border highlight */
}

.custom-why-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(237, 55, 55, 0.12);
    /* Matches native orange/red */
    border: 1px solid rgba(237, 55, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.custom-why-icon-box i,
.custom-why-icon-box svg {
    color: var(--rs-theme-orange) !important;
    fill: var(--rs-theme-orange) !important;
    font-size: 20px !important;
    display: inline-block;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif !important;
    font-style: normal;
    font-weight: 900 !important;
}

.custom-why-card:hover .custom-why-icon-box {
    background: var(--rs-theme-orange);
    border-color: var(--rs-theme-orange);
}

.custom-why-card:hover .custom-why-icon-box i,
.custom-why-card:hover .custom-why-icon-box svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.custom-why-info {
    flex-grow: 1;
}

.custom-why-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.custom-why-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Why Choose CTA Section & Custom Rounded Pill Buttons */
.custom-why-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.custom-why-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 55, 55, 0.2);
    background: linear-gradient(135deg, var(--rs-theme-orange) 0%, #ff5500 100%);
    color: #ffffff !important;
    border: none;
}

.custom-why-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 55, 55, 0.4);
    color: #ffffff !important;
}

.custom-why-btn .icon-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.custom-why-btn:hover .icon-arrow {
    transform: translateX(4px);
}

.custom-why-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.custom-why-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-why-choose-section {
        padding: 80px 0;
    }

    .custom-why-cta {
        margin-top: 45px;
    }
}

@media (max-width: 767px) {
    .custom-why-choose-section {
        padding: 60px 0;
    }

    .custom-why-card {
        padding: 24px;
        gap: 15px;
    }

    .custom-why-title {
        font-size: 18px;
    }

    .custom-why-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .custom-why-cta .custom-why-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Custom Nearest Branch Section Scoped Styles */
.custom-branch-section {
    padding: 100px 0;
    background-color: var(--rs-bg-primary);
    /* Default light grey background */
}

.custom-branch-info-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 30px;
}

.custom-branch-info-wrapper .rs-section-subtitle {
    margin-bottom: 15px;
    justify-content: flex-start !important;
    margin-left: 0 !important;
}

.custom-branch-info-wrapper .rs-section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.custom-branch-info-wrapper .descrip {
    font-size: 16px;
    line-height: 1.6;
    color: #616161;
    margin-bottom: 35px;
}

.custom-branch-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.custom-branch-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.custom-branch-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(237, 55, 55, 0.08);
    /* Matches native orange/red */
    border: 1px solid rgba(237, 55, 55, 0.15);
    color: var(--rs-theme-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.custom-branch-item:hover .custom-branch-icon-box {
    background: var(--rs-theme-orange);
    color: #ffffff;
    border-color: var(--rs-theme-orange);
}

.custom-branch-item i,
.custom-branch-item svg {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif !important;
    font-style: normal;
    font-weight: 900 !important;
}

.custom-branch-text {
    flex-grow: 1;
}

.custom-branch-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 4px;
}

.custom-branch-value {
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #616161;
    margin: 0;
}

/* Quote Form Card */
.custom-branch-form-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.custom-branch-form-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.custom-branch-form-card .form-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #616161;
    margin-bottom: 25px;
}

.custom-branch-form-card .form-group {
    margin-bottom: 20px;
}

.custom-branch-form-card .form-control {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 14.5px;
    color: #1f1f1f;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.custom-branch-form-card textarea.form-control {
    height: auto;
    resize: vertical;
}

.custom-branch-form-card .form-control::placeholder {
    color: #9e9e9e;
}

.custom-branch-form-card .form-control:focus {
    border-color: var(--rs-theme-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 55, 55, 0.1);
}

/* Form Dropdown Styling Arrow */
.custom-branch-form-card select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23616161' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 40px;
}

.custom-branch-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 55, 55, 0.2);
    background: linear-gradient(135deg, var(--rs-theme-orange) 0%, #ff5500 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
}

.custom-branch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 55, 55, 0.4);
    color: #ffffff !important;
}

.custom-branch-btn i {
    transition: transform 0.3s ease;
}

.custom-branch-btn:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-branch-section {
        padding: 80px 0;
    }

    .custom-branch-info-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .custom-branch-info-wrapper .rs-section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .custom-branch-section {
        padding: 60px 0;
    }

    .custom-branch-form-card {
        padding: 24px;
    }

    .custom-branch-form-card h3 {
        font-size: 20px;
    }

    .custom-branch-info-wrapper .rs-section-title {
        font-size: 28px;
    }

    .custom-branch-cta-btn .custom-branch-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Custom Location Map Section Scoped Styles */
.custom-map-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* Alternating white background */
}

.custom-map-section .rs-section-title-wrapper {
    margin-bottom: 50px;
}

.custom-map-section .descrip {
    font-size: 16px;
    line-height: 1.6;
    color: #616161;
}

.custom-map-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #f7f7f7;
}

.custom-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    /* Fixed crop wrapper height */
    overflow: hidden;
    border-radius: 12px;
}

.custom-map-wrapper iframe {
    position: relative;

    width: calc(100% + 20px);
    height: calc(100% + 95px);
    /* Compensates the height offset */
    border: 0;
}

/* Location Card Overlay on Map */
.custom-map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    width: 350px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: none;
}

.custom-map-overlay:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.custom-map-overlay .overlay-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 20px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 12px;
}

.overlay-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overlay-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.overlay-info-list li .icon {
    font-size: 15px;
    color: var(--rs-theme-orange);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.overlay-info-list li i,
.overlay-info-list li svg {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif !important;
    font-style: normal;
    font-weight: 900 !important;
}

.overlay-info-list li .text {
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    color: #616161;
}

.custom-map-overlay .custom-branch-btn {
    padding: 12px 24px;
    font-size: 14.5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-map-section {
        padding: 80px 0;
    }

    .custom-map-wrapper {
        height: 450px;
    }

    .custom-map-wrapper iframe {
        height: calc(100% + 95px);
    }

    .custom-map-overlay {
        width: 320px;
        padding: 24px;
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .custom-map-section {
        padding: 60px 0;
    }

    .custom-map-container {
        display: flex;
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
        border: none;
    }

    .custom-map-wrapper {
        height: 350px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 12px;
    }

    .custom-map-wrapper iframe {
        height: calc(100% + 95px);
    }

    .custom-map-overlay {
        position: static;
        width: 100%;
        margin-top: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        padding: 24px;
    }
}

/* Custom Premium CTA Section Scoped Styles */
.custom-page-cta-section {
    padding: 90px 0;
    background-color: #1A3C5E; /* Dark Navy Background */
    color: #ffffff;
    text-align: center;
}

.custom-page-cta-section .rs-section-subtitle {
    color: var(--rs-theme-orange) !important;
}

.custom-page-cta-section .rs-section-title {
    color: #ffffff !important;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.custom-page-cta-section .descrip {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.custom-cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Redesigned Button Styles for CTA */
.custom-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.custom-cta-btn.btn-primary {
    background: linear-gradient(135deg, var(--rs-theme-orange) 0%, #ff5500 100%);
    color: #ffffff !important;
}

.custom-cta-btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 55, 55, 0.35);
}

.custom-cta-btn.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff !important;
}

.custom-cta-btn.btn-secondary:hover {
    background: #ffffff;
    color: #1A3C5E !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.custom-cta-btn i {
    font-size: 18px;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-page-cta-section {
        padding: 85px 0;
    }
    .custom-page-cta-section .rs-section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .custom-page-cta-section {
        padding: 60px 0;
    }
    .custom-page-cta-section .rs-section-title {
        font-size: 26px;
        line-height: 1.3;
    }
    .custom-cta-buttons-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .custom-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* Custom About Us Section Rounded Pill Button */
.custom-about-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 55, 55, 0.2);
    background: linear-gradient(135deg, var(--rs-theme-orange) 0%, #ff5500 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
}

.custom-about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 55, 55, 0.4);
    color: #ffffff !important;
}

.custom-about-btn .icon-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.custom-about-btn:hover .icon-arrow {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .custom-about-btn {
        width: 100%;
        justify-content: center;
    }
}