/* ===================================================
   Reline Packers And Movers - Premium Homepage Styles
   =================================================== */

:root {
    --rp-primary: #f76649;
    --rp-primary-hover: #e04b2c;
    --rp-secondary: #0d1b2a;
    --rp-dark: #1f2428;
    --rp-light: #f8fafc;
    --rp-gradient-primary: linear-gradient(135deg, #f76649 0%, #ff4b2b 60%, #e0281b 100%);
    --rp-gradient-dark: linear-gradient(135deg, #0b1526 0%, #15253e 50%, #1e3a5f 100%);
    --rp-gradient-subtle: linear-gradient(135deg, #fff5f2 0%, #fffbf8 100%);
    --rp-gradient-accent: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --rp-gradient-card: linear-gradient(145deg, #ffffff 0%, #fafcff 100%);
    --rp-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --rp-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --rp-shadow-lg: 0 20px 45px rgba(247, 102, 73, 0.18);
    --rp-radius: 16px;
    --rp-transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ================= Hero Section Redesign ================= */
.rp-hero-section {
    position: relative;
    background: var(--rp-gradient-dark);
    padding: 110px 0 90px;
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.rp-hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(247, 102, 73, 0.25) 0%, rgba(247, 102, 73, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: rpPulse 8s infinite alternate ease-in-out;
}

.rp-hero-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

@keyframes rpPulse {
    0% { transform: scale(1) translateY(0); opacity: 0.6; }
    100% { transform: scale(1.15) translateY(20px); opacity: 0.9; }
}

.rp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #ffd27d;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.rp-hero-badge i {
    color: #ffd700;
}

.rp-hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 22px;
}

.rp-hero-title .rp-text-gradient {
    background: linear-gradient(135deg, #ff9f7b 0%, #ff5e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rp-hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #d8e2ec;
    margin-bottom: 30px;
    max-width: 620px;
}

.rp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.rp-btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--rp-gradient-primary);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(247, 102, 73, 0.4);
    transition: var(--rp-transition);
    border: none;
    text-decoration: none;
}

.rp-btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(247, 102, 73, 0.6);
    color: #ffffff !important;
}

.rp-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--rp-gradient-accent);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: var(--rp-transition);
    border: none;
    text-decoration: none;
}

.rp-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
}

.rp-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.rp-hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #f1f5f9;
}

.rp-hero-highlight-item i {
    color: #25d366;
    font-size: 16px;
}

/* ================= Instant Quote Form Card ================= */
.rp-quote-card {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 30px 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    color: var(--rp-dark);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.rp-quote-card-header {
    margin-bottom: 22px;
    text-align: center;
}

.rp-quote-badge {
    background: #ffebe6;
    color: var(--rp-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 8px;
}

.rp-quote-card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.rp-quote-card-header p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
}

.rp-form-group {
    margin-bottom: 14px;
}

.rp-form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
    display: block;
}

.rp-form-control {
    width: 100%;
    height: 44px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    background-color: #f8fafc;
    color: #1e293b;
    transition: var(--rp-transition);
}

.rp-form-control:focus {
    outline: none;
    border-color: var(--rp-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(247, 102, 73, 0.15);
}

.rp-quote-submit-btn {
    width: 100%;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    background: var(--rp-gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--rp-transition);
    box-shadow: 0 8px 20px rgba(247, 102, 73, 0.35);
    margin-top: 10px;
}

.rp-quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(247, 102, 73, 0.5);
    color: #ffffff;
}

.rp-quote-security {
    text-align: center;
    font-size: 11.5px;
    color: #64748b;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ================= Trust Proof Strip ================= */
.rp-trust-strip {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
    box-shadow: var(--rp-shadow-sm);
}

.rp-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
}

.rp-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--rp-gradient-subtle);
    border: 1px solid rgba(247, 102, 73, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--rp-primary);
    flex-shrink: 0;
}

.rp-trust-text h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
    color: #0f172a;
}

.rp-trust-text p {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 0;
}

/* ================= Section Header Standard ================= */
.rp-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.rp-section-subtitle {
    display: inline-block;
    color: var(--rp-primary);
    background: #fff0ec;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.rp-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 15px;
}

.rp-section-desc {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ================= Services Redesign ================= */
.rp-services-section {
    background-color: #f8fafc;
    padding: 90px 0 70px;
}

.rp-service-card {
    background: #ffffff;
    border-radius: var(--rp-radius);
    overflow: hidden;
    box-shadow: var(--rp-shadow-sm);
    transition: var(--rp-transition);
    border: 1px solid #eef2f6;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    position: relative;
}

.rp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rp-shadow-md);
    border-color: rgba(247, 102, 73, 0.3);
}

.rp-service-thumb {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.rp-service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rp-service-card:hover .rp-service-thumb img {
    transform: scale(1.08);
}

.rp-service-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.rp-service-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rp-service-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rp-service-body h3 a {
    color: #0f172a;
    transition: var(--rp-transition);
}

.rp-service-body h3 a:hover {
    color: var(--rp-primary);
}

.rp-service-body p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.rp-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.rp-service-features li {
    font-size: 12.5px;
    color: #334155;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rp-service-features li i {
    color: #22c55e;
    font-size: 14px;
}

.rp-service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    margin-top: auto;
}

