/* =========================
   Global Reset & Base
   ========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #e5e7eb;

    /* 🔥 Seductive nightlife gradient */
    background: linear-gradient(145deg, #0b0a13 0%, #1a0f32 38%, #250b3f 65%, #3b0a28 100%);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 🔥 Neon glow accents without repetition */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(circle at 22% 30%, rgba(236, 72, 153, 0.26), transparent 60%),
        radial-gradient(circle at 78% 82%, rgba(124, 58, 237, 0.22), transparent 60%),
        radial-gradient(circle at 50% 10%, rgba(255, 199, 255, 0.09), transparent 60%);
}



/* Simple container */
.rd-container {
    width: min(1120px, 94%);
    margin-inline: auto;
}

/* Remove default link underline & color */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Soft CTA highlight in long-form content blocks */
.rd-soft-cta {
    margin-top: 22px;
    padding: 12px 16px;
    border-left: 3px solid #22c55e;
    font-size: 0.96rem;
    opacity: 0.92;
}


/* =========================
   HEADER
   ========================= */

/* Sticky, semi-transparent header */
.rd-header {
    position: fixed;          /* was: sticky */
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.96),
        rgba(15, 23, 42, 0.82)
    );
    border-bottom: 1px solid rgba(148, 163, 253, 0.45);
}

/* Top & bottom rows */
.rd-header-top,
.rd-header-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rd-header-top {
    justify-content: space-between;
    padding-block: 10px;
}

.rd-header-bottom {
    padding-block: 8px 10px;
    border-top: 1px solid rgba(30, 64, 175, 0.65);
    font-size: 0.86rem;

    /* center alignment */
    justify-content: center;
    text-align: center;
}

.rd-city-label {
    margin-right: 10px;
    text-align: center;
}

/* Center the select container */
.rd-city-select-wrap {
    flex: unset;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
}


/* =========================
   Logo
   ========================= */

.rd-logo a {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.rd-logo-main {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f9fafb;
}

.rd-logo-sub {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cbd5f5;
    opacity: 0.85;
}

/* =========================
   Nav
   ========================= */

.rd-nav {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.rd-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.rd-nav a {
    position: relative;
    display: inline-block;
    font-size: 0.88rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #e5e7eb;
    padding-block: 4px;
    opacity: 0.9;
}

.rd-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #fb7185, #a855f7);
    transition: width 0.18s ease-out;
}

.rd-nav a:hover::after {
    width: 100%;
}

/* =========================
   NAV: DESKTOP DROPDOWN
========================= */

.rd-nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

.rd-nav a,
.rd-submenu-toggle {
    font-size: 0.92rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #e5e7eb;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
}

/* subtle underline on hover */
.rd-nav a::after,
.rd-submenu-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #f97316, #ec4899);
    transition: width 0.25s ease;
}

.rd-nav a:hover::after,
.rd-submenu-toggle:hover::after {
    width: 100%;
}

/* wrapper for item with submenu */
.rd-has-submenu {
    position: relative;
}

/* dropdown itself (desktop) */
@media (min-width: 769px) {
    .rd-submenu {
        position: absolute;
        top: 140%;
        left: 0;
        min-width: 220px;
        padding: 10px 0;
        margin: 0;

        list-style: none;
        background:
            radial-gradient(circle at top, rgba(129,140,248,0.25), transparent 55%),
            rgba(5,10,25,0.96);
        border-radius: 14px;
        box-shadow:
            0 18px 45px rgba(0,0,0,0.85),
            0 0 0 1px rgba(148,163,253,0.30);

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.18s ease-out,
                    transform 0.18s ease-out,
                    visibility 0.18s ease-out;
        z-index: 999;
    }

    .rd-has-submenu:hover .rd-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .rd-submenu li a {
        display: block;
        padding: 9px 18px;
        font-size: 0.82rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #e5e7eb;
        text-decoration: none;
        white-space: nowrap;
    }

    .rd-submenu li a:hover {
        background: rgba(148,163,253,0.20);
        color: #ffffff;
    }
}

