/* HotelState Page Styles */
:root {
    --navy: #031736;
    --navy-dark: #061020;
    --navy-bg: #031736;
    --gold: #CDA833;
    --gold-hover: #B89429;
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --text-primary: #FFFFFF;
    --text-secondary: #DADFE8;
    --text-muted: rgba(218, 223, 232, 0.72);
    --card-border: rgba(205, 168, 51, 0.3);
    --card-bg: rgba(255, 255, 255, 0.04);
    --section-padding: 100px;
    --font-heading: 'Gilda Display', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    font-size: 1.05rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}

h2 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--white-90);
    text-align: center;
    margin-top: 1.5rem;
}

h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
}

section {
    padding: var(--section-padding) 0;
}

/* Header - reuse from main site */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 23, 54, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.logo img {
    display: block;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.site-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--gold);
}

.nav-demo a {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
}

.nav-demo a:hover {
    background: var(--gold-hover);
    color: var(--navy);
}

/* Hero Section */
.hero-diagram {
    padding: 6rem 0 5rem;
}

.hero-diagram h1 {
    margin-bottom: 1.5rem;
}

.hero-diagram h2 {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.diagram-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
}

.diagram-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding) 0;
}

.benefits-section h1 {
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(205, 168, 51, 0.6);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: 0;
    text-align: left;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white-90);
    margin-bottom: 16px;
}

.benefit-card p:last-child {
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--navy);
    padding: 0 24px var(--section-padding);
}

.why-choose-section h1 {
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 0 16px;
}

.feature-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    display: block;
    object-fit: contain;
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Integrations Section */
.integrations-section {
    background: var(--navy);
    padding: 50px 24px;
}

.integrations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.integrations-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Scenarios Section */
.scenarios-section {
    background: var(--navy);
    padding: var(--section-padding) 24px 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.scenarios-grid {
    display: grid;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.scenario-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card-bg);
    border: 1px solid rgba(205, 168, 51, 0.18);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(205, 168, 51, 0.35);
}

/* Problem Side */
.problem-side {
    padding: 48px;
    background: #021228;
    position: relative;
}

.problem-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.problem-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.problem-list {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
}

.problem-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--text-muted);
    font-size: 18px;
}

.problem-cost {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(205, 168, 51, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
}

.material-icons {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1;
}

.cost-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.5;
}

/* Solution Side */
.solution-side {
    padding: 48px;
    background: rgba(255, 255, 255, 0.04);
}

.solution-heading {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.solution-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.benefits-list strong {
    color: var(--white);
    font-weight: 700;
}

.keywords-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(205, 168, 51, 0.08);
    border: 1px solid rgba(205, 168, 51, 0.2);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.keywords-tag .material-icons {
    font-size: 14px;
}

/* Scenario CTA */
.scenario-cta {
    text-align: center;
    margin-top: 80px;
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
}

.scenario-cta .cta-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.scenario-cta .cta-subtitle {
    display: none;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(205, 168, 51, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 168, 51, 0.4);
    background: var(--gold-hover);
}

/* FAQ Section */
.faq-section {
    background: var(--navy);
    padding: 80px 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(205, 168, 51, 0.18);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(205, 168, 51, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.faq-item[open] {
    border-color: rgba(205, 168, 51, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    gap: 20px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--gold);
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(205, 168, 51, 0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item[open] .faq-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 28px 28px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-answer p {
    margin: 0 0 16px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--gold);
    font-weight: 700;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(205, 168, 51, 0.08) 0%, rgba(205, 168, 51, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(205, 168, 51, 0.15);
}

.faq-cta .cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.faq-cta .cta-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Footer - reuse from main site */
.site-footer {
    background: var(--navy);
    color: var(--text-primary);
    padding: 0 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top-border {
    height: 2px;
    background: linear-gradient(90deg, rgba(235, 198, 61, 0.6), rgba(235, 198, 61, 0.15));
    margin-bottom: 24px;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 8px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: clamp(24px, 5vw, 64px);
}

.footer-eyebrow {
    font: 800 12px/1 var(--font-body);
    letter-spacing: 0.4px;
    color: var(--gold);
    margin: 10px 0 8px;
}

.footer-col p,
.footer-col li,
.footer-address {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.footer-links,
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-legal a {
    color: var(--text-primary);
    text-decoration: none;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-email a:hover {
    text-decoration: underline;
}

.footer-tagline {
    color: var(--gold);
    font-weight: 700;
    margin: 0 0 14px;
}

.footer-company {
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px;
}

.footer-address {
    font-style: normal;
}

.footer-email {
    margin: 10px 0;
}

.footer-email a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.footer-copy {
    margin-top: 18px;
    font-size: 12px;
    color: #98abc3;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}

@media (max-width: 900px) {
    .section-title {
        font-size: 2.25rem;
    }

    .scenario-card {
        grid-template-columns: 1fr;
    }

    .problem-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-diagram {
        padding: 4rem 0 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .benefit-card h3 {
        font-size: 1.4rem;
    }

    .benefit-card p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-icon {
        width: 128px;
        height: 128px;
        margin-bottom: 16px;
    }

    .scenarios-section {
        padding: 48px 16px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 2rem;
    }

    .scenario-card {
        border-radius: 12px;
    }

    .problem-side,
    .solution-side {
        padding: 32px 24px;
    }

    .problem-title {
        font-size: 1.5rem;
    }

    .solution-heading {
        font-size: 1.25rem;
    }

    .scenarios-grid {
        gap: 40px;
    }

    .faq-section {
        padding: 48px 16px;
    }

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-question {
        padding: 20px 22px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 22px 24px 22px;
        font-size: 14px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}