:root {
    --rv-cyan: #6C63FF;
    --rv-violet: #6C63FF;
    --rv-coral: #FF6584;
    --rv-gradient: linear-gradient(135deg, #6C63FF, #FF6584);
    --rv-deep: #0F0F1A;
    --rv-card-bg: #1A1A2E;
    --rv-muted: #A0A0B8;
    --rv-red: #FF6584;
    --rv-pink: #ff9edb;
    --rv-cream: #faf7f1;
    --rv-ink: #0F0F1A;
}

body {
    font-family: 'Inter', "Onest", Arial, sans-serif;
    color: var(--rv-ink);
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', "Onest", Arial, sans-serif;
}

.rv-topbar {
    background: #0F0F1A;
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.rv-topbar .container {
    max-width: none;
    width: 100%;
    padding-left: 0; /* Let the teal background bleed completely to the left edge! */
    padding-right: 0;
}

.rv-topbar-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 46px;
    width: 100%;
}

.rv-socials {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    padding-left: 8%;
    padding-right: 40px;
    border-radius: 0 50px 50px 0;
    gap: 12px;
}

.rv-socials span {
    font-weight: 700;
    color: #fff;
    margin-right: 6px;
    letter-spacing: 0.3px;
}

.rv-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15); /* Beautiful dark circular icons from the screenshot */
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.25s, color 0.25s, transform 0.25s;
}

.rv-socials a:hover {
    background: #ffffff;
    color: #6C63FF;
    transform: translateY(-2px);
}

.rv-contact-strip {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 8%; /* Aligns with the Call Now button and site grids */
    margin-left: auto;
}

.rv-contact-strip a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s;
    font-weight: 500;
}

.rv-contact-strip a:hover {
    color: #9D97FF;
}

.rv-contact-strip span {
    color: #fff;
    font-weight: 500;
}

.rv-contact-strip i {
    color: #9D97FF; /* Vibrant light teal/cyan icons */
    margin-right: 6px;
    font-size: 14px;
}

.rv-main-header,
.rv-main-header .header-sticky {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    z-index: 999999;
}

.rv-nav-container {
    padding-left: 2.5%;
    padding-right: 2.5%;
    transition: padding 0.3s ease;
    overflow-x: hidden;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.rv-main-header .navbar {
    min-height: 80px; /* Generous breathing room for logo and items */
    padding: 0;
}

.rv-main-header .navbar-brand {
    /* background: #000b20; */
    background: #ffffff;
    padding: 5px 12px;
    margin-right: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.rv-main-header .main-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    box-sizing: border-box;
}

.rv-main-header .main-menu .nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.rv-main-header .navbar-nav {
    width: auto;
    gap: 6px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rv-main-header .nav-link {
    color: #000000 !important;
    font-size: 15px !important;
    line-height: 1.2;
    font-weight: 700;
    padding: 24px 10px !important;
    white-space: nowrap;
    text-transform: capitalize;
    transition: color 0.25s ease;
    position: relative;
}

.rv-main-header .nav-link:hover {
    color: #6C63FF !important;
}

.rv-main-header .header-btn {
    margin-left: 24px;
    flex-shrink: 0;
}

.rv-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800;
    padding: 12px 28px !important;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(108, 99, 255, 0.22);
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.rv-call-btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.rv-call-btn:hover {
    background: linear-gradient(135deg, #5A52E0, #e85a76);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

.rv-call-btn:hover i {
    transform: rotate(15deg) scale(1.1); /* Soft phone rotation animation */
}

.rv-call-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(108, 99, 255, 0.15);
}

.rv-btn,
.rv-btn-outline,
.rv-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.rv-btn {
    background: var(--rv-gradient);
    color: #fff;
    padding: 14px 24px;
    border: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rv-btn:hover {
    background: linear-gradient(135deg, #5A52E0, #e85a76);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.rv-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 13px 24px;
}

.rv-section {
    padding: 58px 0;
}

.rv-section-title {
    text-align: center;
    margin-bottom: 48px; /* Increased from 42px for perfect elite breathing space */
}

.rv-section-title .eyebrow {
    display: block;
    color: var(--rv-cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0 !important; /* Removed letter-spacing as requested */
    text-transform: uppercase;
    margin-bottom: 12px; /* Elite spacing for professional presentation */
}

.rv-section-title h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    color: var(--rv-deep);
    font-weight: 900;
    letter-spacing: 0;
    margin: 0;
}

.rv-section-title h2 span,
.rv-red {
    color: #ff304d;
}

.rv-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rv-hero-swiper {
    width: 100%;
    height: 100%;
}

.rv-hero {
    min-height: 650px; /* Cinematic height upgrade */
    height: 650px;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
    background: #111;
    overflow: hidden;
    text-align: center; /* Enforces perfect horizontal alignment for slides copy */
}

.rv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), var(--rv-hero-image);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.rv-hero h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: 0;
}

.rv-hero p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 26px;
}

.rv-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.rv-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    z-index: 10;
    cursor: pointer;
    transition: all 0.25s ease;
}

.rv-hero-arrow:hover {
    background: #6C63FF;
    transform: translateY(-50%) scale(1.05);
}

.rv-hero-arrow.left { left: 35px; }
.rv-hero-arrow.right { right: 35px; }

/* Swiper Hero Pagination bullets */
.rv-hero-pagination {
    bottom: 28px !important;
    z-index: 10;
}

.rv-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.rv-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 5px;
    background: #6C63FF; /* Theme teal active dot */
    opacity: 1;
    box-shadow: 0 2px 6px rgba(108, 99, 255, 0.4);
}

