/* ==========================================================================
   Revel Together — Public Design System
   Scoped to .rt-wrapper to prevent Astra/Elementor conflicts
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --rt-ivory: #FAF7F2;
    --rt-navy: #1B2A4A;
    --rt-gold: #C9A96E;
    --rt-gold-dark: #B08F55;
    --rt-gold-light: #E8D5B0;
    --rt-text: #2C2C2C;
    --rt-text-light: #666;
    --rt-text-muted: #999;
    --rt-green: #2D6A4F;
    --rt-green-light: #E8F5E9;
    --rt-red: #C62828;
    --rt-red-light: #FFEBEE;
    --rt-border: #E5E1DA;
    --rt-border-light: #F0EDE8;
    --rt-shadow: 0 2px 12px rgba(27, 42, 74, 0.06);
    --rt-shadow-lg: 0 8px 32px rgba(27, 42, 74, 0.10);
    --rt-radius: 8px;
    --rt-radius-lg: 12px;
    --rt-font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --rt-font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --rt-transition: 0.2s ease;
}

/* ---------- Hide Astra page title on RT pages ---------- */
.page-template-default .entry-header,
.page-template-default .ast-archive-description,
body.page .entry-title {
    display: none !important;
}

/* Remove Astra content padding */
.page-template-default .site-content .ast-container,
.page-template-default .entry-content {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page-template-default .site-main > article {
    padding: 0 !important;
    margin: 0 !important;
}

/* ---------- Nuclear Reset (Astra/Elementor Override) ---------- */
.rt-wrapper,
.rt-wrapper *,
.rt-wrapper *::before,
.rt-wrapper *::after {
    box-sizing: border-box !important;
}

.rt-wrapper {
    font-family: var(--rt-font-body) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--rt-text) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100% !important;
    overflow-x: hidden;
}

.rt-wrapper h1,
.rt-wrapper h2,
.rt-wrapper h3,
.rt-wrapper h4,
.rt-wrapper h5 {
    font-family: var(--rt-font-heading) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: var(--rt-navy) !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.rt-wrapper p {
    margin: 0 0 12px !important;
    padding: 0 !important;
    font-family: var(--rt-font-body) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--rt-text) !important;
}

.rt-wrapper a {
    text-decoration: none !important;
}

/* Section reset removed — was zeroing out intentional padding */

.rt-wrapper a {
    color: var(--rt-gold-dark);
    text-decoration: none;
    transition: color var(--rt-transition);
}

.rt-wrapper a:hover {
    color: var(--rt-navy);
}

.rt-wrapper img {
    max-width: 100%;
    height: auto;
}

.rt-wrapper ul, .rt-wrapper ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---------- Layout ---------- */
.rt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.rt-container-narrow {
    max-width: 720px;
}

.rt-section {
    padding: 80px 0 !important;
}

.rt-section-alt {
    background: var(--rt-ivory) !important;
}

.rt-text-center {
    text-align: center;
}

.rt-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.rt-mt-sm {
    margin-top: 8px;
}

/* ---------- Typography ---------- */
.rt-page-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.rt-page-subtitle {
    font-size: 17px;
    color: var(--rt-text-light);
    margin-bottom: 32px;
    font-family: var(--rt-font-body);
}

.rt-wrapper .rt-section-title {
    font-size: 28px !important;
    margin: 0 0 12px 0 !important;
}

.rt-section-subtitle {
    font-size: 17px !important;
    color: var(--rt-text-light) !important;
    margin-bottom: 40px !important;
    font-family: var(--rt-font-body) !important;
}

.rt-body-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--rt-text);
    margin-bottom: 16px;
}

.rt-body-text-sm {
    font-size: 14px;
    line-height: 1.6;
    color: var(--rt-text-light);
}

.rt-link-sm {
    font-size: 13px;
}

/* ---------- Landing Page — Immersive Hero ---------- */
.rt-hero-immersive {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: var(--rt-navy) !important;
}

.rt-hero-slide {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0 !important;
    transition: opacity 1.5s ease !important;
}

.rt-hero-slide-active {
    opacity: 1 !important;
}

.rt-hero-gradient {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.65) 100%) !important;
    z-index: 1 !important;
}

.rt-hero-inner {
    position: relative !important;
    z-index: 2 !important;
    max-width: 800px !important;
    padding: 0 32px !important;
    text-align: center !important;
}

.rt-wrapper .rt-hero-kicker {
    display: block !important;
    font-family: var(--rt-font-body) !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    color: var(--rt-gold) !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
}

.rt-wrapper h1.rt-hero-headline {
    font-family: var(--rt-font-heading) !important;
    font-size: 64px !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1.1 !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    letter-spacing: -0.5px !important;
}

.rt-wrapper h1.rt-hero-headline em {
    font-style: italic !important;
    color: var(--rt-gold-light) !important;
}

.rt-wrapper p.rt-hero-lead {
    font-family: var(--rt-font-body) !important;
    font-size: 20px !important;
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.7 !important;
    margin: 0 0 40px 0 !important;
    padding: 0 !important;
    max-width: 640px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.rt-hero-cta-row {
    margin-bottom: 20px !important;
}

.rt-cta-primary {
    display: inline-block !important;
    padding: 18px 48px !important;
    background: var(--rt-gold) !important;
    color: #fff !important;
    font-family: var(--rt-font-body) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    text-decoration: none !important;
}

.rt-cta-primary:hover {
    background: var(--rt-gold-dark) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

.rt-cta-lg {
    padding: 22px 56px !important;
    font-size: 17px !important;
}

.rt-wrapper p.rt-hero-proof {
    font-size: 14px !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6) !important;
}

.rt-wrapper p.rt-hero-login {
    font-size: 13px !important;
    color: rgba(255,255,255,0.85) !important;
    margin: 12px 0 0 0 !important;
    padding: 0 !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6) !important;
}
.rt-wrapper p.rt-hero-login a {
    color: #ffffff !important;
    text-decoration: underline !important;
}
.rt-wrapper p.rt-hero-login a:hover {
    color: #ffffff !important;
}

