/* --- Variables --- */
:root {
    --color-orange: #ff6b00;    /* Metro Orange */
    --color-dark: #343a40;      /* Asphalt */
    --color-grey: #6c757d;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- Info Bar --- */
.zone-bar { background-color: var(--color-dark); color: #ccc; font-size: 0.8rem; padding: 5px 0; }
.bar-content { display: flex; justify-content: space-between; flex-wrap: wrap; }
.status strong { color: var(--color-orange); }
.weather { font-weight: bold; color: var(--color-white); }

/* --- Header --- */
.zone-header { background-color: var(--color-white); padding: 20px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--color-dark); letter-spacing: -1px; }
.orange-box { background-color: var(--color-orange); color: var(--color-white); padding: 0 5px; margin-left: 2px; }

.city-nav ul { display: flex; gap: 25px; align-items: center; }
.city-nav a { font-weight: 600; color: var(--color-dark); font-size: 0.95rem; }
.city-nav a:hover, .city-nav a.active { color: var(--color-orange); }

.btn-orange { background-color: var(--color-orange); color: var(--color-white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3); }
.btn-orange:hover { background-color: #e65c00; transform: translateY(-2px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background-color: var(--color-dark); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease; border-left: 5px solid var(--color-orange);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid #eee; padding-bottom: 10px; }

/* --- Hero --- */
.hero-zone {
    position: relative; height: 500px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); z-index: 1; }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 800px; padding: 20px; color: var(--color-white); }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 15px; font-weight: 800; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 400; }

.search-zone { display: flex; max-width: 500px; margin: 0 auto 20px; background: var(--color-white); padding: 5px; border-radius: 50px; }
.search-zone input { flex: 1; border: none; padding: 15px 20px; font-size: 1rem; border-radius: 50px; outline: none; }
.search-zone button { background-color: var(--color-orange); color: var(--color-white); border: none; padding: 0 30px; border-radius: 50px; font-weight: bold; cursor: pointer; }
.search-zone button:hover { background-color: #e65c00; }

.quick-tags a { color: #fff; background: rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; margin: 0 5px; font-weight: 600; backdrop-filter: blur(5px); }
.quick-tags a:hover { background: var(--color-orange); }

/* --- Categories --- */
.section-padding { padding: 80px 0; }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-family: var(--font-head); font-size: 2rem; color: var(--color-dark); margin-bottom: 10px; }
.line-orange { width: 50px; height: 5px; background-color: var(--color-orange); border-radius: 5px; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.cat-card { background-color: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); transition: 0.3s; text-align: center; border: 1px solid #eee; }
.cat-card:hover { transform: translateY(-5px); border-color: var(--color-orange); }
.icon { font-size: 3rem; margin-bottom: 15px; }
.cat-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 10px; }
.cat-card p { color: var(--color-grey); font-size: 0.9rem; }

/* --- Featured Spot --- */
.featured-spot { background-color: var(--color-dark); color: var(--color-white); padding: 60px 0; }
.spot-flex { display: flex; align-items: center; gap: 50px; }
.spot-img img { box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.spot-info .tag { background-color: var(--color-orange); font-size: 0.8rem; font-weight: bold; padding: 5px 10px; border-radius: 4px; }
.spot-info h3 { font-family: var(--font-head); font-size: 2.5rem; margin: 15px 0; }
.spot-info p { color: #ccc; margin-bottom: 30px; font-size: 1.1rem; }
.btn-outline { border: 2px solid var(--color-white); padding: 12px 30px; font-weight: bold; border-radius: 50px; }
.btn-outline:hover { background-color: var(--color-white); color: var(--color-dark); }

/* --- Semtler (About) --- */
.page-title { text-align: center; margin-bottom: 60px; }
.page-title h1 { font-family: var(--font-head); font-size: 3rem; color: var(--color-dark); }

.districts-list { display: flex; flex-direction: column; gap: 40px; }
.district-card { display: flex; background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.d-img { width: 40%; background-size: cover; background-position: center; min-height: 250px; }
.d-content { padding: 30px; width: 60%; display: flex; flex-direction: column; justify-content: center; }
.d-content h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; color: var(--color-dark); }
.tags { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.tags li { background: #f0f0f0; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; color: var(--color-grey); }

/* --- Tips (Testimonials) --- */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tip-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); border-left: 5px solid var(--color-orange); box-shadow: var(--shadow); }
.tip-header { display: flex; justify-content: space-between; margin-bottom: 15px; font-weight: bold; }
.role { font-size: 0.8rem; color: var(--color-grey); background: #eee; padding: 2px 8px; border-radius: 4px; }
.tip-tag { display: block; margin-top: 15px; color: var(--color-orange); font-size: 0.9rem; font-weight: bold; }

/* --- Contact Form --- */
.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-left h2 { font-family: var(--font-head); margin-bottom: 15px; }
.info-item { margin-top: 20px; font-size: 1.1rem; }

.modern-form .form-row { margin-bottom: 20px; }
.modern-form label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.9rem; }
.modern-form input, .modern-form select, .modern-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); }
.btn-submit { width: 100%; background-color: var(--color-dark); color: var(--color-white); padding: 15px; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background-color: var(--color-orange); }

/* --- Legal --- */
.card-guide { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.card-guide h1 { font-family: var(--font-head); color: var(--color-dark); }
.card-guide h3 { color: var(--color-orange); margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.zone-footer { background-color: var(--color-dark); color: var(--color-white); padding: 50px 0; margin-top: auto; }
.footer-content { text-align: center; }
.f-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; margin-bottom: 20px; }
.f-brand p { font-weight: 400; font-size: 0.9rem; opacity: 0.7; }
.f-social a { color: #ccc; margin: 0 15px; font-weight: 600; }
.f-social a:hover { color: var(--color-orange); }
.copyright { margin-top: 30px; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 992px) {
    .city-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .spot-flex, .contact-box { grid-template-columns: 1fr; flex-direction: column; }
    .district-card { flex-direction: column; }
    .d-img, .d-content { width: 100%; }
    .tips-grid { grid-template-columns: 1fr; }
}