/* =========================
   NAV: MOBILE SUBMENU
========================= */

@media (max-width: 768px) {

    .rd-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .rd-nav li {
        width: 100%;
    }

    .rd-nav a,
    .rd-submenu-toggle {
        width: 100%;
        padding: 14px 0;
    }

    /* parent item */
    .rd-has-submenu {
        position: relative;
    }

    /* Profiles button look */
    .rd-submenu-toggle {
        text-align: left;
        font-size: 0.95rem;
        padding-right: 26px;
    }

    /* little chevron */
    .rd-submenu-toggle::before {
        content: "▾";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.7rem;
        opacity: 0.7;
    }

    /* submenu container (mobile accordion) */
    .rd-submenu {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        display: none;

        background: rgba(8, 11, 31, 0.96);
        border-left: 2px solid rgba(129,140,248,0.65);
        border-radius: 0 0 14px 14px;
        overflow: hidden;
    }

    .rd-submenu li a {
        display: block;
        padding: 10px 16px 10px 20px;
        font-size: 0.90rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #cbd5e1;
    }

    .rd-submenu li a:hover {
        background: rgba(129,140,248,0.25);
        color: #ffffff;
    }

    .rd-submenu.open {
        display: block;
        animation: rdSubmenuSlide 0.24s ease-out forwards;
    }

    @keyframes rdSubmenuSlide {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* =========================
   City dropdown row
   ========================= */

.rd-city-label {
    color: #cbd5f5;
    opacity: 0.9;
    white-space: nowrap;
    font-size: 0.85rem;
}

.rd-city-select-wrap {
    flex: 1;
    max-width: 360px;
    position: relative;
}

#rd-city-select {
    width: 100%;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 253, 0.75);
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    font-size: 0.86rem;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 32px;
}

/* Fake dropdown arrow */
.rd-city-select-wrap::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #9ca3af;
    pointer-events: none;
}

/* Focus states */
#rd-city-select:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.4);
}

/* =========================
   Mobile menu toggle
   ========================= */

.rd-nav-toggle {
    display: none;
    width: 34px;
    height: 26px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.rd-nav-toggle span {
    height: 2px;
    width: 100%;
    background: #f9fafb;
    border-radius: 999px;
}

/* Rotate/transform when open (optional, subtle) */
.rd-header.rd-nav-open .rd-nav-toggle span:nth-child(1) {
    transform: translateY(3.5px) rotate(40deg);
}
.rd-header.rd-nav-open .rd-nav-toggle span:nth-child(2) {
    opacity: 0;
}
.rd-header.rd-nav-open .rd-nav-toggle span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-40deg);
}

/* =========================
   Responsive behaviour
   ========================= */

@media (max-width: 820px) {
    .rd-header-top {
        padding-block: 8px;
    }

    /* Hide nav by default on mobile */
    .rd-nav {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        background: rgba(15, 23, 42, 0.98);
        border-bottom: 1px solid rgba(148, 163, 253, 0.45);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        justify-content: center;
        transition: all 0.18s ease-out;
    }

    .rd-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 10px 0 12px;
        gap: 10px;
    }

    /* When nav is open */
    .rd-header.rd-nav-open .rd-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .rd-nav-toggle {
        display: inline-flex;
    }

    .rd-header-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        text-align: center;
    }

    .rd-city-select-wrap {
        max-width: 100%;
    }
}

/* Just to avoid page hugging the header when you add content later */
main {
    padding-top: 100px;
}

/* =========================
   HERO SECTION
   ========================= */

.rd-hero {
    padding: 38px 0 52px;
}

.rd-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

/* Left content */
.rd-hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fca5a5;
    margin: 0 0 8px;
}

.rd-hero-title {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    line-height: 1.25;
    margin: 0 0 12px;
    color: #f9fafb;
}

.rd-hero-title span {
    color: #f97316;
    text-shadow: 0 0 18px rgba(248, 250, 252, 0.18);
}

