/* === Variables === */
:root {
    --bg: #f7f4ef;
    --fg: #1e2d3d;
    --card: #ffffff;
    --primary: #2d7a6f;
    --primary-fg: #f5f0e8;
    --secondary: #ece5d8;
    --muted: #6b7280;
    --accent: #e8734a;
    --accent-fg: #ffffff;
    --border: #ddd5c8;
    --radius: 0.625rem;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* === NAVBAR === */
.rj-navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.rj-navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.rj-navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.rj-logo img, .rj-logo .custom-logo { height: 56px; width: auto; border-radius: 6px; }
.rj-logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.rj-nav-links { display: none; align-items: center; gap: 2rem; }
.rj-nav-link { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.rj-nav-link:hover { color: var(--fg); }

/* Buttons */
.rj-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; text-align: center; justify-content: center; }
.rj-btn-accent { background: var(--accent); color: var(--accent-fg); }
.rj-btn-accent:hover { opacity: 0.9; }
.rj-btn-outline { background: transparent; border: 2px solid rgba(245,240,232,0.3); color: var(--primary-fg); }
.rj-btn-outline:hover { background: rgba(245,240,232,0.1); }
.rj-btn-full { width: 100%; }
.rj-btn-lg { padding: 0.875rem 1.5rem; font-size: 1rem; }

/* Mobile menu */
.rj-menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.rj-menu-toggle span { width: 22px; height: 2px; background: var(--fg); transition: all 0.3s; border-radius: 2px; }
.rj-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.rj-menu-toggle.open span:nth-child(2) { opacity: 0; }
.rj-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.rj-mobile-menu { display: none; background: var(--card); border-bottom: 1px solid var(--border); padding: 0.5rem 1.25rem 1.25rem; }
.rj-mobile-menu.open { display: block; animation: fadeIn 0.3s; }
.rj-mobile-menu a { display: block; padding: 0.75rem 0; font-size: 0.875rem; font-weight: 500; border-bottom: 1px solid var(--border); }
.rj-mobile-menu a:last-of-type { border: none; }

@media (min-width: 768px) {
    .rj-nav-links { display: flex; }
    .rj-menu-toggle { display: none; }
    .rj-mobile-menu { display: none !important; }
}

/* === HERO === */
.rj-hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.rj-hero-slides { position: absolute; inset: 0; }
.rj-hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.rj-hero-slide.active { opacity: 1; }
.rj-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(30,45,61,0.8), rgba(30,45,61,0.5), transparent); }
.rj-hero-content { position: relative; z-index: 10; flex: 1; display: flex; align-items: center; padding-top: 6rem; padding-bottom: 6rem; }
.rj-hero-text { max-width: 560px; }
.rj-hero-subtitle { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.rj-hero-title { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 700; color: var(--primary-fg); line-height: 1.05; margin-bottom: 1rem; }
.rj-hero-desc { font-size: 1rem; color: rgba(245,240,232,0.8); max-width: 440px; line-height: 1.7; margin-bottom: 1.5rem; }
.rj-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.rj-hero-indicators { position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 0.5rem; }
.rj-indicator { width: 12px; height: 12px; border-radius: 999px; background: rgba(245,240,232,0.4); border: none; cursor: pointer; transition: all 0.3s; }
.rj-indicator.active { background: var(--accent); width: 2rem; }

/* Marquee */
.rj-marquee { position: relative; z-index: 10; background: var(--accent); color: var(--accent-fg); padding: 0.625rem 0; overflow: hidden; }
.rj-marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 20s linear infinite; font-size: 0.875rem; font-weight: 600; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === PAGE HERO === */
.rj-page-hero { position: relative; min-height: 50vh; display: flex; align-items: center; overflow: hidden; background-size: cover; background-position: center; background-color: var(--fg); }
.rj-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(30,45,61,0.8), rgba(30,45,61,0.5), transparent); }
.rj-page-hero-content { position: relative; z-index: 10; padding-top: 6rem; padding-bottom: 4rem; }
.rj-page-hero-text { max-width: 560px; }

/* === SECTIONS === */
.rj-section { padding: 6rem 0; }
.rj-section-alt { background: var(--secondary); }
.rj-section-light { background: rgba(236,229,216,0.4); }
.rj-section-dark { background: var(--primary); color: var(--primary-fg); }
.rj-section-subtitle { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); text-align: center; }
.rj-section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; text-align: center; margin-top: 0.75rem; text-wrap: balance; }
.rj-section-desc { color: var(--muted); text-align: center; margin-top: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Grids */
.rj-grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
.rj-grid-3 { grid-template-columns: repeat(1, 1fr); }
.rj-grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .rj-grid-3 { grid-template-columns: repeat(2, 1fr); } .rj-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rj-grid-3 { grid-template-columns: repeat(3, 1fr); } .rj-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* === SERVICE CARDS === */
.rj-service-card { background: var(--card); border-radius: 0.75rem; padding: 2rem; box-shadow: 0 2px 20px -4px rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
.rj-service-card:hover { box-shadow: 0 8px 30px -4px rgba(0,0,0,0.12); }
.rj-service-icon { width: 48px; height: 48px; border-radius: 0.5rem; background: rgba(45,122,111,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--primary); }
.rj-service-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.rj-service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* === PACKAGE CARDS === */
.rj-package-card { background: var(--card); border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: box-shadow 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.rj-package-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); transform: translateY(-2px); }
.rj-package-img { position: relative; height: 210px; overflow: hidden; }
.rj-package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.rj-package-card:hover .rj-package-img img { transform: scale(1.05); }
.rj-package-price { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--accent); color: var(--accent-fg); font-size: 0.875rem; font-weight: 700; padding: 0.375rem 0.75rem; border-radius: 0.5rem; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.rj-package-price small { font-size: 0.625rem; font-weight: 400; opacity: 0.8; margin-left: 0.25rem; }
.rj-package-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.rj-package-body h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.rj-package-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted); }
.rj-package-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.rj-tag { font-size: 0.6875rem; font-weight: 500; background: var(--secondary); color: rgba(30,45,61,0.7); padding: 0.25rem 0.625rem; border-radius: 0.375rem; }
.rj-package-body .rj-btn { margin-top: auto; padding-top: 1.25rem; }

