/* Hotel Investment Opportunities 2026 Page Styles */

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4B5;
    --gold-dark: #B8941C;
    --dark-blue: #1a1a2e;
    --medium-blue: #16213e;
    --light-blue: #0f3460;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e0e0;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--light-blue) 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.3em;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 40px;
    position: relative;
    z-index: 1;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* CTA Buttons */
.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary {
    background: var(--gold);
    color: var(--dark-blue);
}

.cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-primary.large, .cta-secondary.large {
    padding: 18px 45px;
    font-size: 1.15em;
}

/* Quick Summary */
.quick-summary {
    background: var(--light-gray);
    padding: 60px 20px;
}

.summary-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.summary-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.summary-box h2 i {
    color: var(--gold);
    margin-right: 15px;
}

.lead {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.lead strong {
    color: var(--dark-blue);
    font-weight: 700;
}

.key-insights {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.insight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.insight i {
    font-size: 2em;
    color: var(--gold);
    min-width: 40px;
}

.insight strong {
    display: block;
    color: var(--dark-blue);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.insight p {
    color: var(--text-light);
    margin: 0;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.section-header h2 i {
    color: var(--gold);
    margin-right: 15px;
}

.section-intro {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Market Outlook */
.market-outlook {
    background: var(--white);
}

.outlook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.outlook-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.outlook-icon {
    font-size: 3em;
    color: var(--gold);
    margin-bottom: 20px;
}

.outlook-card h3 {
    font-size: 1.5em;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.outlook-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.outlook-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2em;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.95em;
    color: var(--text-light);
}

/* Market Drivers */
.market-drivers {
    margin-top: 60px;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.market-drivers h3 {
    font-size: 2em;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

.market-drivers h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.driver {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
}

.driver-number {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--gold);
    min-width: 60px;
}

.driver-content h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.driver-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Market Rankings */
.market-rankings {
    background: var(--light-gray);
}

.market-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    overflow: hidden;
}

.market-card.featured {
    border: 3px solid var(--gold);
}

.market-rank {
    padding: 20px;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2em;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--white);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: var(--white);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: var(--white);
}

.market-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(to right, var(--light-gray), var(--white));
    flex-wrap: wrap;
}

.market-flag {
    font-size: 3em;
}

.market-title {
    flex: 1;
    min-width: 250px;
}

.market-title h3 {
    font-size: 2em;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.market-subtitle {
    color: var(--text-light);
    font-size: 1.1em;
}

.market-score {
    text-align: center;
    padding: 15px 25px;
    background: var(--dark-blue);
    border-radius: 10px;
    color: var(--white);
}

.score-value {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--gold);
}

.score-label {
    font-size: 0.9em;
}

/* Market Metrics */
.market-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background: var(--light-gray);
}

.metric {
    display: flex;
    align-items: center;
    gap: 15px;
}

.metric i {
    font-size: 2em;
    color: var(--gold);
}

.metric-value {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--dark-blue);
}

.metric-label {
    font-size: 0.9em;
    color: var(--text-light);
}

/* Market Content */
.market-content {
    padding: 40px;
}

.market-highlights, .market-data {
    margin-bottom: 30px;
}

.market-highlights h4, .market-data h4 {
    font-size: 1.5em;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.market-highlights h4 i, .market-data h4 i {
    color: var(--gold);
    margin-right: 10px;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    line-height: 1.6;
}

.highlight-list li strong {
    color: var(--dark-blue);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.data-point {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.data-label {
    font-weight: 600;
    color: var(--text-dark);
}

.data-value {
    font-weight: 700;
    color: var(--gold);
}

.investay-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.investay-badge i {
    margin-right: 10px;
}

/* Compact Market Cards */
.compact-markets {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.market-card.compact {
    padding: 30px;
}

.compact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.compact-rank {
    background: var(--dark-blue);
    color: var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5em;
}

.compact-title {
    flex: 1;
    min-width: 250px;
}

.compact-title h3 {
    font-size: 1.5em;
    color: var(--dark-blue);
    margin: 5px 0;
}

.compact-subtitle {
    color: var(--text-light);
    font-size: 0.95em;
}

.compact-score {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2em;
}

.compact-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.compact-metrics span {
    font-size: 0.95em;
}

.compact-metrics strong {
    color: var(--dark-blue);
}

.compact-highlights {
    line-height: 1.8;
    color: var(--text-dark);
}

.compact-highlights strong {
    color: var(--dark-blue);
}

/* MENA Leadership */
.mena-leadership {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    color: var(--white);
}

.mena-leadership .section-header h2,
.mena-leadership .section-intro {
    color: var(--white);
}

.mena-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mena-factor {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.factor-icon {
    font-size: 3em;
    color: var(--gold);
    margin-bottom: 20px;
}

.mena-factor h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--white);
}

.mena-factor p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.factor-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.factor-stats span {
    background: rgba(212, 175, 55, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.95em;
}

.factor-stats i {
    color: var(--gold);
    margin-right: 8px;
}

.mena-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    text-align: center;
}

.mena-cta h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--white);
}

.mena-cta h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.mena-cta p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Investment Methods */
.investment-methods {
    background: var(--white);
}

.methods-comparison {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.method-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.method-card.featured {
    border: 3px solid var(--gold);
}

.method-header {
    background: var(--dark-blue);
    color: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    font-size: 3em;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon.gold {
    background: var(--gold);
    color: var(--dark-blue);
}

.method-header h3 {
    flex: 1;
    font-size: 1.8em;
}

.method-tier {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.method-tier.gold {
    background: var(--gold);
    color: var(--dark-blue);
}

.method-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background: var(--light-gray);
}

.method-metric {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-label {
    font-size: 0.9em;
    color: var(--text-light);
}

.metric-value {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--dark-blue);
}

.metric-value.gold {
    color: var(--gold);
}

.method-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

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

.pros {
    background: rgba(39, 174, 96, 0.05);
    border-left: 4px solid var(--success);
}

.cons {
    background: rgba(231, 76, 60, 0.05);
    border-left: 4px solid var(--danger);
}

.pros h4, .cons h4 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.pros h4 i {
    color: var(--success);
    margin-right: 8px;
}

.cons h4 i {
    color: var(--danger);
    margin-right: 8px;
}

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

.pros li, .cons li {
    padding: 8px 0;
    line-height: 1.6;
}

.method-best-for {
    padding: 20px 30px;
    background: var(--light-gray);
    border-top: 2px solid var(--gold);
}

.method-best-for i {
    color: var(--gold);
    margin-right: 10px;
}

.investay-callout {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 20px 30px;
    margin: 0 30px 30px;
    border-radius: 10px;
}

.investay-callout i {
    margin-right: 10px;
}

/* Comparison Table */
.comparison-table {
    margin-top: 60px;
}

.comparison-table h3 {
    font-size: 2em;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

.comparison-table h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: var(--dark-blue);
    color: var(--white);
}

th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

th.gold {
    background: var(--gold);
    color: var(--dark-blue);
}

td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--light-gray);
}

td.gold {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 600;
    color: var(--gold-dark);
}

tbody tr:hover {
    background: var(--light-gray);
}

/* Evaluation Checklist */
.evaluation-checklist {
    background: var(--light-gray);
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checklist-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.checklist-number {
    font-size: 3em;
    font-weight: 800;
    color: var(--gold);
    min-width: 70px;
    text-align: center;
}

.checklist-content {
    flex: 1;
}

.checklist-content h3 {
    font-size: 1.6em;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.checklist-content h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.checklist-description {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-description p {
    line-height: 1.8;
    color: var(--text-dark);
}

.checklist-description strong {
    color: var(--dark-blue);
}

/* Scoring Guide */
.scoring-guide {
    margin-top: 60px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.scoring-guide h3 {
    font-size: 2em;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

.scoring-guide h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.scoring-table {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.score-range {
    display: grid;
    grid-template-columns: 80px 150px 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.score-range .score {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--gold);
    text-align: center;
}

.score-range .label {
    font-weight: 700;
    color: var(--dark-blue);
}

.score-range .description {
    color: var(--text-light);
}

.scoring-note {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    line-height: 1.8;
}

/* Current Opportunities */
.current-opportunities {
    background: var(--white);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.opportunity-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.opportunity-card.featured {
    border: 3px solid var(--gold);
}

.opportunity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    z-index: 2;
}

.opportunity-badge.coming-soon {
    background: var(--text-light);
    color: var(--white);
}

.opportunity-image {
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.opportunity-image i {
    font-size: 5em;
    color: rgba(255, 255, 255, 0.2);
}

.opportunity-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-size: 1.3em;
    font-weight: 700;
}

.opportunity-details {
    padding: 30px;
}

.opportunity-details h3 {
    font-size: 1.6em;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.opportunity-location {
    color: var(--text-light);
    margin-bottom: 20px;
}

.opportunity-location i {
    color: var(--gold);
    margin-right: 8px;
}

.opportunity-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.opp-metric {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
}

.opp-label {
    font-size: 0.85em;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.opp-value {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--dark-blue);
}

.opp-value.gold {
    color: var(--gold);
}

.opportunity-highlights {
    margin: 20px 0;
}

.opportunity-highlights ul {
    list-style: none;
}

.opportunity-highlights li {
    padding: 8px 0;
    line-height: 1.6;
}

.opportunity-highlights i {
    color: var(--success);
    margin-right: 10px;
}

.opportunity-status {
    margin: 20px 0;
}

.status-bar {
    background: var(--light-gray);
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.status-fill {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    height: 100%;
    transition: width 0.3s ease;
}

.status-text {
    font-size: 0.9em;
    color: var(--text-light);
}

.opportunity-status.coming-soon {
    text-align: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.opportunity-status.coming-soon i {
    color: var(--gold);
    margin-right: 8px;
}

/* Opportunities CTA */
.opportunities-cta {
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 20px;
}

.opportunities-cta h3 {
    font-size: 2.5em;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 50px;
}

.opportunities-cta h3 i {
    color: var(--gold);
    margin-right: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.benefit i {
    font-size: 3em;
    color: var(--gold);
    margin-bottom: 15px;
}

.benefit h4 {
    font-size: 1.3em;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.8;
}

.final-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.4em;
    color: var(--dark-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-question i {
    color: var(--gold);
    font-size: 0.9em;
    margin-top: 5px;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-answer strong {
    color: var(--dark-blue);
}

.comparison-table-mini {
    width: 100%;
    margin: 15px 0;
    font-size: 0.95em;
}

.comparison-table-mini td {
    padding: 10px;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 20px;
}

.final-cta-content h2 i {
    color: var(--gold);
    margin-right: 15px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 25px;
}

.cta-feature i {
    color: var(--gold);
    font-size: 1.3em;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.cta-disclaimer {
    font-size: 0.9em;
    opacity: 0.8;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.cta-disclaimer i {
    color: var(--gold);
    margin-right: 8px;
}

/* Footer */
.site-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--gold);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .market-header {
        flex-direction: column;
        text-align: center;
    }
    
    .method-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }
    
    .checklist-item {
        flex-direction: column;
    }
    
    .opportunity-metrics {
        grid-template-columns: 1fr;
    }
}