.rd-hero-text {
    margin: 0 0 18px;
    font-size: 0.98rem;
    color: #e5e7eb;
    max-width: 40rem;
}

.rd-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

/* Buttons */
.rd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.16s ease-out;
    text-decoration: none;
    white-space: nowrap;
}

.rd-btn-primary {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-color: transparent;
    color: #0b1120;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.7),
        0 0 22px rgba(248, 250, 252, 0.16);
}

.rd-btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.rd-btn-outline {
    background: transparent;
    border-color: rgba(248, 250, 252, 0.45);
    color: #e5e7eb;
}

.rd-btn-outline:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: #a855f7;
}

.rd-hero-note {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
}

/* Right card */
.rd-hero-right {
    display: flex;
    justify-content: flex-end;
}

.rd-hero-card {
    width: 100%;
    max-width: 320px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 0% 0%, rgba(248, 113, 113, 0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.18), transparent 55%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 253, 0.55);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.8),
        0 0 35px rgba(56, 189, 248, 0.18);
}

.rd-hero-card-tag {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fbbf24;
    margin: 0 0 8px;
}

.rd-hero-card-title {
    font-size: 1.05rem;
    color: #e5e7eb;
    margin: 0 0 10px;
}

.rd-hero-card-list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.rd-hero-card-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.rd-hero-card-list li::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: 0;
    color: #22c55e;
}

.rd-hero-card-foot {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 0;
}

/* Small helper note line under hero CTAs */
.rd-hero-note-links {
    margin-top: 6px;
    font-size: 0.78rem;
}
.rd-hero-note-links a {
    color: #e5e7eb;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}
.rd-hero-note-links a:hover {
    text-decoration-style: solid;
}


/* =========================
   Hero – bullet list under intro
   ========================= */

.rd-hero-bullets {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.rd-hero-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.rd-hero-bullets li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #22c55e;
    font-size: 1rem;
}


/* =========================
   Hero responsive
   ========================= */

@media (max-width: 900px) {
    .rd-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    /* center card when it becomes its own row */
    .rd-hero-right {
        justify-content: center;
    }

    .rd-hero {
        padding-top: 100px;
    }
}

@media (max-width: 600px) {
    .rd-hero-title {
        font-size: 1.7rem;
    }

    .rd-hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .rd-btn {
        width: 100%;
    }
}

/* Center Hero Card on Mobile */
@media (max-width: 768px) {
    .rd-hero-card {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================
   PROFILE GRID SECTION
   ========================= */

.rd-profiles {
    padding: 24px 0 48px;
}

.rd-profiles-heading {
    font-size: 1.4rem;
    margin: 0 0 8px;
    color: #f9fafb;
}

.rd-profiles-intro {
    margin: 0 0 20px;
    font-size: 0.95rem;
    color: #d1d5db;
    max-width: 46rem;
}

.rd-profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rd-profile-card {
    position: relative;
    padding: 11px 11px 12px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 0% 0%, rgba(248, 113, 113, 0.12), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.14), transparent 55%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 253, 0.6);
    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.7),
        0 0 26px rgba(56, 189, 248, 0.16);
    overflow: hidden;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.rd-profile-card:hover {
    transform: translateY(-3px);
    border-color: #f97316;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.8),
        0 0 32px rgba(249, 115, 22, 0.28);
}

.rd-profile-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #020617;
}

.rd-profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease-out;
}

.rd-profile-card:hover .rd-profile-img-wrap img {
    transform: scale(1.04);
}

.rd-profile-body {
    padding-top: 9px;
}

.rd-profile-name {
    margin: 0 0 4px;
    font-size: 0.98rem;
    color: #f9fafb;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 6px;
}

.rd-profile-name span {
    font-size: 0.85rem;
    color: #e5e7eb;
    opacity: 0.9;
}

.rd-profile-location {
    margin: 0 0 6px;
    font-size: 0.82rem;
    color: #a5b4fc;
}

