/* room24worker – Shared Landing Page Styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --night: #0b1929;
  --night2: #0d1f38;
  --night3: #1e3a5f;
  --signal: #1ebbff;
  --signal2: #0ea5e9;
  --offwhite: #f0f4f8;
  --muted: #8fafc9;
  --gold: #eab308;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--night); color: var(--offwhite); min-height: 100vh; display: flex; flex-direction: column; }
a { color: inherit; text-decoration: none; }

/* HEADER */
header { background: var(--night2); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--signal); position: sticky; top: 0; z-index: 100; }
.header-brand { display: flex; align-items: center; gap: 1rem; }
header img { width: 52px; height: 52px; border-radius: 50%; object-fit: contain; background: #f5f2ed; }
header .brand-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; text-transform: uppercase; color: var(--signal); letter-spacing: 0.06em; }
.header-cta { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; background: var(--signal); color: var(--night); padding: 0.6rem 1.4rem; white-space: nowrap; transition: background 0.2s; }
.header-cta:hover { background: var(--signal2); color: var(--night); }

/* HERO */
.hero { background: linear-gradient(135deg, #0d1f38 0%, #1e3a5f 60%, #0b1929 100%); border-bottom: 1px solid rgba(30,187,255,0.15); padding: 5rem 2rem 4rem; }
.hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: var(--signal); }
.breadcrumb span { opacity: 0.4; }
.breadcrumb a + span { opacity: 0.4; }
h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2.4rem, 6vw, 4.5rem); text-transform: uppercase; line-height: 1.05; margin-bottom: 1.25rem; }
h1 .accent { color: var(--signal); }
.hero-sub { color: var(--muted); font-size: 1.1rem; line-height: 1.65; max-width: 680px; margin-bottom: 0.75rem; }
.price-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.4); color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.4rem 1rem; margin-bottom: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; background: var(--signal); color: var(--night); padding: 0.85rem 2rem; transition: background 0.2s, transform 0.15s; clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px)); display: inline-block; }
.btn-primary:hover { background: var(--signal2); transform: translateY(-1px); color: var(--night); }
.btn-secondary { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid rgba(30,187,255,0.4); color: var(--signal); padding: 0.85rem 2rem; transition: all 0.2s; display: inline-block; }
.btn-secondary:hover { background: rgba(30,187,255,0.08); color: var(--signal); }

/* SECTIONS */
main { flex: 1; }
section { padding: 4rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--signal); margin-bottom: 0.5rem; }
h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 3.5vw, 2.5rem); text-transform: uppercase; margin-bottom: 1.25rem; line-height: 1.1; }
h2 .accent { color: var(--signal); }
.section-lead { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 780px; margin-bottom: 2.5rem; }

/* AMENITY GRID */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.amenity-card { background: rgba(30,187,255,0.05); border: 1px solid rgba(30,187,255,0.15); padding: 1.1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.75rem; transition: border-color 0.2s; }
.amenity-card:hover { border-color: rgba(30,187,255,0.35); }
.amenity-icon { font-size: 1.3rem; flex-shrink: 0; }
.amenity-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--signal); display: block; }
.amenity-desc { font-size: 0.85rem; color: var(--muted); display: block; margin-top: 0.15rem; }

/* ROOMS */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.room-card { background: var(--night2); border: 1px solid rgba(255,255,255,0.07); padding: 1.75rem 1.5rem; border-top: 3px solid var(--signal); }
.room-type { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--offwhite); margin-bottom: 0.35rem; }
.room-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--gold); margin-bottom: 0.75rem; }
.room-price span { font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.room-features { list-style: none; }
.room-features li { font-size: 0.85rem; color: var(--muted); padding: 0.2rem 0; display: flex; align-items: center; gap: 0.5rem; }
.room-features li::before { content: "—"; color: var(--signal); opacity: 0.5; }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.trust-card { background: var(--night2); border-left: 3px solid var(--gold); padding: 1.5rem 1.75rem; }
.trust-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--offwhite); margin-bottom: 0.5rem; }
.trust-text { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* INFO BLOCKS */
.info-block { background: var(--night2); border: 1px solid rgba(255,255,255,0.07); padding: 2rem; margin-bottom: 1.5rem; }
.info-block h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--signal); margin-bottom: 0.75rem; }
.info-block p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem 1.5rem; background: var(--night2); border: 1px solid rgba(255,255,255,0.06); }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; color: var(--signal); line-height: 1; flex-shrink: 0; width: 2rem; text-align: center; }
.step-content h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--offwhite); margin-bottom: 0.25rem; }
.step-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,0.07); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; text-align: left; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--offwhite); }
.faq-q-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--offwhite); }
.faq-arrow { color: var(--signal); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* FORM */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
input, textarea, select { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); color: var(--offwhite); font-family: 'Barlow', sans-serif; font-size: 0.95rem; padding: 0.75rem 1rem; width: 100%; transition: border-color 0.2s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--signal); }
textarea { resize: vertical; min-height: 100px; }
select option { background: var(--night2); color: var(--offwhite); }
.form-submit { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; background: var(--signal); color: var(--night); border: none; padding: 1rem 2.5rem; cursor: pointer; transition: background 0.2s, transform 0.15s; clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px)); margin-top: 0.5rem; }
.form-submit:hover { background: var(--signal2); transform: translateY(-1px); }

/* CITIES */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; }
.city-link { background: var(--night2); border: 1px solid rgba(255,255,255,0.07); padding: 1rem 1.25rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
.city-link:hover { color: var(--signal); border-color: rgba(30,187,255,0.3); background: rgba(30,187,255,0.05); }
.city-link::before { content: "→"; color: var(--signal); }

/* STICKY MOBILE CTA */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--night2); border-top: 2px solid var(--signal); padding: 0.75rem 1rem; gap: 0.75rem; }
@media (max-width: 768px) { .sticky-cta { display: flex; } }
.sticky-btn { flex: 1; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.75rem; text-align: center; transition: background 0.2s; }
.sticky-btn.tel { background: var(--signal); color: var(--night); }
.sticky-btn.wa { background: #25D366; color: #fff; }

/* ALT BG */
.bg-alt { background: rgba(30,187,255,0.03); border-top: 1px solid rgba(30,187,255,0.08); border-bottom: 1px solid rgba(30,187,255,0.08); }

/* FOOTER */
footer { background: var(--night2); padding: 2rem; text-align: center; color: rgba(95,138,171,0.5); font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.06); padding-bottom: 5rem; }
footer a { color: var(--signal); }

@media (max-width: 768px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  section { padding: 3rem 1.25rem; }
  header { padding: 0.75rem 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
}
