:root {
    --blue: #0984e3; /* Bosphorus Blue */
    --pink: #e84393; /* Tulip Pink */
    --dark: #2d3436;
    --light: #dfe6e9;
    --white: #ffffff;
    
    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-text);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.city-header { padding: 20px 0; border-bottom: 2px solid var(--light); position: sticky; top: 0; background: rgba(255,255,255,0.95); z-index: 1000; backdrop-filter: blur(5px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-title); font-size: 1.8rem; font-weight: 900; letter-spacing: -1px; color: var(--blue); }
.pink { color: var(--pink); }

.city-nav ul { display: flex; gap: 25px; list-style: none; align-items: center; }
.city-nav a { font-weight: 700; color: var(--dark); font-size: 0.9rem; text-transform: uppercase; }
.city-nav a:hover, .city-nav a.active { color: var(--pink); }

.btn-city { background-color: var(--blue); color: var(--white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; }
.btn-city:hover { background-color: var(--pink); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--blue); }
.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(--pink); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #eee; font-weight: 700; font-family: var(--font-title); }

/* Hero */
.hero-city {
    height: 600px; background-size: cover; background-position: center; position: relative;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-overlay {
    background: rgba(45, 52, 54, 0.6); width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-content { color: var(--white); max-width: 800px; padding: 20px; }
.city-tag { background-color: var(--pink); padding: 5px 15px; font-family: var(--font-title); font-weight: bold; font-size: 0.8rem; border-radius: 20px; display: inline-block; margin-bottom: 20px; letter-spacing: 2px; }
.hero-content h1 { font-family: var(--font-title); font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero-content p { font-size: 1.3rem; margin-bottom: 30px; font-weight: 400; }

.hero-search { display: flex; background: var(--white); padding: 5px; border-radius: 50px; max-width: 500px; margin: 0 auto; }
.hero-search input { flex: 1; border: none; padding: 15px 25px; border-radius: 50px; outline: none; font-size: 1rem; }
.hero-search button { background-color: var(--blue); color: var(--white); border: none; padding: 0 30px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.hero-search button:hover { background-color: var(--pink); }

/* Categories */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-title); font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.wave { width: 60px; height: 6px; background: linear-gradient(90deg, var(--blue), var(--pink)); margin: 0 auto; border-radius: 3px; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.cat-card { background: var(--light); padding: 30px 20px; text-align: center; border-radius: 20px; transition: 0.3s; }
.cat-card:hover { background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-10px); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.cat-card h3 { font-family: var(--font-title); font-weight: 700; margin-bottom: 10px; color: var(--blue); }

/* About */
.page-header { background-color: var(--blue); color: var(--white); padding: 60px 0; text-align: center; margin-bottom: 40px; }
.page-header h1 { font-family: var(--font-title); font-weight: 900; font-size: 3rem; }

.about-story { display: flex; gap: 50px; align-items: center; }
.story-img { flex: 1; }
.story-img img { width: 100%; border-radius: 20px; box-shadow: 15px 15px 0 var(--pink); }
.story-text { flex: 1; }
.story-text h2 { font-family: var(--font-title); font-size: 2rem; margin-bottom: 20px; color: var(--dark); }
.tags span { display: inline-block; background-color: var(--light); color: var(--blue); padding: 5px 10px; border-radius: 5px; margin-right: 10px; font-weight: 600; font-size: 0.9rem; margin-top: 10px; }

/* Reviews (Testimonials) */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { border: 2px solid var(--light); padding: 30px; border-radius: 20px; transition: 0.3s; }
.review-card:hover { border-color: var(--pink); }
.card-top { display: flex; justify-content: space-between; margin-bottom: 15px; font-family: var(--font-title); font-weight: bold; }
.district { color: var(--blue); text-transform: uppercase; }
.rating { color: var(--pink); }
.review-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.review-card p { font-style: italic; color: #555; margin-bottom: 20px; font-size: 0.95rem; }
.reviewer { text-align: right; font-weight: 600; font-size: 0.9rem; }

/* Contact Form */
.contact-box { max-width: 700px; margin: 0 auto; background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.05); padding: 50px; border-radius: 20px; }
.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h2 { font-family: var(--font-title); color: var(--blue); }

.urban-form .form-group { margin-bottom: 20px; }
.urban-form input, .urban-form select, .urban-form textarea { width: 100%; padding: 15px; background: var(--light); border: none; border-radius: 10px; font-family: var(--font-text); font-size: 1rem; transition: 0.3s; }
.urban-form input:focus, .urban-form select:focus, .urban-form textarea:focus { background: var(--white); box-shadow: 0 0 0 2px var(--pink); outline: none; }
.send-btn { width: 100%; background-color: var(--blue); color: var(--white); padding: 15px; border: none; font-family: var(--font-title); font-weight: 900; font-size: 1.2rem; cursor: pointer; border-radius: 10px; transition: 0.3s; }
.send-btn:hover { background-color: var(--pink); }

/* Legal */
.legal-page { max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-family: var(--font-title); text-align: center; }
.legal-page h3 { color: var(--blue); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.city-footer { background-color: var(--dark); color: #fff; padding: 50px 0; text-align: center; margin-top: auto; }
.f-brand { font-family: var(--font-title); font-size: 1.5rem; font-weight: 900; margin-bottom: 20px; letter-spacing: 2px; }
.f-socials a { color: var(--light); margin: 0 15px; font-weight: 600; font-size: 0.9rem; }
.f-socials a:hover { color: var(--pink); }
.copy { margin-top: 30px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 900px) {
    .city-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-search { flex-direction: column; background: transparent; }
    .hero-search input { border-radius: 10px; margin-bottom: 10px; }
    .hero-search button { border-radius: 10px; width: 100%; }
    .category-grid, .about-story, .reviews-grid { grid-template-columns: 1fr; flex-direction: column; }
    .story-img { margin-bottom: 20px; }
}