:root {
    --yellow: #FFD700; /* Sun Yellow */
    --blue: #00BFFF;   /* Sky Blue */
    --dark-blue: #0080FF;
    --white: #ffffff;
    --text: #333;
    --light-bg: #fffbf0;
    
    --font-logo: 'Pacifico', cursive;
    --font-main: 'Poppins', sans-serif;
    --radius: 15px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.sun-header { background-color: var(--white); padding: 15px 0; border-bottom: 4px solid var(--yellow); position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-logo); font-size: 1.8rem; color: var(--text); display: flex; flex-direction: column; line-height: 1; }
.logo .blue { color: var(--blue); }
.sub-text { font-family: var(--font-main); font-size: 0.6rem; letter-spacing: 2px; color: #999; margin-top: 5px; font-weight: bold; }

.sun-nav ul { display: flex; gap: 25px; list-style: none; align-items: center; }
.sun-nav a { font-weight: 500; color: var(--text); }
.sun-nav a:hover, .sun-nav a.active { color: var(--blue); }

.btn-sun { background-color: var(--yellow); color: var(--text) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; box-shadow: 0 4px 0 #e6c200; }
.btn-sun:hover { transform: translateY(2px); box-shadow: 0 2px 0 #e6c200; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; }
.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; border: none; background: none; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 10px 0; border-bottom: 1px solid #eee; font-weight: 600; }

/* Hero */
.hero-sun {
    height: 600px; background-size: cover; background-position: center; position: relative;
    display: flex; align-items: center;
}
.hero-overlay {
    width: 100%; height: 100%; background: rgba(0, 191, 255, 0.3); display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content { background: rgba(255, 255, 255, 0.9); padding: 50px; border-radius: var(--radius); max-width: 700px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.badge-yellow { background-color: var(--yellow); padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; display: inline-block; margin-bottom: 20px; }
.hero-content h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; color: var(--blue); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #555; }

.hero-btns a { margin: 0 10px; padding: 12px 30px; border-radius: 30px; font-weight: bold; display: inline-block; }
.btn-primary { background-color: var(--blue); color: var(--white); }
.btn-primary:hover { background-color: var(--dark-blue); }
.btn-secondary { border: 2px solid var(--blue); color: var(--blue); }
.btn-secondary:hover { background-color: var(--blue); color: var(--white); }

/* Tours */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: 2.5rem; color: var(--text); }
.wave-line { width: 100px; height: 5px; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAxMCI+PHBhdGggZD0iTTAgNWM1IDAgNS01IDEwLTVzNSA1IDEwIDVzNS01IDEwLTUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwQkZGRiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+'); background-size: 20px 10px; margin: 10px auto; }

.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tour-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: 0.3s; }
.tour-card:hover { transform: translateY(-10px); }
.img-box { height: 250px; position: relative; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.price { position: absolute; bottom: 10px; right: 10px; background-color: var(--yellow); padding: 5px 15px; border-radius: 15px; font-weight: bold; }
.card-info { padding: 25px; text-align: center; }
.card-info h3 { margin-bottom: 10px; color: var(--blue); }
.card-info p { color: #666; margin-bottom: 20px; font-size: 0.9rem; }
.book-btn { background-color: var(--white); border: 2px solid var(--blue); color: var(--blue); padding: 8px 25px; border-radius: 20px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.book-btn:hover { background-color: var(--blue); color: var(--white); }

/* About */
.page-header { background-color: var(--yellow); padding: 60px 0; text-align: center; border-radius: 0 0 50% 50% / 20px; }
.bg-blue { background-color: var(--blue); color: var(--white); }
.page-header h1 { font-family: var(--font-logo); font-size: 3rem; }

.about-grid { display: flex; gap: 50px; align-items: center; }
.text-side h2 { font-size: 2rem; color: var(--blue); margin-bottom: 20px; }
.yellow-dash { width: 50px; height: 4px; background-color: var(--yellow); margin-bottom: 20px; }
.features { list-style: none; margin-top: 20px; font-weight: 500; }
.features li { margin-bottom: 10px; }
.img-side img { width: 100%; border-radius: 20px; border: 10px solid var(--white); box-shadow: 20px 20px 0 var(--blue); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); padding: 30px; border-radius: var(--radius); text-align: center; border-top: 5px solid var(--yellow); }
.avatar { font-size: 3rem; margin-bottom: 10px; }
.review-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.review-card p { font-style: italic; color: #777; margin-bottom: 15px; }
.user { font-weight: bold; color: var(--blue); }

/* Contact Form */
.booking-box { display: flex; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.05); max-width: 900px; margin: 0 auto; }
.info-panel { flex: 1; background-color: var(--blue); color: var(--white); padding: 50px; }
.info-panel h2 { margin-bottom: 20px; }
.contact-list p { margin-bottom: 15px; font-size: 1.1rem; }

.sunny-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 10px; font-family: var(--font-main); }
.submit-btn { width: 100%; background-color: var(--yellow); border: none; padding: 15px; border-radius: 10px; font-weight: bold; cursor: pointer; transition: 0.3s; font-size: 1.1rem; }
.submit-btn:hover { background-color: #ffd000; transform: scale(1.02); }

/* Legal */
.policy-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: var(--radius); }
.policy-content h1 { text-align: center; color: var(--blue); }
.policy-content h3 { color: var(--text); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.sun-footer { background-color: var(--white); padding: 50px 0; text-align: center; margin-top: auto; border-top: 5px solid var(--blue); }
.f-logo { font-family: var(--font-logo); font-size: 1.8rem; color: var(--text); margin-bottom: 20px; }
.f-socials a { color: var(--blue); margin: 0 15px; font-weight: bold; }
.copyright { margin-top: 20px; font-size: 0.8rem; color: #aaa; }

@media (max-width: 900px) {
    .sun-nav { display: none; }
    .mobile-toggle { display: block; }
    .tour-grid, .about-grid, .review-grid, .booking-box { grid-template-columns: 1fr; flex-direction: column; }
    .hero-content h1 { font-size: 2.5rem; }
}