/* Luxury Info Pages - Common Styles */

/* Base Page Layout */
.info-page {
    padding: 0;
    background: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.info-hero {
    background: #f8f9fa;
    padding: 80px 0;
    color: var(--text-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.info-hero::before {
    display: none;
}

.info-hero .container {
    position: relative;
    z-index: 1;
}

.info-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.info-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 768px) {
    .info-hero { padding: 80px 0; }
    .info-hero h1 { font-size: 2.2rem; }
    .info-hero p { font-size: 1rem; }
}

/* Common Content Sections */
.info-section {
    padding: 80px 0;
    background: #fff;
}

.info-section-alt {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 768px) {
    .info-section, .info-section-alt { padding: 60px 0; }
    .section-header h2 { font-size: 1.8rem; }
}

/* Call to Action Section */
.info-cta {
    padding: 100px 0;
    background: #000;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.info-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.info-cta .container,
.info-cta > * {
    position: relative;
    z-index: 1;
}

.info-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: var(--primary);
}

.info-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta {
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-primary {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.btn-cta-primary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cta-outline:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .info-cta { padding: 80px 0; }
    .info-cta h2 { font-size: 2rem; }
    .btn-cta { width: 100%; justify-content: center; }
}
/* Info Footer */
.info-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

.info-footer .btn-cta,
.info-footer .bank-link {
    margin-top: 0;
}

/* Bank Link Utility */
.bank-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.bank-link:hover {
    color: var(--primary);
}

.bank-link i {
    color: var(--primary);
}

/* Standard Page Layout Utility */
.standard-page-layout {
    margin-top: 40px;
    min-height: 80vh;
}

@media (max-width: 768px) {
    .standard-page-layout {
        margin-top: 20px;
        min-height: 60vh;
    }
}
