/* ==========================================================================
   Roma Courts Serviced Apartments â€” Custom Theme CSS
   Design tokens, component styles, animations, and Tailwind overrides.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Brand colors */
    --rc-primary: #6f1410;
    --rc-primary-dark: #4a0d0b;
    --rc-primary-light: #8b2a26;
    --rc-accent: #d2a45d;
    --rc-accent-light: #e6c88a;
    --rc-white: #ffffff;
    --rc-off-white: #faf8f5;
    --rc-black: #1a1a1a;
    --rc-gray-700: #374151;
    --rc-gray-300: #d1d5db;
    --rc-overlay: rgba(111, 20, 16, 0.75);
    --rc-overlay-dark: rgba(26, 26, 26, 0.6);

    /* Typography */
    --rc-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --rc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --rc-section-py: 5rem;
    --rc-section-px: 1.5rem;
    --rc-max-width: 1280px;
    --rc-radius: 1rem;
    --rc-radius-lg: 1.5rem;
    --rc-radius-full: 9999px;

    /* Transitions */
    --rc-transition: 0.3s ease;
    --rc-transition-slow: 0.6s ease;

    /* Shadows */
    --rc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --rc-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --rc-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --rc-shadow-gold: 0 0 30px rgba(210, 164, 93, 0.3);
}

/* --------------------------------------------------------------------------
   2. Base Resets & Globals
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--rc-font-body);
    color: var(--rc-black);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rc-font-heading);
    line-height: 1.2;
    color: var(--rc-black);
}

a {
    color: var(--rc-primary);
    text-decoration: none;
    transition: color var(--rc-transition);
}

a:hover {
    color: var(--rc-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Skip to content (accessibility) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rc-accent);
    color: var(--rc-black);
    padding: 0.75rem 1.5rem;
    border-radius: var(--rc-radius);
    font-weight: 600;
    z-index: 10000;
    transition: top var(--rc-transition);
}

.skip-to-content:focus {
    top: 1rem;
}

/* --------------------------------------------------------------------------
   3. Component Classes
   -------------------------------------------------------------------------- */

/* Buttons */
.rc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--rc-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--rc-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--rc-transition);
    text-decoration: none;
    line-height: 1;
}

.rc-btn-primary {
    background: var(--rc-primary);
    color: var(--rc-white);
    border-color: var(--rc-primary);
}

.rc-btn-primary:hover {
    background: var(--rc-primary-dark);
    border-color: var(--rc-primary-dark);
    color: var(--rc-white);
    transform: translateY(-2px);
    box-shadow: var(--rc-shadow-md);
}

.rc-btn-accent {
    background: linear-gradient(135deg, var(--rc-accent), var(--rc-accent-light));
    color: var(--rc-black);
    border-color: var(--rc-accent);
}

.rc-btn-accent:hover {
    background: linear-gradient(135deg, var(--rc-accent-light), var(--rc-accent));
    transform: translateY(-2px);
    box-shadow: var(--rc-shadow-gold);
    color: var(--rc-black);
}

.rc-btn-outline {
    background: transparent;
    color: var(--rc-white);
    border-color: var(--rc-white);
}

.rc-btn-outline:hover {
    background: var(--rc-white);
    color: var(--rc-primary);
    transform: translateY(-2px);
}

.rc-btn-outline-dark {
    background: transparent;
    color: var(--rc-primary);
    border-color: var(--rc-primary);
}

.rc-btn-outline-dark:hover {
    background: var(--rc-primary);
    color: var(--rc-white);
    transform: translateY(-2px);
}

/* Section wrapper */
.rc-section {
    padding: var(--rc-section-py) var(--rc-section-px);
}

.rc-container {
    max-width: var(--rc-max-width);
    margin: 0 auto;
    width: 100%;
}

/* Section headings */
.rc-section-title {
    font-family: var(--rc-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--rc-black);
}

.rc-section-subtitle {
    text-align: center;
    color: var(--rc-gray-700);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.rc-section-divider {
    width: 60px;
    height: 3px;
    background: var(--rc-accent);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

/* Cards */
.rc-card {
    background: var(--rc-white);
    border-radius: var(--rc-radius-lg);
    overflow: hidden;
    box-shadow: var(--rc-shadow-sm);
    transition: all var(--rc-transition);
}

.rc-card:hover {
    box-shadow: var(--rc-shadow-lg);
    transform: translateY(-4px);
}

.rc-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--rc-transition-slow);
}

.rc-card:hover .rc-card-image {
    transform: scale(1.05);
}

.rc-card-body {
    padding: 1.5rem;
}

/* Overlay â€” Dark for text legibility on bright images */
.rc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 26, 26, 0.92) 0%,
            rgba(111, 20, 16, 0.65) 40%,
            rgba(26, 26, 26, 0.55) 100%);
    z-index: 1;
}