.rt-scroll-hint {
    position: absolute !important;
    bottom: 32px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 2 !important;
    color: rgba(255,255,255,0.4) !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-family: var(--rt-font-body) !important;
}

/* ---------- Landing — Shared Section Styles ---------- */
.rt-section-full {
    padding: 100px 0 !important;
}

.rt-bg-warm {
    background: #F8F5F0 !important;
}

.rt-bg-navy {
    background: var(--rt-navy) !important;
}

.rt-container-lg {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
}

.rt-container-narrow {
    max-width: 720px;
}

.rt-section-header {
    margin-bottom: 60px !important;
}

.rt-wrapper .rt-eyebrow {
    display: block !important;
    font-family: var(--rt-font-body) !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: var(--rt-gold) !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
}

.rt-wrapper .rt-eyebrow-gold {
    color: var(--rt-gold-light) !important;
}

.rt-wrapper .rt-display-heading {
    font-family: var(--rt-font-heading) !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    color: var(--rt-navy) !important;
    line-height: 1.2 !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
}

.rt-wrapper .rt-display-heading.rt-white {
    color: #fff !important;
}

.rt-wrapper .rt-section-sub {
    font-family: var(--rt-font-body) !important;
    font-size: 18px !important;
    color: var(--rt-text-light) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ---------- Landing — Split (Problem/Solution) ---------- */
.rt-split-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.rt-split-reverse .rt-split-image {
    order: 2 !important;
}

.rt-split-reverse .rt-split-content {
    order: 1 !important;
}

.rt-split-image {
    overflow: hidden !important;
}

.rt-split-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 500px !important;
    object-fit: cover !important;
    display: block !important;
}

.rt-split-content {
    padding: 60px 80px !important;
}

.rt-wrapper .rt-lead-body {
    font-family: var(--rt-font-body) !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: var(--rt-text) !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

.rt-wrapper .rt-lead-body strong {
    color: var(--rt-navy) !important;
    font-weight: 700 !important;
}

.rt-stat-row {
    display: flex !important;
    gap: 48px !important;
    margin-top: 36px !important;
    padding-top: 32px !important;
    border-top: 1px solid var(--rt-border) !important;
}

.rt-stat-item {
    display: flex !important;
    flex-direction: column !important;
}

.rt-wrapper .rt-stat-number {
    font-family: var(--rt-font-heading) !important;
    font-size: 36px !important;
    font-weight: 600 !important;
    color: var(--rt-gold-dark) !important;
    line-height: 1 !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
}

.rt-wrapper .rt-stat-label {
    font-family: var(--rt-font-body) !important;
    font-size: 13px !important;
    color: var(--rt-text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.rt-check-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 32px 0 !important;
}

.rt-wrapper .rt-check-list li {
    position: relative !important;
    padding: 0 0 0 28px !important;
    margin: 0 0 14px 0 !important;
    font-family: var(--rt-font-body) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--rt-text) !important;
}

.rt-check-list li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--rt-gold) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* ---------- Landing — How It Works ---------- */
.rt-steps-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
}

.rt-step-card {
    text-align: center !important;
}

.rt-step-img-wrap {
    position: relative !important;
    width: 180px !important;
    height: 180px !important;
    margin: 0 auto 24px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid rgba(255,255,255,0.15) !important;
}

.rt-step-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.rt-step-badge {
    position: absolute !important;
    bottom: 4px !important;
    right: 4px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--rt-gold) !important;
    color: #fff !important;
    font-family: var(--rt-font-heading) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--rt-navy) !important;
}

.rt-wrapper .rt-step-card h3 {
    font-family: var(--rt-font-heading) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
}

.rt-wrapper .rt-step-card p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.65) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ---------- Landing — Quote Banner ---------- */
.rt-quote-banner {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 120px 32px !important;
    text-align: center !important;
}

.rt-quote-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.7) 100%) !important;
}

.rt-quote-content {
    position: relative !important;
    z-index: 1 !important;
    max-width: 760px !important;
    margin: 0 auto !important;
}

.rt-quote-mark {
    font-family: var(--rt-font-heading) !important;
    font-size: 80px !important;
    color: var(--rt-gold) !important;
    line-height: 0.5 !important;
    margin-bottom: 24px !important;
    display: block !important;
}

.rt-wrapper .rt-quote-content blockquote {
    font-family: var(--rt-font-heading) !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    color: #fff !important;
    line-height: 1.6 !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    border: none !important;
    quotes: none !important;
}

.rt-wrapper .rt-quote-content cite {
    font-family: var(--rt-font-body) !important;
    font-size: 14px !important;
    color: var(--rt-gold-light) !important;
    font-style: normal !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

/* ---------- Landing — Destinations Mosaic ---------- */
.rt-dest-mosaic {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}

.rt-dest-tile {
    position: relative !important;
    height: 280px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    cursor: pointer !important;
    transition: transform 0.4s ease !important;
}

.rt-dest-tile::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%) !important;
    transition: background 0.3s ease !important;
}

.rt-dest-tile:hover {
    transform: scale(1.02) !important;
}

.rt-dest-tile:hover::after {
    background: linear-gradient(to top, rgba(27,42,74,0.8) 0%, rgba(27,42,74,0.2) 100%) !important;
}

.rt-dest-tile.rt-dest-wide {
    grid-column: span 2 !important;
}

.rt-dest-label {
    position: absolute !important;
    bottom: 20px !important;
    left: 24px !important;
    z-index: 1 !important;
    font-family: var(--rt-font-heading) !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #fff !important;
    letter-spacing: 0.5px !important;
}

/* ---------- Landing — Value Props ---------- */
.rt-value-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
}

.rt-value-card {
    text-align: center !important;
    padding: 40px 24px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
    transition: border-color 0.3s ease, transform 0.3s ease !important;
}

.rt-value-card:hover {
    border-color: rgba(201,169,110,0.3) !important;
    transform: translateY(-4px) !important;
}

.rt-value-icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto 24px !important;
    color: var(--rt-gold) !important;
}

.rt-value-icon svg {
    width: 100% !important;
    height: 100% !important;
}

