:root {
    --sky-blue: #00BFFF;
    --leaf-green: #4CAF50;
    --cloud-white: #FFFFFF;
    --soft-grey: #F0F4F8;
    --text-dark: #333333;
    
    --font-head: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--soft-grey);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.atlas-header { background: var(--cloud-white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0, 191, 255, 0.1); border-radius: 0 0 20px 20px; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 5px; }
.blue { color: var(--sky-blue); }
.pin-icon { font-size: 1.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.app-nav a { margin-left: 20px; font-weight: 700; color: #666; font-size: 1rem; }
.app-nav a:hover, .app-nav a.active { color: var(--sky-blue); }

.btn-app { background: var(--sky-blue); color: var(--cloud-white) !important; padding: 10px 25px; border-radius: 50px; font-weight: 700; box-shadow: 0 4px 10px rgba(0, 191, 255, 0.3); }
.btn-app:hover { background: var(--leaf-green); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--sky-blue); cursor: pointer; letter-spacing: 2px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--cloud-white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.open { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--sky-blue); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: var(--text-dark); }

/* Hero */
.hero-mobile { height: 80vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-blob { background: rgba(255, 255, 255, 0.9); padding: 50px; border-radius: 30px; max-width: 600px; width: 90%; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.1); backdrop-filter: blur(5px); }
.badge-eco { background: var(--leaf-green); color: var(--cloud-white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-head); font-size: 3rem; line-height: 1.1; margin-bottom: 15px; color: var(--text-dark); }
.hero-content p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

.location-check form { display: flex; gap: 10px; }
.location-check input { flex: 1; padding: 15px; border: 2px solid var(--soft-grey); border-radius: 10px; outline: none; font-family: var(--font-body); }
.location-check input:focus { border-color: var(--sky-blue); }
.location-check button { background: var(--sky-blue); color: var(--cloud-white); border: none; padding: 15px 25px; border-radius: 10px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.location-check button:hover { background: var(--leaf-green); }
#locationResult { margin-top: 10px; font-weight: 700; color: var(--leaf-green); font-size: 0.9rem; }

/* Steps */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--text-dark); margin-bottom: 10px; }
.wave-line { width: 80px; height: 6px; background: url('data:image/svg+xml;utf8,<svg width="40" height="10" viewBox="0 0 40 10" xmlns="http://www.w3.org/2000/svg"><path d="M0 5 Q 10 0 20 5 T 40 5" stroke="%2300BFFF" fill="none" stroke-width="3"/></svg>') repeat-x; margin: 0 auto; }
.wave-line.left { margin: 20px 0; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.step-card { background: var(--cloud-white); padding: 30px; border-radius: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.step-card:hover { transform: translateY(-5px); }
.step-icon { font-size: 3rem; margin-bottom: 15px; background: var(--soft-grey); width: 80px; height: 80px; line-height: 80px; border-radius: 50%; margin: 0 auto 20px; }
.step-card h3 { font-family: var(--font-head); color: var(--sky-blue); margin-bottom: 10px; }

/* Packages */
.packages-preview { background: var(--cloud-white); padding: 80px 0; margin-top: 50px; }
.packages-preview .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
.pkg-card { background: var(--soft-grey); padding: 30px; border-radius: 20px; text-align: center; position: relative; }
.pkg-card.popular { background: var(--cloud-white); border: 2px solid var(--sky-blue); transform: scale(1.05); box-shadow: 0 15px 30px rgba(0, 191, 255, 0.15); }
.pop-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--sky-blue); color: var(--cloud-white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.pkg-card h3 { font-family: var(--font-head); margin-bottom: 10px; }
.price { font-size: 2rem; font-weight: 800; color: var(--leaf-green); margin-bottom: 15px; font-family: var(--font-head); }
.pkg-card p { margin-bottom: 20px; color: #666; font-size: 0.9rem; }
.btn-book { display: inline-block; background: var(--text-dark); color: var(--cloud-white); padding: 10px 30px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; }
.pkg-card.popular .btn-book { background: var(--sky-blue); }

/* About & Contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-block h1 { font-family: var(--font-head); font-size: 3rem; color: var(--sky-blue); line-height: 1.1; }
.tech-list { list-style: none; margin-top: 20px; }
.tech-list li { margin-bottom: 10px; background: var(--cloud-white); padding: 10px 15px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); font-weight: 600; }
.img-block { position: relative; }
.img-block img { width: 100%; border-radius: 30px; box-shadow: 20px 20px 0 var(--leaf-green); }
.float-badge { position: absolute; bottom: 20px; right: 20px; background: var(--cloud-white); padding: 10px 20px; border-radius: 15px; font-weight: 700; color: var(--sky-blue); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.booking-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--cloud-white); padding: 50px; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.booking-map h2 { font-family: var(--font-head); font-size: 2rem; color: var(--sky-blue); margin-bottom: 15px; }
.contact-card { background: var(--soft-grey); padding: 20px; border-radius: 15px; margin-top: 20px; }
.contact-card p { margin-bottom: 10px; font-weight: 600; }

.app-form .form-group { margin-bottom: 20px; }
.app-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.col { flex: 1; }
.app-form label { display: block; margin-bottom: 5px; font-weight: 700; color: #555; font-size: 0.9rem; }
.app-form input, .app-form select { width: 100%; padding: 15px; border: 2px solid var(--soft-grey); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; outline: none; }
.app-form input:focus, .app-form select:focus { border-color: var(--sky-blue); }
.btn-submit { width: 100%; background: var(--sky-blue); color: var(--cloud-white); border: none; padding: 15px; font-weight: 700; border-radius: 10px; cursor: pointer; font-size: 1.1rem; transition: 0.3s; }
.btn-submit:hover { background: var(--leaf-green); }

/* Reviews & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-bubble { background: var(--cloud-white); padding: 30px; border-radius: 20px 20px 20px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; }
.review-bubble.highlight { background: var(--sky-blue); color: var(--cloud-white); }
.review-bubble.highlight .name, .review-bubble.highlight .stars, .review-bubble.highlight .loc { color: var(--cloud-white); }
.r-head { display: flex; justify-content: space-between; margin-bottom: 15px; }
.stars { color: #FFC107; }
.name { font-weight: 700; }
.loc { font-size: 0.8rem; color: #999; display: block; margin-top: 10px; text-align: right; }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--cloud-white); padding: 50px; border-radius: 20px; }
.legal-content h1 { font-family: var(--font-head); color: var(--sky-blue); }
.legal-content h3 { color: var(--leaf-green); margin-top: 30px; }

/* Footer */
.atlas-footer { background: var(--cloud-white); padding: 50px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--soft-grey); padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--font-head); color: var(--sky-blue); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #666; font-weight: 600; }
.copyright { text-align: center; color: #999; font-size: 0.8rem; }

/* Cookie */
.cookie-bubble { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--text-dark); color: var(--cloud-white); padding: 10px 30px; border-radius: 50px; display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.cookie-bubble.active { display: flex; animation: floatUp 0.5s; }
.cookie-bubble p { margin: 0; font-size: 0.9rem; }
.cookie-bubble button { background: var(--sky-blue); color: var(--cloud-white); border: none; padding: 5px 15px; border-radius: 20px; font-weight: 700; cursor: pointer; }

@keyframes floatUp { from { transform: translate(-50%, 50px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

@media (max-width: 900px) {
    .app-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .steps-grid, .about-grid, .packages-preview .container, .booking-container, .review-grid, .app-form .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .location-check form { flex-direction: column; }
    .location-check button { width: 100%; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}