/* Glassmorphism */
.rc-glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rc-radius-lg);
}

.rc-glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rc-radius-lg);
}

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.rc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 160px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    /* fully contain the logo pod */
}

.rc-header.is-scrolled {
    background: var(--rc-primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    height: 90px;
    padding: 0 1.5rem;
}

/* 3-column flex layout */
.rc-header-inner {
    max-width: var(--rc-max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rc-header-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.rc-header-col-left {
    justify-content: flex-start;
}

.rc-header-col-center {
    justify-content: center;
}

.rc-header-col-right {
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Logo pod â€” clean, no radius, white background */
.rc-logo-pod {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 150px;
    height: auto;
    background: white;
    padding: 6px 10px;
    overflow: hidden;
    transition: all 0.35s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.rc-logo-pod img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.rc-header.is-scrolled .rc-logo-pod {
    max-width: 100px;
    padding: 4px 8px;
}

/* Menu & footer logo pods â€” clean, white background */
.rc-menu-logo-pod,
.rc-footer-logo-pod {
    max-width: 100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 4px 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.rc-menu-logo-pod img,
.rc-footer-logo-pod img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Header CTA buttons */
.rc-btn-header-rooms {
    font-size: 0.8125rem;
    padding: 0.75rem 1.5rem;
}

.rc-btn-header-reserve {
    font-size: 0.8125rem;
    padding: 0.75rem 1.5rem;
}

.rc-btn-reserve-icon {
    display: none;
}

/* Hamburger button */
.rc-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.rc-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--rc-white);
    transition: all var(--rc-transition);
    border-radius: 2px;
}

.rc-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.rc-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.rc-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------------------------------------------------
   5. Off-Canvas Mega Menu
   -------------------------------------------------------------------------- */
.rc-mega-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--rc-transition);
}

.rc-mega-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.rc-mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(480px, 85vw);
    background: var(--rc-primary-dark);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 2rem;
}

.rc-mega-menu.is-active {
    transform: translateX(0);
}

.rc-mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rc-mega-menu-close {
    background: none;
    border: none;
    color: var(--rc-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--rc-transition);
}

.rc-mega-menu-close:hover {
    color: var(--rc-accent);
}

.rc-mega-menu-section {
    margin-bottom: 2rem;
}

.rc-mega-menu-section h3 {
    color: var(--rc-accent);
    font-family: var(--rc-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.rc-mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rc-mega-menu-links li {
    margin-bottom: 0.25rem;
}

.rc-mega-menu-links a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 400;
    transition: all var(--rc-transition);
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
}

.rc-mega-menu-links a:hover {
    color: var(--rc-white);
    border-left-color: var(--rc-accent);
    padding-left: 1.25rem;
}

.rc-mega-menu-cta {
    display: block;
    background: linear-gradient(135deg, var(--rc-accent), var(--rc-accent-light));
    color: var(--rc-black);
    text-align: center;
    padding: 1rem 2rem;
    border-radius: var(--rc-radius);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    transition: all var(--rc-transition);
    text-decoration: none;
}

.rc-mega-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--rc-shadow-gold);
    color: var(--rc-black);
}

.rc-mega-menu-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rc-mega-menu-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    transition: color var(--rc-transition);
}

.rc-mega-menu-social a:hover {
    color: var(--rc-accent);
}

/* Menu item stagger animation */
.rc-mega-menu.is-active .rc-mega-menu-section {
    animation: menuItemFade 0.4s ease forwards;
}

.rc-mega-menu.is-active .rc-mega-menu-section:nth-child(1) {
    animation-delay: 0.1s;
}

.rc-mega-menu.is-active .rc-mega-menu-section:nth-child(2) {
    animation-delay: 0.2s;
}

.rc-mega-menu.is-active .rc-mega-menu-section:nth-child(3) {
    animation-delay: 0.3s;
}

.rc-mega-menu.is-active .rc-mega-menu-section:nth-child(4) {
    animation-delay: 0.4s;
}

/* --------------------------------------------------------------------------
   6. Hero Slider
   -------------------------------------------------------------------------- */
.rc-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.rc-hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.rc-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 8s ease-in-out infinite alternate;
}

.rc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--rc-white);
    padding: 170px 1.5rem 2rem;
    max-width: 900px;
}

.rc-hero-pretitle {
    font-family: var(--rc-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--rc-accent);
    margin-bottom: 1rem;
}