.rp-btn-sm-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rp-primary);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rp-transition);
}

.rp-btn-sm-primary:hover {
    color: var(--rp-primary-hover);
    transform: translateX(4px);
}

.rp-btn-sm-call {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff1ee;
    color: var(--rp-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rp-transition);
}

.rp-btn-sm-call:hover {
    background: var(--rp-primary);
    color: #ffffff;
}

.rp-btn-sm-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e9fbf0;
    color: #128c7e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rp-transition);
}

.rp-btn-sm-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

/* ================= 4-Step Moving Process ================= */
.rp-process-section {
    padding: 90px 0;
    background: #ffffff;
}

.rp-process-card {
    background: #f8fafc;
    border-radius: var(--rp-radius);
    padding: 35px 24px 30px;
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: var(--rp-transition);
    height: 100%;
}

.rp-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rp-shadow-md);
    background: #ffffff;
    border-color: rgba(247, 102, 73, 0.4);
}

.rp-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rp-gradient-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(247, 102, 73, 0.35);
}

.rp-process-icon {
    width: 70px;
    height: 70px;
    margin: 10px auto 20px;
    border-radius: 50%;
    background: var(--rp-gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--rp-primary);
    box-shadow: 0 8px 20px rgba(247, 102, 73, 0.15);
}

.rp-process-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.rp-process-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ================= Why Choose Us Comparison ================= */
.rp-why-section {
    background: #fafcff;
    padding: 90px 0;
    border-top: 1px solid #edf2f7;
}

.rp-comparison-card {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 35px;
    box-shadow: var(--rp-shadow-md);
    border: 1px solid #e2e8f0;
}

.rp-comparison-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 18px;
    margin-bottom: 22px;
}

.rp-comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f8fafc;
}

.rp-check-icon {
    width: 28px;
    height: 28px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.rp-comparison-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.rp-comparison-text p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 0;
}

.rp-feature-box {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 24px;
    box-shadow: var(--rp-shadow-sm);
    border: 1px solid #eef2f6;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--rp-transition);
}

.rp-feature-box:hover {
    transform: translateX(6px);
    box-shadow: var(--rp-shadow-md);
    border-color: rgba(247, 102, 73, 0.3);
}

.rp-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--rp-gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(247, 102, 73, 0.3);
}

.rp-feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.rp-feature-content p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ================= Gradient Stats Counter ================= */
.rp-stats-section {
    background: var(--rp-gradient-primary);
    padding: 70px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rp-stats-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.rp-stat-card {
    text-align: center;
    padding: 15px;
}

.rp-stat-number {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.rp-stat-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ================= SEO Rich FAQ Section ================= */
.rp-faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.rp-faq-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: var(--rp-transition);
}

.rp-faq-card:hover {
    border-color: rgba(247, 102, 73, 0.3);
}

.rp-faq-header {
    background: #fafcff;
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    user-select: none;
}

.rp-faq-header h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.4;
}

.rp-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rp-primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: var(--rp-transition);
}

.rp-faq-body {
    padding: 0 24px 20px;
    background: #fafcff;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.7;
    display: none;
}

.rp-faq-card.active .rp-faq-body {
    display: block;
}

.rp-faq-card.active .rp-faq-icon {
    transform: rotate(180deg);
    background: var(--rp-primary);
    color: #ffffff;
    border-color: var(--rp-primary);
}

/* ================= Popular City Routes Cloud ================= */
.rp-routes-section {
    background: #f8fafc;
    padding: 70px 0;
    border-top: 1px solid #eef2f6;
}

.rp-route-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
}

.rp-route-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: var(--rp-transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.rp-route-badge:hover {
    background: var(--rp-primary);
    color: #ffffff;
    border-color: var(--rp-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(247, 102, 73, 0.25);
}

/* ================= Bottom High-Impact CTA ================= */
.rp-cta-banner {
    background: var(--rp-gradient-dark);
    border-radius: 20px;
    padding: 60px 45px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.4);
    margin: 40px 0;
}

.rp-cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 102, 73, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
}

.rp-cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.rp-cta-banner p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 0;
    max-width: 600px;
}

.rp-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

/* ================= Responsive Queries ================= */
@media (max-width: 991px) {
    .rp-hero-section {
        padding: 70px 0 60px;
    }
    .rp-hero-title {
        font-size: 36px;
    }
    .rp-quote-card {
        margin-top: 40px;
    }
    .rp-cta-buttons {
        justify-content: flex-start;
        margin-top: 25px;
    }
    .rp-section-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .rp-hero-title {
        font-size: 28px;
    }
    .rp-hero-subtitle {
        font-size: 14.5px;
    }
    .rp-section-title {
        font-size: 24px;
    }
    .rp-cta-banner {
        padding: 35px 22px;
    }
    .rp-cta-banner h2 {
        font-size: 26px;
    }
    .rp-btn-gradient, .rp-btn-whatsapp {
        width: 100%;
    }
}