.rv-ticker {
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900;
    padding: 18px 0;
}

.rv-ticker-track {
    display: inline-flex;
    gap: 34px;
    animation: rvMarquee 28s linear infinite;
}

.rv-ticker-track span {
    color: #ffffff !important; /* Forces ticker text to draw high-contrast pure white */
}

.rv-ticker span::after {
    content: "\2022";
    margin-left: 34px;
}

@keyframes rvMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.rv-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.rv-service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

.rv-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
    border-color: rgba(108, 99, 255, 0.2);
}

.rv-service-card img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rv-service-card:hover img {
    transform: scale(1.04);
}

.rv-service-copy {
    padding: 20px 20px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rv-service-copy h3 {
    background: rgba(108, 99, 255, 0.07); /* Light theme color background */
    color: #000b20;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    padding: 10px 12px;
    margin: 0 0 14px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.rv-service-card:hover .rv-service-copy h3 {
    background: rgba(108, 99, 255, 0.15);
}

.rv-location {
    display: block;
    color: #6C63FF; /* Theme teal location color */
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rv-service-copy p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    min-height: auto;
    margin: 0 0 20px;
    flex-grow: 1;
}

.rv-card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
}

.rv-card-actions a {
    flex: 1;
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rv-card-actions a:first-child {
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    color: #fff;
    border: none;
}

.rv-card-actions a:first-child:hover {
    background: linear-gradient(135deg, #5A52E0, #e85a76);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.35);
    transform: translateY(-2px);
}

.rv-card-actions a:last-child {
    background: transparent;
    color: #000b20;
    border: 1.5px solid #000b20;
}

.rv-card-actions a:last-child:hover {
    background: #000b20;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 11, 32, 0.15);
}

.rv-about-grid,
.rv-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 72px;
}

.rv-collage {
    position: relative;
    max-width: 460px;
    margin-left: auto;
}

.rv-collage-main {
    width: 82%;
    border-radius: 34px;
    aspect-ratio: 0.88 / 1;
    object-fit: cover;
}

.rv-collage-small {
    position: absolute;
    right: 0;
    bottom: 7%;
    width: 42%;
    aspect-ratio: 0.8 / 1;
    border: 10px solid #fff;
    border-radius: 999px;
    object-fit: cover;
}

.rv-years {
    position: absolute;
    top: 12%;
    right: 10%;
    color: #fff;
    background: var(--rv-cyan);
    border-radius: 50%;
    width: 115px;
    height: 115px;
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 900;
}

.rv-years strong {
    font-size: 38px;
    line-height: 1;
}

.rv-about-copy h2,
.rv-why-copy h2 {
    font-size: clamp(30px, 4vw, 44px) !important;
    font-weight: 900 !important;
    line-height: 1.25 !important; /* Airy line-height */
    color: var(--rv-deep) !important;
    margin-bottom: 32px !important; /* Explicitly forced generous spacing! */
    letter-spacing: 0 !important;
}

.rv-about-copy p,
.rv-why-copy p {
    font-size: 16px !important;
    line-height: 1.85 !important; /* Airy line-height */
    color: #4a5568 !important; /* Sleek slate grey */
    margin-bottom: 32px !important; /* Breathing room below paragraphs */
}

.rv-about-copy h2 span {
    color: var(--rv-cyan);
}

.rv-feature-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.rv-feature-box {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05); /* Soft premium border */
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
    align-items: center; /* Perfect vertical centering for icon + text */
}

.rv-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rv-feature-content h4 {
    color: #000b20 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    margin: 0 0 6px 0 !important; /* Perfect visual gap between title and paragraph! */
    line-height: 1.2 !important;
}

.rv-feature-content p {
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important; /* Reset bottom margins */
}

.rv-feature-box i,
.rv-check {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--rv-cyan);
    color: #fff;
}