.rt-wrapper .rt-value-card h3 {
    font-family: var(--rt-font-heading) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
}

.rt-wrapper .rt-value-card p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* ---------- Landing — Testimonial Duo ---------- */
.rt-testimonial-duo {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
}

.rt-testimonial-block {
    background: #fff !important;
    border-radius: 12px !important;
    padding: 48px 40px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}

.rt-testimonial-stars {
    color: var(--rt-gold) !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
    letter-spacing: 4px !important;
}

.rt-wrapper .rt-testimonial-block blockquote {
    font-family: var(--rt-font-body) !important;
    font-size: 17px !important;
    font-style: italic !important;
    color: var(--rt-text) !important;
    line-height: 1.8 !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    border: none !important;
    quotes: none !important;
}

.rt-wrapper .rt-testimonial-block cite {
    font-family: var(--rt-font-body) !important;
    font-size: 14px !important;
    font-style: normal !important;
    color: var(--rt-gold-dark) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

/* ---------- Landing — Final CTA ---------- */
.rt-final-cta {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 140px 32px !important;
    text-align: center !important;
}

.rt-final-cta-inner {
    position: relative !important;
    z-index: 1 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

.rt-wrapper .rt-final-cta h2 {
    font-family: var(--rt-font-heading) !important;
    font-size: 48px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.rt-wrapper .rt-final-cta p {
    font-size: 19px !important;
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.7 !important;
    margin: 0 0 36px 0 !important;
}

.rt-wrapper .rt-cta-sub {
    display: block !important;
    margin-top: 16px !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.45) !important;
    letter-spacing: 1px !important;
}

/* ---------- Landing — Scroll Animations ---------- */
.rt-fade-up {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 0.8s ease, transform 0.8s ease !important;
}

.rt-fade-up.rt-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ---------- Buttons ---------- */
.rt-wrapper .rt-btn {
    display: inline-block !important;
    padding: 12px 28px !important;
    font-family: var(--rt-font-body) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: all var(--rt-transition) !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.rt-wrapper .rt-btn:hover {
    transform: translateY(-1px) !important;
}

.rt-wrapper .rt-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.rt-wrapper .rt-btn-gold {
    background: var(--rt-gold) !important;
    color: #fff !important;
    border-color: var(--rt-gold) !important;
}

.rt-wrapper .rt-btn-gold:hover {
    background: var(--rt-gold-dark) !important;
    border-color: var(--rt-gold-dark) !important;
    color: #fff !important;
}

.rt-wrapper .rt-btn-outline {
    background: transparent !important;
    color: var(--rt-navy) !important;
    border-color: var(--rt-border) !important;
}

.rt-wrapper .rt-btn-outline:hover {
    border-color: var(--rt-navy) !important;
    color: var(--rt-navy) !important;
}

.rt-wrapper .rt-btn-danger {
    background: transparent !important;
    color: var(--rt-red) !important;
    border-color: var(--rt-red) !important;
    padding: 4px 12px !important;
    font-size: 13px !important;
}

.rt-wrapper .rt-btn-lg {
    padding: 16px 40px !important;
    font-size: 17px !important;
}

.rt-wrapper .rt-btn-sm {
    padding: 8px 16px !important;
    font-size: 13px !important;
}

.rt-wrapper .rt-btn-xs {
    padding: 4px 12px !important;
    font-size: 12px !important;
    border-width: 1px !important;
}

.rt-wrapper .rt-btn-full {
    display: block !important;
    width: 100% !important;
}

/* ---------- Cards ---------- */
.rt-wrapper .rt-card {
    background: #fff !important;
    border: 1px solid var(--rt-border-light) !important;
    border-radius: var(--rt-radius-lg) !important;
    padding: 24px !important;
    box-shadow: var(--rt-shadow) !important;
    margin-bottom: 20px !important;
}

.rt-wrapper .rt-card-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.rt-wrapper .rt-card-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
}

.rt-card-cta {
    background: var(--rt-ivory);
    border-color: var(--rt-gold-light);
}

/* ---------- Forms ---------- */
.rt-form {
    width: 100%;
}

.rt-form-group {
    margin-bottom: 20px;
}

.rt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rt-wrapper .rt-label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--rt-navy) !important;
    margin-bottom: 6px !important;
    font-family: var(--rt-font-body) !important;
    line-height: 1.4 !important;
}

.rt-wrapper .rt-input,
.rt-wrapper .rt-select,
.rt-wrapper .rt-textarea {
    width: 100% !important;
    padding: 10px 14px !important;
    font-family: var(--rt-font-body) !important;
    font-size: 15px !important;
    color: var(--rt-text) !important;
    background: #fff !important;
    border: 1px solid var(--rt-border) !important;
    border-radius: 6px !important;
    transition: border-color var(--rt-transition), box-shadow var(--rt-transition) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
    height: auto !important;
}

.rt-wrapper .rt-input:focus,
.rt-wrapper .rt-select:focus,
.rt-wrapper .rt-textarea:focus {
    outline: none !important;
    border-color: var(--rt-gold) !important;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15) !important;
}

.rt-input-error {
    border-color: var(--rt-red) !important;
    box-shadow: 0 0 0 3px rgba(198,40,40,0.1) !important;
}

.rt-error-msg {
    display: block;
    color: var(--rt-red);
    font-size: 13px;
    margin-top: 4px;
}

.rt-wrapper .rt-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%23666'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px !important;
}

.rt-wrapper .rt-select-sm {
    width: auto !important;
    padding: 6px 32px 6px 10px !important;
    font-size: 13px !important;
}

.rt-textarea {
    resize: vertical;
    min-height: 80px;
}

.rt-form-hint {
    display: block;
    font-size: 13px;
    color: var(--rt-text-muted);
    margin-top: 4px;
}

.rt-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--rt-border-light);
}

.rt-form-step {
    display: none;
}

.rt-form-step.active {
    display: block;
}

.rt-form-step-title {
    font-size: 22px;
    margin-bottom: 24px;
}

/* Checkboxes */
.rt-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.rt-checkbox-grid-small {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.rt-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--rt-border-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--rt-transition);
    font-size: 14px;
}

