:root {
    --rc-orange: #F36D21;
    --rc-green: #2E8B57;
    --rc-blue: #4DA8FF;
    --rc-cream: #FFF8F2;
    --rc-slate: #14383A;
    --rc-yellow: #FFD54A;
    --radius: 14px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: var(--rc-cream);
    color: var(--rc-slate);
}

a { text-decoration: none; color: inherit; }

/* ---------- Header ---------- */
.rc-header {
    background: #fff;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 20px;
}
.rc-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.rc-logo-img { height: 44px; width: auto; display: block; }

.rc-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}
.rc-nav a, .rc-nav span {
    font-weight: 600;
    font-size: 14px;
    color: var(--rc-slate);
    cursor: pointer;
    white-space: nowrap;
}
.rc-nav a:hover, .rc-nav span:hover { color: var(--rc-orange); }
.rc-nav a.rc-nav-active { color: var(--rc-orange); }

.rc-dropdown { position: relative; }
.rc-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    min-width: 190px;
    margin-top: 0;
    z-index: 50;
}
.rc-dropdown:hover .rc-dropdown-menu { display: block; }
.rc-dropdown-menu a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
.rc-dropdown-menu a:hover { background: var(--rc-cream); color: var(--rc-orange); }

.rc-dropdown-menu.rc-dropdown-wide {
    display: none;
    left: auto;
    right: 0;
    transform: none;
    padding: 16px;
    min-width: 640px;
    max-width: 90vw;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 20px;
}
.rc-dropdown:hover .rc-dropdown-menu.rc-dropdown-wide { display: grid; }
.rc-dropdown-col a { padding: 7px 4px; border-radius: 6px; }
.rc-dropdown-heading {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #999;
    font-weight: 700;
    padding: 4px 4px 6px;
    border-bottom: 1px solid #eee;
    margin-bottom: 4px;
}
@media (max-width: 1000px) {
    .rc-dropdown-menu.rc-dropdown-wide { grid-template-columns: repeat(2, 1fr); min-width: 460px; }
}

.rc-header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.rc-header-actions .btn-primary {
    background: var(--rc-orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}
.rc-header-actions .btn-primary:hover { background: #d95c15; color: #fff; }
.rc-profile-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--rc-slate);
    white-space: nowrap;
}
.rc-profile-link:hover { color: var(--rc-orange); }

@media (max-width: 900px) {
    .rc-nav { display: none; }
}

/* ---------- Hero / Search ---------- */
.rc-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 2.4 / 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 7%;
    text-align: center;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}
