/*
Theme Name: INFOHAS Child Theme - Premium Inner Pages
Theme URI: https://cabincrewmorocco.com
Description: Theme enfant premium pour INFOHAS - Pages internes optimisées SEO avec contenu français de haute qualité. Compatibilité totale avec le thème parent Kimi Agent WP Theme.
Author: INFOHAS
Author URI: https://cabincrewmorocco.com
Template: kimi-agent-wp-theme
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infohas-child
Tags: one-column, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   INFOHAS CHILD THEME - CUSTOM STYLES
   Design System Extension for Inner Pages
   ============================================ */

/* --- Page Banner / Hero --- */
.page-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1628 0%, #0F1E35 50%, #0A1628 100%);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.page-banner-label {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A94E;
    margin-bottom: 16px;
}

.page-banner h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-banner p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
}

.page-banner-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner-breadcrumb a:hover {
    color: #C9A94E;
}

.page-banner-breadcrumb span {
    color: rgba(255,255,255,0.3);
}

.page-banner-breadcrumb .current {
    color: #C9A94E;
}

/* --- Inner Page Navigation Header --- */
.inner-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 78, 0.15);
    transition: all 0.3s ease;
}

.inner-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.inner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.inner-logo-icon {
    width: 36px;
    height: 36px;
}

.inner-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.inner-nav {
    display: none;
}

@media (min-width: 1024px) {
    .inner-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}

.inner-nav a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.inner-nav a:hover,
.inner-nav a.active {
    color: #C9A94E;
}

.inner-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A94E;
    transition: width 0.3s ease;
}

.inner-nav a:hover::after,
.inner-nav a.active::after {
    width: 100%;
}

.inner-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #C9A94E;
    color: #0A1628;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inner-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 78, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-overlay a:hover {
    color: #C9A94E;
}

/* --- Content Sections --- */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-section {
    padding: 80px 0;
}

.page-section-white {
    background: #FFFFFF;
}

.page-section-cloud {
    background: #F7F9FC;
}

.page-section-navy {
    background: linear-gradient(135deg, #0A1628 0%, #0F1E35 100%);
}

.page-section-navy * {
    color: rgba(255,255,255,0.85);
}

.page-section-navy h2,
.page-section-navy h3 {
    color: #FFFFFF;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A94E;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0A1628;
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-title-white {
    color: #FFFFFF;
}

.section-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 700px;
}

/* --- Grid Layouts --- */
.content-grid {
    display: grid;
    gap: 40px;
}

.content-grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .content-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.content-grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .content-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-grid-sidebar {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .content-grid-sidebar {
        grid-template-columns: 2fr 1fr;
    }
}

/* --- Content Cards --- */
.content-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}

.content-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(27, 79, 114, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1B4F72;
}

.content-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 12px;
}

.content-card p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
}

/* --- Feature List --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E2E8F0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    color: #0A1628;
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 169, 78, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-list-icon svg {
    width: 14px;
    height: 14px;
    color: #C9A94E;
}

/* --- Stats Bar --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 48px 0;
}

@media (min-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 78, 0.15);
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A94E;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #0A1628 0%, #0F1E35 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 78, 0.05) 0%, transparent 50%);
}

.cta-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #C9A94E;
    color: #0A1628;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 78, 0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
}

.btn-ghost:hover {
    border-color: #C9A94E;
    color: #C9A94E;
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25D366;
    color: #FFFFFF;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* --- Prose Content --- */
.prose-content {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.8;
}

.prose-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0A1628;
    margin-top: 48px;
    margin-bottom: 20px;
}

.prose-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0A1628;
    margin-top: 36px;
    margin-bottom: 16px;
}

.prose-content p {
    margin-bottom: 20px;
}

.prose-content ul, .prose-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.prose-content strong {
    color: #0A1628;
    font-weight: 600;
}

.prose-content a {
    color: #C9A94E;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.prose-content a:hover {
    color: #0A1628;
}

/* --- Accordion / FAQ --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(201, 169, 78, 0.3);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0A1628;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: #C9A94E;
}

.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: #C9A94E;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-inner {
    padding: 0 24px 20px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
}

/* --- Pricing Table --- */
.pricing-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #C9A94E;
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #C9A94E;
    color: #0A1628;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0A1628;
    margin: 20px 0 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748B;
    font-family: 'Inter', system-ui, sans-serif;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #334155;
    border-bottom: 1px solid #F1F5F9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #C9A94E, rgba(201, 169, 78, 0.2));
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    padding-left: 56px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-right: 0;
        padding-left: 40px;
    }
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #C9A94E;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px rgba(201, 169, 78, 0.3);
}

@media (min-width: 768px) {
    .timeline-item .timeline-dot {
        left: -9px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: auto;
        right: -9px;
    }
}

.timeline-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 8px;
}

.timeline-content p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
}

/* --- Sidebar --- */
.sidebar-widget {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    border: 1px solid #E2E8F0;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #C9A94E;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #F1F5F9;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #334155;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget ul li a:hover {
    color: #C9A94E;
}

/* --- Testimonial Card --- */
.testimonial-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    border: 1px solid #E2E8F0;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    color: #C9A94E;
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    color: #334155;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A1628, #1B4F72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A94E;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0A1628;
}

.testimonial-role {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
    color: #64748B;
}

/* --- Blog Card --- */
.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #0A1628, #1B4F72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 3rem;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C9A94E;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    color: #94A3B8;
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0A1628;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #0A1628;
    background: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #C9A94E;
    box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Partner Logos --- */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px 0;
}

.partner-logo-item {
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.partner-logo-item:hover {
    background: rgba(201, 169, 78, 0.1);
    border-color: rgba(201, 169, 78, 0.3);
    color: #C9A94E;
}

/* --- Inner Footer --- */
.inner-footer {
    background: #0A1628;
    padding: 60px 24px 0;
}

.inner-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    .inner-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .inner-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.inner-footer h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.inner-footer p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.inner-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.inner-footer ul li a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-footer ul li a:hover {
    color: #C9A94E;
}

.inner-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.inner-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.inner-footer-social a:hover {
    background: rgba(201, 169, 78, 0.15);
    color: #C9A94E;
}

.inner-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

.inner-footer-bottom a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-footer-bottom a:hover {
    color: #C9A94E;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-amber { color: #C9A94E; }
.text-navy { color: #0A1628; }
.text-slate { color: #64748B; }
.bg-amber { background-color: #C9A94E; }
.bg-cloud { background-color: #F7F9FC; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

/* --- Responsive Adjustments --- */
@media (max-width: 767px) {
    .page-banner {
        min-height: 320px;
    }

    .page-banner-content {
        padding: 100px 20px 60px;
    }

    .page-section {
        padding: 60px 0;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Print Styles --- */
@media print {
    .inner-header,
    .inner-footer,
    .cta-section,
    .mobile-menu-toggle,
    .mobile-menu-overlay {
        display: none !important;
    }

    .page-banner {
        min-height: auto;
        padding: 20px 0;
        background: #0A1628;
    }

    .page-section {
        padding: 20px 0;
    }
}
