/* AeroLakeland — WordPress Pages Stylesheet
 * Used by page.php, service landing pages, and any non-SPA WordPress page.
 * Inherits brand variables from main.css.
 */

/* ── Page Layout ── */
.al-wp-page {
    background: #080d1a;
    color: #e8eeff;
    min-height: 100vh;
    font-family: 'DM Sans', sans-serif;
}

.al-page-header {
    background: linear-gradient(135deg, #080d1a 0%, #0c1525 100%);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: clamp(48px,8vw,96px) 5% clamp(32px,5vw,56px);
}

.al-page-header-inner { max-width: 900px; }

.al-page-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 7vw, 64px);
    letter-spacing: 2px;
    color: #00d4ff;
    line-height: 1;
    margin-bottom: 16px;
}

.al-page-hero-img {
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 400px;
}
.al-page-hero-img img { width: 100%; height: 400px; object-fit: cover; }

.al-page-body {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(32px,6vw,64px) 5%;
    line-height: 1.8;
    font-size: 16px;
    color: #c5d0da;
}

/* ── Service Page Specific ── */
.al-service-intro {
    font-size: clamp(16px,2.5vw,18px);
    color: #e8eeff;
    line-height: 1.75;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.al-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 20px;
    margin: 32px 0;
}

.al-service-card {
    background: #0c1525;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 24px;
}
.al-service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: #00d4ff;
    margin-bottom: 10px;
}
.al-service-card p { font-size: 14px; color: #6a7fa8; line-height: 1.65; }

/* ── CTA Box ── */
.al-page-cta {
    background: rgba(0,212,255,.06);
    border: 1px solid rgba(0,212,255,.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 48px 0;
}
.al-page-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px,4vw,42px);
    letter-spacing: 2px;
    color: #e8eeff;
    margin-bottom: 12px;
}
.al-page-cta p { color: #6a7fa8; margin-bottom: 20px; }
.al-page-cta a.btn {
    display: inline-block;
    background: #00d4ff;
    color: #000;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .4px;
}
.al-page-cta a.btn:hover { opacity: .85; }

/* ── FAQ Section ── */
.al-page-faq { margin: 48px 0; }
.al-page-faq h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px,4vw,36px);
    letter-spacing: 2px;
    color: #e8eeff;
    margin-bottom: 24px;
}
.al-faq-item {
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 18px 0;
}
.al-faq-item dt {
    font-weight: 600;
    color: #e8eeff;
    margin-bottom: 8px;
    font-size: 15px;
}
.al-faq-item dd { color: #6a7fa8; line-height: 1.7; font-size: 14px; }

/* ── Trust Badges ── */
.al-trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
}
.al-trust-badge {
    font-size: 11px;
    color: #6a7fa8;
    border: 1px solid rgba(255,255,255,.1);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.al-trust-badge::before { content: '✓'; color: #00d4ff; font-size: 10px; }

/* ── WordPress content reset ── */
.al-page-body h2 { font-family:'Bebas Neue',sans-serif; font-size:30px; letter-spacing:1.5px; color:#e8eeff; margin:32px 0 14px; }
.al-page-body h3 { font-size:18px; font-weight:600; color:#e8eeff; margin:24px 0 10px; }
.al-page-body p  { margin-bottom:16px; }
.al-page-body ul,.al-page-body ol { padding-left:24px; margin-bottom:16px; }
.al-page-body li { margin-bottom:6px; }
.al-page-body a  { color:#00d4ff; }
.al-page-body strong { color:#e8eeff; }