.rc-hero-title {
    font-family: var(--rc-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--rc-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.rc-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   7. Reservation Form (Glassmorphism)
   -------------------------------------------------------------------------- */
.rc-reservation-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(210, 164, 93, 0.3);
    border-radius: var(--rc-radius-lg);
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.rc-reservation-form .rc-form-title {
    color: var(--rc-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 1.5rem;
}

.rc-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rc-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.rc-form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.rc-form-group select,
.rc-form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rc-radius);
    color: var(--rc-white);
    font-family: var(--rc-font-body);
    font-size: 0.9375rem;
    transition: all var(--rc-transition);
    -webkit-appearance: none;
    appearance: none;
}

.rc-form-group select:focus,
.rc-form-group input:focus {
    outline: none;
    border-color: var(--rc-accent);
    box-shadow: 0 0 0 3px rgba(210, 164, 93, 0.2);
}

.rc-form-group select option {
    background: var(--rc-primary-dark);
    color: var(--rc-white);
}

/* Date input icon fix */
.rc-form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.rc-form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--rc-accent), var(--rc-accent-light));
    color: var(--rc-black);
    border: none;
    border-radius: var(--rc-radius-full);
    font-family: var(--rc-font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--rc-transition);
}

.rc-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--rc-shadow-gold);
}

.rc-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Honeypot (hidden from humans, visible to bots) */
.rc-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Form messages */
.rc-form-message {
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--rc-radius);
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.rc-form-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.rc-form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */
.rc-footer {
    background: var(--rc-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 1.5rem 0;
}

.rc-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--rc-transition);
}

.rc-footer a:hover {
    color: var(--rc-accent);
}

.rc-footer-grid {
    max-width: var(--rc-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.rc-footer-col h4 {
    color: var(--rc-accent);
    font-family: var(--rc-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rc-footer-col p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.rc-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rc-footer-col ul li {
    margin-bottom: 0.5rem;
}

.rc-footer-col ul li a {
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rc-footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.25rem;
}

.rc-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.rc-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all var(--rc-transition);
}

.rc-footer-social a:hover {
    background: var(--rc-accent);
    border-color: var(--rc-accent);
    color: var(--rc-black);
    transform: translateY(-3px);
}

/* Footer map */
.rc-footer-map {
    border-radius: var(--rc-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.rc-footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
}

/* Footer newsletter form */
.rc-footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rc-footer-newsletter input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rc-radius);
    color: var(--rc-white);
    font-family: var(--rc-font-body);
    font-size: 0.875rem;
}

.rc-footer-newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.rc-footer-newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--rc-accent);
}

.rc-footer-newsletter button {
    padding: 0.75rem 1.5rem;
    background: var(--rc-accent);
    color: var(--rc-black);
    border: none;
    border-radius: var(--rc-radius);
    font-family: var(--rc-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--rc-transition);
}

.rc-footer-newsletter button:hover {
    background: var(--rc-accent-light);
    transform: translateY(-1px);
}

/* Footer bottom */
.rc-footer-bottom {
    max-width: var(--rc-max-width);
    margin: 3rem auto 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   9. Gallery
   -------------------------------------------------------------------------- */
.rc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.rc-gallery-item {
    border-radius: var(--rc-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.rc-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--rc-transition-slow);
}

.rc-gallery-item:hover img {
    transform: scale(1.08);
}

.rc-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(111, 20, 16, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--rc-transition);
}

.rc-gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.rc-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--rc-transition);
}

.rc-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.rc-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--rc-radius);
}

.rc-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--rc-white);
    font-size: 2rem;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   10. Page Hero (Inner Pages)
   -------------------------------------------------------------------------- */
.rc-page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.rc-page-hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.rc-page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--rc-white);
}

.rc-page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--rc-white);
    margin-bottom: 0.5rem;
}

/* Breadcrumbs */
.rc-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
    margin-top: 1rem;
}

.rc-breadcrumbs a {
    color: var(--rc-accent);
}

.rc-breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   11. Animations
   -------------------------------------------------------------------------- */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes menuItemFade {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll reveal classes */
.rc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rc-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rc-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.rc-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rc-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.rc-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.rc-stagger.is-visible>*:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: translateY(0);
}

.rc-stagger.is-visible>*:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.rc-stagger.is-visible>*:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.rc-stagger.is-visible>*:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.rc-stagger.is-visible>*:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.rc-stagger.is-visible>*:nth-child(6) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .rc-hero-slide img {
        animation: none;
    }

    .rc-reveal,
    .rc-reveal-left,
    .rc-reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   12. Blog / Posts
   -------------------------------------------------------------------------- */
.rc-post-card {
    background: var(--rc-white);
    border-radius: var(--rc-radius-lg);
    overflow: hidden;
    box-shadow: var(--rc-shadow-sm);
    transition: all var(--rc-transition);
}

.rc-post-card:hover {
    box-shadow: var(--rc-shadow-lg);
    transform: translateY(-4px);
}

.rc-post-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.rc-post-card-body {
    padding: 1.5rem;
}