/* ================= Service Details & Sidebar Styling ================= */
.rp-service-sidebar-widget {
    background: #ffffff !important;
    border-radius: var(--rp-radius) !important;
    padding: 24px !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
    border: 1px solid #e2e8f0 !important;
    margin-bottom: 28px !important;
}

.rp-sidebar-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding-bottom: 16px !important;
    margin-bottom: 18px !important;
    border-bottom: 2px solid #f1f5f9 !important;
    position: relative !important;
}

.rp-sidebar-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #f76649, #ff4b2b);
    border-radius: 2px;
}

.rp-sidebar-header h3 {
    font-size: 18.5px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 0 !important;
    letter-spacing: -0.2px !important;
}

.rp-sidebar-header i {
    font-size: 22px !important;
    color: var(--rp-primary) !important;
}

.rp-sidebar-service-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.rp-sidebar-service-list li {
    margin-bottom: 8px !important;
    padding: 0 !important;
    position: static !important;
    border: none !important;
}

.rp-sidebar-service-list li:last-child {
    margin-bottom: 0 !important;
}

.rp-sidebar-service-list li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 11px 16px !important;
    border-radius: 10px !important;
    color: #334155 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    background: #f8fafc !important;
    border: 1px solid #edf2f7 !important;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
}

/* Reset float leak from old style.css */
.rp-sidebar-service-list li a span,
.rp-sidebar-service-list li a i {
    float: none !important;
    top: auto !important;
}

.rp-sidebar-item-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-grow: 1 !important;
    text-align: left !important;
    color: inherit !important;
}

.rp-sidebar-item-label i {
    color: var(--rp-primary) !important;
    font-size: 17px !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    background: rgba(247, 102, 73, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
}

.rp-sidebar-item-label span {
    font-size: 14px !important;
    color: inherit !important;
}

.rp-sidebar-service-list li a > i.rp-chevron,
.rp-sidebar-service-list li a > i.ri-arrow-right-s-line {
    color: #94a3b8 !important;
    font-size: 17px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
}

/* Hover state */
.rp-sidebar-service-list li a:hover {
    background: #fff5f2 !important;
    color: var(--rp-primary) !important;
    border-color: rgba(247, 102, 73, 0.35) !important;
    transform: translateX(4px) !important;
    box-shadow: 0 4px 14px rgba(247, 102, 73, 0.12) !important;
}

.rp-sidebar-service-list li a:hover .rp-sidebar-item-label i {
    background: var(--rp-primary) !important;
    color: #ffffff !important;
}

.rp-sidebar-service-list li a:hover > i.rp-chevron,
.rp-sidebar-service-list li a:hover > i.ri-arrow-right-s-line {
    color: var(--rp-primary) !important;
    transform: translateX(3px) !important;
}

/* Active Service Item */
.rp-sidebar-service-list li.active a {
    background: linear-gradient(135deg, #f76649 0%, #ff4b2b 60%, #e0281b 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 18px rgba(247, 102, 73, 0.4) !important;
    border-color: transparent !important;
    transform: translateX(4px) !important;
}

.rp-sidebar-service-list li.active a .rp-sidebar-item-label,
.rp-sidebar-service-list li.active a .rp-sidebar-item-label span {
    color: #ffffff !important;
}

.rp-sidebar-service-list li.active a .rp-sidebar-item-label i {
    background: rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
}

.rp-sidebar-service-list li.active a > i.rp-chevron,
.rp-sidebar-service-list li.active a > i.ri-arrow-right-s-line {
    color: #ffffff !important;
    transform: translateX(2px) !important;
}

.rp-sidebar-quote-card {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 24px;
    box-shadow: var(--rp-shadow-sm);
    border: 1px solid #e2e8f0;
}

.rp-sidebar-quote-header {
    text-align: center;
    margin-bottom: 18px;
}

.rp-quote-tag {
    display: inline-block;
    background: #fff0ec;
    color: var(--rp-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.rp-sidebar-quote-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.rp-sidebar-quote-header p {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 0;
}

.rp-sidebar-support-card {
    background: linear-gradient(145deg, #0b1526 0%, #172a45 100%);
    border-radius: var(--rp-radius);
    padding: 24px;
    color: #ffffff;
    box-shadow: var(--rp-shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rp-support-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rp-gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.rp-sidebar-support-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rp-sidebar-support-card p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rp-support-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rp-support-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 9px 14px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--rp-transition);
}

.rp-support-link:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffd27d;
}

.rp-support-badges span {
    color: #e2e8f0 !important;
}

/* Service Details Content Mobile Tweaks */
@media (max-width: 991px) {
    .services-details-area .widget-sidebar {
        margin-right: 0 !important;
        margin-top: 40px;
    }
    .services-details-content.content-1 h2 {
        font-size: 26px !important;
    }
}

/* ===================================================
   About Us Redesign Styles
   =================================================== */
.rp-about-intro {
    padding: 70px 0 50px;
}

.rp-about-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff0ec;
    color: var(--rp-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.rp-about-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 20px;
}

.rp-about-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.rp-mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 35px 0;
}

.rp-mv-card {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 28px;
    box-shadow: var(--rp-shadow-sm);
    border: 1px solid #edf2f7;
    position: relative;
    overflow: hidden;
    transition: var(--rp-transition);
}

.rp-mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--rp-gradient-primary);
}

.rp-mv-card.rp-vision-card::before {
    background: linear-gradient(135deg, #0b1526 0%, #1e3a5f 100%);
}

.rp-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rp-shadow-md);
}

