/*
 * Go Air Cool - App Landing Page
 * Minimalist redesign — same color system, custom CSS extending Bootstrap 5
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --gac-primary: #0d6efd;
    --gac-primary-dark: #0a58ca;
    --gac-accent-cyan: #00f2fe;
    --gac-accent-blue: #4facfe;
    --gac-dark: #0b1727;
    --gac-dark-card: #132238;
    --gac-light-bg: #f5f9ff;
    --gac-border: rgba(13, 110, 253, 0.12);
    --text-muted: #64748b;
    --gac-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
    --gac-shadow-md: 0 12px 28px rgba(13, 110, 253, 0.08);
    --gac-shadow-lg: 0 20px 45px rgba(13, 110, 253, 0.15);
    --gac-radius: 16px;
    --gac-radius-sm: 10px;
    --gac-radius-lg: 24px;
}

body {
    font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* ==========================================================
 * NAVBAR / HEADER
 * ========================================================== */
.navbar-glass {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    padding: 16px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #0f172a !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 44px;
    width: auto;
}

.brand-text-accent {
    background: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #334155 !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.06);
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.45);
}

/* ==========================================================
 * HERO SECTION (minimal)
 * ========================================================== */
.hero-section-minimal {
    position: relative;
    background: var(--gac-light-bg);
    padding: 110px 0 110px;
    overflow: hidden;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #0f172a 0%, #0d6efd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 400;
}

/* ==========================================================
 * STORE BADGES
 * ========================================================== */
.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: var(--gac-shadow-sm);
}

.store-badge:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--gac-shadow-md);
}

.store-badge i {
    font-size: 1.8rem;
}

.store-badge span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-badge small {
    font-size: 0.7rem;
    color: #cbd5e1;
}

.store-badge strong {
    font-size: 0.98rem;
    font-weight: 700;
}

.store-badges-light .store-badge {
    background: #ffffff;
    color: #0f172a;
}

.store-badges-light .store-badge small {
    color: var(--text-muted);
}

/* ==========================================================
 * PHONE MOCKUP
 * ========================================================== */
.hero-visual-minimal {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background: #0f172a;
    border-radius: 42px;
    padding: 14px;
    box-shadow: var(--gac-shadow-lg);
    position: relative;
}

.phone-mockup-notch {
    width: 90px;
    height: 18px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-mockup-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--gac-primary) 0%, var(--gac-primary-dark) 100%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
}

.phone-mockup-screen i {
    font-size: 3rem;
}

.phone-mockup-screen span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==========================================================
 * SECTION HEADINGS
 * ========================================================== */