.rd-profile-location a {
    color: #a5b4fc;
    text-decoration: none;
}

.rd-profile-location a:hover {
    text-decoration: underline;
}

.rd-profile-text {
    margin: 0;
    font-size: 0.83rem;
    color: #d1d5db;
    line-height: 1.5;
}

/* Responsive grid */
@media (max-width: 1024px) {
    .rd-profiles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .rd-profiles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .rd-profiles-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rd-profile-card {
        max-width: 360px;
        margin-inline: auto;
    }

    .rd-profiles-heading {
        text-align: center;
    }

    .rd-profiles-intro {
        text-align: center;
        margin-inline: auto;
    }
}

/* Image wrapper – add position for badge */
.rd-profile-img-wrap {
    position: relative;           /* NEW */
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #020617;
}

/* Premium badge */
.rd-profile-badge {
    position: absolute;
    top: 10px;
    left: -36px;
    padding: 4px 38px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: #0b1120;
    font-weight: 600;
    transform: rotate(-45deg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    opacity: 0.96;
}

/* =========================
   Profile Card Action Buttons
   ========================= */

.rd-profile-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.rd-call-btn,
.rd-wa-btn {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 999px;
    text-transform: uppercase;
    transition: all 0.16s ease-out;
    color: #fff;
}

.rd-call-btn {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border: none;
}

.rd-call-btn:hover {
    filter: brightness(1.1);
}

.rd-wa-btn {
    background: #25d366;
    border: none;
}

.rd-wa-btn:hover {
    filter: brightness(1.12);
}

/* Mobile improvements */
@media(max-width: 600px) {
    .rd-profile-actions {
        flex-direction: column;
    }
}

/* =========================
   Inline SEO Anchor Styling
   ========================= */

/* Default anchor style inside content */
.rd-content-block a {
    color: #f97316; /* warm orange highlight */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s ease;
    border-bottom: 1px dashed rgba(249, 115, 22, 0.35);
}

/* Hover effect */
.rd-content-block a:hover {
    color: #ec4899; /* sexy pink transition */
    border-bottom-color: #ec4899;
    text-shadow: 0 0 6px rgba(236, 72, 153, 0.45);
    filter: brightness(1.12);
}

.rd-verified {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

/* =========================
   PRICING SECTION
========================= */

.rd-pricing {
    padding: 56px 0 70px;
}

.rd-pricing-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 6px;
    color: #f9fafb;
    text-align: center;
}

.rd-pricing-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: 0.98rem;
    color: #e5e7eb;
    opacity: 0.9;
}

/* -------------------------
   GRID / DESKTOP
-------------------------- */

.rd-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.rd-price-card {
    position: relative;
    border-radius: 24px;
    padding: 32px 24px 26px;
    background:
        radial-gradient(circle at 0% 0%, rgba(248, 113, 113, 0.18), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.18), transparent 50%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 253, 0.55);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.88),
        0 0 35px rgba(56, 189, 248, 0.25);
    overflow: visible;
}

/* Popular Card Highlight */
.rd-price-popular {
    border-color: rgba(251, 191, 36, 0.9)!important;
    box-shadow:
        0 24px 55px rgba(251, 191, 36, 0.45),
        0 0 40px rgba(251, 191, 36, 0.35)!important;
}

/* -------------------------
   RIBBONS
-------------------------- */

.rd-price-ribbon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .12em;
    color: #022c22;
    z-index: 2;
}

/* Match your classes */
.rd-price-ribbon.econ { background: #4ade80; }
.rd-price-ribbon.pop { background: #22c55e; }
.rd-price-ribbon.res { background: #a3e635; }

/* -------------------------
   TEXT & PRICE
-------------------------- */

.rd-price-title {
    color: #f9fafb;
    margin: 20px 0 6px;
    font-size: 1.22rem;
    font-weight: 600;
}

.rd-price-amount {
    color: #f97316;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 0 26px rgba(249, 115, 22, 0.45);
}

/* Feature List */
.rd-price-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    color: #e5e7eb;
    font-size: 0.94rem;
}

.rd-price-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 7px;
}

.rd-price-features li::before {
    content: "✔";
    position: absolute;
    left: 2px;
    top: 0;
    color: #f97316;
    font-size: 0.85rem;
}

/* -------------------------
   BUTTONS
-------------------------- */

.rd-price-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rd-price-call,
.rd-price-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: .18s ease;
}