.rv-why-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.rv-why-card {
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 12px;
    padding: 28px 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 18px rgba(0, 11, 32, 0.02);
    transition: all 0.3s ease;
    background: #fff;
}

.rv-why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.25);
    box-shadow: 0 12px 30px rgba(108, 99, 255, 0.08);
}

.rv-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(108, 99, 255, 0.08);
    color: var(--rv-cyan);
    flex-shrink: 0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.rv-why-card:hover .rv-why-icon {
    background: var(--rv-cyan);
    color: #fff;
    transform: rotate(8deg);
}

.rv-why-content {
    display: flex;
    flex-direction: column;
}

.rv-why-content h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #000b20 !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.3 !important;
}

.rv-why-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin: 0 !important;
}

.rv-form-card {
    border: 2px solid #6C63FF; /* Modernized to theme teal */
    border-radius: 12px; /* Smooth corners */
    overflow: hidden;
    max-width: 410px;
    margin: auto;
    background: #fff;
}

.rv-form-card h3 {
    background: #6C63FF;
    color: #fff;
    text-align: center;
    font-size: 24px;
    padding: 17px;
    margin: 0;
}

.rv-form-card form {
    padding: 18px;
}

.rv-form-card input,
.rv-form-card textarea,
.rv-inquiry input,
.rv-inquiry textarea {
    width: 100%;
    border: 1px solid #c7c7c7;
    border-radius: 999px;
    padding: 12px 18px;
    margin-bottom: 12px;
    font-size: 14px;
}

.rv-form-card textarea,
.rv-inquiry textarea {
    border-radius: 16px;
    min-height: 92px;
}

.rv-form-card button {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: #211205;
    color: #fff;
    padding: 13px;
    font-weight: 800;
}

.rv-stats {
    max-width: 1140px; /* Aligns perfectly with pricing grid container */
    margin: 60px auto;
    width: calc(100% - 32px); /* Ensures beautiful left and right margins on all screen sizes! */
    background: #000b20; /* Sleek theme navy instead of brownish */
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 50px 24px;
    border-radius: 16px; /* Smooth card edges */
    box-shadow: 0 10px 30px rgba(0, 11, 32, 0.1);
    gap: 24px;
}

.rv-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rv-stat i {
    color: #6C63FF; /* Teal theme color for stats icons */
    margin-bottom: 10px;
    display: inline-block;
}

.rv-stat strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin: 4px 0;
    line-height: 1.1;
}

.rv-stat span {
    display: block;
    color: #aeb9ca;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
    line-height: 1.4;
}

.rv-service-layout {
    background: #fff;
}

.rv-split-wrap {
    background: #ffffff;
    padding: 70px max(24px, 8vw);
    max-width: none;
    width: 100%;
    margin: 70px 0 45px;
}

.rv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    max-width: 1180px;
    margin: 0 auto 88px;
}

.rv-split:last-child {
    margin-bottom: 0;
}

.rv-split.reverse .rv-split-media {
    order: -1;
}

.rv-split h1,
.rv-split h2 {
    color: #070a16 !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.25 !important; /* Airy line-height */
    letter-spacing: 0 !important;
    margin-bottom: 32px !important; /* Explicitly forced generous spacing! */
}

.rv-split p {
    color: #4a5568 !important; /* Premium slate grey */
    line-height: 1.85 !important; /* Airy line-height */
    margin-bottom: 32px !important; /* Distance below paragraphs */
}

.rv-split-media img {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    border-radius: 14px;
    object-fit: cover;
}

.rv-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
    margin: 30px 0;
    color: #6d7480;
    font-weight: 700;
}

.rv-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-check-item i {
    color: #fff;
    background: var(--rv-cyan);
    width: 17px;
    height: 17px;
    border-radius: 3px;
    display: inline-grid;
    place-items: center;
    font-size: 10px;
}

.rv-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    max-width: 780px;
    margin: auto;
}

.rv-team-card {
    border: 1px solid #ffd3dc;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 10px;
    text-align: center;
}

.rv-team-card img {
    width: 100%;
    aspect-ratio: 0.86 / 1;
    object-fit: cover;
    border-radius: 4px;
}

.rv-team-card h3 {
    color: #315cc8;
    font-size: 13px;
    font-weight: 900;
    margin: 10px 0 2px;
}

.rv-team-card p {
    color: #747884;
    font-size: 11px;
    margin: 0;
}

.rv-pricing {
    background: #f8f8f8;
}