.rc-post-card-meta {
    font-size: 0.8125rem;
    color: var(--rc-gray-700);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rc-post-card-title {
    font-family: var(--rc-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.rc-post-card-title a {
    color: var(--rc-black);
}

.rc-post-card-title a:hover {
    color: var(--rc-primary);
}

.rc-post-card-excerpt {
    font-size: 0.9375rem;
    color: var(--rc-gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.rc-read-more {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rc-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.rc-read-more:hover {
    color: var(--rc-primary);
}

/* Single post */
.rc-single-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.85;
}

.rc-single-content h2,
.rc-single-content h3,
.rc-single-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.rc-single-content p {
    margin-bottom: 1.5rem;
}

.rc-single-content img {
    border-radius: var(--rc-radius);
    margin: 2rem 0;
}

.rc-single-content blockquote {
    border-left: 4px solid var(--rc-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--rc-gray-700);
}

/* --------------------------------------------------------------------------
   13. Amenity Icons Grid
   -------------------------------------------------------------------------- */
.rc-amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.rc-amenity-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--rc-radius-lg);
    transition: all var(--rc-transition);
}

.rc-amenity-item:hover {
    background: var(--rc-off-white);
    box-shadow: var(--rc-shadow-md);
    transform: translateY(-4px);
}

.rc-amenity-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    color: var(--rc-accent);
}

.rc-amenity-item h4 {
    font-family: var(--rc-font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rc-amenity-item p {
    font-size: 0.875rem;
    color: var(--rc-gray-700);
}

/* --------------------------------------------------------------------------
   14. Contact Section
   -------------------------------------------------------------------------- */
.rc-contact-form {
    background: var(--rc-off-white);
    padding: 2.5rem;
    border-radius: var(--rc-radius-lg);
}

.rc-contact-form .rc-form-group {
    margin-bottom: 1.25rem;
}

.rc-contact-form label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rc-gray-700);
}

.rc-contact-form input,
.rc-contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--rc-white);
    border: 1px solid var(--rc-gray-300);
    border-radius: var(--rc-radius);
    font-family: var(--rc-font-body);
    font-size: 0.9375rem;
    color: var(--rc-black);
    transition: all var(--rc-transition);
}

.rc-contact-form input:focus,
.rc-contact-form textarea:focus {
    outline: none;
    border-color: var(--rc-accent);
    box-shadow: 0 0 0 3px rgba(210, 164, 93, 0.15);
}

.rc-contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* --------------------------------------------------------------------------
   15. Virtual Tour Timeline
   -------------------------------------------------------------------------- */
.rc-tour-timeline {
    position: relative;
    padding-left: 0;
}

.rc-tour-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.rc-tour-step:last-child {
    margin-bottom: 0;
}

.rc-tour-step:nth-child(odd) .rc-tour-image {
    order: 1;
}

.rc-tour-step:nth-child(odd) .rc-tour-connector {
    order: 2;
}

.rc-tour-step:nth-child(odd) .rc-tour-text {
    order: 3;
}

.rc-tour-step:nth-child(even) .rc-tour-text {
    order: 1;
    text-align: right;
}

.rc-tour-step:nth-child(even) .rc-tour-connector {
    order: 2;
}

.rc-tour-step:nth-child(even) .rc-tour-image {
    order: 3;
}

.rc-tour-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.rc-tour-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rc-accent), var(--rc-accent-light));
    color: var(--rc-black);
    font-family: var(--rc-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(210, 164, 93, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Gold connector line between steps */
.rc-tour-step:not(:last-child) .rc-tour-connector::after {
    content: '';
    position: absolute;
    top: 60px;
    bottom: -4rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--rc-accent), rgba(210, 164, 93, 0.2));
}

.rc-tour-image {
    border-radius: var(--rc-radius-lg);
    overflow: hidden;
    box-shadow: var(--rc-shadow-lg);
    border: 2px solid rgba(210, 164, 93, 0.3);
}

.rc-tour-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--rc-transition-slow);
}

.rc-tour-image:hover img {
    transform: scale(1.05);
}

.rc-tour-pretitle {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--rc-accent);
    margin-bottom: 0.5rem;
}

.rc-tour-title {
    font-family: var(--rc-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.rc-tour-desc {
    color: var(--rc-gray-700);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   16. Instagram Feed Section
   -------------------------------------------------------------------------- */
.rc-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
}

.rc-instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--rc-radius);
    aspect-ratio: 1;
}

.rc-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rc-transition-slow);
}

.rc-instagram-item:hover img {
    transform: scale(1.1);
}

.rc-instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    inset: 0;
    background: rgba(210, 164, 93, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--rc-white);
    opacity: 0;
    transition: opacity var(--rc-transition);
}

.rc-instagram-item:hover::after {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   17. Chat Widget
   -------------------------------------------------------------------------- */
.rc-chat-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rc-accent), var(--rc-accent-light));
    color: var(--rc-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(210, 164, 93, 0.4);
    z-index: 8000;
    border: none;
    transition: all var(--rc-transition);
    animation: chatPulse 3s ease-in-out infinite;
}

