/* =========================================================
   Rajshahi Rental – Theme CSS v2 (Mobile-First)
   ========================================================= */
:root {
    --rr-purple:  #3b0764;
    --rr-purple-2:#581c87;
    --rr-amber:   #d97706;
    --rr-gold:    #fcd34d;
    --rr-text:    #fff;
    --rr-muted:   #e9d5ff;
    --rr-panel:   rgba(255,255,255,.08);
    --rr-border:  rgba(255,255,255,.16);
    --rr-radius:  10px;
}
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0;
    background: linear-gradient(135deg, var(--rr-purple), var(--rr-purple-2), #78350f);
    color: var(--rr-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ── Container ── */
.rr-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

/* =========================================================
   HEADER – compact, mobile-first
   ========================================================= */
.rr-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(59,7,100,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rr-border);
}
.rr-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    gap: 12px;
}
.rr-brand {
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--rr-gold);
    flex-shrink: 0;
}

/* Hamburger */
.rr-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--rr-border);
    border-radius: 6px;
    color: #fff;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-shrink: 0;
}
.rr-nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(59,7,100,.97);
    border-top: 1px solid var(--rr-border);
    padding: 8px 0 12px;
    z-index: 99;
}
.rr-nav-links.rr-open { display: flex; }
.rr-nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.rr-nav-links a:last-child { border-bottom: none; }
/* Desktop nav */
@media (min-width: 768px) {
    .rr-menu-toggle { display: none; }
    .rr-nav { min-height: 68px; }
    .rr-nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
        gap: 20px;
    }
    .rr-nav-links a {
        padding: 0;
        border: none;
        font-size: .95rem;
    }
    .rr-brand { font-size: 1.35rem; }
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.rr-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 80px 0 48px;
}

/* Slides */
.rr-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.rr-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.rr-slide--active { opacity: 1; }
.rr-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.rr-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(59,7,100,.88) 0%, rgba(88,28,135,.78) 50%, rgba(120,53,15,.72) 100%);
}

/* Hero content */
.rr-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4px;
}
.rr-hero-badge {
    display: inline-block;
    background: rgba(252,211,77,.18);
    border: 1px solid rgba(252,211,77,.4);
    color: var(--rr-gold);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.rr-hero h1 {
    margin: 0 auto 14px;
    font-size: clamp(1.75rem, 6vw, 4rem);
    line-height: 1.1;
    max-width: 820px;
}
.rr-subtitle {
    font-size: clamp(1rem, 3vw, 1.35rem);
    color: var(--rr-muted);
    font-weight: 700;
    max-width: 640px;
    margin: 0 auto 20px;
}

/* Hero CTA buttons */
.rr-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* Slider dots */
.rr-slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}
.rr-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .3s, border-color .3s;
}
.rr-dot--active {
    background: var(--rr-gold);
    border-color: var(--rr-gold);
    width: 28px;
}

/* =========================================================
   BOOKING SECTION (below hero, not inside hero)
   ========================================================= */