.rv-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: auto;
}

.rv-price-card {
    background: #fff;
    border-radius: 12px;
    padding: 42px 30px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.rv-price-card.featured {
    background: #030616;
    color: #fff;
    transform: scale(1.08);
}

.rv-price-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 12px;
    line-height: 1.3;
}

.rv-price {
    color: var(--rv-cyan);
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 20px;
    line-height: 1.1;
}

.rv-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.rv-price-card li {
    border-bottom: 1px solid rgba(120, 130, 150, 0.2);
    padding: 8px 0;
    font-size: 15px;
}

/* Google Testimonials Redesign */
.rv-testimonials-section {
    padding: 80px 0;
    background: #f8fafc; /* Beautiful soft blue-tinted neutral background */
    overflow: hidden;
}

.rv-testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Beautifully centered align */
    margin-bottom: 48px;
    gap: 30px;
}

.rv-testimonials-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    color: #000b20; /* Sleek theme navy */
    margin: 0;
    line-height: 1.25;
    max-width: 550px;
}

.rv-testimonials-heart-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #4a5568;
    background: rgba(108, 99, 255, 0.06); /* Beautiful light teal pill background */
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(108, 99, 255, 0.12);
}

.rv-heart-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.rv-heart-text {
    font-weight: 600;
}

.rv-testimonials-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr); /* Reduced summary card width to maximize carousel area */
    gap: 32px;
    align-items: stretch; /* Forces Excellent card and carousel container to have exact same height! */
}

.rv-google-summary-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(108, 99, 255, 0.08);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
    box-sizing: border-box; /* Safe padding calculation boundary */
    transition: all 0.3s ease;
}

.rv-google-summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.08);
}

.rv-google-excellent {
    font-size: 20px;
    font-weight: 800;
    color: #000b20;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.rv-google-stars {
    color: #ffb400;
    font-size: 22px;
    margin-bottom: 8px;
    display: flex;
    gap: 3px;
}

.rv-google-based {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 18px 0;
    font-weight: 500;
}

.rv-google-logo {
    display: flex;
    align-items: center;
    gap: 1px;
}

.rv-carousel-container {
    position: relative;
    padding: 0 35px; /* Shrunk padding to maximize visible space for 3 complete cards */
}

.rv-carousel-track {
    display: flex;
    gap: 16px; /* Optimized gap for 3 columns */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 16px 8px; /* High safety shadow clearance */
}

.rv-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.rv-review-card-clean {
    flex: 0 0 calc((100% - 32px) / 3); /* Fits exactly 3 complete cards at once! */
    width: calc((100% - 32px) / 3);
    min-width: 230px; /* Safe mobile baseline width */
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(108, 99, 255, 0.06);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 235px;
    position: relative; /* Faint quotes placement anchor */
}

.rv-review-card-clean::before {
    content: '“';
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 90px;
    font-family: Georgia, serif;
    color: rgba(108, 99, 255, 0.05); /* Soft premium faint quote icon */
    line-height: 1;
    pointer-events: none;
}

.rv-review-card-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.rv-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.rv-review-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rv-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    display: grid;
    place-items: center;
    text-transform: uppercase;
}

.rv-review-author-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2px 0;
}

.rv-review-time {
    font-size: 11px;
    color: #888888;
    display: block;
}

.rv-google-g-logo {
    display: flex;
    align-items: center;
}

.rv-review-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.rv-review-card-stars {
    color: #ffb400;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.rv-verified-badge {
    display: inline-flex;
    align-items: center;
}

.rv-review-card-text {
    font-size: 13.5px;
    color: #444444;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rv-read-more-link {
    font-size: 12.5px;
    color: #777777;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
    padding-top: 6px;
}

.rv-read-more-link:hover {
    color: #111111;
}

.rv-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10;
    color: #333333;
    font-size: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.rv-carousel-btn:hover {
    background: #f9f9f9;
    transform: translateY(-50%) scale(1.05);
}

.rv-carousel-btn.prev-btn {
    left: 0;
}

.rv-carousel-btn.next-btn {
    right: 0;
}

/* Premium bottom navigator controls */
.rv-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.rv-control-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(108, 99, 255, 0.15);
    color: #6C63FF;
    display: none; /* Hidden by default on desktop, using side floating buttons */
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.rv-control-arrow:hover {
    background: #6C63FF;
    color: #ffffff;
    border-color: #6C63FF;
    transform: scale(1.05);
}

.rv-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.rv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
}

.rv-dot:hover {
    background: rgba(108, 99, 255, 0.5);
    transform: scale(1.15);
}

