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

:root {
 --primary: #7c5800;
 --primary-hover: #a07200;
 --gold: #c9970c;
 --gold-light: #f5d78e;
 --surface: #fff8f7;
 --surface-2: #f5ede0;
 --dark: #2c2419;
 --dark-2: #1a1209;
 --text: #1a1209;
 --text-2: #5c4a2a;
 --text-3: #8a7355;
 --white: #ffffff;
 --nav-h: 84px;
 --container: 1200px;
 --radius: 12px;
 --shadow: 0 4px 24px rgba(0,0,0,0.08);
 --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
 --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, li { margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--cream { background: var(--surface-2); }

h1, h2, h3, h4, .playfair { font-family: 'Playfair Display', serif; }
h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; }
h3 { font-size: 1.75rem; line-height: 1.3; }
h4 { font-size: 1.25rem; line-height: 1.4; }

.overline { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px;}
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--text); margin-bottom: 16px; }
.section-subtitle { font-size: 1rem; color: var(--text-2); line-height: 1.7; max-width: 600px; margin-bottom: 32px; }
.section--dark .section-title { color: var(--white); }
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }

.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 500; text-align: center; cursor: pointer; transition: var(--transition); border: none; outline: none; }
.btn-primary { background: var(--primary); color: var(--white); padding: 14px 28px; border-radius: 50px; font-size: 0.95rem; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(124, 88, 0, 0.2); }
.btn-ghost { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 12px 26px; border-radius: 50px; font-size: 0.95rem; }
.btn-ghost:hover { background: var(--white); color: var(--dark); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 12px 26px; border-radius: 50px; font-size: 0.95rem; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* NAV */
nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--white); height: var(--nav-h); box-shadow: 0 1px 0 rgba(0,0,0,0.08); transition: var(--transition); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.header-logo-img { height: 54px; width: auto; max-width: 220px; object-fit: contain; display: block; }

.nav-links { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-link { font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--text-2); padding: 8px 16px; border-radius: 50px; transition: var(--transition); display: flex; align-items: center; text-decoration: none; white-space: nowrap; font-weight: 500; }
.nav-link:hover { background: var(--surface-2); color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 600; background: var(--surface-2); }
.nav-cta { background: var(--primary); color: var(--white); padding: 10px 22px; font-size: 0.88rem; border-radius: 50px; transition: var(--transition); white-space: nowrap; flex-shrink: 0; font-weight: 600; }
.nav-cta:hover { background: var(--primary-hover); }

/* Navigation Dropdown Menu */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown .arrow-down { font-size: 0.72rem; margin-left: 4px; transition: transform 0.2s ease; display: inline-block; }
.nav-item-dropdown:hover .arrow-down { transform: rotate(180deg); }

.nav-dropdown-menu {
 position: absolute;
 top: 100%;
 left: 0;
 background: #ffffff;
 border-radius: 16px;
 box-shadow: 0 20px 48px rgba(0,0,0,0.18);
 border: 1px solid rgba(124, 88, 0, 0.18);
 padding: 22px;
 display: none !important;
 gap: 24px;
 min-width: 520px;
 z-index: 99999;
}

.nav-dropdown-menu.single-col { min-width: 320px; left: -20px; }

.nav-item-dropdown:hover > .nav-dropdown-menu {
 display: flex !important;
 animation: fadeInDown 0.2s ease forwards;
}

@keyframes fadeInDown {
 from { opacity: 0; transform: translateY(8px); }
 to { opacity: 1; transform: translateY(0); }
}