.rp-mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff0ec;
    color: var(--rp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.rp-vision-card .rp-mv-icon {
    background: #eef2ff;
    color: #3b82f6;
}

.rp-mv-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.rp-mv-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

.rp-values-section {
    background: #f8fafc;
    padding: 70px 0;
}

.rp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.rp-section-header .rp-pill {
    display: inline-block;
    background: #fff0ec;
    color: var(--rp-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.rp-section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.rp-section-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.rp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.rp-value-card {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 30px;
    box-shadow: var(--rp-shadow-sm);
    border: 1px solid #f1f5f9;
    transition: var(--rp-transition);
}

.rp-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rp-shadow-md);
    border-color: rgba(247, 102, 73, 0.3);
}

.rp-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--rp-gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(247, 102, 73, 0.25);
}

.rp-value-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.rp-value-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ===================================================
   Contact Us Redesign Styles
   =================================================== */
.rp-contact-section {
    padding: 70px 0;
    background: #ffffff;
}

.rp-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.rp-contact-card {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--rp-shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--rp-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rp-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rp-shadow-md);
    border-color: var(--rp-primary);
}

.rp-contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff0ec;
    color: var(--rp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    transition: var(--rp-transition);
}

.rp-contact-card:hover .rp-contact-icon {
    background: var(--rp-gradient-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(247, 102, 73, 0.35);
}

.rp-contact-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.rp-contact-card p, .rp-contact-card a {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 4px;
    text-decoration: none;
    transition: var(--rp-transition);
}

.rp-contact-card a:hover {
    color: var(--rp-primary);
}

.rp-contact-badge-sub {
    font-size: 12px;
    color: #10b981 !important;
    font-weight: 700;
    margin-top: 6px;
    display: inline-block;
}

.rp-contact-box {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 40px;
    box-shadow: var(--rp-shadow-md);
    border: 1px solid #e2e8f0;
}

.rp-contact-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.rp-contact-box p {
    color: #64748b;
    font-size: 14.5px;
    margin-bottom: 25px;
}

.rp-map-card {
    border-radius: var(--rp-radius);
    overflow: hidden;
    box-shadow: var(--rp-shadow-md);
    height: 100%;
    min-height: 480px;
    border: 1px solid #e2e8f0;
}

.rp-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
}

.rp-hubs-section {
    background: #f8fafc;
    padding: 60px 0;
}

.rp-hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rp-hub-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--rp-shadow-sm);
    border: 1px solid #edf2f7;
    transition: var(--rp-transition);
}

.rp-hub-item:hover {
    transform: translateY(-3px);
    border-color: rgba(247, 102, 73, 0.4);
    box-shadow: var(--rp-shadow-md);
}

.rp-hub-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff0ec;
    color: var(--rp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.rp-hub-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.rp-hub-info p {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 0;
}

/* ===================================================
   Mobile Floating Action Bar (Call / WhatsApp)
   =================================================== */
.rp-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 15px;
    z-index: 9999;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

.rp-mobile-btn-call {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--rp-gradient-primary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(247, 102, 73, 0.3);
}

.rp-mobile-btn-wa {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--rp-gradient-accent);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ===================================================
   Mobile Responsiveness Media Queries
   =================================================== */
@media (max-width: 991px) {
    .rp-mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .rp-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rp-contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .rp-hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rp-map-card {
        min-height: 350px;
        margin-top: 30px;
    }
    .rp-map-card iframe {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .rp-mobile-bar {
        display: flex;
    }
    body {
        padding-bottom: 65px; /* prevent mobile bar overlap */
    }
    .rp-values-grid {
        grid-template-columns: 1fr;
    }
    .rp-hubs-grid {
        grid-template-columns: 1fr;
    }
    .rp-about-title {
        font-size: 28px;
    }
    .rp-section-header h2 {
        font-size: 26px;
    }
    .rp-contact-box {
        padding: 24px 18px;
    }
    .rp-contact-box h3 {
        font-size: 22px;
    }
    .rp-pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .rp-process-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===================================================
   Branch Locations Management Styles
   =================================================== */
.rp-branches-section {
    padding: 70px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.rp-branch-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.rp-branch-filter-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--rp-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--rp-shadow-sm);
}

.rp-branch-filter-btn .badge-count {
    background: #e2e8f0;
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    transition: var(--rp-transition);
}

.rp-branch-filter-btn:hover {
    border-color: var(--rp-primary);
    color: var(--rp-primary);
    transform: translateY(-2px);
}

.rp-branch-filter-btn.active {
    background: var(--rp-gradient-primary);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(247, 102, 73, 0.35);
}

.rp-branch-filter-btn.active .badge-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.rp-branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rp-branch-card {
    background: #ffffff;
    border-radius: var(--rp-radius);
    padding: 28px 24px;
    box-shadow: var(--rp-shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--rp-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.rp-branch-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rp-gradient-primary);
    opacity: 0;
    transition: var(--rp-transition);
}

.rp-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rp-shadow-md);
    border-color: rgba(247, 102, 73, 0.3);
}