.rv-dot.active {
    width: 20px;
    border-radius: 4px;
    background: #6C63FF;
    box-shadow: 0 2px 6px rgba(108, 99, 255, 0.2);
}

.rv-inquiry-band {
    background: #fff;
    padding: 70px 0 60px; /* Added bottom padding to sit comfortably above footer */
}

.rv-inquiry {
    width: min(900px, calc(100% - 36px));
    margin: 0 auto; /* Removed negative bottom margin to completely solve overlap */
    background: #111d31;
    color: #fff;
    border-radius: 16px; /* Smooth rounded corners for a premium card aesthetic */
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.rv-inquiry h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.rv-inquiry .rv-btn {
    width: 100%;
}

.rv-inquiry-info p,
.rv-inquiry-form p {
    color: #aeb9ca;
    font-size: 13px;
}

.rv-inquiry-form h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.rv-info-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #18263c;
    border-radius: 8px;
    padding: 16px;
    margin-top: 13px;
    color: #dbe6f5;
    font-weight: 700;
}

.rv-info-tile i {
    color: var(--rv-cyan);
    font-size: 18px;
}

.rv-map-tile {
    margin-top: 16px;
    min-height: 112px;
    border-radius: 8px;
    background: transparent !important; /* Removed background pattern as requested */
    border: 1px solid rgba(255, 255, 255, 0.12); /* Subtle premium outline */
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    color: #dbe6f5;
    font-weight: 800;
}

.rv-map-tile i {
    color: var(--rv-cyan);
    font-size: 28px;
    margin-bottom: 8px;
}

.rv-inquiry input,
.rv-inquiry textarea {
    background: #1b2a42;
    border-color: #2d405c;
    color: #fff;
    border-radius: 6px;
}

.rv-inquiry input::placeholder,
.rv-inquiry textarea::placeholder {
    color: #9ba8ba;
}

.rv-inquiry textarea {
    min-height: 110px;
}

.rv-inquiry-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.rv-inquiry-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    background: #1b2a42;
    color: #fff;
    font-weight: 800;
    padding: 12px;
    text-decoration: none;
}

.rv-inquiry-actions a:first-child {
    color: #13d56f;
}

.rv-inquiry-band + .main-footer,
.rv-inquiry + .main-footer,
body:has(.rv-inquiry) .main-footer {
    padding-top: 60px !important; /* Elegant normal top spacing since overlap is removed */
    background-size: cover;
}

.main-footer .container {
    max-width: 1180px;
}

.rv-detail-body {
    max-width: 1080px;
    margin: 40px auto 0;
    color: #263142;
    line-height: 1.8;
}

.rv-detail-body h2,
.rv-detail-body h3 {
    color: var(--rv-deep);
    font-weight: 900;
}

.rv-detail-hero {
    background: #020312;
    color: #fff;
    padding: 108px 0 86px;
    position: relative;
    overflow: hidden;
}