.rt-checkbox-label:hover {
    border-color: var(--rt-gold);
    background: var(--rt-ivory);
}

.rt-checkbox-label:has(input:checked) {
    border-color: var(--rt-gold);
    background: rgba(201,169,110,0.08);
}

.rt-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--rt-gold);
    flex-shrink: 0;
}

/* ---------- Progress Bar ---------- */
.rt-progress {
    background: var(--rt-border-light);
    border-radius: 20px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 16px;
}

.rt-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--rt-gold), var(--rt-gold-dark));
    border-radius: 20px;
    transition: width 0.4s ease;
}

.rt-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.rt-progress-step {
    font-size: 13px;
    color: var(--rt-text-muted);
    font-weight: 600;
}

.rt-progress-step.active {
    color: var(--rt-gold);
}

.rt-progress-step.completed {
    color: var(--rt-green);
}

/* ---------- Photo Upload ---------- */
.rt-photo-upload {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rt-photo-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--rt-ivory);
    border: 2px dashed var(--rt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.rt-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-file-input {
    display: none;
}

/* ---------- Pills / Tags ---------- */
.rt-pill {
    display: inline-block;
    padding: 4px 12px;
    background: var(--rt-ivory);
    border: 1px solid var(--rt-border-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--rt-text);
    margin: 2px;
}

.rt-pill-sm {
    padding: 2px 8px;
    font-size: 12px;
}

.rt-pill-empty {
    color: var(--rt-text-muted);
    font-style: italic;
}

.rt-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* Travel type pill — gold accent */
.rt-travel-type-pill {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--rt-gold-light), #f5e6c8);
    border: 1px solid var(--rt-gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--rt-navy);
    text-transform: capitalize;
}

/* ---------- Badges ---------- */
.rt-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.rt-badge-count {
    background: var(--rt-red);
    color: #fff;
    min-width: 20px;
    text-align: center;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
}

.rt-badge-gold {
    background: linear-gradient(135deg, #C9A96E, #E8D5B0);
    color: var(--rt-navy);
}

.rt-badge-silver {
    background: linear-gradient(135deg, #A0A0A0, #D0D0D0);
    color: #333;
}

.rt-match-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

/* ---------- Navigation ---------- */
.rt-wrapper .rt-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 0 !important;
    margin-bottom: 32px !important;
    border-bottom: 1px solid var(--rt-border-light) !important;
}

.rt-wrapper .rt-nav-brand {
    font-family: var(--rt-font-heading) !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--rt-navy) !important;
}

.rt-wrapper .rt-nav-brand:hover {
    color: var(--rt-gold) !important;
}

.rt-wrapper .rt-nav-links {
    display: flex !important;
    gap: 24px !important;
    align-items: center !important;
}

.rt-wrapper .rt-nav-link {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--rt-text-light) !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-family: var(--rt-font-body) !important;
}

.rt-wrapper .rt-nav-link:hover,
.rt-wrapper .rt-nav-link.active {
    color: var(--rt-navy) !important;
}

.rt-wrapper .rt-nav-link.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -17px !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: var(--rt-gold) !important;
}

/* ---------- Stats Row ---------- */
.rt-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.rt-stat-card {
    background: #fff;
    border: 1px solid var(--rt-border-light);
    border-radius: var(--rt-radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--rt-shadow);
}

.rt-stat-number {
    display: block;
    font-family: var(--rt-font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--rt-navy);
}

.rt-stat-label {
    font-size: 13px;
    color: var(--rt-text-muted);
    margin-top: 4px;
}

/* ---------- Dashboard Grid ---------- */
.rt-dashboard-welcome {
    margin-bottom: 24px;
}

.rt-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Completion Card */
.rt-card-completion {
    background: linear-gradient(135deg, var(--rt-ivory), #fff);
    border-color: var(--rt-gold-light);
}

.rt-completion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rt-completion-pct {
    font-family: var(--rt-font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--rt-gold);
}

/* ---------- Introduction List ---------- */
.rt-intro-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt-intro-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--rt-ivory);
    border-radius: var(--rt-radius);
}

.rt-intro-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rt-intro-info {
    flex: 1;
    min-width: 0;
}

.rt-intro-name {
    font-weight: 600;
    color: var(--rt-navy);
    display: block;
}

.rt-intro-location {
    font-size: 13px;
    color: var(--rt-text-muted);
}

.rt-intro-message {
    font-size: 13px;
    color: var(--rt-text-light);
    font-style: italic;
    margin-top: 4px;
}

.rt-intro-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ---------- Trip List ---------- */
.rt-trip-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rt-trip-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--rt-ivory);
    border-radius: var(--rt-radius);
    gap: 12px;
}

.rt-trip-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rt-trip-date {
    font-size: 13px;
    color: var(--rt-text-muted);
}

.rt-trip-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

/* ---------- Recommended Matches ---------- */
.rt-recommended-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rt-rec-card {
    border: 1px solid var(--rt-border-light);
    border-radius: var(--rt-radius);
    overflow: hidden;
    transition: all var(--rt-transition);
}

.rt-rec-card:hover {
    border-color: var(--rt-gold-light);
    box-shadow: var(--rt-shadow);
}

.rt-rec-card a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
}

.rt-rec-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rt-rec-info {
    flex: 1;
    min-width: 0;
}

.rt-rec-name {
    display: block;
    font-weight: 600;
    color: var(--rt-navy);
    font-size: 14px;
}

.rt-rec-location {
    display: block;
    font-size: 12px;
    color: var(--rt-text-muted);
}

/* ---------- Browse Layout ---------- */
.rt-browse-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

.rt-filters {
    position: sticky;
    top: 100px;
}

.rt-filters-title {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rt-border-light);
}

.rt-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rt-results-count {
    font-size: 14px;
    color: var(--rt-text-light);
}

.rt-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--rt-text-light);
}

/* ---------- Member Grid ---------- */
.rt-member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.rt-member-card {
    background: #fff;
    border: 1px solid var(--rt-border-light);
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    transition: all var(--rt-transition);
}

