* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #123039; background: #fafcfc; }

nav { background: linear-gradient(135deg, #b8dfe3 0%, #d4eef0 50%, #ebf5f6 100%); box-shadow: 0 4px 15px rgba(34,160,174,0.2); padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; position: relative; }
nav .logo { font-size: 1.5rem; font-weight: bold; color: #22a0ae; display: flex; align-items: center; }
nav .logo:hover { background: none !important; color: #22a0ae !important; }
nav .menu-toggle { display: none; background: #22a0ae; border: none; font-size: 1.8rem; color: white; cursor: pointer; padding: 0.5rem 0.8rem; border-radius: 8px; }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav ul li a { color: #123039; text-decoration: none; font-weight: 600; transition: all 0.3s; padding: 0.5rem 1rem; border-radius: 8px; }
nav ul li a:hover { color: white; background: #22a0ae; }

.hero { background: linear-gradient(90deg, #1a8a96 0%, #1e9fad 25%, #22a0ae 50%, #3ca69b 75%, #5ab081 100%); color: white; text-align: center; padding: 6rem 2rem; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.hero p { font-size: 1.5rem; margin-bottom: 2rem; }
.btn { background: #f9b120; color: white; padding: 1rem 2.5rem; text-decoration: none; border-radius: 30px; font-weight: 600; display: inline-block; transition: transform 0.3s; }
.btn:hover { transform: translateY(-2px); }

.services, .why, .content { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
h2 { text-align: center; margin-bottom: 2rem; font-size: 2rem; color: #123039; font-weight: 700; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.card { background: white; padding: 2rem; border-radius: 12px; text-align: center; box-shadow: 0 4px 15px rgba(34,160,174,0.1); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card h3 { margin-bottom: 1rem; color: #22a0ae; font-weight: 600; }

.why { background: #ebf5f6; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.why-item { background: white; padding: 2rem; border-radius: 12px; text-align: center; box-shadow: 0 4px 15px rgba(34,160,174,0.1); }
.why-item .icon { font-size: 3rem; margin-bottom: 1rem; }
.why-item h3 { color: #22a0ae; margin-bottom: 0.5rem; font-weight: 600; font-size: 1.2rem; }
.why-item p { color: #669499; font-size: 0.95rem; }

.tour { background: white; padding: 2rem; margin-bottom: 2rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(34,160,174,0.1); transition: transform 0.3s; }
.tour:hover { transform: translateY(-5px); }
.tour h3 { color: #22a0ae; margin-bottom: 1rem; font-weight: 600; font-size: 1.5rem; }
.tour .meta { color: #f9b120; font-weight: 600; margin-bottom: 1rem; font-size: 0.95rem; }
.tour p { color: #669499; line-height: 1.8; }
.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

form { max-width: 600px; margin: 2rem auto; }
form input, form textarea { width: 100%; padding: 1rem; margin-bottom: 1rem; border: 2px solid #e6e6e5; border-radius: 8px; font-family: inherit; transition: border-color 0.3s; }
form input:focus, form textarea:focus { outline: none; border-color: #22a0ae; }
form button { background: #22a0ae; color: white; padding: 1rem 2.5rem; border: none; border-radius: 30px; cursor: pointer; font-size: 1rem; font-weight: 600; transition: background 0.3s; }
form button:hover { background: #1e9fad; }
.success { background: #7abc60; color: white; padding: 1rem; border-radius: 8px; margin-bottom: 1rem; text-align: center; }
.contact-info { margin-top: 2rem; text-align: center; }

footer { background: #123039; color: white; padding: 3rem 2rem 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto 2rem; }
.footer-section h3 { color: #22a0ae; margin-bottom: 1rem; font-size: 1.5rem; }
.footer-section h4 { color: #22a0ae; margin-bottom: 1rem; font-size: 1.1rem; }
.footer-section p { margin-bottom: 0.5rem; line-height: 1.8; }
.footer-section a { color: white; text-decoration: none; transition: color 0.3s; }
.footer-section a:hover { color: #22a0ae; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; }

@media (max-width: 768px) {
    nav { flex-direction: column; align-items: flex-start; }
    nav .menu-toggle { display: block; position: absolute; left: 1rem; top: 1.5rem; }
    nav .logo { margin-left: 3.5rem; }
    nav ul { display: none; flex-direction: column; width: 100%; gap: 0; margin-top: 1rem; }
    nav ul.show { display: flex; }
    nav ul li { width: 100%; }
    nav ul li a { display: block; padding: 1rem; border-top: 1px solid #e6e6e5; }
    .hero h1 { font-size: 2rem; }
}