.rc-hero h1 {
    font-size: 38px;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.rc-hero h1 .highlight { color: var(--rc-orange); }
.rc-hero-heading { position: relative; display: inline-block; }
.rc-heart-decor {
    position: absolute;
    top: -26px;
    right: -46px;
    width: 34px;
    height: 30px;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
@media (max-width: 700px) {
    .rc-heart-decor { display: none; }
}
.rc-hero p {
    opacity: 0.95;
    margin-bottom: 24px;
    font-size: 16px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.rc-search-box {
    background: #fff;
    border-radius: 40px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.rc-search-box input[type=text] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 12px 0;
    color: var(--rc-slate);
}
.rc-search-box select {
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--rc-slate);
    padding: 8px;
    border-left: 1px solid #eee;
}
.rc-search-box button {
    background: var(--rc-orange);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
}

.rc-popular-searches {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}
.rc-popular-searches span { opacity: 0.9; margin-right: 4px; }
.rc-popular-searches a {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
    color: #fff;
}
.rc-popular-searches a:hover { background: rgba(255,255,255,0.32); }

/* ---------- Categories + trust strip: float on top of the hero photo ---------- */
.rc-hero-overlap {
    position: relative;
    margin-top: -110px;
    z-index: 5;
    padding-bottom: 20px;
}

/* ---------- Trust strip ---------- */
.rc-trust-strip {
    max-width: 1100px;
    margin: 0 auto 10px;
    background: var(--rc-cream);
    border: 1px solid #f0e4d8;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.rc-trust-item { display: flex; align-items: flex-start; gap: 10px; width: 200px; flex: 0 0 auto; }
.rc-trust-item .icon { font-size: 20px; flex-shrink: 0; }
.rc-trust-item strong { display: block; font-size: 14px; }
.rc-trust-item small { color: #777; font-size: 12px; }

/* ---------- Explore areas ---------- */
.rc-explore {
    background: var(--rc-slate);
    color: #fff;
    padding: 32px 20px;
}
.rc-explore-header { max-width: 1100px; margin: 0 auto 18px; }
.rc-explore-header h2 { margin: 0 0 4px; }
.rc-explore-header p { margin: 0; opacity: 0.8; font-size: 14px; }
.rc-explore-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
}
.rc-explore-card {
    background: linear-gradient(135deg, var(--rc-orange), var(--rc-green));
    border-radius: 14px;
    padding: 60px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 110px;
    width: 200px;
    flex: 0 0 auto;
    color: #fff;
}
.rc-explore-card .name { font-weight: 700; font-size: 16px; }
.rc-explore-card .blurb { font-size: 12px; opacity: 0.9; margin-top: 2px; }

/* ---------- Stats strip ---------- */
.rc-stats-strip {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    text-align: center;
    padding: 24px 20px;
    background: var(--rc-cream);
}
.rc-stats-strip > div { width: 150px; flex: 0 0 auto; }
.rc-stats-strip strong { display: block; font-size: 26px; color: var(--rc-orange); }
.rc-stats-strip span { font-size: 12px; color: #777; }

@media (max-width: 700px) {
    .rc-hero { aspect-ratio: auto; min-height: 480px; padding: 30px 16px; }
    .rc-hero-overlap { margin-top: -70px; }
}

/* ---------- Category grid ---------- */
.rc-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 28px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.rc-cat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 18px 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform .15s ease;
    width: 110px;
    flex: 0 0 auto;
}
.rc-cat-card:hover { transform: translateY(-3px); }
.rc-cat-card .icon { font-size: 28px; display: block; margin-bottom: 6px; }
.rc-cat-card .label { font-size: 13px; font-weight: 600; }

/* ---------- Listing cards ---------- */
.rc-listing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 10px 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.rc-listing-card {
    width: 260px;
    flex: 0 0 auto;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: relative;
}
.rc-listing-card img.cover {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #eee;
}
.rc-listing-card .body { padding: 14px; }
.rc-listing-card .badge-premium {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--rc-yellow);
    color: var(--rc-slate);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}
.rc-listing-card .badge-verified {
    color: var(--rc-green);
    font-size: 12px;
    font-weight: 600;
}
.rc-listing-card h3 { margin: 4px 0 2px; font-size: 16px; }
.rc-listing-card .meta { font-size: 13px; color: #666; margin-bottom: 8px; }
.rc-listing-card .rating {
    display: inline-block;
    background: var(--rc-green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}
.rc-listing-card .actions { margin-top: 10px; display: flex; gap: 8px; }
.rc-listing-card .actions a {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.rc-listing-card .actions .call { background: var(--rc-orange); color: #fff; }
.rc-listing-card .actions .whatsapp { background: #25D366; color: #fff; }

/* ---------- Filters bar ---------- */
.rc-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 16px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.rc-filters select, .rc-filters input {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 13px;
}

/* ---------- Forms ---------- */
.rc-form-wrap {
    max-width: 640px;
    margin: 30px auto;
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.rc-form-wrap h2 { margin-top: 0; color: var(--rc-orange); }
.rc-form-group { margin-bottom: 16px; }
.rc-form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.rc-form-group input, .rc-form-group select, .rc-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}
.rc-btn-submit {
    background: var(--rc-green);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
}
.rc-alert {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}
.rc-alert.success { background: #e4f5ea; color: var(--rc-green); }
.rc-alert.error { background: #fde8e4; color: #c0392b; }

/* ---------- Star rating input ---------- */
.rc-star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.rc-star-input input { display: none; }
.rc-star-input label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    line-height: 1;
}
.rc-star-input input:checked ~ label,
.rc-star-input label:hover,
.rc-star-input label:hover ~ label {
    color: var(--rc-yellow);
}

/* ---------- Footer ---------- */
.rc-footer {
    background: var(--rc-slate);
    color: #fff;
    padding: 40px 24px 0;
    margin-top: 30px;
}
.rc-footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.rc-footer-col { width: 190px; flex: 0 0 auto; }
.rc-footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rc-yellow);
    font-weight: 700;
    margin-bottom: 10px;
}
.rc-footer-col a {
    display: block;
    font-size: 13px;
    color: #d6dede;
    padding: 5px 0;
}
.rc-footer-col a:hover { color: #fff; text-decoration: underline; }
.rc-footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #aab5b5;
    padding: 18px 0;
}