.rt-member-card:hover {
    border-color: var(--rt-gold-light);
    box-shadow: var(--rt-shadow-lg);
    transform: translateY(-2px);
}

.rt-member-card-link {
    display: block;
    padding: 20px;
    text-align: center;
    text-decoration: none;
}

.rt-member-photo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.rt-member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rt-ivory);
}

.rt-verified-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: var(--rt-green);
    border-radius: 50%;
    border: 2px solid #fff;
}

.rt-member-name {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--rt-navy);
}

.rt-member-location {
    font-size: 13px;
    color: var(--rt-text-muted);
    margin-bottom: 8px;
}

.rt-member-tags {
    margin-top: 8px;
}

/* Pagination */
.rt-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.rt-page-info {
    font-size: 14px;
    color: var(--rt-text-light);
}

/* ---------- Profile View ---------- */
.rt-profile-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rt-border-light);
}

.rt-profile-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.rt-profile-photo-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--rt-ivory);
    box-shadow: var(--rt-shadow);
}

.rt-verified-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
}

.rt-profile-info {
    flex: 1;
    min-width: 0;
}

.rt-profile-name {
    font-size: 28px;
    margin-bottom: 4px;
}

.rt-profile-location {
    font-size: 15px;
    color: var(--rt-text-light);
    margin-bottom: 12px;
}

.rt-profile-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.rt-match-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.rt-match-gold {
    background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(232,213,176,0.2));
    color: var(--rt-gold-dark);
}

.rt-match-silver {
    background: rgba(160,160,160,0.12);
    color: #555;
}

.rt-match-score {
    font-family: var(--rt-font-heading);
    font-size: 18px;
}

.rt-profile-actions {
    flex-shrink: 0;
}

.rt-profile-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.rt-pref-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rt-pref-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rt-border-light);
}

.rt-pref-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rt-pref-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.rt-detail-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
}

.rt-detail-list dt {
    font-size: 13px;
    color: var(--rt-text-muted);
    font-weight: 600;
}

.rt-detail-list dd {
    font-size: 14px;
    color: var(--rt-text);
}

/* ---------- Messaging ---------- */
.rt-messaging-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    height: 600px;
    border: 1px solid var(--rt-border-light);
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    background: #fff;
}

.rt-thread-list {
    border-right: 1px solid var(--rt-border-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rt-thread-list-header {
    padding: 16px;
    border-bottom: 1px solid var(--rt-border-light);
}

.rt-thread-list-header h3 {
    font-size: 16px;
    margin: 0;
}

.rt-threads {
    flex: 1;
    overflow-y: auto;
}

.rt-thread-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--rt-border-light);
    transition: background var(--rt-transition);
    position: relative;
}

.rt-thread-item:hover {
    background: var(--rt-ivory);
}

.rt-thread-item.active {
    background: rgba(201,169,110,0.08);
    border-left: 3px solid var(--rt-gold);
}

.rt-thread-unread {
    background: rgba(201,169,110,0.04);
}

.rt-thread-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rt-thread-info {
    flex: 1;
    min-width: 0;
}

.rt-thread-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--rt-navy);
}

.rt-thread-preview {
    display: block;
    font-size: 13px;
    color: var(--rt-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rt-thread-time {
    font-size: 11px;
    color: var(--rt-text-muted);
    position: absolute;
    top: 14px;
    right: 14px;
}

/* Message Panel */
.rt-message-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rt-message-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--rt-text-muted);
    gap: 12px;
}

#rt-active-thread {
    flex-direction: column;
    height: 100%;
}

.rt-message-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--rt-border-light);
    background: var(--rt-ivory);
}

.rt-back-btn {
    display: none;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    color: var(--rt-navy);
}

.rt-msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.rt-message-header h3 {
    font-size: 15px;
    margin: 0;
}

.rt-message-actions {
    margin-left: auto;
}

.rt-messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt-message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: 75%;
}

.rt-message-mine {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.rt-message-theirs {
    align-self: flex-start;
}

.rt-message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rt-message-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 100%;
    word-wrap: break-word;
}

.rt-message-theirs .rt-message-bubble {
    background: var(--rt-ivory);
    border-bottom-left-radius: 4px;
}

.rt-message-mine .rt-message-bubble {
    background: var(--rt-navy);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.rt-message-body {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    white-space: pre-wrap;
}

.rt-message-time {
    display: block;
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.6;
}

.rt-message-mine .rt-message-time {
    color: rgba(255,255,255,0.6);
}

.rt-message-input {
    padding: 14px 20px;
    border-top: 1px solid var(--rt-border-light);
    background: #fff;
}

.rt-message-input form {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.rt-message-input .rt-textarea {
    flex: 1;
    min-height: 40px;
    max-height: 100px;
    resize: none;
}

/* ---------- Group Trips ---------- */
.rt-group-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.rt-group-trip-card {
    background: #fff;
    border: 1px solid var(--rt-border-light);
    border-radius: var(--rt-radius-lg);
    padding: 24px;
    box-shadow: var(--rt-shadow);
    transition: all var(--rt-transition);
}

.rt-group-trip-card:hover {
    box-shadow: var(--rt-shadow-lg);
    transform: translateY(-2px);
}

.rt-gt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.rt-gt-title {
    font-size: 20px;
    flex: 1;
}

.rt-gt-badge {
    background: var(--rt-ivory);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--rt-gold-dark);
    font-weight: 600;
    white-space: nowrap;
}

.rt-gt-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.rt-gt-detail {
    color: var(--rt-text-light);
}

.rt-gt-detail strong {
    color: var(--rt-text);
}

.rt-gt-desc {
    font-size: 14px;
    color: var(--rt-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.rt-gt-actions {
    display: flex;
    gap: 10px;
}

/* ---------- Booking ---------- */
.rt-booking-perks {
    background: var(--rt-ivory);
    border-radius: var(--rt-radius);
    padding: 20px;
    margin: 24px 0;
}

.rt-perk-list {
    padding: 0;
}

.rt-perk-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
    color: var(--rt-text);
}

.rt-perk-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--rt-gold);
    border-radius: 50%;
}

