:root {
    --blue: #00bcd4; /* Turquoise */
    --light-blue: #e0f7fa;
    --yellow: #ffeb3b; /* Sun Yellow */
    --dark-text: #37474f;
    --white: #ffffff;
    
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: #fafafa;
    line-height: 1.7;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.top-bar { background-color: var(--blue); color: var(--white); padding: 5px 0; font-size: 0.9rem; }
.top-flex { display: flex; justify-content: space-between; align-items: center; }
.lang-switch a { margin-left: 10px; opacity: 0.8; font-weight: bold; }
.lang-switch a.active, .lang-switch a:hover { opacity: 1; text-decoration: underline; }

/* Header */
.holiday-header { background-color: var(--white); padding: 15px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--dark-text); }
.logo .blue { color: var(--blue); }
.logo .sun { color: #fbc02d; margin-left: 5px; }

.holiday-nav ul { display: flex; gap: 25px; list-style: none; align-items: center; }
.holiday-nav a { font-weight: 600; color: var(--dark-text); font-size: 1rem; }
.holiday-nav a:hover, .holiday-nav a.active { color: var(--blue); }

.btn-book { background-color: #fbc02d; color: var(--dark-text) !important; padding: 10px 25px; border-radius: 50px; font-weight: 700; box-shadow: 0 4px 6px rgba(251, 192, 45, 0.3); }
.btn-book:hover { background-color: #f9a825; transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--blue); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 5px solid var(--blue); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; margin-bottom: 20px; background: none; border: none; cursor: pointer; }
.mobile-menu a { padding: 10px 0; border-bottom: 1px solid #eee; font-weight: 600; color: var(--dark-text); }

/* Hero */
.hero-holiday {
    height: 600px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0));
    display: flex; align-items: center;
}
.hero-text { padding-left: 10%; max-width: 600px; }
.hero-text h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.2; color: var(--blue); margin-bottom: 20px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 500; }
.btn-cta { background-color: var(--blue); color: var(--white); padding: 15px 40px; border-radius: 50px; font-weight: bold; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4); }
.btn-cta:hover { background-color: #0097a7; }

/* Destinations */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--blue); margin-bottom: 10px; }

.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dest-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.dest-card:hover { transform: translateY(-10px); }
.dest-card img { width: 100%; height: 250px; object-fit: cover; }
.dest-info { padding: 20px; text-align: center; }
.dest-info h3 { font-family: var(--font-head); color: var(--dark-text); margin-bottom: 5px; }
.dest-info p { color: #888; font-size: 0.9rem; }

/* Services (About) */
.page-banner { background-color: var(--light-blue); padding: 60px 0; text-align: center; }
.page-banner h1 { font-family: var(--font-head); color: var(--blue); font-size: 2.5rem; }

.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.service-item { display: flex; align-items: flex-start; gap: 20px; background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.s-icon { font-size: 2.5rem; background: var(--light-blue); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.s-text h3 { font-family: var(--font-head); margin-bottom: 10px; }

/* Testimonials */
.reviews-wrapper { display: flex; gap: 30px; overflow-x: auto; padding-bottom: 20px; }
.review-box { min-width: 300px; background: var(--white); padding: 30px; border-radius: 15px; text-align: center; border: 1px solid #eee; }
.user-img { width: 80px; height: 80px; border-radius: 50%; background-size: cover; background-position: center; margin: 0 auto 15px; border: 3px solid var(--yellow); }
.review-box h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 10px; color: var(--blue); }
.review-box p { font-style: italic; color: #666; margin-bottom: 15px; }
.review-box span { font-weight: bold; color: var(--dark-text); }

/* Contact Form */
.contact-card { display: flex; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.card-image { flex: 1; background-size: cover; background-position: center; }
.card-form { flex: 1; padding: 50px; }
.card-form h2 { font-family: var(--font-head); color: var(--blue); margin-bottom: 20px; }

#holidayForm .input-group { margin-bottom: 20px; }
#holidayForm label { display: block; font-weight: 600; margin-bottom: 5px; color: #555; }
#holidayForm input, #holidayForm select, #holidayForm textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; font-family: var(--font-body); }
#holidayForm input:focus, #holidayForm select:focus, #holidayForm textarea:focus { border-color: var(--blue); outline: none; }
.submit-btn { width: 100%; background-color: var(--blue); color: var(--white); border: none; padding: 15px; font-weight: bold; border-radius: 8px; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background-color: #0097a7; }

.direct-contact { margin-top: 20px; text-align: center; padding-top: 20px; border-top: 1px solid #eee; }
.direct-contact strong { display: block; font-size: 1.2rem; color: #25d366; } /* WhatsApp Green */

/* Legal */
.legal-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.legal-box h1 { font-family: var(--font-head); color: var(--blue); text-align: center; }
.legal-box h3 { color: #fbc02d; margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.holiday-footer { background-color: var(--blue); color: var(--white); padding: 40px 0; margin-top: auto; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.f-col h4 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; }
.f-col a { color: var(--light-blue); margin-left: 20px; font-weight: 600; }
.f-col a:hover { color: var(--white); text-decoration: underline; }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 20px; font-size: 0.8rem; }

@media (max-width: 900px) {
    .holiday-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-text h1 { font-size: 2.5rem; }
    .dest-grid, .services-list, .contact-card { grid-template-columns: 1fr; flex-direction: column; }
    .card-image { height: 200px; }
}