.dropdown-column { flex: 1; display: flex; flex-direction: column; gap: 4px; text-align: left; }
.dropdown-header { font-family: 'Playfair Display', serif; font-size: 0.92rem; color: #7c5800; margin: 0 0 10px 0; padding-bottom: 6px; border-bottom: 1px solid #f0eae1; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.dropdown-item {
 display: block;
 padding: 8px 12px;
 color: #33271e;
 text-decoration: none;
 font-size: 0.85rem;
 border-radius: 8px;
 transition: background 0.15s ease, color 0.15s ease;
 line-height: 1.3;
}
.dropdown-item strong { display: block; color: #1a1209; font-size: 0.86rem; font-weight: 600; }
.dropdown-item small { display: block; color: #7a6b5c; font-size: 0.75rem; font-weight: 400; margin-top: 2px; }
.dropdown-item:hover { background: #fdfbf7; color: #7c5800; }

.page-top { padding-top: var(--nav-h); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Utilities */
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }

/* FOOTER STYLING */
.site-footer, footer {
 background: linear-gradient(180deg, #14100c 0%, #0d0a08 100%);
 color: var(--white);
 padding: 60px 0 28px;
 border-top: 1px solid rgba(124, 88, 0, 0.25);
 font-family: 'Inter', sans-serif;
}
.footer-grid {
 display: grid;
 grid-template-columns: 1.5fr 1.1fr 1.1fr 1fr;
 gap: 36px;
 align-items: start;
}

.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo-img { height: 44px; width: auto; max-width: 220px; object-fit: contain; display: block; background: #ffffff; padding: 4px 12px; border-radius: 8px; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }

.footer-desc { font-size: 0.84rem; line-height: 1.6; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.footer-address p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; line-height: 1.5; }
.footer-address a { color: var(--gold-light); text-decoration: none; font-weight: 500; }
.footer-address a:hover { text-decoration: underline; }

.footer-col h5 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--gold-light); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); letter-spacing: 0.02em; font-weight: 700; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.7); transition: var(--transition); text-decoration: none; display: inline-block; }
.footer-links a:hover { color: var(--gold-light); transform: translateX(4px); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 44px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-legal a { color: rgba(255,255,255,0.55); text-decoration: none; transition: 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }

@media (max-width: 992px) {
 .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 600px) {
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Floating WA */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 500; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: var(--transition); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* Animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* TOUR CARD */
.tour-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 400px; display: block; text-decoration: none; }
.tour-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.tour-card:hover img { transform: scale(1.05); }
.tour-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); }
.tour-card-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--dark-2); font: 700 0.7rem 'Inter', sans-serif; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 50px; z-index: 2; }
.tour-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; }
.tour-card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.tour-card-meta { display: flex; justify-content: space-between; align-items: center; }
.tour-card-dur { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.tour-card-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold-light); font-weight: 600; }

/* TESTIMONIAL CARD */
.testi-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.testi-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 12px; }
.testi-quote { font-size: 0.9rem; line-height: 1.7; color: var(--text-2); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-name { font-size: 0.87rem; font-weight: 600; color: var(--text); }
.testi-detail { font-size: 0.75rem; color: var(--text-3); }

/* DESTINATION CHIP */
.dest-chip { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; transition: transform 0.3s; text-decoration: none; }
.dest-chip:hover { transform: translateY(-4px); }
.dest-chip img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.dest-chip-name { font-weight: 600; font-size: 0.84rem; color: var(--text); }
.dest-chip-country { font-size: 0.72rem; color: var(--text-3); margin-top: -6px; }

/* Responsive */
@media (max-width: 1024px) {
 .grid-3 { grid-template-columns: repeat(2, 1fr); }
 .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
 h1 { font-size: 2.5rem; }
 h2 { font-size: 2rem; }
 .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
 .nav-links { display: none; /* simple mobile hide for now */ }
 .section { padding: 56px 0; }
 .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* HERO SLIDER CAROUSEL STYLES */
.hero-slider { position: relative; height: 85vh; min-height: 580px; overflow: hidden; margin-top: 72px; }
.slider-wrapper { position: absolute; inset: 0; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease-in-out; display: flex; align-items: center; z-index: 1; pointer-events: none; }
.slide.active { opacity: 1; z-index: 2; pointer-events: auto; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,18,9,0.88) 0%, rgba(26,18,9,0.5) 60%, rgba(0,0,0,0.1) 100%); }
.slide-content { position: relative; z-index: 3; color: white; max-width: 800px; padding: 0 24px; }
.slide-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.15; margin: 12px 0 18px; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.slide-content p { font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 680px; }
.slide-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.4); color: white; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 12px; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: 2px solid transparent; }
.dot.active { background: var(--gold-light); width: 36px; border-radius: 20px; border-color: white; }

