/* Alternative Hotel Financing Landing Page Styles */

/* ==================== VARIABLES ==================== */
:root {
    --navy-primary: #1a2332;
    --navy-secondary: #2a3648;
    --gold-primary: #c9a85c;
    --gold-accent: #dbb76e;
    --gold-dark: #b8954a;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f5f7f9;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-700: #495057;
    --gray-900: #212529;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

/* ==================== GLOBAL OVERRIDES ==================== */
.alt-financing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--gray-900);
    padding-top: 80px; /* Prevent nav overlap */
}

.alt-financing-page h1,
.alt-financing-page h2,
.alt-financing-page h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-primary);
}

/* ==================== READING PROGRESS BAR ==================== */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ==================== STICKY TABLE OF CONTENTS ==================== */
.sticky-toc {
    display: none;
}

.sticky-toc.hidden {
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
}

.toc-header {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy-primary);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 8px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s;
}

.toc-list a:hover,
.toc-list a.active {
    background: var(--gray-100);
    color: var(--gold-dark);
    transform: translateX(4px);
}

/* TOC hidden on all screens */
@media (max-width: 1400px) {
    .sticky-toc {
        display: none;
    }
}

/* ==================== HERO SECTION ==================== */
.alt-fin-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    padding: 140px 0 80px; /* Increased top padding to account for fixed header */
    margin-top: -80px; /* Negative margin to offset body padding */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23c9a85c" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.7) 0%, rgba(26, 35, 50, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 92, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF !important;
    margin-bottom: 24px;
    line-height: 1.2;
    background: rgba(0, 0, 0, 0.75);
    padding: 30px 40px;
    border-radius: 16px;
    display: inline-block;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 168, 92, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero CTAs */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold-accent);
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .stat-box {
        min-width: 140px;
        padding: 16px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background: var(--gray-50);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.content-section h3 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--navy-secondary);
}

.content-section .lead {
    font-size: 22px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 32px;
    line-height: 1.6;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.content-section a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.content-section a:hover {
    color: var(--gold-primary);
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-700);
    margin-top: 16px;
}

/* Key Stat Callout */
.key-stat-callout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border-left: 4px solid var(--gold-primary);
    padding: 32px;
    border-radius: 12px;
    margin: 48px 0;
}

.callout-icon {
    font-size: 48px;
    line-height: 1;
}

.callout-stat {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-primary);
    margin-bottom: 8px;
}

.callout-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ==================== FINANCING TYPES GRID ==================== */
.financing-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .financing-types-grid {
        grid-template-columns: 1fr;
    }
}

.financing-type-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
}

.financing-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.financing-type-card.featured {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    border: 2px solid var(--gold-primary);
}

.type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
}

.type-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.financing-type-card h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.type-description {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.7;
}

.type-details {
    margin-top: 24px;
}

