/* ==========================================================================
   Tower Bookings — Platform Marketing Homepage
   Not tenant-themed (no hotel context exists here) — colors are fixed,
   matching the same navy/gold palette every new tenant starts with by
   default, so a visitor clicking "View Live Demo" lands somewhere visually
   consistent with what they just read about.
   ========================================================================== */
:root {
    --p-primary: #0b1f3a;
    --p-primary-light: #14315c;
    --p-secondary: #c8a95c;
    --p-accent: #f5f0e6;
    --p-text: #1f2430;
    --p-muted: #62697a;
    --p-border: #e6e1d6;
    --p-bg: #ffffff;
    --p-bg-alt: #faf8f4;
    --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.home-body {
    margin: 0;
    font-family: 'Jost', Arial, sans-serif;
    color: var(--p-text);
    background: var(--p-bg);
    line-height: 1.6;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; margin: 0; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--p-secondary); margin-bottom: 14px; }
.section { padding: 90px 0; }
.section-alt { background: var(--p-bg-alt); }
.section-title { font-size: 34px; margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--p-muted); max-width: 600px; margin: 0 auto 50px; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 6px; font-size: 14px; font-weight: 600; border: 1px solid transparent; cursor: pointer; transition: all .15s ease; }
.btn-primary { background: var(--p-secondary); color: var(--p-primary); }
.btn-primary:hover { background: #b3924a; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; border-color: var(--p-border); color: var(--p-primary); }
.btn-outline-dark:hover { background: var(--p-accent); }
.btn-block { width: 100%; }

/* Nav */
.home-nav { background: var(--p-primary); padding: 18px 0; position: sticky; top: 0; z-index: 100; }
.home-nav .container { display: flex; align-items: center; justify-content: space-between; }
.wordmark { display: flex; align-items: center; gap: 8px; font-family: 'Playfair Display', Georgia, serif; font-size: 21px; font-weight: 700; color: #fff; }
.wordmark .dot { color: var(--p-secondary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a.nav-link { font-size: 14px; color: rgba(255,255,255,0.8); }
.nav-links a.nav-link:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .signin-link { font-size: 14px; color: rgba(255,255,255,0.85); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
    background: radial-gradient(circle at top right, var(--p-primary-light), var(--p-primary) 65%);
    color: #fff;
    padding: 110px 0 100px;
    text-align: center;
}
.hero h1 { font-size: 52px; line-height: 1.15; max-width: 820px; margin: 0 auto 22px; }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 640px; margin: 0 auto 40px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.hero-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: '✓'; color: var(--p-secondary); font-weight: 700; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 20px; }
.feature-card { background: var(--p-bg); border: 1px solid var(--p-border); border-radius: var(--radius); padding: 32px 28px; }
.feature-card .icon { width: 46px; height: 46px; border-radius: 10px; background: var(--p-accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--p-muted); margin: 0; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; margin-top: 20px; }
.step { position: relative; padding-top: 8px; }
.step .num { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--p-primary); color: var(--p-secondary); font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 18px; margin-bottom: 18px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--p-muted); margin: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 20px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--p-border); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--p-secondary); box-shadow: 0 20px 50px rgba(11,31,58,0.12); transform: translateY(-6px); }
.price-card .badge-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--p-secondary); color: var(--p-primary); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-card .price { font-family: 'Playfair Display', Georgia, serif; font-size: 40px; font-weight: 700; color: var(--p-primary); margin: 14px 0 4px; }
.price-card .price span { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 400; color: var(--p-muted); }
.price-card .price-note { font-size: 13px; color: var(--p-muted); margin-bottom: 24px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 30px; flex: 1; }
.price-card ul li { font-size: 14px; color: var(--p-text); padding: 9px 0; border-top: 1px solid var(--p-border); display: flex; gap: 10px; align-items: flex-start; }
.price-card ul li:first-child { border-top: none; }
.price-card ul li::before { content: '✓'; color: var(--p-secondary); font-weight: 700; flex-shrink: 0; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--p-border); padding: 26px 0; }
.faq-item h3 { font-size: 17px; margin-bottom: 10px; font-family: 'Jost', sans-serif; font-weight: 600; }
.faq-item p { font-size: 14.5px; color: var(--p-muted); margin: 0; }

/* Final CTA */
.final-cta { background: var(--p-primary); color: #fff; text-align: center; padding: 90px 0; }
.final-cta h2 { color: #fff; font-size: 32px; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.75); margin-bottom: 34px; }

/* Footer */
.home-footer { background: #081426; color: rgba(255,255,255,0.7); padding: 60px 0 30px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-family: 'Jost', sans-serif; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: #fff; }
.footer-finder input { width: 100%; padding: 10px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; font-size: 13px; margin-bottom: 10px; }
.footer-finder input::placeholder { color: rgba(255,255,255,0.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,0.45); }

@media (max-width: 900px) {
    .hero h1 { font-size: 36px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
}
@media (max-width: 560px) {
    .section { padding: 60px 0; }
    .hero { padding: 80px 0 60px; }
    .hero h1 { font-size: 28px; }
    .feature-grid, .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
}