.rc-chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(210, 164, 93, 0.6);
}

.rc-chat-bubble.is-open {
    animation: none;
}

@keyframes chatPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(210, 164, 93, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(210, 164, 93, 0.7);
    }
}

.rc-chat-panel {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    width: 380px;
    max-height: 520px;
    background: var(--rc-white);
    border-radius: var(--rc-radius-lg);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 8001;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}

.rc-chat-panel.is-open {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.rc-chat-header {
    background: var(--rc-primary);
    color: var(--rc-white);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rc-chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rc-chat-header-info .rc-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc-black);
    font-weight: 700;
    font-size: 0.875rem;
}

.rc-chat-header h4 {
    color: var(--rc-white);
    font-family: var(--rc-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

.rc-chat-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin: 0;
}

.rc-chat-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--rc-transition);
}

.rc-chat-close:hover {
    color: var(--rc-white);
}

.rc-chat-body {
    padding: 1.5rem;
    max-height: 380px;
    overflow-y: auto;
}

.rc-chat-message {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

.rc-chat-message-bot {
    justify-content: flex-start;
}

.rc-chat-message-bubble {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: var(--rc-radius) var(--rc-radius) var(--rc-radius) 4px;
    background: var(--rc-off-white);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--rc-black);
}

.rc-chat-form-step {
    margin-top: 1rem;
}

.rc-chat-form-step label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rc-gray-700);
    margin-bottom: 0.375rem;
}

.rc-chat-form-step input,
.rc-chat-form-step textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--rc-gray-300);
    border-radius: var(--rc-radius);
    font-family: var(--rc-font-body);
    font-size: 0.875rem;
    transition: border-color var(--rc-transition);
}

.rc-chat-form-step input:focus,
.rc-chat-form-step textarea:focus {
    outline: none;
    border-color: var(--rc-accent);
    box-shadow: 0 0 0 3px rgba(210, 164, 93, 0.15);
}

.rc-chat-form-step textarea {
    resize: vertical;
    min-height: 80px;
}

.rc-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--rc-accent), var(--rc-accent-light));
    color: var(--rc-black);
    border: none;
    border-radius: var(--rc-radius-full);
    font-family: var(--rc-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--rc-transition);
}

.rc-chat-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--rc-shadow-gold);
}

.rc-chat-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.rc-chat-success {
    text-align: center;
    padding: 1rem 0;
}

.rc-chat-success i {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .rc-tour-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .rc-tour-step .rc-tour-image,
    .rc-tour-step .rc-tour-text {
        order: unset !important;
    }

    .rc-tour-step .rc-tour-text {
        text-align: left !important;
    }

    .rc-tour-connector {
        flex-direction: row;
        gap: 1rem;
    }

    .rc-tour-step:not(:last-child) .rc-tour-connector::after {
        display: none;
    }

    .rc-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --rc-section-py: 3.5rem;
    }

    .rc-section-title {
        font-size: 1.75rem;
    }

    /* Header mobile â€” logo pod fully contained */
    .rc-header {
        height: 130px;
    }

    .rc-header.is-scrolled {
        height: 80px;
    }

    .rc-logo-pod {
        width: 110px;
        height: 110px;
        padding: 8px;
    }

    .rc-header.is-scrolled .rc-logo-pod {
        width: 70px;
        height: 70px;
        padding: 6px;
    }

    .rc-hero-content {
        padding-top: 140px;
    }

    .rc-btn-header-rooms {
        display: none;
    }

    .rc-btn-header-reserve {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    .rc-btn-reserve-text {
        display: none;
    }

    .rc-btn-reserve-icon {
        display: inline;
    }

    /* Hero mobile */
    .rc-hero {
        min-height: 100svh;
    }

    .rc-hero-title {
        font-size: clamp(1.75rem, 5vw, 3rem);
    }

    .rc-hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    /* Reservation form mobile */
    .rc-reservation-form {
        padding: 1rem;
        margin-top: 1rem;
    }

    .rc-form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .rc-form-group select,
    .rc-form-group input {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }

    .rc-form-submit {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .rc-reservation-form .rc-form-title {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    /* Footer mobile */
    .rc-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Page hero mobile */
    .rc-page-hero {
        height: 280px;
    }

    .rc-page-hero-content h1 {
        font-size: 1.75rem;
    }

    /* Gallery mobile */
    .rc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Chat widget mobile */
    .rc-chat-panel {
        right: 0.75rem;
        left: 0.75rem;
        width: auto;
        bottom: 5.5rem;
    }

    .rc-chat-bubble {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    /* Instagram mobile */
    .rc-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Tour mobile */
    .rc-tour-image img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .rc-hero-content {
        padding: 125px 1rem 1rem;
    }

    .rc-gallery-grid {
        grid-template-columns: 1fr;
    }

    .rc-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rc-tour-number {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
}

/* --------------------------------------------------------------------------
   19. Availability Check Modal
   -------------------------------------------------------------------------- */
.rc-avail-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.rc-avail-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.rc-avail-modal {
    background: var(--rc-white);
    border-radius: var(--rc-radius-lg);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-avail-modal-overlay.is-active .rc-avail-modal {
    transform: translateY(0) scale(1);
}

.rc-avail-modal-header {
    background: var(--rc-primary);
    padding: 1.75rem 2rem 1.5rem;
    color: var(--rc-white);
    position: relative;
}

.rc-avail-modal-header h3 {
    font-family: var(--rc-font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--rc-white);
    margin: 0 0 0.5rem;
}

.rc-avail-modal-header p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.rc-avail-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(210, 164, 93, 0.2);
    border: 1px solid rgba(210, 164, 93, 0.5);
    border-radius: var(--rc-radius-full);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rc-accent);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rc-avail-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc-white);
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--rc-transition);
}

.rc-avail-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.rc-avail-modal-body {
    padding: 2rem;
}

.rc-avail-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rc-avail-tag {
    background: var(--rc-off-white);
    border: 1px solid var(--rc-gray-300);
    border-radius: var(--rc-radius-full);
    padding: 0.25rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--rc-gray-700);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.rc-avail-tag i {
    color: var(--rc-accent);
}

.rc-avail-modal-form .rc-avail-field {
    margin-bottom: 1rem;
}

.rc-avail-modal-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rc-gray-700);
    margin-bottom: 0.375rem;
}