.detail-item {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.detail-item strong {
    color: var(--navy-primary);
    display: block;
    margin-bottom: 8px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

@media (max-width: 600px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

.pros,
.cons {
    padding: 20px;
    border-radius: 8px;
}

.pros {
    background: #f0f9f4;
    border-left: 3px solid var(--success);
}

.cons {
    background: #fff9f0;
    border-left: 3px solid var(--warning);
}

.pros h4,
.cons h4 {
    font-size: 14px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li,
.cons li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
}

.pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.cons li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-size: 12px;
}

.type-best-for {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    color: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 16px;
}

.type-best-for strong {
    color: var(--gold-accent);
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-primary);
    color: #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.3s;
}

.type-cta:hover {
    background: var(--gold-dark);
    transform: translateX(4px);
}

/* ==================== COMPARISON TABLE ==================== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 48px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 15px;
}

.comparison-table thead {
    background: var(--navy-primary);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.comparison-table th.feature-col {
    width: 30%;
}

.comparison-table th.traditional-col,
.comparison-table th.alternative-col {
    width: 35%;
    text-align: center;
}

.comparison-table th.alternative-col {
    background: var(--gold-dark);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table td {
    padding: 20px;
}

.feature-name {
    font-weight: 600;
    color: var(--navy-primary);
}

.positive {
    color: var(--success);
    font-weight: 600;
    text-align: center;
}

.negative {
    color: var(--danger);
    text-align: center;
}

.neutral {
    color: var(--gray-700);
    text-align: center;
}

.comparison-conclusion {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    border-left: 4px solid var(--gold-primary);
    padding: 32px;
    border-radius: 12px;
    margin-top: 32px;
}

.comparison-conclusion p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 15px;
}

.btn-gold-primary {
    background: var(--gold-primary);
    color: #FFFFFF !important;
    border-color: var(--gold-primary);
}

.btn-gold-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 92, 0.3);
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ==================== MOBILE OPTIMIZATIONS ==================== */
@media (max-width: 768px) {
    .content-section {
        padding: 48px 0;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
    
    .content-section h3 {
        font-size: 24px;
    }
    
    .financing-type-card {
        padding: 24px;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

/* ==================== LOADING & PERFORMANCE ==================== */
img {
    max-width: 100%;
    height: auto;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ==================== TIMELINE STEPS ==================== */
.process-timeline {
    margin: 48px 0;
}

.timeline-steps {
    position: relative;
    padding-left: 80px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-accent));
}

.timeline-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    left: -80px;
    z-index: 2;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--navy-primary);
    font-size: 20px;
}

.step-duration {
    display: inline-block;
    background: var(--gray-100);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-top: 12px;
}

.total-timeline {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    color: white;
    padding: 24px 32px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    margin-top: 32px;
}

/* ==================== BENEFITS GRID ==================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon svg {
    stroke: var(--gold-primary);
}

.benefit-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* ==================== AUDIENCE SEGMENTS ==================== */
.audience-segments {
    margin-top: 48px;
}

.audience-segment {
    background: white;
    border-left: 4px solid var(--gold-primary);
    padding: 32px;
    margin-bottom: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.segment-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.segment-example {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 15px;
}

.qualification-box {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    padding: 40px;
    margin-top: 48px;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.qualification-item {
    display: flex;
    gap: 16px;
}

.qual-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.qual-text strong {
    display: block;
    color: var(--navy-primary);
    margin-bottom: 6px;
}

.qual-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== CASE STUDIES ==================== */
.case-studies-grid {
    margin-top: 48px;
}

.case-study-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.case-study-badge {
    display: inline-block;
    background: var(--navy-primary);
    color: var(--gold-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.case-study-header h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 16px;
}

.case-study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.meta-item {
    font-size: 14px;
    color: var(--gray-700);
}

.case-section {
    margin-bottom: 32px;
}

.case-section h4 {
    font-size: 18px;
    color: var(--navy-primary);
    margin-bottom: 16px;
}

.case-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.case-section li {
    margin-bottom: 8px;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin: 24px 0;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.metric-label {
    font-size: 13px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-quote {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    color: white;
    padding: 32px;
    border-radius: 12px;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-top: 32px;
    position: relative;
}

.case-study-quote::before {
    content: '"';
    font-size: 72px;
    position: absolute;
    top: 10px;
    left: 20px;
    color: var(--gold-accent);
    opacity: 0.3;
}

.quote-attribution {
    margin-top: 16px;
    font-style: normal;
    font-size: 14px;
    color: var(--gold-accent);
    font-weight: 600;
}

/* ==================== COST CALCULATOR ==================== */
.cost-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.cost-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.cost-label {
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 12px;
    font-size: 16px;
}

.cost-range {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.cost-comparison {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.cost-detail {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.cost-calculator {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    padding: 40px;
    margin: 48px 0;
}

.calculator-intro {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.calc-input-group label {
    display: block;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--gray-700);
}

.calc-input-group input,
.calc-input-group select {
    width: 100%;
    padding: 12px 12px 12px 32px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.calc-input-group select {
    padding-left: 12px;
}

.calc-input-group input:focus,
.calc-input-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.calculator-results {
    margin-top: 32px;
}

.results-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.result-column {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
}

.result-column.alternative {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.result-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.result-column.alternative .result-header {
    border-bottom-color: var(--gold-primary);
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
}

.result-item.total {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 2px solid var(--navy-primary);
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy-primary);
}

.result-note {
    margin-top: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 6px;
    font-size: 13px;
    color: var(--gray-700);
}

.calculator-conclusion {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    color: white;
    border-radius: 12px;
}

.cost-benefit-analysis {
    margin-top: 48px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.value-item {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--gold-primary);
}

.value-item strong {
    display: block;
    color: var(--navy-primary);
    margin-bottom: 8px;
    font-size: 16px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: var(--gray-50);
}

.faq-container {
    max-width: 900px;
    margin: 48px auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

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

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--navy-primary);
    flex: 1;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-primary);
    transition: all 0.3s;
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-toggle {
    background: var(--gold-primary);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
    background: white;
}

.faq-item.active .faq-toggle::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 32px 24px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ==================== APPLICATION PROCESS ==================== */
.application-cta-box {
    background: white;
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    padding: 48px;
    margin: 48px 0;
    text-align: center;
}

.application-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.app-cta-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.app-cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.app-cta-card h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.app-cta-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.documentation-checklist {
    margin-top: 48px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.checklist-category h4 {
    color: var(--navy-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-primary);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    color: white;
    padding: 100px 0;
}

.final-cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-header {
    text-align: center;
    margin-bottom: 64px;
}

.cta-header h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.cta-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.cta-option-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.cta-option-card.primary {
    border: 3px solid var(--gold-primary);
}

.cta-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
}

.cta-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-option-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--navy-primary);
}

.cta-option-card p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #000000 !important;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.cta-benefits li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--gray-700);
}

.cta-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.cta-form {
    margin-top: 24px;
}

.cta-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--navy-primary);
    background: white;
}

.cta-form input::placeholder {
    color: var(--gray-500);
    opacity: 1;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.cta-option-card .btn-secondary-outline {
    color: var(--navy-primary);
    border-color: var(--navy-primary);
    background: white;
}

.cta-option-card .btn-secondary-outline:hover {
    background: var(--navy-primary);
    color: white;
    border-color: var(--navy-primary);
}

.cta-option-card .btn span,
.cta-option-card button span {
    color: inherit;
}

.hotel-form-box {
    background: white;
    border-radius: 16px;
    padding: 48px;
    max-width: 900px;
    margin: 48px auto 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-header-centered {
    text-align: center;
    margin-bottom: 32px;
}

.form-header-centered h3 {
    font-size: 32px;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.form-header-centered p {
    font-size: 16px;
    color: var(--gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    color: var(--navy-primary);
    background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-500);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.contact-form button {
    margin-top: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-success {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-success.show {
    display: block;
}

@media (max-width: 768px) {
    .hotel-form-box {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.contact-info-box h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    font-size: 32px;
}

.method-details {
    text-align: left;
}

.method-details strong {
    display: block;
    color: var(--gold-accent);
    margin-bottom: 6px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-details a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.method-details a:hover {
    color: var(--gold-accent);
}

.method-details span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .timeline-steps {
        padding-left: 60px;
    }
    
    .step-number {
        left: -60px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .benefits-grid,
    .qualifications-grid,
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .results-comparison {
        grid-template-columns: 1fr;
    }
    
    .cta-options-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 24px;
    }
}