@media (max-width: 768px) {
 .hero-slider { height: 75vh; min-height: 520px; }
 .slider-arrow { width: 40px; height: 40px; font-size: 1.1rem; }
 .slider-arrow.prev { left: 12px; }
 .slider-arrow.next { right: 12px; }
}

/* FAQ ACCORDION STYLING */
.faq-accordion { display: flex; flex-direction: column; gap: 14px; max-width: 900px; margin: 0 auto; }
.faq-item { background: #ffffff; border-radius: 12px; border: 1px solid #efebe4; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); transition: all 0.3s ease; }
.faq-item.active { border-color: var(--primary); box-shadow: 0 6px 20px rgba(124, 88, 0, 0.08); }
.faq-question { width: 100%; text-align: left; padding: 20px 24px; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--text); background: transparent; border: none; outline: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--primary); transition: transform 0.3s ease; display: inline-block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 24px; color: var(--text-2); font-size: 0.92rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 350px; padding: 0 24px 22px; }

/* MOBILE HAMBURGER & DRAWER MENU STYLES */
.mobile-toggle-btn {
 display: none;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 font-size: 1.5rem;
 border-radius: 10px;
 background: var(--surface-2);
 color: var(--primary);
 border: 1px solid rgba(124, 88, 0, 0.2);
 cursor: pointer;
 transition: all 0.2s ease;
}
.mobile-toggle-btn:hover {
 background: var(--primary);
 color: #ffffff;
}

.mobile-drawer-overlay {
 position: fixed;
 inset: 0;
 z-index: 99999;
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.active {
 opacity: 1;
 pointer-events: auto;
}

.mobile-drawer-backdrop {
 position: absolute;
 inset: 0;
 background: rgba(20, 16, 12, 0.65);
 backdrop-filter: blur(4px);
}

.mobile-drawer-card {
 position: absolute;
 top: 0;
 right: 0;
 width: 85%;
 max-width: 360px;
 height: 100%;
 background: #ffffff;
 box-shadow: -10px 0 30px rgba(0,0,0,0.25);
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 transform: translateX(100%);
 transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
 padding: 24px;
 overflow-y: auto;
}
.mobile-drawer-overlay.active .mobile-drawer-card {
 transform: translateX(0);
}

.mobile-drawer-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-bottom: 16px;
 border-bottom: 1px solid #efebe4;
}
.mobile-drawer-close {
 background: #f4f0ea;
 border: none;
 width: 36px;
 height: 36px;
 border-radius: 50%;
 font-size: 1.1rem;
 color: #57483a;
 cursor: pointer;
}

.mobile-drawer-body {
 display: flex;
 flex-direction: column;
 gap: 12px;
 padding: 20px 0;
 flex: 1;
}

.mobile-nav-item {
 display: block;
 padding: 12px 16px;
 border-radius: 10px;
 color: var(--text);
 font-weight: 600;
 font-size: 1rem;
 text-decoration: none;
 background: #fdfbf7;
 border: 1px solid #efebe4;
}

.mobile-accordion {
 border-radius: 10px;
 background: #fdfbf7;
 border: 1px solid #efebe4;
 overflow: hidden;
}
.mobile-accordion-btn {
 width: 100%;
 padding: 12px 16px;
 background: transparent;
 border: none;
 text-align: left;
 font-size: 1rem;
 font-weight: 600;
 color: var(--text);
 display: flex;
 justify-content: space-between;
 align-items: center;
 cursor: pointer;
}
.mobile-submenu {
 display: none;
 padding: 8px 16px 14px;
 background: #ffffff;
 border-top: 1px solid #efebe4;
}
.mobile-submenu a {
 display: block;
 padding: 8px 0;
 color: #57483a;
 text-decoration: none;
 font-size: 0.88rem;
 border-bottom: 1px solid #f8f6f2;
}

.mobile-drawer-footer {
 padding-top: 16px;
 border-top: 1px solid #efebe4;
}

@media (max-width: 900px) {
 .desktop-only-cta { display: none !important; }
 .nav-links { display: none !important; }
 .mobile-toggle-btn { display: flex !important; }
}