/* Call button */
.rd-price-call {
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: #04111b;
    box-shadow: 0 8px 22px rgba(236, 72, 153, 0.45);
}
.rd-price-call:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

/* WhatsApp */
.rd-price-wa {
    background: #22c55e;
    color: #022c22;
    box-shadow: 0 8px 22px rgba(34, 197, 94, 0.45);
}
.rd-price-wa:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* -------------------------
   MOBILE – HORIZONTAL SCROLL
-------------------------- */

@media (max-width: 768px) {
    .rd-pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 12px 22px;
    }

    .rd-price-card {
        flex: 0 0 calc(100% - 24px);
        scroll-snap-align: center;
    }

    /* Pull ribbons inside card to avoid cut-off on small screens */
    .rd-price-ribbon {
        top: 10px;
        transform: none;
        left: 18px;
    }

    .rd-pricing-grid::-webkit-scrollbar {
        display: none;
    }
}

/* =====================
   FAQ DESIGN STYLES
===================== */

.rd-faq {
    padding: 60px 0;
}

.rd-faq-heading {
    text-align: center;
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    color: #f9fafb;
    margin-bottom: 10px;
}

.rd-faq-sub {
    text-align: center;
    font-size: 1rem;
    color: #cbd5f5;
    max-width: 650px;
    margin: 0 auto 32px;
}

.rd-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rd-faq-item {
    background: rgba(15, 23, 42, 0.75);
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 253, 0.35);
    overflow: hidden;
}

.rd-faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: rgba(30, 41, 59, 0.65);
    color: #f8fafc;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
}

.rd-faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.4rem;
    transition: transform 0.2s ease;
}

.rd-faq-item.active .rd-faq-question::after {
    transform: rotate(45deg);
}

.rd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
    padding: 0 20px;
}

.rd-faq-item.active .rd-faq-answer {
    max-height: 500px;
    padding-bottom: 16px;
}

.rd-faq-answer p {
    margin: 14px 0 0;
    color: #e5e7eb;
    line-height: 1.6;
}

/* =========================
   TESTIMONIALS SECTION
   ========================= */

.rd-testimonials {
    padding: 52px 0 60px;
}

.rd-testimonials-heading {
    font-size: 1.7rem;
    text-align: center;
    margin: 0 0 10px;
    color: #f9fafb;
}

.rd-testimonials-sub {
    max-width: 720px;
    margin: 0 auto 26px;
    text-align: center;
    font-size: 0.98rem;
    color: #e5e7eb;
}

/* Desktop / default layout */
.rd-testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

/* Testimonial card */
.rd-testimonial-card {
    position: relative;
    padding: 18px 16px 16px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 0% 0%, rgba(248, 113, 113, 0.12), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.11), transparent 60%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 253, 0.55);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.75),
        0 0 26px rgba(56, 189, 248, 0.15);
    overflow: hidden;
}

.rd-testimonial-quote {
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 3rem;
    color: rgba(248, 250, 252, 0.08);
    pointer-events: none;
}

.rd-testimonial-text {
    margin: 12px 0 16px;
    font-size: 0.9rem;
    color: #e5e7eb;
    line-height: 1.7;
}

.rd-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.rd-testimonial-name {
    font-weight: 600;
    color: #e5e7eb;
}

.rd-testimonial-location {
    font-size: 0.78rem;
}

.rd-testimonial-rating {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #facc15;
}

/* =========================
   TESTIMONIALS
========================= */

.rd-testimonials {
    padding: 52px 0 60px;
}