/* === DESTINATION CARDS === */
.rj-dest-card { position: relative; border-radius: 0.75rem; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.rj-dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.rj-dest-card:hover img { transform: scale(1.05); }
.rj-dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,45,61,0.7), rgba(30,45,61,0.1), transparent); }
.rj-dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; }
.rj-dest-tag { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.rj-dest-info h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--primary-fg); margin-top: 0.25rem; }

/* === TESTIMONIAL CARDS === */
.rj-testimonial-card { background: var(--card); border-radius: 1rem; padding: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: box-shadow 0.3s; display: flex; flex-direction: column; height: 100%; }
.rj-testimonial-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.rj-quote-icon { font-size: 2rem; color: rgba(232,115,74,0.3); line-height: 1; margin-bottom: 0.75rem; }
.rj-testimonial-text { font-size: 0.875rem; color: rgba(30,45,61,0.8); line-height: 1.7; flex: 1; }
.rj-testimonial-footer { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.rj-stars { display: flex; gap: 0.125rem; margin-bottom: 0.5rem; }
.rj-star { color: rgba(30,45,61,0.2); font-size: 0.875rem; }
.rj-star.filled { color: #f59e0b; }
.rj-testimonial-name { font-weight: 600; font-size: 0.875rem; }
.rj-testimonial-location { font-size: 0.75rem; color: var(--muted); }
.rj-testimonial-trip { display: inline-block; margin-top: 0.5rem; font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(232,115,74,0.1); color: var(--accent); padding: 0.25rem 0.5rem; border-radius: 999px; }

/* === ABOUT === */
.rj-about-content { max-width: 640px; margin: 0 auto; text-align: center; }
.rj-about-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .rj-about-grid { grid-template-columns: 1fr 1fr; } }
.rj-about-item { font-size: 0.875rem; line-height: 1.5; }

/* === CONTACT === */
.rj-contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .rj-contact-grid { grid-template-columns: repeat(3, 1fr); } }
.rj-contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; border-radius: 0.75rem; border: 1px solid rgba(245,240,232,0.15); transition: background 0.2s; }
.rj-contact-card:hover { background: rgba(245,240,232,0.05); }
.rj-contact-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.5); margin-top: 0.75rem; }
.rj-contact-value { font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; word-break: break-all; }

/* === ENQUIRY FORM === */
.rj-enquiry-form { max-width: 640px; margin: 3rem auto 0; background: var(--card); border-radius: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 1.5rem; }
@media (min-width: 768px) { .rj-enquiry-form { padding: 2.5rem; } }
.rj-form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .rj-form-row { grid-template-columns: 1fr 1fr; } }
.rj-form-group { margin-bottom: 1.25rem; }
.rj-form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.rj-form-group input, .rj-form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.875rem; background: var(--bg); transition: border-color 0.2s; }
.rj-form-group input:focus, .rj-form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,122,111,0.1); }

/* === MAP === */
.rj-map-container { border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); aspect-ratio: 16/9; max-width: 900px; margin: 2rem auto 0; }

/* === FOOTER === */
.rj-footer { background: var(--fg); color: rgba(245,240,232,0.7); }
.rj-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 0; }
@media (min-width: 640px) { .rj-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rj-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.rj-footer-logo img, .rj-footer-logo .custom-logo { height: 64px; width: auto; border-radius: 6px; }
.rj-footer-brand { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--primary-fg); }
.rj-footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(245,240,232,0.5); margin-top: 1rem; }
.rj-social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.rj-social-icon { width: 36px; height: 36px; border-radius: 0.5rem; background: rgba(245,240,232,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; color: rgba(245,240,232,0.7); }
.rj-social-icon:hover { background: rgba(245,240,232,0.2); }
.rj-footer-heading { color: var(--primary-fg); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.rj-footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.rj-footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.rj-footer-links a:hover { color: var(--primary-fg); }
.rj-footer-packages li { font-size: 0.875rem; padding: 0.375rem 0; }
.rj-footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.rj-footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.rj-footer-contact svg { color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.rj-footer-contact a { transition: color 0.2s; }
.rj-footer-contact a:hover { color: var(--primary-fg); }
.rj-footer-bottom { border-top: 1px solid rgba(245,240,232,0.1); }
.rj-footer-bottom-inner { padding: 1.25rem 0; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: rgba(245,240,232,0.4); }
@media (min-width: 640px) { .rj-footer-bottom-inner { flex-direction: row; justify-content: space-between; } }

/* === WHATSAPP BUTTON === */
.rj-whatsapp-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100; display: flex; align-items: center; gap: 0.5rem; background: #25d366; color: #fff; padding: 0.75rem 1.25rem; border-radius: 999px; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all 0.3s; font-weight: 600; font-size: 0.875rem; }
.rj-whatsapp-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.rj-whatsapp-text { display: none; }
@media (min-width: 640px) { .rj-whatsapp-text { display: inline; } }

/* === ANIMATIONS === */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.rj-fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* WordPress specific */
.custom-logo-link { display: inline-block; }
.custom-logo { height: auto; }