/* ---------- Review Card ---------- */
.rt-review-card {
    background: var(--rt-ivory);
    border-radius: var(--rt-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.rt-review-section {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--rt-border-light);
}

.rt-review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rt-review-section h4 {
    font-family: var(--rt-font-heading);
    font-size: 16px;
    color: var(--rt-gold-dark);
    margin-bottom: 8px;
}

.rt-review-section p {
    font-size: 14px;
    margin-bottom: 4px;
}

/* ---------- Registration Header ---------- */
.rt-reg-header {
    text-align: center;
    margin-bottom: 32px;
}

.rt-reg-success {
    text-align: center;
    padding: 48px 0;
}

.rt-form-error {
    background: #fff5f5;
    border: 1px solid #e53e3e;
    color: #c53030;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

.rt-login-toggle {
    font-size: 14px;
    color: var(--rt-text-light, #6B7280);
}

.rt-success-icon {
    margin-bottom: 24px;
}

/* ---------- FAQ (shared) ---------- */
.rt-faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.rt-faq-item {
    border-bottom: 1px solid var(--rt-border);
}

.rt-wrapper .rt-faq-question {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 20px 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    font-family: var(--rt-font-heading) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--rt-navy) !important;
    text-align: left !important;
    box-shadow: none !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    line-height: 1.4 !important;
}

.rt-faq-icon {
    font-size: 22px;
    color: var(--rt-gold);
    transition: transform var(--rt-transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.rt-faq-open .rt-faq-icon {
    transform: rotate(45deg);
}

.rt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.rt-faq-open .rt-faq-answer {
    max-height: 300px;
}

.rt-faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--rt-text-light);
    line-height: 1.7;
}

/* ---------- Modals ---------- */
.rt-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rt-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.rt-modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--rt-radius-lg);
    padding: 32px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--rt-shadow-lg);
}

.rt-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rt-modal-title {
    font-size: 20px;
    margin: 0;
}

.rt-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--rt-text-muted);
    padding: 0;
    line-height: 1;
}

.rt-modal-close:hover {
    color: var(--rt-text);
}

/* ---------- Toast ---------- */
.rt-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 14px 24px;
    border-radius: var(--rt-radius);
    font-size: 14px;
    font-family: var(--rt-font-body);
    z-index: 100001;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: var(--rt-shadow-lg);
    max-width: 400px;
}

.rt-toast-show {
    transform: translateX(0);
}

.rt-toast-success {
    background: var(--rt-green);
    color: #fff;
}

.rt-toast-error {
    background: var(--rt-red);
    color: #fff;
}

.rt-toast-info {
    background: var(--rt-navy);
    color: #fff;
}

/* ---------- Loading / Spinner ---------- */
.rt-loading {
    text-align: center;
    padding: 40px;
    color: var(--rt-text-muted);
}

.rt-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--rt-border-light);
    border-top-color: var(--rt-gold);
    border-radius: 50%;
    animation: rt-spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes rt-spin {
    to { transform: rotate(360deg); }
}

/* ---------- Empty State ---------- */
.rt-empty-state {
    text-align: center;
    padding: 32px;
    color: var(--rt-text-muted);
    font-size: 14px;
}

.rt-empty-state-sm {
    padding: 20px;
}