.rd-testimonials-heading {
    font-size: 1.8rem;
    color: #f9fafb;
    margin: 0 0 8px;
    text-align: center;
}

.rd-testimonials-sub {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 0.98rem;
    color: #e5e7eb;
}

/* Desktop / tablet layout */
.rd-testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.rd-testimonial-card {
    position: relative;
    padding: 20px 20px 18px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 0% 0%, rgba(248, 113, 113, 0.12), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.12), transparent 55%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 253, 0.55);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.75),
        0 0 26px rgba(56, 189, 248, 0.14);
    color: #e5e7eb;
}

.rd-testimonial-quote {
    font-size: 3rem;               /* Bigger and bold */
    line-height: 1;
    color: rgba(148, 163, 253, 0.9);
    margin-bottom: 10px;
    display: block;
    font-weight: 300;
    text-shadow: 0 0 12px rgba(148, 163, 253, 0.35);
}


.rd-testimonial-text {
    margin: 0 0 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e5e7eb;
    /* IMPORTANT: always wrap */
    white-space: normal;
}

.rd-testimonial-name {
    font-weight: 600;
    margin: 0 0 2px;
}

.rd-testimonial-meta {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0 0 10px;
}

.rd-testimonial-stars {
    color: #facc15;
    font-size: 0.9rem;
}

/* tablet */
@media (max-width: 1024px) {
    .rd-testimonials-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* MOBILE – horizontal swipe + force multi-line text */
@media (max-width: 768px) {
    .rd-testimonials {
        padding-top: 40px;
    }

    .rd-testimonials-row {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 4px 2px 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        /* Make sure children can wrap */
        white-space: normal;
    }

    .rd-testimonial-card {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: center;
    }

    /* HARD OVERRIDE: nothing inside card is allowed to be single-line */
    .rd-testimonial-card,
    .rd-testimonial-text,
    .rd-testimonial-card * {
        white-space: normal !important;
    }

    .rd-testimonials-row::-webkit-scrollbar {
        height: 4px;
    }
    .rd-testimonials-row::-webkit-scrollbar-track {
        background: transparent;
    }
    .rd-testimonials-row::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 253, 0.55);
        border-radius: 999px;
    }

    .rd-testimonials-heading {
        font-size: 1.4rem;
    }

    .rd-testimonials-sub {
        font-size: 0.9rem;
    }
}

/* =====================
   TAGS SECTION
===================== */

.rd-tags {
    padding: 56px 0 70px;
}

.rd-tags-heading {
    font-size: 1.8rem;
    color: #f9fafb;
    margin: 0 0 10px;
    text-align: center;
}

.rd-tags-sub {
    max-width: 700px;
    margin: 0 auto 26px;
    text-align: center;
    font-size: 0.98rem;
    color: #e5e7eb;
}

.rd-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.rd-tag {
    padding: 10px 22px;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.55);

    /* NEON GLOW */
    box-shadow:
        0 0 12px rgba(168, 85, 247, 0.6),
        inset 0 0 18px rgba(59, 130, 246, 0.35);

    transition: all 0.18s ease-out;
}

.rd-tag:hover {
    background: rgba(30, 41, 59, 0.95);
    color: #ffffff;
    border-color: #f97316;
    box-shadow:
        0 0 16px rgba(249, 115, 22, 0.75),
        inset 0 0 20px rgba(232, 121, 249, 0.42);
    transform: translateY(-2px);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .rd-tags-heading {
        font-size: 1.4rem;
    }

    .rd-tag {
        font-size: 0.82rem;
        padding: 8px 18px;
    }
}

/* =====================
   OTHER CITY BUTTONS
===================== */

.rd-cities-btn {
    padding: 60px 0 70px;
    border-top: 1px solid rgba(148, 163, 253, 0.25);
}

.rd-cities-btn-heading {
    text-align: center;
    font-size: 1.8rem;
    color: #f9fafb;
    margin: 0 0 8px;
}

