/* Palette: Turquoise, Sunset Orange, Sunshine Yellow, White */
:root {
    --turquoise: #30D5C8;
    --orange: #FF7F50;
    --yellow: #FFD700;
    --white: #FFFFFF;
    --text: #333333;
    --light-bg: #F9F9F9;
    
    --font-main: 'Poppins', sans-serif;
    --font-script: 'Satisfy', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--light-bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

/* Header */
.panorama-header { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.8rem; font-weight: 700; color: var(--turquoise); letter-spacing: 1px; }
.sun-icon { color: var(--orange); }

.travel-nav a { margin-left: 25px; font-weight: 600; color: #555; font-size: 1rem; }
.travel-nav a:hover, .travel-nav a.active { color: var(--orange); }

.hotline { font-weight: 700; color: var(--orange); border: 2px solid var(--orange); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; }

.mobile-burger { display: none; background: none; border: none; font-size: 1.5rem; color: var(--turquoise); cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--turquoise); z-index: 2000; padding: 40px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-menu { background: none; border: none; font-size: 1.5rem; color: var(--white); margin-bottom: 20px; cursor: pointer; }
.mobile-menu a { display: block; color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; }

@media (max-width: 900px) {
    .travel-nav, .hotline { display: none; }
    .mobile-burger { display: block; }
}

/* Hero */
.hero-travel { height: 85vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -1; }
.hero-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6)); z-index: 0; }
.hero-content { position: relative; z-index: 10; color: var(--white); max-width: 800px; }

.script-text { font-family: var(--font-script); font-size: 2.5rem; color: var(--yellow); display: block; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 30px; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; }

.hero-search { background: rgba(255,255,255,0.9); padding: 15px; border-radius: 50px; display: flex; gap: 10px; max-width: 700px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.hero-search input { flex: 1; padding: 10px 20px; border: none; border-right: 1px solid #ddd; background: transparent; font-family: var(--font-main); }
.hero-search input:last-of-type { border-right: none; }
.btn-orange { background: var(--orange); color: var(--white); border: none; padding: 10px 30px; border-radius: 40px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-orange:hover { background: #FF6347; transform: scale(1.05); }

/* Tours */
.section-title h2 { font-size: 2.5rem; color: var(--turquoise); margin-bottom: 5px; }
.wave-line { color: var(--orange); font-size: 1.5rem; margin-bottom: 10px; letter-spacing: 5px; font-weight: 700; }
.text-center { text-align: center; }

.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.tour-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: 0.3s; }
.tour-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.tour-img { position: relative; height: 250px; }
.tour-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px 12px 0 0; }
.price-tag { position: absolute; top: 15px; right: 15px; background: var(--yellow); color: var(--text); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; }

.tour-info { padding: 25px; }
.tour-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: #222; }
.meta { display: flex; gap: 15px; font-size: 0.85rem; color: #777; margin-bottom: 15px; }
.btn-link { color: var(--orange); font-weight: 700; font-size: 0.9rem; }

/* Filter Bar */
.filter-bar { text-align: center; margin-bottom: 40px; }
.filter-bar button { background: var(--white); border: 2px solid #eee; padding: 10px 25px; margin: 0 5px; border-radius: 30px; font-weight: 600; color: #777; cursor: pointer; transition: 0.3s; }
.filter-bar button:hover, .filter-bar button.active { border-color: var(--turquoise); color: var(--turquoise); }

/* About */
.about-colorful { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.orange-line { width: 80px; height: 4px; background: var(--orange); margin: 20px 0; border-radius: 2px; }
.about-desc h1 { font-size: 3rem; line-height: 1.1; color: var(--turquoise); }
.features-list { list-style: none; margin-top: 30px; }
.features-list li { margin-bottom: 10px; font-weight: 600; font-size: 1.1rem; }
.about-collage { position: relative; height: 400px; }
.img-1 { position: absolute; top: 0; left: 0; width: 70%; z-index: 1; box-shadow: 10px 10px 0 var(--yellow); }
.img-2 { position: absolute; bottom: 0; right: 0; width: 60%; z-index: 2; border: 5px solid var(--white); }

/* Banner */
.promo-banner { background: linear-gradient(45deg, var(--turquoise), var(--orange)); color: var(--white); padding: 50px 0; text-align: center; margin-top: 50px; }
.promo-banner h3 { font-size: 2.5rem; margin-bottom: 10px; }
.btn-white { background: var(--white); color: var(--orange); padding: 12px 35px; border-radius: 30px; font-weight: 700; margin-top: 20px; display: inline-block; }

/* Contact */
.contact-card-vibrant { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 60px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.contact-header h2 { font-size: 2.5rem; color: var(--turquoise); margin-bottom: 20px; }
.contact-icons span { display: block; margin-bottom: 10px; font-weight: 600; }

.travel-form .form-group { margin-bottom: 20px; }
.travel-form label { display: block; font-weight: 600; margin-bottom: 5px; color: #555; }
.travel-form input, .travel-form select, .travel-form textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; font-family: var(--font-main); transition: 0.3s; }
.travel-form input:focus, .travel-form select:focus, .travel-form textarea:focus { border-color: var(--orange); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-colorful { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 12px; }
.legal-colorful h1 { color: var(--turquoise); }

/* Footer */
.panorama-footer { background: var(--text); color: var(--white); padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-logo h4 { font-size: 1.5rem; margin-bottom: 5px; color: var(--turquoise); }
.f-menu a { margin-left: 20px; color: #ccc; }
.f-menu a:hover { color: var(--orange); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #444; padding-top: 20px; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-search { flex-direction: column; border-radius: 12px; }
    .tour-grid, .about-colorful, .contact-card-vibrant { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}