/* =========================================
   LUXURY SAFARI WEBSITE - DESIGN SYSTEM
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --gold: #D4AF37;
    --gold-hover: #F3D360;
    --cream: #FCFAF2;
    --ivory: #F2EFE9;
    --dark: #12100E;
    --espresso: #2C241D;
    --accent-brown: #693d20; /* Logo Color */
    --text: #4A4035;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    color: var(--espresso);
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: var(--espresso);
    transition: var(--transition);
}

/* =========================================
   UTILITIES & PATTERNS
   ========================================= */

.giraffe-bg {
    background-image: url('giraffe_pattern.png');
    background-size: 400px;
    background-repeat: repeat;
    background-attachment: fixed;
    opacity: 0.93;
}

.gold-accent {
    color: var(--gold);
}

.btn-luxury {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--espresso);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}

.btn-luxury:hover {
    color: var(--cream);
    background-color: var(--dark);
    border-color: var(--dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* =========================================
   NAVIGATION
   ========================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(252, 250, 242, 0.95);
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* Enhanced visibility */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* =========================================
   HERO SECTION — FULL SCREEN SLIDER
   ========================================= */

#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
    padding: 0 20px;
}

/* Slider track */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* Dark overlay so text is readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.38));
    z-index: 1;
}

/* Text content sits above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    color: var(--cream);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-content p {
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.hero-content .btn-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

#hero .btn-luxury {
    border-color: var(--cream);
    color: var(--cream);
}

#hero .btn-luxury:hover {
    background-color: var(--cream);
    color: var(--dark);
}

/* Slider controls bar */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-prev,
.slider-next {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Dots */
.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.35);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
}

/* =========================================
   SECTIONS GENERAL
   ========================================= */

section {
    padding: 100px 80px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin: 20px auto 0;
}

/* =========================================
   DIFFERENCE SECTION
   ========================================= */

#difference {
    background-color: var(--ivory);
    display: flex;
    align-items: center;
    gap: 60px;
}

.diff-content {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.diff-image {
    flex: 1.2;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.05);
    transition: var(--transition);
}

.diff-image:hover {
    transform: scale(1.02);
    box-shadow: 25px 25px 0 rgba(212, 175, 55, 0.1);
}

/* =========================================
   DESTINATIONS SECTION (GRID)
   ========================================= */

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dest-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.dest-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.dest-card:hover .dest-image {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--cream);
    transition: var(--transition);
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.8));
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.3);
}

.dest-card h3 {
    color: var(--cream);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.dest-card p {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* =========================================
   EXPERIENCE SECTION (NARRATIVE)
   ========================================= */

#experience {
    background-color: var(--dark);
    color: var(--cream);
}

#experience h2 {
    color: var(--cream);
}

.exp-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.exp-text {
    flex: 1;
    text-align: center;
}

.exp-text p {
    margin-bottom: 25px;
    font-weight: 300;
}

.exp-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-item h4 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* =========================================
   CONTACT / INQUIRY
   ========================================= */

#contact {
    background-color: var(--ivory);
    padding: 80px 0;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-showcase {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.showcase-item {
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(212,175,55,0.12);
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    flex: 1;
    max-width: 480px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-top: 3px solid var(--gold);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--espresso);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: var(--ivory);
    font-family: inherit;
    border-radius: 2px;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--cream);
}

/* =========================================
   FOOTER
   ========================================= */

footer {
    background-color: var(--dark);
    color: rgba(252, 250, 242, 0.6);
    padding: 60px 80px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(252, 250, 242, 0.1);
    margin-bottom: 20px;
}

.footer-logo {
    color: var(--cream);
    font-size: 1.2rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--cream);
    opacity: 0.5;
}

.social-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* =========================================
   SCROLL REVEAL (INTERSECTION OBSERVER)
   ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   ANTIGRAVITY / MATTER.JS HOOKS
   ========================================= */

.physics-item {
    /* Used as target for Matter.js */
}

/* Trigger Button style */
#gravity-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2000;
    transition: var(--transition);
}

#gravity-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    background: var(--cream);
    color: var(--gold);
}

/* Fullscreen Physics Canvas Container */
#physics-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through if not interactive yet */
    z-index: 1500;
}

body.physics-mode {
    overflow: hidden; /* Lock scroll when in physics mode */
}

body.physics-mode header,
body.physics-mode section,
body.physics-mode footer {
    /* We will handle positioning in JS to prevent breakdown of layout before physics sets in */
}

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

@media (max-width: 1024px) {
    section { padding: 80px 40px; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    #difference { flex-direction: column; }
    .exp-wrapper { flex-direction: column; }
}

/* =========================================
   HAMBURGER NAVIGATION
   ========================================= */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--espresso);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

header.scrolled .nav-toggle span { background: var(--espresso); }
header:not(.scrolled) .nav-toggle span { background: var(--espresso); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */

.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--espresso);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover { transform: translateY(-4px); }

/* =========================================
   FORM SUCCESS STATE
   ========================================= */

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    display: block;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--espresso);
}

.form-success p {
    font-weight: 300;
    color: var(--text);
}

@media (max-width: 768px) {
    header { padding: 20px; }
    header.scrolled { padding: 15px 20px; }
    .nav-toggle { display: flex; }
    nav ul {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1000;
    }
    nav ul.nav-open { display: flex; }
    nav ul li a { font-size: 1.2rem; letter-spacing: 0.15em; }
    #hero h1 { font-size: 2.5rem; }
    .dest-grid { grid-template-columns: 1fr; }
    .contact-form { width: 100%; padding: 30px; }
    .scroll-top-btn { right: 20px; bottom: 80px; }
}