.rv-detail-hero::before {
    content: "";
    position: absolute;
    right: 28px;
    top: 18px;
    width: 34px;
    height: 34px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.rv-detail-hero h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.rv-detail-hero .breadcrumb {
    margin: 0;
}

.rv-detail-hero .breadcrumb,
.rv-detail-hero .breadcrumb a,
.rv-detail-hero .breadcrumb-item.active {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.rv-detail-hero .breadcrumb-item + .breadcrumb-item::before {
    color: var(--rv-cyan);
}

.rv-detail-content {
    background: #fff;
    padding: 14px 0 48px;
}

.rv-detail-content .container,
.rv-service-areas-slide3 .container {
    max-width: 1440px;
    width: 100%;
}

.rv-detail-grid {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.rv-detail-sidebar {
    background: transparent;
    padding: 0;
    margin-top: 140px;
    border: none;
    border-radius: 0;
    align-self: stretch; /* Stretch sidebar container to full height to enable sticky behavior */
}

.rv-sidebar-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
}

.rv-service-menu h2 {
    color: #fff;
    background: #050515;
    font-size: 22px;
    font-weight: 900;
    padding: 28px 32px;
    margin: 0;
}

.rv-service-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #777;
    text-decoration: none;
    font-weight: 700;
    padding: 22px 32px;
    border-bottom: 1px solid #ededed;
}

.rv-service-menu a:last-child {
    border-bottom: 0;
}

.rv-rating-card {
    padding: 32px 30px;
    text-align: center;
}

.rv-rating-main {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.rv-rating-main strong {
    color: #020312;
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
}

.rv-rating-main i {
    color: var(--rv-cyan);
    font-size: 40px;
}

.rv-rating-people {
    display: flex;
    justify-content: center;
    margin: 16px 0 8px;
}

.rv-rating-people img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

.rv-rating-card p {
    color: #777;
    margin-bottom: 22px;
}

.rv-rating-card > a {
    display: block;
    background: var(--rv-cyan);
    color: #001;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    padding: 20px;
}

.rv-question-card {
    padding: 32px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.rv-question-card h2 {
    color: var(--rv-deep);
    font-size: 23px;
    font-weight: 900;
    padding-bottom: 12px;
    margin-bottom: 18px;
    position: relative;
}

.rv-question-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 78px;
    height: 3px;
    background: var(--rv-cyan);
}

.rv-question-card p {
    color: #627080;
}

.rv-question-card a {
    display: block;
    border: 2px solid var(--rv-cyan);
    border-radius: 10px;
    color: #273343;
    text-decoration: none;
    font-weight: 800;
    padding: 14px 18px;
    margin-top: 12px;
}

.rv-detail-main {
    background: #ffffff;
    padding: 24px 24px 36px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
}

.rv-detail-image {
    border-radius: 16px;
    overflow: hidden;
}

.rv-detail-image img {
    width: 100%;
    aspect-ratio: 1.54 / 1;
    object-fit: cover;
    border-radius: 16px;
}

.rv-detail-main .rv-detail-body {
    margin-top: 42px;
    font-size: 15px;
    color: #566070;
}

.rv-detail-main .rv-detail-body h1,
.rv-detail-main .rv-detail-body h2,
.rv-detail-main .rv-detail-body h3 {
    color: #020312;
    font-size: clamp(28px, 3.3vw, 42px);
    line-height: 1.08;
    margin: 26px 0 14px;
}

.rv-service-areas-slide3 {
    padding: 48px 0 26px;
}

.rv-service-areas-box {
    max-width: 1080px;
    margin: auto;
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    border-radius: 16px;
    box-shadow: 0 20px 52px rgba(108, 99, 255, 0.35);
    padding: 42px;
}

.rv-service-areas-box h2 {
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 30px;
}

.rv-area-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 30px;
}

.rv-area-item {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.rv-area-item i {
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #02101f;
    font-size: 10px;
    margin-right: 8px;
}

@media (max-width: 1199px) {
    .rv-nav-container {
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .rv-main-header .navbar-brand {
        margin-right: 10px;
    }
    .rv-main-header .navbar-nav {
        gap: 2px;
    }
    .rv-main-header .nav-link,
    .rv-call-link {
        font-size: 13px !important;
        padding: 24px 6px !important;
    }

    .rv-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-detail-grid {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 24px;
    }

    .rv-detail-sidebar {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-top: 60px !important;
        align-self: stretch;
    }
}

@media (max-width: 991px) {
    .rv-main-header .main-menu {
        display: flex !important;       /* Keep visible so Call Now button is always shown */
        flex: 0 0 auto !important;
        align-items: center !important;
    }
    .rv-main-header .main-menu .nav-menu-wrapper {
        display: none !important;       /* Hide only the text links, not the button */
    }

    .rv-price-grid {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 24px;
        max-width: 100%;
        justify-content: center;
    }

    .rv-price-card.featured {
        transform: none;
    }

    .rv-testimonials-section {
        padding: 50px 0 !important;
    }

    .rv-testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .rv-testimonials-title {
        max-width: 100%;
    }

    .rv-testimonials-heart-strip {
        max-width: 100%;
    }

    .rv-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rv-carousel-track {
        padding: 16px 8px !important; /* Prevents visual card shadow clipping */
    }

    .rv-review-card-clean {
        flex: 0 0 85vw !important;
        width: 85vw !important;
        max-width: 300px !important;
        padding: 20px !important;
        border: 1px solid rgba(0,0,0,0.05) !important;
        background: #ffffff !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.04) !important;
    }

    .rv-google-summary-card {
        display: none !important;
    }

    .rv-topbar-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .rv-socials {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        border-radius: 0;
    }

    .rv-contact-strip {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        margin-left: 0;
        gap: 15px 24px;
        flex-wrap: wrap;
    }

    .rv-main-header .nav-link {
        font-size: 22px !important; /* Increased from 20px */
        padding: 11px 0 !important;
    }

    .rv-about-grid,
    .rv-why-grid,
    .rv-split,
    .rv-inquiry,
    .rv-reviews-row,
    .rv-detail-grid {
        grid-template-columns: 1fr;
    }

    .rv-detail-sidebar {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-top: 40px !important;
        align-self: auto !important; /* Disable grid stretch on mobile */
    }

    .rv-question-card {
        position: static !important; /* Reset sticky position when sidebar is stacked below content */
    }

    .rv-split.reverse .rv-split-media {
        order: 0;
    }

    .rv-split-wrap {
        padding: 36px 22px;
        margin-top: 35px;
    }

    .rv-team-grid,
    .rv-review-cards,
    .rv-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .rv-services-grid,
    .rv-why-cards,
    .rv-price-grid,
    .rv-stats,
    .rv-check-grid,
    .rv-area-grid {
        grid-template-columns: 1fr;
    }

    .rv-price-card.featured {
        transform: none;
    }

    .rv-carousel-container {
        padding: 0 10px;
    }

    .rv-carousel-btn {
        display: none;
    }

    .rv-inquiry {
        margin-bottom: 0 !important; /* Completely resolved mobile overlap */
    }

    .rv-hero-arrow {
        display: none;
    }

    .rv-section {
        padding: 42px 0;
    }
}

/* ==========================================================================
   PREMIUM MOBILE & TABLET VIEWPORT RESPONSIVE UPGRADES
   ========================================================================== */

/* 1. Custom Hamburger Button */
.rv-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #000b20;
    border: 2px solid #6C63FF;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 100001;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: border-color 0.25s ease;
}

.rv-hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background: #6C63FF;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
    transform-origin: center;
}

/* Animate into X when open */
.rv-hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
    background: #FF6584;
}
.rv-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.rv-hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
    background: #FF6584;
}