.rp-branch-card:hover::before {
    opacity: 1;
}

.rp-branch-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}

.rp-branch-location-badge {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    background: #fff0ec;
    color: var(--rp-primary);
    display: inline-block;
}

.rp-branch-card.region-delhi .rp-branch-location-badge {
    background: #eef2ff;
    color: #3b82f6;
}

.rp-branch-card.region-gurugram .rp-branch-location-badge {
    background: #fff0ec;
    color: var(--rp-primary);
}

.rp-branch-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff0ec;
    color: var(--rp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.region-delhi .rp-branch-icon-circle {
    background: #eef2ff;
    color: #3b82f6;
}

.rp-branch-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
}

.rp-branch-address {
    font-size: 13.5px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 18px;
    flex-grow: 1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.rp-branch-address i {
    color: var(--rp-primary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.rp-branch-contact-info {
    border-top: 1px dashed #e2e8f0;
    padding-top: 16px;
    margin-bottom: 18px;
}

.rp-branch-phone-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rp-branch-phone-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.rp-branch-phone-number {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    transition: var(--rp-transition);
}

.rp-branch-phone-number:hover {
    color: var(--rp-primary);
}

.rp-branch-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rp-btn-branch-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--rp-transition);
    border: 1px solid #e2e8f0;
}

.rp-btn-branch-call:hover {
    background: var(--rp-gradient-primary);
    color: #ffffff;
    border-color: transparent;
}

.rp-btn-branch-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #e7f9ee;
    color: #128c7e;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--rp-transition);
    border: 1px solid #bbf7d0;
}

.rp-btn-branch-wa:hover {
    background: var(--rp-gradient-accent);
    color: #ffffff;
    border-color: transparent;
}

.rp-btn-branch-dir {
    grid-column: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ffffff;
    color: #475569;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--rp-transition);
    border: 1px dashed #cbd5e1;
}

.rp-btn-branch-dir:hover {
    color: var(--rp-primary);
    border-color: var(--rp-primary);
    background: #fff8f6;
}

@media (max-width: 991px) {
    .rp-branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .rp-branches-grid {
        grid-template-columns: 1fr;
    }
    .rp-branch-filters {
        gap: 8px;
    }
    .rp-branch-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ==========================================================================
   Modern Customer Testimonials & Reviews Section (Gradients & Premium UI)
   ========================================================================== */
.rp-testimonials-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #fff7f4 50%, #f8fafc 100%);
    padding: 85px 0 90px;
    overflow: hidden;
}

.rp-testimonials-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(247, 102, 73, 0.12) 0%, rgba(255, 75, 43, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.rp-testimonials-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(13, 27, 42, 0.08) 0%, rgba(30, 58, 95, 0.02) 60%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Header & Social Proof */
.rp-testimonial-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.rp-badge-gradient {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(247, 102, 73, 0.12) 0%, rgba(255, 75, 43, 0.18) 100%);
    border: 1px solid rgba(247, 102, 73, 0.3);
    color: var(--rp-primary);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(247, 102, 73, 0.1);
}

.rp-badge-gradient i {
    color: #f59e0b;
    font-size: 16px;
}

.rp-testimonial-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.rp-text-gradient-coral {
    background: linear-gradient(135deg, #f76649 0%, #ff4b2b 60%, #e0281b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rp-testimonial-subtitle {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Trust Metric Highlights Bar */
.rp-reviews-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
}

.rp-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 9px 20px;
    border-radius: 50px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    font-size: 13.5px;
    color: #334155;
    font-weight: 600;
    transition: var(--rp-transition);
}

.rp-stat-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(247, 102, 73, 0.35);
    box-shadow: 0 6px 20px rgba(247, 102, 73, 0.12);
}

.rp-stat-pill i {
    font-size: 17px;
    color: var(--rp-primary);
}

.rp-stat-pill .stat-highlight {
    font-weight: 800;
    color: #0f172a;
}

/* Single Testimonial Box Modern Overhaul */
.rp-testimonials-section .single-testimonials-box {
    background: linear-gradient(145deg, #ffffff 0%, #fffbf9 100%) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(247, 102, 73, 0.18) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
    padding: 32px 30px 26px !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 15px 5px 35px !important;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 330px !important;
}

.rp-testimonials-section .single-testimonials-box:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(247, 102, 73, 0.45) !important;
    box-shadow: 0 22px 45px rgba(247, 102, 73, 0.16), 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

/* Glowing Top Gradient Strip */
.rp-testimonials-section .single-testimonials-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f76649 0%, #ff6b4a 40%, #ffaa00 100%);
    z-index: 2;
}