/* =========================================
   FLOATING ACTIONS
   ========================================= */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-contact-container {
    position: fixed;
    bottom: 30px;
    right: 110px; 
    z-index: 2000;
}

.contact-expand-btn {
    background: var(--accent-brown);
    color: var(--cream);
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(105, 61, 32, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.contact-menu-options {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--cream);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 170px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(105, 61, 32, 0.1);
}

.floating-contact-container.active .contact-menu-options {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-menu-options a {
    display: block;
    padding: 12px 18px;
    font-size: 0.85rem;
    color: var(--espresso);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-menu-options a:hover {
    background: var(--ivory);
    color: var(--gold);
}

/* =========================================
   COLUMNAR FOOTER
   ========================================= */

.footer-links-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px !important;
}

.footer-col h5 {
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
    color: rgba(252, 250, 242, 0.6);
    font-size: 0.85rem;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Force left align */
    text-align: left;
}

.footer-about img {
    max-height: 80px; /* Increased sizing for visibility */
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.1); /* Minor brightness scaling */
}

.footer-about img {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
}

/* Partner logos — "We are part of" */
.footer-partners {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(252, 250, 242, 0.1);
    text-align: center;
}

.footer-partners > p {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.45;
    margin-bottom: 18px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: var(--transition);
}

.partner-logos img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}

@media (max-width: 768px) {
    .footer-links-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-container { flex-direction: column-reverse; gap: 40px; }
    .contact-form { max-width: 100%; }
    .showcase-grid { grid-template-columns: 1fr; }
    .partner-logos { gap: 25px; }
    .partner-logos img { height: 36px; }
}

/* =========================================
   DESTINATION DETAIL PAGES
   ========================================= */

.detail-hero {
    height: 70vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cream) !important;
    text-align: center;
    background: #1a1510; /* Dark fallback */
}

.detail-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100% !important;
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: kenBurns 20s infinite alternate;
}

.detail-hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Dark shade for text readability */
    z-index: 1;
}

.detail-hero > div:not(.detail-hero-bg) {
    position: relative;
    z-index: 2; /* Lift text above overlay */
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.detail-hero h1 {
    color: var(--cream);
    font-size: 4rem;
    margin-bottom: 10px;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
}

.detail-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.detail-intro h2 { font-size: 2.5rem; margin-bottom: 20px; }
.detail-intro p { font-weight: 300; font-size: 1.1rem; }

.detail-itineraries { margin-top: 80px; }
.detail-itineraries h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--gold);
}

.det-iti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.det-iti-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.det-iti-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.det-iti-header {
    background: var(--espresso);
    color: var(--gold);
    padding: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.det-iti-content {
    padding: 25px;
    flex-grow: 1;
}

.det-iti-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.det-iti-content ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.det-iti-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
}

.det-iti-price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--espresso);
}

.iti-recommend {
    background: #fff9e6;
    color: var(--accent-brown);
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 20px;
    border-left: 3px solid var(--gold);
    font-weight: 500;
    text-align: left;
}

/* New Layout Structures */
.quick-info {
    background-color: var(--dark);
    color: var(--cream);
    display: flex;
    justify-content: space-around;
    padding: 40px 50px;
    text-align: left;
    border-bottom: 2px solid var(--gold);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 550px;
}

.info-item i { color: var(--gold); font-size: 2.5rem; }
.info-item h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item p { font-size: 0.95rem; opacity: 0.85; font-weight: 300; }

/* Detail Highlights Grid */
.detail-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.detail-text { flex: 1; }

.detail-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 15px 15px 0 var(--gold);
    transition: var(--transition);
}

.detail-image:hover {
    transform: scale(1.02);
    box-shadow: 20px 20px 0 var(--gold);
}

.detail-grid-reverse { flex-direction: row-reverse; }

@media (max-width: 1024px) {
    .det-iti-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .quick-info { flex-direction: column; gap: 30px; }
    .detail-grid { flex-direction: column !important; gap: 30px; }
    .detail-image { height: 300px; width: 100%; }
}

/* ==========================================
   DEDICATED ITINERARY SUB-PAGES
========================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}
.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}
.timeline-item::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 14px;
    top: 3px;
    color: var(--gold);
    background: var(--espresso);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    font-size: 0px; /* Using round element as bullet */
}
.timeline-item h4 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1.25rem;
}
.timeline-item p {
    font-weight: 300;
    font-size: 0.95rem;
}
.iti-inclusions {
    background: var(--ivory);
    padding: 40px;
    border-radius: 4px;
    margin-top: 40px;
}
.iti-inclusions h3 {
    color: var(--espresso);
    margin-bottom: 20px;
}
.iti-inclusions ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.iti-inclusions ul li {
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}
.iti-inclusions ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
}
@media (max-width: 768px) {
    .iti-inclusions ul { grid-template-columns: 1fr; }
}

/* ==========================================
   FLOATING ACTION BUTTONS
========================================== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn:hover {
    transform: scale(1.15);
    color: white !important;
}

.floating-whatsapp {
    left: 30px;
    background: #25D366;
}

.floating-inquiry {
    right: 30px;
    background: var(--gold);
}

@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .floating-whatsapp { left: 20px; }
    .floating-inquiry { right: 20px; }
}
