/* City SEO Pages — Olympus */
:root {
    --navy: #0a0e27; --navy-2: #0d1333; --navy-3: #111a42;
    --cyan: #00d4ff; --cyan-light: #48e8ff; --cyan-dark: #0096c7;
    --blue: #0077b6; --accent: #06d6a0;
    --text: #e0f4ff; --text-muted: #8bacc8; --white: #fff;
    --gradient: linear-gradient(135deg, #0077b6, #00d4ff);
    --radius: 16px; --radius-lg: 24px;
    --font: 'Montserrat Alternatives', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-weight: 700; background: var(--navy); color: var(--text); line-height: 1.7; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* TOP BAR */
.top-bar {
    background: var(--navy-2); border-bottom: 1px solid rgba(0,212,255,0.1);
    padding: 10px 0; font-size: 0.82rem; color: var(--text-muted);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: var(--cyan-light); transition: color 0.3s; }
.top-bar a:hover { color: var(--white); }
.top-bar i { margin-right: 6px; color: var(--cyan); }

/* HEADER */
.city-header {
    background: linear-gradient(180deg, var(--navy-2), var(--navy));
    padding: 60px 0 40px; text-align: center;
}
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan-light); font-weight: 700; font-size: 0.85rem; margin-bottom: 24px; transition: all 0.3s; }
.back-link:hover { color: var(--white); gap: 12px; }
.city-header h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.city-header h1 .glow { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.city-header p { font-size: 1.05rem; color: var(--text-muted); font-weight: 400; max-width: 600px; margin: 0 auto; }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; font-size: 0.8rem; color: var(--text-muted); }
.breadcrumb a { color: var(--cyan-light); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* SECTIONS */
section { padding: 80px 0; }
.section-title { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 16px; text-align: center; }
.section-title .glow { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { text-align: center; color: var(--text-muted); font-weight: 400; max-width: 600px; margin: 0 auto 48px; }

/* OFFER CARDS */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.offer-card {
    background: var(--navy-2); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius-lg); padding: 32px; transition: all 0.4s ease; position: relative;
}
.offer-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.offer-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,212,255,0.1); }
.offer-icon { font-size: 2rem; color: var(--cyan); margin-bottom: 16px; }
.offer-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.offer-card p { color: var(--text-muted); font-size: 0.9rem; font-weight: 400; margin-bottom: 16px; }
.offer-price {
    display: inline-block; padding: 8px 20px; background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2); border-radius: 8px;
    font-weight: 800; color: var(--cyan); font-size: 0.95rem;
}
.offer-price .old { text-decoration: line-through; color: var(--text-muted); margin-right: 8px; font-weight: 400; font-size: 0.85rem; }
.offer-badge {
    position: absolute; top: 16px; right: 16px; padding: 4px 12px;
    background: var(--gradient); border-radius: 50px;
    font-size: 0.7rem; font-weight: 800; color: var(--white);
}

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card {
    background: var(--navy-2); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius); padding: 28px; text-align: center; transition: all 0.4s ease;
}
.why-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-6px); }
.why-card i { font-size: 2rem; color: var(--cyan); margin-bottom: 16px; }
.why-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; font-weight: 400; }

/* CTA */
.cta-section {
    background: var(--navy-3); border: 1px solid rgba(0,212,255,0.12);
    border-radius: var(--radius-lg); padding: 60px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.03), rgba(6,214,160,0.03));
}
.cta-section h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 16px; position: relative; }
.cta-section p { color: var(--text-muted); font-weight: 400; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 12px; font-family: var(--font);
    font-weight: 800; font-size: 1rem; cursor: pointer; border: none;
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 10px 40px rgba(0,212,255,0.3); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,212,255,0.5); }

/* CITIES LIST */
.cities-section { background: var(--navy-2); }
.cities-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.city-tag {
    padding: 10px 20px; background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.15); border-radius: 10px;
    color: var(--cyan-light); font-weight: 700; font-size: 0.88rem;
    transition: all 0.3s ease;
}
.city-tag:hover { background: var(--gradient); color: var(--white); border-color: transparent; transform: translateY(-3px); }
.city-tag.active { background: var(--gradient); color: var(--white); border-color: transparent; }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    background: var(--navy-2); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-question {
    padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 800; font-size: 0.95rem; transition: color 0.3s;
}
.faq-question:hover { color: var(--cyan); }
.faq-question i { color: var(--cyan); transition: transform 0.3s; font-size: 0.8rem; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px; color: var(--text-muted); font-size: 0.9rem; font-weight: 400;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* FOOTER */
.city-footer {
    background: var(--navy-2); border-top: 1px solid rgba(0,212,255,0.1);
    padding: 40px 0 24px; text-align: center;
}
.city-footer p { color: var(--text-muted); font-size: 0.82rem; font-weight: 400; margin-bottom: 8px; }
.city-footer a { color: var(--cyan-light); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-bar .container { justify-content: center; text-align: center; }
    .cta-section { padding: 40px 24px; }
    .offers-grid { grid-template-columns: 1fr; }
}