.section-title {
    font-size: 2.15rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================
 * ABOUT / APP FEATURES (minimal)
 * ========================================================== */
.app-feature-minimal {
    text-align: center;
    padding: 20px 16px;
}

.app-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--gac-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.app-feature-minimal h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.app-feature-minimal p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* ==========================================================
 * DOWNLOAD CTA
 * ========================================================== */
.download-cta-box {
    background: linear-gradient(135deg, #09192f 0%, #0d6efd 100%);
    border-radius: var(--gac-radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
}

.download-cta-box h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.download-cta-box p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.download-cta-box .store-badges {
    display: flex;
}

/* ==========================================================
 * FOOTER
 * ========================================================== */
.footer-dark {
    background: #091322;
    color: #94a3b8;
    padding: 60px 0 30px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-title {
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-title img {
    height: 40px;
}

.footer-dark h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #cbd5e1;
}

/* ==========================================================
 * RESPONSIVE TWEAKS
 * ========================================================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-visual-minimal {
        margin-top: 20px;
    }

    .download-cta-box h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .store-badges {
        flex-direction: column;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}

/* ==========================================================
 * FOOTER QUICK LINKS LIST
 * ========================================================== */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.93rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.footer-links-list a i {
    font-size: 1rem;
    color: #475569;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: #e2e8f0;
}

.footer-links-list a:hover i {
    color: var(--gac-primary);
}

/* ==========================================================
 * POLICY PAGES - HERO
 * ========================================================== */
.policy-hero {
    background: var(--gac-light-bg);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(13, 110, 253, 0.08);
}

.policy-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

.policy-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--gac-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.policy-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.policy-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    font-weight: 400;
}

.policy-hero .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    font-size: 0.9rem;
}

.policy-hero .breadcrumb-item a {
    color: var(--gac-primary);
    text-decoration: none;
}

.policy-hero .breadcrumb-item.active {
    color: var(--text-muted);
}

.policy-hero .breadcrumb-item + .breadcrumb-item::before {
    color: #cbd5e1;
}

/* ==========================================================
 * POLICY PAGES - CONTENT CARD
 * ========================================================== */
.policy-content-section {
    padding: 60px 0 80px;
}

.policy-card {
    background: #ffffff;
    border-radius: var(--gac-radius);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--gac-shadow-sm);
    padding: 48px 52px;
}

/* Rich text output from Quill editor */
.policy-body.ql-editor {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
    padding: 0;
}

.policy-body.ql-editor p {
    margin-bottom: 1rem;
}

.policy-body.ql-editor h1,
.policy-body.ql-editor h2,
.policy-body.ql-editor h3 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.policy-body.ql-editor ul,
.policy-body.ql-editor ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-body.ql-editor li {
    margin-bottom: 0.4rem;
}

.policy-body.ql-editor a {
    color: var(--gac-primary);
    text-decoration: underline;
}

.policy-body.ql-editor blockquote {
    border-left: 4px solid var(--gac-primary);
    padding-left: 20px;
    color: var(--text-muted);
    font-style: italic;
    margin: 1.5rem 0;
}

/* Empty state */
.policy-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.policy-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.policy-empty p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ==========================================================
 * FAQ ACCORDION
 * ========================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--gac-radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--gac-shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.faq-item:has(.faq-question:not(.collapsed)) {
    box-shadow: var(--gac-shadow-md);
    border-color: rgba(13, 110, 253, 0.14);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:not(.collapsed) {
    color: var(--gac-primary);
    background: rgba(13, 110, 253, 0.03);
}

.faq-question:hover {
    background: rgba(13, 110, 253, 0.03);
}

.faq-chevron {
    font-size: 1.4rem;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-question:not(.collapsed) .faq-chevron {
    transform: rotate(180deg);
    color: var(--gac-primary);
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #475569;
}

.faq-answer.ql-editor {
    padding: 0 24px 24px;
    font-family: 'Outfit', sans-serif;
}

/* ==========================================================
 * RESPONSIVE TWEAKS - POLICY PAGES
 * ========================================================== */
@media (max-width: 767.98px) {
    .policy-title {
        font-size: 1.8rem;
    }

    .policy-card {
        padding: 28px 22px;
    }

    .faq-question {
        font-size: 0.98rem;
        padding: 16px 18px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}

/* ==========================================================
 * CONTACT PAGE
 * ========================================================== */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.contact-info-card {
    background: #ffffff;
    border-radius: var(--gac-radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--gac-shadow-sm);
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
    box-shadow: var(--gac-shadow-md);
    border-color: rgba(13, 110, 253, 0.14);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--gac-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info-body {
    flex: 1;
    min-width: 0;
}

.contact-info-body h6 {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-info-body a {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}

.contact-info-body a:hover {
    color: var(--gac-primary);
}

.contact-info-body p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-map-card {
    border-radius: var(--gac-radius);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--gac-shadow-sm);
    height: 100%;
    min-height: 400px;
}

.contact-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gac-light-bg);
}

.contact-map-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 48px 24px;
}

.contact-map-empty i {
    font-size: 3rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 16px;
}

.contact-map-empty p {
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .contact-map-card {
        min-height: 300px;
    }
}