.rd-cities-btn-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 26px;
    color: #e5e7eb;
    font-size: 0.98rem;
}

.rd-cities-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.rd-city-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #fff;

    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.55);
    box-shadow:
        0 0 12px rgba(168, 85, 247, 0.5),
        inset 0 0 18px rgba(59, 130, 246, 0.35);
    transition: all 0.18s ease-out;
}

.rd-city-btn:hover {
    transform: translateY(-2px);
    border-color: #f97316;
    box-shadow:
        0 0 16px rgba(249, 115, 22, 0.75),
        inset 0 0 20px rgba(232, 121, 249, 0.42);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .rd-city-btn {
        font-size: 0.82rem;
        padding: 9px 18px;
    }
}

/* =========================
   Floating Bottom CTA – Dark Premium
========================= */

.rd-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    display: flex;
    gap: 0;
    padding: 10px 10px 12px;
    box-sizing: border-box;

    background: radial-gradient(circle at top, rgba(148,163,253,0.18), transparent 55%),
                rgba(3,7,18,0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(148,163,253,0.35);
}

/* Each button segment */
.rd-cta-btn {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: #e5e7eb;

    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148,163,253,0.35);

    background: radial-gradient(circle at top left, rgba(55,65,81,0.7), transparent 60%),
                radial-gradient(circle at bottom right, rgba(15,23,42,0.9), #020617);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.85),
        0 0 18px rgba(15,23,42,0.9);

    transition: transform 0.18s ease-out,
                box-shadow 0.18s ease-out,
                border-color 0.18s ease-out;
}

/* Slight separation between two halves */
.rd-cta-btn + .rd-cta-btn {
    margin-left: 8px;
}

/* Light sweep highlight */
.rd-cta-btn::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -120%;
    width: 220%;
    height: 180%;
    background: linear-gradient(120deg,
                transparent,
                rgba(255,255,255,0.16),
                transparent);
    opacity: 0;
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

/* Hover effects */
.rd-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 40px rgba(0,0,0,0.95),
        0 0 28px rgba(129,140,248,0.45);
    border-color: rgba(196,181,253,0.8);
}

.rd-cta-btn:hover::before {
    left: 0%;
    opacity: 1;
}

/* Icon circle */
.rd-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 14px rgba(15,23,42,0.9);
    position: relative;
    overflow: hidden;
}

/* ===== WhatsApp icon – pure CSS logo (no image) ===== */
.rd-cta-icon-wa {
    background: #25D366;           /* WhatsApp green */
    border: none;
}

.rd-cta-icon-wa svg {
    width: 22px;
    height: 22px;
    display: block;
}