/* Hide Slicknav's own auto-generated toggle button */
.responsive-menu .slicknav_btn {
    display: none !important;
}

/* Slicknav dropdown nav items */

.responsive-menu .slicknav_nav {
    padding: 0 15px !important;
    list-style: none !important;
    margin: 0 !important;
}

.responsive-menu .slicknav_nav li a {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    padding: 14px 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.25s ease !important;
    border-left: 4px solid transparent !important;
    background: transparent !important;
    display: block !important;
    border-radius: 0 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.responsive-menu .slicknav_nav li a:hover,
.responsive-menu .slicknav_nav li a:focus {
    color: #6C63FF !important;
    background: rgba(108, 99, 255, 0.05) !important;
    border-left-color: #6C63FF !important;
    text-decoration: none !important;
}

/* Make Call Now button render as a premium full-width CTA in mobile slicknav */
.responsive-menu .slicknav_nav .rv-call-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 15px 20px !important;
    padding: 12px 24px !important;
    width: calc(100% - 40px) !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 14px rgba(108, 99, 255, 0.22) !important;
    box-sizing: border-box;
    text-transform: uppercase !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #6C63FF, #FF6584) !important;
}

.responsive-menu .slicknav_nav .rv-call-btn:hover,
.responsive-menu .slicknav_nav .rv-call-btn:focus {
    background: linear-gradient(135deg, #5A52E0, #e85a76) !important;
    color: #ffffff !important;
    transform: none !important;
}

/* 2. Collage & Stats Responsive Layouts (max-width: 991px) */
@media (max-width: 991px) {
    /* Hide the desktop menu collapse — but NOT rv-main-header (Call Now must stay visible) */
    .main-menu,
    .collapse.navbar-collapse {
        display: none !important;
    }
    /* Higher-specificity override: keep rv-main-header's menu wrapper alive for the Call Now btn */
    header.rv-main-header .collapse.navbar-collapse {
        display: flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        overflow: visible !important;
    }
    header.rv-main-header .collapse.navbar-collapse .nav-menu-wrapper {
        display: none !important;
    }

    .rv-collage {
        margin: 0 auto 36px !important;
        display: block !important;
        float: none !important;
    }
    
    .rv-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        row-gap: 40px !important; /* Generous gap between top & bottom rows */
        column-gap: 24px !important;
        margin: 40px auto !important;
        width: calc(100% - 32px) !important; /* Ensures beautiful left and right margins on mobile! */
        border-radius: 16px !important; /* Matches desktop rounded corners */
        padding: 50px 24px 60px !important; /* Large, perfectly balanced symmetric breathing space */
    }
    
    .rv-price-card {
        padding: 42px 28px !important; /* Generous, premium padding for mobile pricing cards */
    }
    
    .rv-price-card h3 {
        font-size: 24px !important; /* Extremely readable and bold plan heading */
        margin-bottom: 14px !important; /* Elegant spacing above the price */
        line-height: 1.3 !important;
    }
    
    .rv-price {
        font-size: clamp(34px, 6vw, 42px) !important;
        margin: 0 0 24px !important; /* Clear spacing transition to features list */
        line-height: 1.1 !important;
    }

    .rv-carousel-container {
        padding: 0 10px !important;
    }
    
    .rv-carousel-btn {
        display: none !important; /* Hide navigation arrows on touch/mobile viewports */
    }
    
    .rv-google-summary-card {
        display: none !important;
    }

    .rv-carousel-controls .rv-control-arrow {
        display: grid !important; /* Show bottom chevrons flanking the dots on mobile */
    }
}