/* Reset legacy absolute positioning from old style.css */
.rp-testimonials-section .single-testimonials-box ul,
.rp-testimonials-section .single-testimonials-box .testimonials-mane,
.rp-testimonials-section .single-testimonials-box .quote {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
}

/* Card Header Section */
.rp-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.rp-reviewer-profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Gradient Avatar Badge */
.rp-avatar-box {
    position: relative;
    flex-shrink: 0;
}

.rp-avatar-initials {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: 2px solid #ffffff;
    position: relative;
}

.rp-verified-check {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: #ffffff;
    color: #10b981;
    font-size: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.rp-reviewer-info h3 {
    font-size: 17px;
    font-weight: 750;
    color: #0f172a;
    margin: 0 0 4px;
    line-height: 1.3;
}

.rp-reviewer-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.rp-city-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #e04b2c;
    background: #fff0ec;
    border: 1px solid rgba(247, 102, 73, 0.2);
    padding: 2px 8px;
    border-radius: 6px;
}

.rp-city-badge i {
    font-size: 13px;
}

.rp-service-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
}

/* Rating Stars & Verified Pill */
.rp-card-rating {
    text-align: right;
    flex-shrink: 0;
}

.rp-star-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 3px !important;
    display: flex;
    gap: 3px;
}

.rp-star-list li {
    display: inline-block;
}

.rp-star-list li i {
    color: #f59e0b !important;
    font-size: 15px !important;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

.rp-rating-text-badge {
    font-size: 11.5px;
    font-weight: 700;
    color: #059669;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Review Text & Headline */
.rp-review-title {
    font-size: 15.5px;
    font-weight: 750;
    color: #1e293b;
    margin: 0 0 10px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.rp-review-title i {
    color: var(--rp-primary);
    font-size: 17px;
}

.rp-testimonials-section .single-testimonials-box p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
}

/* Background Subtle Quote Watermark */
.rp-card-quote-watermark {
    position: absolute;
    bottom: 12px;
    right: 20px;
    font-size: 72px;
    line-height: 1;
    color: rgba(247, 102, 73, 0.07);
    pointer-events: none;
    z-index: 0;
}

/* Card Bottom Metadata */
.rp-card-meta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
    font-size: 12.5px;
    color: #64748b;
    position: relative;
    z-index: 1;
}

.rp-verified-client-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #059669;
    font-weight: 600;
}

.rp-route-info {
    font-weight: 600;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rp-route-info i {
    color: var(--rp-primary);
}

/* Owl Carousel Dots Redesign */
.rp-testimonials-section .owl-theme .owl-dots {
    margin-top: 25px !important;
    text-align: center;
}

.rp-testimonials-section .owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px 6px !important;
    background: #cbd5e1 !important;
    border-radius: 10px !important;
    transition: all 0.35s ease !important;
}