.rc-avail-modal-form input {
    width: 100%;
    padding: 0.8125rem 1rem;
    border: 1.5px solid var(--rc-gray-300);
    border-radius: var(--rc-radius);
    font-family: var(--rc-font-body);
    font-size: 0.9375rem;
    transition: border-color var(--rc-transition), box-shadow var(--rc-transition);
    background: var(--rc-white);
    color: var(--rc-black);
}

.rc-avail-modal-form input:focus {
    outline: none;
    border-color: var(--rc-accent);
    box-shadow: 0 0 0 3px rgba(210, 164, 93, 0.15);
}

.rc-avail-modal-form input.is-highlighted {
    border-color: var(--rc-accent);
}

.rc-avail-modal-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--rc-accent), var(--rc-accent-light));
    color: var(--rc-black);
    border: none;
    border-radius: var(--rc-radius-full);
    font-family: var(--rc-font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--rc-transition);
    margin-top: 0.5rem;
}

.rc-avail-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--rc-shadow-gold);
}

.rc-avail-modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.rc-avail-skip {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--rc-gray-700);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--rc-transition);
}

.rc-avail-skip:hover {
    opacity: 1;
    color: var(--rc-primary);
}

.rc-avail-modal-message {
    padding: 0.625rem 1rem;
    border-radius: var(--rc-radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.rc-avail-modal-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.rc-avail-modal-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* --------------------------------------------------------------------------
   20. Parallax
   -------------------------------------------------------------------------- */
[data-parallax] {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    [data-parallax] {
        transform: none !important;
    }
}

/* --------------------------------------------------------------------------
   21. Chat Input Wrapper (inside chat panel)
   -------------------------------------------------------------------------- */
.rc-chat-footer {
    border-top: 1px solid var(--rc-gray-300);
    padding: 1rem 1.25rem;
    background: var(--rc-white);
}

.rc-chat-input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    border: 1.5px solid var(--rc-gray-300);
    border-radius: var(--rc-radius);
    padding: 0.5rem 0.75rem;
    transition: border-color var(--rc-transition);
    background: var(--rc-off-white);
}

.rc-chat-input-wrapper:focus-within {
    border-color: var(--rc-accent);
    box-shadow: 0 0 0 3px rgba(210, 164, 93, 0.12);
}

.rc-chat-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--rc-font-body);
    font-size: 0.9rem;
    resize: none;
    outline: none;
    max-height: 120px;
    line-height: 1.5;
    color: var(--rc-black);
}

.rc-chat-input::placeholder {
    color: #9ca3af;
}

.rc-chat-send {
    background: linear-gradient(135deg, var(--rc-accent), var(--rc-accent-light));
    border: none;
    border-radius: var(--rc-radius);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc-black);
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--rc-transition);
    font-size: 0.875rem;
}

.rc-chat-send:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: var(--rc-shadow-gold);
}

.rc-chat-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.rc-chat-message-user {
    flex-direction: row-reverse;
}

.rc-chat-message-user .rc-chat-message-bubble {
    background: var(--rc-primary);
    color: var(--rc-white);
    border-radius: var(--rc-radius) var(--rc-radius) 4px var(--rc-radius);
    margin-left: auto;
}

.rc-chat-message-time {
    font-size: 0.6875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
    align-self: flex-end;
}

.rc-chat-message {
    flex-direction: column;
}