.rt-error {
    color: var(--rt-red);
    text-align: center;
    padding: 32px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .rt-hero-headline {
        font-size: 48px !important;
    }

    .rt-display-heading {
        font-size: 34px !important;
    }

    .rt-steps-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .rt-value-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .rt-dest-mosaic {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .rt-dest-tile.rt-dest-wide {
        grid-column: span 1 !important;
    }

    .rt-split-section {
        grid-template-columns: 1fr !important;
    }

    .rt-split-reverse .rt-split-image,
    .rt-split-reverse .rt-split-content {
        order: unset !important;
    }

    .rt-split-image img {
        min-height: 350px !important;
    }

    .rt-split-content {
        padding: 48px 32px !important;
    }

    .rt-browse-layout {
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }

    .rt-profile-body {
        grid-template-columns: 1fr;
    }

    .rt-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rt-hero-immersive {
        min-height: 90vh !important;
    }

    .rt-hero-headline {
        font-size: 36px !important;
    }

    .rt-hero-lead {
        font-size: 17px !important;
    }

    .rt-section-full {
        padding: 60px 0 !important;
    }

    .rt-section-header {
        margin-bottom: 40px !important;
    }

    .rt-display-heading {
        font-size: 28px !important;
    }

    .rt-split-content {
        padding: 40px 24px !important;
    }

    .rt-stat-row {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .rt-steps-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }

    .rt-step-img-wrap {
        width: 140px !important;
        height: 140px !important;
    }

    .rt-value-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .rt-dest-mosaic {
        grid-template-columns: 1fr 1fr !important;
    }

    .rt-dest-tile {
        height: 220px !important;
    }

    .rt-testimonial-duo {
        grid-template-columns: 1fr !important;
    }

    .rt-quote-banner {
        padding: 80px 24px !important;
    }

    .rt-quote-content blockquote {
        font-size: 20px !important;
    }

    .rt-final-cta {
        padding: 80px 24px !important;
    }

    .rt-final-cta h2 {
        font-size: 32px !important;
    }

    .rt-section {
        padding: 48px 0;
    }

    .rt-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rt-form-row {
        grid-template-columns: 1fr;
    }

    .rt-stats-row {
        grid-template-columns: 1fr;
    }

    .rt-browse-layout {
        grid-template-columns: 1fr;
    }

    .rt-filters {
        position: static;
    }

    .rt-member-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .rt-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rt-profile-meta {
        justify-content: center;
    }

    /* Messaging: mobile single-panel */
    .rt-messaging-layout {
        grid-template-columns: 1fr;
        height: 500px;
    }

    .rt-thread-list {
        border-right: none;
    }

    .rt-messaging-layout.rt-thread-active .rt-thread-list {
        display: none;
    }

    .rt-messaging-layout:not(.rt-thread-active) .rt-message-panel {
        display: none;
    }

    .rt-messaging-layout.rt-thread-active .rt-message-panel {
        display: flex;
    }

    .rt-back-btn {
        display: block;
    }

    .rt-nav {
        flex-direction: column;
        gap: 12px;
    }

    .rt-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .rt-group-trips-grid {
        grid-template-columns: 1fr;
    }

    .rt-intro-item {
        flex-wrap: wrap;
    }

    .rt-intro-actions {
        width: 100%;
        margin-top: 8px;
    }

    .rt-gt-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .rt-container {
        padding: 0 16px;
    }

    .rt-hero-headline {
        font-size: 28px !important;
    }

    .rt-hero-lead {
        font-size: 15px !important;
    }

    .rt-hero-inner {
        padding: 0 16px !important;
    }

    .rt-cta-primary {
        padding: 16px 32px !important;
        font-size: 14px !important;
    }

    .rt-scroll-hint {
        display: none !important;
    }

    .rt-display-heading {
        font-size: 24px !important;
    }

    .rt-section-full {
        padding: 48px 0 !important;
    }

    .rt-split-content {
        padding: 32px 16px !important;
    }

    .rt-steps-row {
        grid-template-columns: 1fr !important;
    }

    .rt-step-img-wrap {
        width: 120px !important;
        height: 120px !important;
    }

    .rt-dest-mosaic {
        grid-template-columns: 1fr !important;
    }

    .rt-dest-tile.rt-dest-wide {
        grid-column: span 1 !important;
    }

    .rt-dest-tile {
        height: 200px !important;
    }

    .rt-quote-content blockquote {
        font-size: 18px !important;
    }

    .rt-final-cta h2 {
        font-size: 26px !important;
    }

    .rt-testimonial-block {
        padding: 32px 24px !important;
    }

    .rt-page-title {
        font-size: 24px;
    }

    .rt-section-title {
        font-size: 22px;
    }

    .rt-member-grid {
        grid-template-columns: 1fr;
    }

    .rt-checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rt-form-actions {
        flex-direction: column;
    }

    .rt-form-actions .rt-btn {
        width: 100%;
    }

    .rt-modal-content {
        padding: 20px;
        width: 95%;
    }

    .rt-trip-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rt-trip-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .rt-gt-details {
        grid-template-columns: 1fr;
    }
}

/* ---------- v2.0.1 Mobile Fixes ---------- */

/* Astra sticky header overlap fix for inner RT pages.
   The Astra header is position:fixed — 65px on desktop, ~94px on mobile.
   The .rt-landing has its own full-viewport hero, so exclude it. */
.rt-wrapper:not(.rt-landing) {
    padding-top: 70px;
}
@media (max-width: 921px) {
    .rt-wrapper:not(.rt-landing) {
        padding-top: 100px;
    }
}

/* FAQ horizontal padding on mobile */
@media (max-width: 480px) {
    .rt-faq-list {
        padding: 0 16px;
    }
}

/* Verification upload area */
.rt-verify-upload {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
}

/* Mobile touch target and overflow fixes */
@media (max-width: 375px) {
    .rt-wrapper .rt-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .rt-nav-links {
        gap: 8px;
    }

    .rt-nav-link {
        font-size: 13px;
        padding: 6px 4px;
    }

    .rt-btn {
        min-height: 44px;
        min-width: 44px;
        font-size: 13px;
    }

    .rt-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .rt-input,
    .rt-select,
    .rt-textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .rt-stat-card {
        padding: 12px 8px;
    }

    .rt-stat-number {
        font-size: 24px;
    }

    .rt-intro-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rt-intro-actions {
        width: 100%;
        margin-top: 8px;
    }

    .rt-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .rt-profile-photo {
        margin: 0 auto 16px;
    }

    .rt-profile-actions {
        justify-content: center;
    }

    .rt-msg-bubble {
        max-width: 90%;
    }
}

/* ==========================================================================
   v2.1.0 — Travel History & Ice-Breaker Calls
   ========================================================================== */

/* ---------- Travel Experience Badge ---------- */
.rt-pill-experience {
    background: var(--rt-gold-light);
    color: var(--rt-navy);
    font-weight: 600;
    border: 1px solid var(--rt-gold);
}

/* ---------- Places Visited Section ---------- */
#rt-profile-places {
    white-space: pre-line;
    line-height: 1.7;
}

/* ---------- Ice-Breaker Cards (Dashboard) ---------- */
.rt-icebreaker-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt-icebreaker-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: var(--rt-ivory);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius);
    transition: border-color var(--rt-transition);
}

.rt-icebreaker-card:hover {
    border-color: var(--rt-gold);
}

.rt-icebreaker-accepted {
    border-left: 3px solid var(--rt-green);
}

.rt-icebreaker-pending {
    border-left: 3px solid var(--rt-gold);
}

.rt-icebreaker-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rt-icebreaker-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rt-border);
}

.rt-icebreaker-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.rt-icebreaker-name {
    font-family: var(--rt-font-heading);
    font-weight: 600;
    color: var(--rt-navy);
    text-decoration: none;
    font-size: 15px;
}

.rt-icebreaker-name:hover {
    color: var(--rt-gold);
}

.rt-icebreaker-meta {
    font-size: 13px;
    color: var(--rt-text-light);
}

.rt-icebreaker-status {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rt-icebreaker-accepted .rt-icebreaker-status {
    color: var(--rt-green);
}

.rt-icebreaker-pending .rt-icebreaker-status {
    color: var(--rt-gold-dark);
}

.rt-icebreaker-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ---------- Ice-Breaker Button on Profile ---------- */
#rt-icebreaker-btn-wrap {
    margin-top: 8px;
}

#rt-schedule-icebreaker-btn {
    border-color: var(--rt-gold);
    color: var(--rt-gold-dark);
}

#rt-schedule-icebreaker-btn:hover {
    background: var(--rt-gold);
    color: #fff;
}

/* ---------- Ice-Breaker Button in Messages ---------- */
#rt-msg-icebreaker-btn {
    white-space: nowrap;
}