.rr-booking-section {
    background: linear-gradient(180deg, rgba(59,7,100,.9), rgba(88,28,135,.7));
    padding: 32px 0 48px;
}
.rr-booking-card {
    background: var(--rr-panel);
    border: 1px solid var(--rr-border);
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    backdrop-filter: blur(20px);
    border-radius: var(--rr-radius);
    padding: 24px 20px;
    max-width: 940px;
    margin: 0 auto;
}
.rr-booking-card h3 { margin: 0 0 16px; font-size: 1.2rem; }
.rr-booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.rr-booking-form input,
.rr-booking-form select,
.rr-booking-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 8px;
    padding: 12px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: .95rem;
}
.rr-booking-form input::placeholder,
.rr-booking-form textarea::placeholder { color: #f3e8ff; }
.rr-booking-form select option { background: var(--rr-purple-2); color: #fff; }
.rr-booking-form textarea { min-height: 60px; }
.rr-form-status { margin: 0; color: var(--rr-gold); font-size: .9rem; }
@media (min-width: 640px) {
    .rr-booking-form { grid-template-columns: repeat(2, 1fr); }
    .rr-booking-form textarea { grid-column: span 2; }
    .rr-booking-form button { grid-column: span 2; }
}
@media (min-width: 980px) {
    .rr-booking-form { grid-template-columns: repeat(5, 1fr); }
    .rr-booking-form textarea { grid-column: span 3; }
    .rr-booking-form button { grid-column: span 2; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.rr-whatsapp,
.rr-call,
.rr-button,
.rr-booking-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
}
.rr-whatsapp:active, .rr-call:active, .rr-button:active { opacity: .85; transform: scale(.97); }
.rr-whatsapp { background: #16a34a; }
.rr-whatsapp svg, .rr-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.rr-call,
.rr-button,
.rr-booking-form button {
    background: linear-gradient(90deg, #7c3aed, #d97706);
}

/* =========================================================
   SECTIONS
   ========================================================= */
.rr-section { padding: 64px 0; background: linear-gradient(180deg, rgba(88,28,135,.38), rgba(59,7,100,.58)); }
.rr-section-head { text-align: center; margin-bottom: 36px; }
.rr-section-head h2 { font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 10px; }
.rr-section-head p { max-width: 700px; margin: 0 auto; color: var(--rr-muted); font-size: 1.05rem; }

/* Grids – mobile: 1 col, tablet: 2, desktop: 4 */
.rr-card-grid,
.rr-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 560px) {
    .rr-card-grid,
    .rr-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
    .rr-card-grid,
    .rr-service-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Cards */
.rr-service-card,
.rr-mini-card,
.rr-testimonial,
.rr-contact-card,
.rr-accordion,
.rr-post-card {
    background: var(--rr-panel);
    border: 1px solid var(--rr-border);
    box-shadow: 0 16px 40px rgba(0,0,0,.2);
    backdrop-filter: blur(20px);
    border-radius: var(--rr-radius);
}
.rr-service-card { position: relative; overflow: hidden; }
.rr-service-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.rr-service-card-body { position: relative; padding: 20px; z-index: 1; }
.rr-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.rr-card-top span,
.rr-price-row em {
    font-style: normal;
    border: 1px solid rgba(252,211,77,.38);
    background: rgba(252,211,77,.14);
    color: var(--rr-gold);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
}
.rr-icon { width: 38px; height: 38px; color: var(--rr-gold); }
.rr-icon-small { width: 22px; height: 22px; color: var(--rr-gold); }
.rr-service-card h3,
.rr-mini-card h3,
.rr-testimonial h3 { margin: 0 0 8px; font-size: 1.05rem; }
.rr-service-card ul { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 8px; }
.rr-service-card li,
.rr-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    padding: 9px;
    border-radius: 7px;
    font-size: .9rem;
}
.rr-service-card strong,
.rr-price-row b,
.rr-stars { color: var(--rr-gold); }
.rr-mini-card,
.rr-testimonial,
.rr-contact-card,
.rr-post-card { padding: 22px 18px; text-align: center; text-decoration: none; }
.rr-mini-card b {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--rr-amber);
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Accordion / pricing */
.rr-accordion-list { display: grid; gap: 12px; }
.rr-accordion { padding: 0; overflow: hidden; }
.rr-accordion summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 16px 18px;
    font-size: .95rem;
}
.rr-accordion summary::-webkit-details-marker { display: none; }
.rr-price-list, .rr-accordion > div { padding: 0 18px 18px; }
.rr-price-list { display: grid; gap: 8px; }
.rr-price-row small { display: block; color: var(--rr-muted); font-size: .8rem; }
.rr-why, .rr-note { text-align: center; color: var(--rr-muted); }
.rr-note { margin: 24px auto 0; }
.rr-testimonial img {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid var(--rr-gold);
    margin: 0 auto 10px;
}
.rr-location { color: var(--rr-muted); font-size: .9rem; }
.rr-contact-card { display: grid; gap: 6px; place-items: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.rr-footer {
    background: linear-gradient(90deg, var(--rr-purple), #78350f);
    padding: 48px 0 22px;
}
.rr-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 560px) {
    .rr-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
    .rr-footer-grid { grid-template-columns: 2fr 1fr 1.5fr 1fr; }
}
.rr-footer h2, .rr-footer h3 { margin-top: 0; }
.rr-footer span {
    display: inline-block;
    margin: 0 5px 7px 0;
    border: 1px solid var(--rr-border);
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--rr-gold);
    font-size: .85rem;
}
.rr-copyright {
    text-align: center;
    border-top: 1px solid var(--rr-border);
    margin: 30px auto 0;
    padding-top: 18px;
    color: var(--rr-muted);
    font-size: .85rem;
}

/* =========================================================
   SINGLE / PAGE
   ========================================================= */
.rr-single { padding-top: 80px; }
.rr-single img { max-width: 100%; height: auto; border-radius: 8px; }
.rr-content { color: #f8f0ff; }
.rr-content a { color: var(--rr-gold); }

/* =========================================================
   BLOG
   ========================================================= */
.rr-post-list { display: grid; gap: 20px; padding-top: 88px; }
.rr-post-card h2 { margin: 0 0 8px; font-size: 1.3rem; }
.rr-post-card h2 a { text-decoration: none; color: var(--rr-gold); }
.rr-post-card h2 a:hover { text-decoration: underline; }
.rr-post-card p { color: var(--rr-muted); margin: 0; }

/* =========================================================
   FLOATING WhatsApp FAB (mobile)
   ========================================================= */
.rr-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 18px;
    z-index: 200;
    background: #16a34a;
    color: #fff;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 800;
    font-size: .9rem;
    text-decoration: none;
    gap: 8px;
    align-items: center;
    box-shadow: 0 6px 24px rgba(22,163,74,.5);
    animation: rr-bounce 2s infinite;
}
.rr-fab svg { width: 20px; height: 20px; }
@keyframes rr-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
}
@media (max-width: 767px) {
    .rr-fab { display: inline-flex; }
}

/* =========================================================
   UTILITY
   ========================================================= */
@media (max-width: 560px) {
    .rr-section { padding: 48px 0; }
    .rr-hero { padding-bottom: 56px; }
    .rr-accordion summary { flex-direction: column; align-items: flex-start; }
    .rr-price-row { flex-direction: column; align-items: flex-start; }
}