.rc-chat-message-bot {
    align-items: flex-start;
}

.rc-chat-message-user {
    align-items: flex-end;
}

.rc-chat-typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.75rem 1rem;
    background: var(--rc-off-white);
    border-radius: var(--rc-radius) var(--rc-radius) var(--rc-radius) 4px;
    width: fit-content;
}

.rc-chat-typing-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rc-gray-700);
    animation: typingBounce 1.2s infinite;
}

.rc-chat-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.rc-chat-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.rc-chat-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PRICING BADGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rc-price-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    margin: 1rem 0;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(210, 164, 93, 0.1), rgba(210, 164, 93, 0.05));
    border-left: 4px solid var(--rc-accent);
    border-radius: var(--rc-radius);
}

.rc-price-amount {
    font-family: var(--rc-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rc-primary);
}

.rc-price-divider {
    color: var(--rc-gray-400);
    font-size: 1.1rem;
}

.rc-price-usd {
    font-family: var(--rc-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rc-accent);
}

.rc-price-period {
    font-size: 0.8rem;
    color: var(--rc-gray-600);
    margin-left: 0.25rem;
}

.rc-price-note {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rc-gray-400);
    margin-left: 0.25rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   GUEST REVIEWS CAROUSEL
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rc-reviews-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.rc-reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: rc-reviews-scroll 30s linear infinite;
    width: max-content;
}

.rc-reviews-track:hover {
    animation-play-state: paused;
}

@keyframes rc-reviews-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.rc-review-card {
    flex-shrink: 0;
    width: 340px;
    background: white;
    border-radius: var(--rc-radius-lg);
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rc-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.rc-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rc-review-platform {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.rc-review-platform.booking { background: #003580; color: white; }
.rc-review-platform.tripadvisor { background: #34e0a1; color: #000; }
.rc-review-platform.hotels { background: #d32f2f; color: white; }

.rc-review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.85rem;
}

.rc-review-text {
    font-size: 0.9rem;
    color: var(--rc-gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.rc-review-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rc-black);
}

.rc-review-count {
    font-size: 0.75rem;
    color: var(--rc-gray-500);
}

/* TripAdvisor inline SVG sizing */
.rc-tripadvisor-link svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.rc-footer-social .rc-tripadvisor-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Legal content styling */
.rc-legal-content h2 {
    font-family: var(--rc-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--rc-black);
}

.rc-legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.rc-legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--rc-gray-700);
}

.rc-legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--rc-gray-700);
}

.rc-legal-content a {
    color: var(--rc-accent);
    text-decoration: underline;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PRICING BADGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rc-price-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0.75rem 0 1rem;
    padding: 0.5rem 0.85rem;
    background: linear-gradient(135deg, rgba(210, 164, 93, 0.1), rgba(210, 164, 93, 0.05));
    border-left: 3px solid var(--rc-accent);
    border-radius: var(--rc-radius);
}

.rc-price-amount {
    font-family: var(--rc-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rc-primary);
}

.rc-price-divider {
    color: var(--rc-gray-400);
    font-size: 0.9rem;
}

.rc-price-usd {
    font-family: var(--rc-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rc-accent);
}

.rc-price-period {
    font-size: 0.7rem;
    color: var(--rc-gray-600);
    margin-left: 0.15rem;
}

.rc-price-note {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rc-gray-400);
    margin-left: 0.15rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   GUEST REVIEWS CAROUSEL
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rc-reviews-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.rc-reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: rc-reviews-scroll 30s linear infinite;
    width: max-content;
}

.rc-reviews-track:hover {
    animation-play-state: paused;
}

@keyframes rc-reviews-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.rc-review-card {
    flex-shrink: 0;
    width: 340px;
    background: white;
    border-radius: var(--rc-radius-lg);
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.rc-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.rc-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rc-review-platform {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.rc-review-platform.booking { background: #003580; color: white; }
.rc-review-platform.tripadvisor { background: #34e0a1; color: #000; }
.rc-review-platform.hotels { background: #d32f2f; color: white; }

.rc-review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.85rem;
}

.rc-review-text {
    font-size: 0.9rem;
    color: var(--rc-gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.rc-review-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rc-black);
}

.rc-review-count {
    font-size: 0.75rem;
    color: var(--rc-gray-500);
}
/* -- Blog share button icon color fix -- */
.rc-btn-outline-dark i {
    color: var(--rc-primary);
}

.rc-btn-outline-dark:hover i {
    color: var(--rc-white);
}

/* -- Chat widget direct contact bar -- */
.rc-chat-direct-contact {
    display: flex;
    border-top: 1px solid var(--rc-gray-200);
    background: var(--rc-off-white);
}

.rc-chat-contact-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rc-primary);
    text-decoration: none;
    transition: background 0.2s;
}

.rc-chat-contact-link:hover {
    background: rgba(111, 20, 16, 0.06);
    color: var(--rc-primary);
}

.rc-chat-contact-link + .rc-chat-contact-link {
    border-left: 1px solid var(--rc-gray-200);
}

.rc-chat-contact-wa {
    color: #25d366;
}

.rc-chat-contact-wa:hover {
    color: #1da851;
    background: rgba(37, 211, 102, 0.06);
}

/* -- Chat quick contact buttons -- */
.rc-chat-quick-contact {
    padding: 0.75rem 1.25rem 0.5rem;
    text-align: center;
    background: var(--rc-white);
    border-top: 1px solid var(--rc-gray-200);
}

.rc-chat-quick-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rc-gray-500);
    margin: 0 0 0.6rem;
}