.rp-testimonials-section .owl-theme .owl-dots .owl-dot.active span {
    background: linear-gradient(135deg, #f76649 0%, #ff4b2b 100%) !important;
    width: 32px !important;
    box-shadow: 0 3px 12px rgba(247, 102, 73, 0.4) !important;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
    .rp-testimonial-title {
        font-size: 32px;
    }
    .rp-testimonials-section {
        padding: 70px 0 75px;
    }
}

@media (max-width: 767px) {
    .rp-testimonials-section {
        padding: 55px 0 65px;
    }
    .rp-testimonial-title {
        font-size: 26px;
    }
    .rp-testimonial-subtitle {
        font-size: 14.5px;
    }
    .rp-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .rp-card-rating {
        text-align: left;
    }
    .rp-testimonials-section .single-testimonials-box {
        padding: 24px 20px 20px !important;
    }
    .rp-reviews-stats-bar {
        gap: 8px;
    }
    .rp-stat-pill {
        font-size: 12px;
        padding: 7px 14px;
    }
    .rp-card-meta-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ==========================================================================
   Header & Navigation Bar Professional Management
   ========================================================================== */

/* Top Header Bar */
.top-header {
    background: #0d1b2a !important;
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 100;
}

.top-header .header-left-content {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    line-height: 1 !important;
}

.top-header .header-left-content li {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
}

.top-header .header-left-content li a {
    color: #e2e8f0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: var(--rp-transition);
    text-decoration: none !important;
}

.top-header .header-left-content li a:hover {
    color: var(--rp-primary) !important;
}

.top-header .header-left-content li a i {
    color: var(--rp-primary) !important;
    font-size: 14px !important;
}

.top-header .header-right-content {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.top-header .header-right-content li {
    display: inline-flex !important;
    align-items: center !important;
}

.top-header .rp-wa-top-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #25d366 !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: var(--rp-transition);
}

.top-header .rp-wa-top-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    color: #ffffff !important;
}

.top-header .rp-badge-top-iso {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Navbar Area & Logo Constraints */
.navbar-area {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    position: relative;
    z-index: 998;
    transition: var(--rp-transition);
}

/* Remove asymmetric background block from old style.css */
.navbar-area::before {
    display: none !important;
}

.desktop-nav {
    padding: 0 !important;
    background: transparent !important;
}

.desktop-nav .navbar {
    background: transparent !important;
    padding: 6px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Logo Management */
.desktop-nav .navbar .navbar-brand {
    display: flex !important;
    align-items: center !important;
    padding: 4px 0 !important;
    margin: 0 !important;
    flex-shrink: 0;
}

.desktop-nav .navbar .navbar-brand img {
    height: 60px !important;
    max-height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    transition: all 0.3s ease-in-out !important;
}

/* Navigation Links Center-Right Alignment */
.desktop-nav .navbar .navbar-nav {
    margin-left: auto !important;
    margin-right: 25px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.desktop-nav .navbar .navbar-nav .nav-item {
    padding: 16px 0 !important;
    position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item a.nav-link {
    font-size: 15px !important;
    font-weight: 650 !important;
    color: #1e293b !important;
    padding: 8px 14px !important;
    margin: 0 !important;
    border-radius: 8px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.desktop-nav .navbar .navbar-nav .nav-item a.nav-link:hover,
.desktop-nav .navbar .navbar-nav .nav-item a.nav-link.active {
    color: var(--rp-primary) !important;
    background: rgba(247, 102, 73, 0.08);
}

.desktop-nav .navbar .navbar-nav .nav-item a.nav-link i {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover a.nav-link i {
    transform: rotate(180deg);
}

/* Service Dropdown Menu */
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    border-top: 3px solid var(--rp-primary) !important;
    border-radius: 12px !important;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12) !important;
    padding: 8px !important;
    min-width: 250px !important;
    margin-top: 0 !important;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
    margin: 2px 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    padding: 9px 14px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    background: #fff3f0 !important;
    color: var(--rp-primary) !important;
    padding-left: 18px !important;
}

/* Header Call CTA Button */
.desktop-nav .others-options {
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

.desktop-nav .others-options ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.rp-header-call-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #f76649 0%, #ff4b2b 100%) !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 6px 20px rgba(247, 102, 73, 0.35) !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.rp-header-call-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(247, 102, 73, 0.5) !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff4b2b 0%, #e0281b 100%) !important;
}

.rp-header-call-btn i {
    font-size: 16px;
}

/* Sticky Header Refinements */
.navbar-area.is-sticky {
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.1) !important;
}

.navbar-area.is-sticky .desktop-nav .navbar {
    padding: 4px 0 !important;
}

.navbar-area.is-sticky .desktop-nav .navbar .navbar-brand img {
    height: 52px !important;
    max-height: 52px !important;
}

.navbar-area.is-sticky .desktop-nav .navbar .navbar-nav .nav-item {
    padding: 12px 0 !important;
}

/* ==========================================================================
   Reline Premium Mobile Navigation (Modern, Clean, 100% Reliable)
   ========================================================================== */

/* Completely hide legacy dot-menu and mean-bar elements */
.others-option-for-responsive,
.mean-container .mean-bar,
.mean-push {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.mobile-responsive-nav {
    display: none;
}

@media (max-width: 991px) {
    .top-header {
        display: none !important;
    }

    .desktop-nav {
        display: none !important;
    }

    .navbar-area {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(15, 23, 42, 0.08) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-responsive-nav {
        display: block !important;
        background: #ffffff !important;
        padding: 10px 0 !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    .mobile-responsive-nav .container {
        position: relative !important;
    }

    /* Mobile Header Flex Bar */
    .rp-mobile-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        min-height: 48px !important;
    }

    /* Brand Logo (Left) */
    .rp-mobile-logo {
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
        flex-shrink: 0 !important;
    }

    .rp-mobile-logo img {
        height: 44px !important;
        max-height: 44px !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* Actions (Right) */
    .rp-mobile-actions {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    /* Quick Call Icon Button */
    .rp-mobile-quick-call {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        background: #fff2ed !important;
        color: #f76649 !important;
        border: 1px solid rgba(247, 102, 73, 0.25) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        text-decoration: none !important;
        transition: all 0.25s ease !important;
    }

    .rp-mobile-quick-call:hover,
    .rp-mobile-quick-call:active {
        background: #f76649 !important;
        color: #ffffff !important;
        transform: scale(1.05) !important;
    }

    /* Hamburger Menu Button */
    .rp-mobile-menu-btn {
        width: 42px !important;
        height: 40px !important;
        border-radius: 10px !important;
        background: #fff5f2 !important;
        border: 1.5px solid rgba(247, 102, 73, 0.3) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        padding: 0 !important;
        cursor: pointer !important;
        transition: all 0.25s ease !important;
    }

    .rp-mobile-menu-btn:hover {
        border-color: #f76649 !important;
    }

    .rp-mobile-menu-btn .rp-hamburger-bar {
        display: block !important;
        width: 21px !important;
        height: 2.5px !important;
        background: #f76649 !important;
        border-radius: 3px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        transform-origin: center !important;
    }

    /* Hamburger Active Animation (Turns into X) */
    .rp-mobile-menu-btn.active {
        background: #f76649 !important;
        border-color: #f76649 !important;
    }

    .rp-mobile-menu-btn.active .bar-1 {
        transform: translateY(7.5px) rotate(45deg) !important;
        background: #ffffff !important;
    }

    .rp-mobile-menu-btn.active .bar-2 {
        opacity: 0 !important;
        transform: scaleX(0) !important;
    }

    .rp-mobile-menu-btn.active .bar-3 {
        transform: translateY(-7.5px) rotate(-45deg) !important;
        background: #ffffff !important;
    }

    /* Mobile Nav Drawer / Card */
    .rp-mobile-nav-drawer {
        display: none;
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 12px !important;
        right: 12px !important;
        background: #ffffff !important;
        border-radius: 16px !important;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06) !important;
        overflow: hidden !important;
        z-index: 99999 !important;
    }

    .rp-mobile-nav-inner {
        max-height: calc(85vh - 100px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .rp-mobile-nav-list {
        list-style: none !important;
        padding: 8px 0 !important;
        margin: 0 !important;
    }

    .rp-mobile-nav-list .rp-nav-item {
        border-bottom: 1px solid #f1f5f9 !important;
    }

    .rp-mobile-nav-list .rp-nav-item:last-child {
        border-bottom: none !important;
    }

    .rp-mobile-nav-list .rp-nav-link {
        display: flex !important;
        align-items: center !important;
        padding: 13px 20px !important;
        color: #1e293b !important;
        font-size: 15px !important;
        font-weight: 650 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .rp-mobile-nav-list .rp-nav-link i {
        color: #f76649 !important;
        font-size: 17px !important;
    }

    .rp-mobile-nav-list .rp-nav-link:hover,
    .rp-mobile-nav-list .rp-nav-link.active {
        color: #f76649 !important;
        background: #fff9f8 !important;
        padding-left: 24px !important;
    }

    /* Submenu Header & Toggle */
    .rp-nav-link-dropdown-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-right: 14px !important;
    }

    .rp-nav-link-dropdown-header .rp-nav-link {
        flex: 1 !important;
    }

    .rp-dropdown-toggle-btn {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
        background: #f1f5f9 !important;
        border: 1px solid #e2e8f0 !important;
        color: #475569 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        font-size: 18px !important;
        transition: all 0.25s ease !important;
        padding: 0 !important;
    }

    .rp-dropdown-toggle-btn.active {
        background: #f76649 !important;
        border-color: #f76649 !important;
        color: #ffffff !important;
        transform: rotate(45deg) !important;
    }

    /* Submenu Services List */
    .rp-mobile-submenu {
        display: none;
        list-style: none !important;
        padding: 4px 0 8px !important;
        margin: 0 !important;
        background: #f8fafc !important;
        border-top: 1px solid #f1f5f9 !important;
        box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.02) !important;
    }

    .rp-mobile-submenu li {
        border-bottom: 1px solid #eef2f6 !important;
    }

    .rp-mobile-submenu li:last-child {
        border-bottom: none !important;
    }

    .rp-mobile-submenu li a {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 20px 10px 36px !important;
        color: #475569 !important;
        font-size: 14px !important;
        font-weight: 550 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .rp-mobile-submenu li a i {
        color: #f76649 !important;
        font-size: 15px !important;
    }

    .rp-mobile-submenu li a:hover {
        color: #f76649 !important;
        background: #fff5f2 !important;
        padding-left: 40px !important;
    }

    .rp-mobile-submenu li.rp-view-all a {
        font-weight: 700 !important;
        color: #f76649 !important;
    }

    /* Drawer Footer Action Buttons */
    .rp-mobile-drawer-footer {
        padding: 16px 18px 18px !important;
        background: #fafbfc !important;
        border-top: 1px solid #f1f5f9 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .rp-drawer-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 12px 18px !important;
        border-radius: 50px !important;
        font-size: 14.5px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        transition: all 0.25s ease !important;
    }

    .rp-btn-call {
        background: linear-gradient(135deg, #f76649 0%, #ff4b2b 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(247, 102, 73, 0.35) !important;
    }

    .rp-btn-call:hover {
        background: linear-gradient(135deg, #ff4b2b 0%, #e0281b 100%) !important;
        color: #ffffff !important;
    }

    .rp-btn-wa {
        background: #25d366 !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25) !important;
    }

    .rp-btn-wa:hover {
        background: #1eb956 !important;
        color: #ffffff !important;
    }

    .rp-drawer-info {
        margin-top: 4px !important;
        text-align: center !important;
    }

    .rp-drawer-info p {
        margin: 3px 0 !important;
        font-size: 12.5px !important;
        color: #64748b !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    }

    .rp-drawer-info p i {
        color: #f76649 !important;
    }
}