/* ---------- Responsive: Ice-Breaker ---------- */
@media (max-width: 480px) {
    .rt-icebreaker-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .rt-icebreaker-actions {
        width: 100%;
    }

    .rt-icebreaker-actions .rt-btn {
        flex: 1;
    }
}

/* ==========================================================================
   v2.1.0 — Mobile Layout Fixes
   ========================================================================== */

/* Fix 1: Landing page hero — add padding so header doesn't cover content */
@media (max-width: 921px) {
    .rt-hero-immersive {
        padding-top: 94px !important;
    }
}

/* Fix 2: Footer — left-align on mobile to match header.
   Overrides ALL theme "force center" footer rules via later cascade position. */
@media (max-width: 767px) {
    footer.elementor-location-footer .e-con,
    footer.elementor-location-footer > .elementor > .e-con,
    footer.elementor-location-footer .e-con .e-con,
    footer.elementor-location-footer .e-con .e-con .e-con,
    footer.elementor-location-footer .e-con-inner {
        align-items: flex-start !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    footer.elementor-location-footer .elementor-widget,
    footer.elementor-location-footer .elementor-widget-heading,
    footer.elementor-location-footer .elementor-heading-title,
    footer.elementor-location-footer h1,
    footer.elementor-location-footer h2,
    footer.elementor-location-footer h3,
    footer.elementor-location-footer h4,
    footer.elementor-location-footer h5,
    footer.elementor-location-footer h6,
    footer.elementor-location-footer p,
    footer.elementor-location-footer .elementor-text-editor,
    footer.elementor-location-footer .elementor-text-editor p {
        text-align: left !important;
    }
}

/* ===== EMOJI AVATARS ===== */
.rt-emoji-avatar {
    flex-shrink: 0;
    user-select: none;
}

/* ===== AVATAR BUILDER (Registration) ===== */
.rt-avatar-builder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.rt-avatar-preview {
    margin-bottom: 8px;
}
.rt-emoji-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 400px;
}
.rt-emoji-option {
    width: 44px;
    height: 44px;
    font-size: 22px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rt-emoji-option:hover {
    border-color: var(--rt-gold, #C9A96E);
    transform: scale(1.1);
}
.rt-emoji-option.selected {
    border-color: var(--rt-gold, #C9A96E);
    background: rgba(201,169,110,0.1);
    box-shadow: 0 0 0 2px rgba(201,169,110,0.3);
}
.rt-color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.rt-color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
}
.rt-color-swatch:hover {
    transform: scale(1.15);
}
.rt-color-swatch.selected {
    border-color: var(--rt-gold, #C9A96E);
    box-shadow: 0 0 0 2px rgba(201,169,110,0.4);
}

/* ===== RADIO GROUP (Visibility) ===== */
.rt-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rt-radio-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.rt-radio-label:hover {
    border-color: var(--rt-gold, #C9A96E);
}
.rt-radio-label:has(input:checked) {
    border-color: var(--rt-gold, #C9A96E);
    background: rgba(201,169,110,0.05);
}
.rt-radio {
    margin-top: 3px;
    accent-color: var(--rt-gold, #C9A96E);
}

/* ===== GROUP TRAVEL INLINE BANNER (Landing Page) ===== */
.rt-group-banner {
    background: var(--rt-ivory, #FAF7F2);
    border-top: 1px solid var(--rt-border-light, #F0EDE8);
    border-bottom: 1px solid var(--rt-border-light, #F0EDE8);
}
.rt-group-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    max-width: 900px;
    margin: 0 auto;
}
.rt-group-banner-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.rt-group-banner-text {
    font-family: var(--rt-font-body, 'Roboto', sans-serif);
    font-size: 15px;
    line-height: 1.5;
    color: var(--rt-text, #2C2C2C);
    flex: 1;
}
.rt-group-banner-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--rt-navy, #1B2A4A);
}
.rt-group-banner-cta {
    flex-shrink: 0;
    font-family: var(--rt-font-body, 'Roboto', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--rt-gold-dark, #B08F55);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.rt-group-banner-cta:hover {
    color: var(--rt-gold, #C9A96E);
}

/* ===== PROFILE SETTINGS CARD ===== */
#rt-profile-settings-card {
    margin-bottom: 24px;
}

/* ===== MOBILE GROUP BANNER ===== */
@media (max-width: 600px) {
    .rt-group-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 10px;
    }
    .rt-group-banner-cta {
        font-size: 15px;
    }
}

/* ---------- Ready to Book Toggle ---------- */
.rt-booking-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rt-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}
.rt-toggle input { opacity: 0; width: 0; height: 0; }
.rt-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--rt-border);
    border-radius: 28px;
    transition: var(--rt-transition);
}
.rt-toggle-slider:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--rt-transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.rt-toggle input:checked + .rt-toggle-slider {
    background: var(--rt-green);
}
.rt-toggle input:checked + .rt-toggle-slider:before {
    transform: translateX(24px);
}

/* Ready to Book Badge */
.rt-ready-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    background: var(--rt-green-light);
    color: var(--rt-green);
    letter-spacing: 0.3px;
}
.rt-ready-badge::before {
    content: "●";
    font-size: 8px;
    color: var(--rt-green);
}

/* Book Together Button */
.rt-btn-book-together {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rt-green);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--rt-radius);
    font-family: var(--rt-font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--rt-transition);
}
.rt-btn-book-together:hover {
    background: #245A42;
    transform: translateY(-1px);
}
.rt-btn-book-together svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ---------- Activity Feed ---------- */
.rt-activity-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rt-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rt-border-light, #F0EDE8);
}

.rt-activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rt-activity-item:first-child {
    padding-top: 0;
}

.rt-activity-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rt-ivory, #FAF7F2);
    border-radius: 50%;
}

.rt-activity-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.rt-activity-text {
    font-family: var(--rt-font-body);
    font-size: 14px;
    color: var(--rt-text);
    text-decoration: none;
    line-height: 1.4;
}

.rt-activity-text:hover {
    color: var(--rt-gold);
}

.rt-activity-time {
    font-family: var(--rt-font-body);
    font-size: 12px;
    color: var(--rt-text-light);
}