.rc-chat-quick-btns {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
}

.rc-chat-quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    flex: 1;
    max-width: 140px;
}

.rc-chat-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(0,0,0,0.15);
}

.rc-chat-quick-btn i {
    font-size: 0.95rem;
}

.rc-chat-quick-btn-call {
    background: var(--rc-primary);
    color: var(--rc-white);
    border: 2px solid var(--rc-primary);
}

.rc-chat-quick-btn-call:hover {
    background: var(--rc-primary-dark, #5a0e0a);
    color: var(--rc-white);
    border-color: var(--rc-primary-dark, #5a0e0a);
}

.rc-chat-quick-btn-wa {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
}

.rc-chat-quick-btn-wa:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
}

/* -- Transparent header: logo at 75% opacity (25% transparent) -- */
.rc-header:not(.is-scrolled) .rc-logo-pod {
    opacity: 0.75;
    transition: opacity 0.35s ease, all 0.35s ease;
}

.rc-header:not(.is-scrolled) .rc-logo-pod:hover {
    opacity: 1;
}

/* -----------------------------------------------
   Circular logo — all locations
   ----------------------------------------------- */

/* Header logo pod (transparent + scrolled) */
.rc-logo-pod {
    width: 120px;
    height: 120px;
    max-width: 120px;
    border-radius: 50%;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.13);
    overflow: hidden;
}

.rc-logo-pod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.rc-header.is-scrolled .rc-logo-pod {
    width: 72px;
    height: 72px;
    max-width: 72px;
    padding: 5px;
}

/* Mega menu logo pod */
.rc-menu-logo-pod {
    width: 80px;
    height: 80px;
    max-width: 80px;
    border-radius: 50%;
    padding: 6px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    overflow: hidden;
    margin-bottom: 1rem;
}

.rc-menu-logo-pod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Footer logo pod */
.rc-footer-logo-pod {
    width: 80px;
    height: 80px;
    max-width: 80px;
    border-radius: 50%;
    padding: 6px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    overflow: hidden;
    margin-bottom: 1rem;
}

.rc-footer-logo-pod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Chat widget avatar */
.rc-chat-header-info .rc-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

.rc-chat-header-info .rc-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Mobile overrides */
@media (max-width: 768px) {
    .rc-logo-pod {
        width: 90px;
        height: 90px;
        max-width: 90px;
        padding: 6px;
    }

    .rc-header.is-scrolled .rc-logo-pod {
        width: 62px;
        height: 62px;
        max-width: 62px;
        padding: 4px;
    }
}

/* -----------------------------------------------
   Circular logo override v2 — 40% radius, no shadow/padding
   ----------------------------------------------- */

.rc-logo-pod {
    width: 120px;
    height: 120px;
    max-width: 120px;
    border-radius: 40%;
    padding: 0;
    margin: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.rc-logo-pod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40%;
    display: block;
}

.rc-header.is-scrolled .rc-logo-pod {
    width: 72px;
    height: 72px;
    max-width: 72px;
    padding: 0;
    border-radius: 40%;
    box-shadow: none;
}

.rc-menu-logo-pod {
    width: 80px;
    height: 80px;
    max-width: 80px;
    border-radius: 40%;
    padding: 0;
    margin: 0 0 1rem;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.rc-menu-logo-pod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40%;
    display: block;
}

.rc-footer-logo-pod {
    width: 80px;
    height: 80px;
    max-width: 80px;
    border-radius: 40%;
    padding: 0;
    margin: 0 0 1rem;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.rc-footer-logo-pod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40%;
    display: block;
}

.rc-chat-header-info .rc-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 40%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    box-shadow: none;
    padding: 0;
}

.rc-chat-header-info .rc-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40%;
    display: block;
}

@media (max-width: 768px) {
    .rc-logo-pod {
        width: 90px;
        height: 90px;
        max-width: 90px;
        padding: 0;
        border-radius: 40%;
    }

    .rc-header.is-scrolled .rc-logo-pod {
        width: 62px;
        height: 62px;
        max-width: 62px;
        padding: 0;
        border-radius: 40%;
    }
}