/* 3. Smooth Grid Collapsing for Tablets (max-width: 767px) */
@media (max-width: 767px) {
    .rv-services-grid,
    .rv-why-cards,
    .rv-area-grid {
        grid-template-columns: 1fr !important; /* Force 1 column for squeezed grids */
        gap: 24px !important;
    }
    
    /* Kept .rv-team-grid at 2 columns per row as explicitly requested */
    .rv-team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    .rv-collage-small {
        border-width: 6px !important;
    }

    .rv-years {
        width: 90px !important;
        height: 90px !important;
        font-size: 11px !important;
        top: 8% !important;
        right: 8% !important;
    }

    .rv-years strong {
        font-size: 28px !important;
    }
}

/* 4. Very Small Mobile Viewports (max-width: 480px) */
@media (max-width: 480px) {
    .rv-form-card {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .rv-stats {
        grid-template-columns: 1fr !important;
        width: calc(100% - 32px) !important;
        padding: 46px 20px 52px !important;
    }
    
    .rv-stat strong {
        font-size: 28px !important;
    }
    
    .rv-inquiry {
        padding: 24px 16px !important;
    }
    
    .rv-price-card {
        padding: 36px 20px !important; /* Perfect visual spacing for narrow viewports */
    }
}

/* 5. Mobile Menu Toggle — responsive-menu dropdown panel */
.responsive-menu {
    position: relative;
    z-index: 999999;
    width: 100%;
}

.responsive-menu .slicknav_menu {
    background: #0F0F1A;
    border-top: 3px solid #6C63FF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 8px 0 16px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 999999;
}

/* Slicknav marks closed nav with this class + el.hide() */
.responsive-menu .slicknav_nav.slicknav_hidden {
    display: none !important;
}

/* 6. Mobile Sticky Split Call/WhatsApp CTA Footer Bar */
.rv-mobile-footer-cta {
    display: none; /* Hidden on desktop by default */
}

@media (max-width: 991px) {
    /* Hide the floating circular FABs to prevent cluttered layouts */
    .div-call,
    .div-whatsapp {
        display: none !important;
    }

    /* Force body padding to avoid content cutoff at the bottom */
    body {
        padding-bottom: 52px !important;
    }

    /* Display sticky split CTA bar */
    .rv-mobile-footer-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 52px;
        display: flex;
        z-index: 999999 !important;
        box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
        box-sizing: border-box;
    }

    /* Call CTA on Left */
    .rv-cta-call {
        flex: 1;
        background: #1d235c; /* Premium deep blue/purple color matching reference image */
        color: #ffffff !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none !important;
        transition: background 0.25s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
    .rv-cta-call:hover, .rv-cta-call:active {
        background: #13173d;
    }

    /* WhatsApp CTA on Right */
    .rv-cta-whatsapp {
        flex: 1;
        background: #25d366; /* Standard vibrant WhatsApp green theme backdrop */
        color: #ffffff !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none !important;
        transition: background 0.25s ease;
    }
    .rv-cta-whatsapp:hover, .rv-cta-whatsapp:active {
        background: #1ebea5;
    }

    /* Icons size */
    .rv-mobile-footer-cta i {
        font-size: 18px;
    }
}

/* ==========================================================================
   NAVBAR CALL NOW BUTTON — ALWAYS-VISIBLE RESPONSIVE FIX
   Below 860px: hide nav text links, show hamburger, KEEP Call Now button.
   Below 768px: compact button size.
   ========================================================================== */

/* Show hamburger below 860px */
@media (max-width: 860px) {
    .rv-hamburger {
        display: flex !important;
    }

    /* Keep the collapse container visible so .header-btn (Call Now) stays */
    .rv-main-header .main-menu,
    .rv-main-header .collapse.navbar-collapse {
        display: flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        overflow: visible !important;
        min-width: 0;
        flex-grow: 0 !important;
    }

    /* Hide the nav text links, keep the Call Now button */
    .rv-main-header .main-menu .nav-menu-wrapper {
        display: none !important;
    }

    .rv-main-header .header-btn {
        margin-left: 8px;
    }
}

/* Compact Call Now button on small screens */
@media (max-width: 768px) {
    .rv-call-btn {
        font-size: 13px !important;
        padding: 8px 14px !important;
        letter-spacing: 0 !important;
    }
}