/* Call icon styling */
.rd-cta-icon-call {
    background: radial-gradient(circle at 30% 0%, #fb7185, #be123c);
    color: #fff1f2;
    border: 1px solid rgba(248,113,113,0.9);
    font-size: 1rem;
}

/* Text area */
.rd-cta-main,
.rd-cta-sub {
    display: block;
}

.rd-cta-main {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rd-cta-sub {
    font-size: 0.78rem;
    opacity: 0.78;
}

/* Color accents per button */
.rd-cta-wa .rd-cta-main {
    color: #bbf7d0;
}

.rd-cta-call .rd-cta-main {
    color: #fecaca;
}

/* Mobile spacing so content doesn't sit under CTA */
@media (max-width: 768px) {
    body {
        padding-bottom: 90px;
    }

    .rd-cta-btn {
        padding: 12px 0;
        border-radius: 10px;
        flex-direction: row;
        justify-content: center;
        gap: 8px;

        /* ~5–10% transparency look */
        background: rgba(15, 23, 42, 0.88) !important;

        border: 1px solid rgba(255,255,255,0.18);
        box-shadow: 0 4px 16px rgba(0,0,0,0.50);
    }

    .rd-bottom-cta {
        background: transparent !important;
        padding: 6px 6px 10px;
        border-top: none;
        backdrop-filter: none;
    }

    .rd-cta-btn:hover {
        box-shadow: 0 0 22px rgba(255,255,255,0.18);
        transform: scale(1.03);
    }

    /* Mobile: only main label (WHATSAPP / CALL NOW) */
    .rd-cta-sub { display: none !important; }

    .rd-cta-main {
        font-size: 0.95rem !important;
        letter-spacing: 0.06em;
        font-weight: 600;
    }

    .rd-cta-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}

/* Desktop – a bit more compact text */
@media (min-width: 769px) {
    body {
        padding-bottom: 80px;
    }

    .rd-cta-main {
        font-size: 0.88rem;
    }

    .rd-cta-sub {
        font-size: 0.76rem;
    }
}

.rd-cta-icon-call {
    background: radial-gradient(circle at 30% 0%, #fb7185, #be123c);
    color: #fff1f2;
    border: 1px solid rgba(248,113,113,0.9);
    font-size: 1rem;
    position: relative;          /* make pseudo-element position correctly */
}

/* add phone glyph inside the red circle */
.rd-cta-icon-call::before {
    content: "📞";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-size: 1.05rem;
}

/* =========================
   Footer
========================= */

.rd-footer {
    margin-top: 40px;
    padding: 40px 0 26px;
    background:
        radial-gradient(1000px 600px at 10% 0%, rgba(129,140,248,0.18), transparent),
        radial-gradient(900px 500px at 100% 100%, rgba(248,113,113,0.18), transparent),
        #020617;
    border-top: 1px solid rgba(148,163,253,0.45);
    box-shadow: 0 -24px 60px rgba(0,0,0,0.85);
}

.rd-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 26px;
}

/* Brand block */
.rd-footer-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.rd-footer-logo-main {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f9fafb;
}

.rd-footer-logo-sub {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c7d2fe;
    opacity: 0.9;
}

.rd-footer-text {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin: 0 0 14px;
    max-width: 30rem;
}

/* Pills */
.rd-footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.rd-footer-pill {
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(129,140,248,0.5);
    background: radial-gradient(circle at 0% 0%, rgba(56,189,248,0.2), transparent 55%),
                rgba(15,23,42,0.9);
    color: #e5e7eb;
    white-space: nowrap;
}

/* Contact buttons */
.rd-footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rd-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.18s ease-out;
    white-space: nowrap;
}

.rd-footer-cta-call {
    background: linear-gradient(135deg, #fb7185, #ec4899);
    color: #0b1120;
    box-shadow: 0 12px 26px rgba(0,0,0,0.85);
}

.rd-footer-cta-wa {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #022c16;
    box-shadow: 0 12px 26px rgba(0,0,0,0.85);
}

.rd-footer-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.95);
}

/* Columns */
.rd-footer-heading {
    font-size: 0.96rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c7d2fe;
    margin: 0 0 10px;
}

.rd-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rd-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #e5e7eb;
    opacity: 0.92;
    padding-block: 3px;
    text-decoration: none;
    position: relative;
}

.rd-footer-link::before {
    content: "•";
    font-size: 0.9rem;
    color: #a855f7;
    transform: translateY(-1px);
}

.rd-footer-link:hover {
    color: #bfdbfe;
}

/* Info text */
.rd-footer-small {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0 0 8px;
}

/* Bottom strip */
.rd-footer-bottom {
    border-top: 1px solid rgba(31,41,55,0.9);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rd-footer-copy {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 0;
}

.rd-footer-meta {
    font-size: 0.76rem;
    color: #6b7280;
    margin: 0;
}

/* Responsive footer */
@media (max-width: 900px) {
    .rd-footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .rd-footer-contact {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .rd-footer {
        padding-top: 32px;
    }

    .rd-footer-contact {
        flex-direction: column;
        align-items: stretch;
    }

    .rd-footer-cta {
        justify-content: center;
        width: 100%;
    }

    .rd-footer-text {
        font-size: 0.86rem;
    }

    .rd-footer-pills {
        gap: 6px;
    }
}




