/* =====================================================
   GLOBALTIME.IO — ADVERTISING PAGE
   File: /assets/css/advertise.css
===================================================== */

.advertise-page {
    width: 100%;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top,
            #f7f9fd 0%,
            #edf2f8 48%,
            #e7edf5 100%
        );

    color: #0f172a;
}

body.dark-mode .advertise-page {
    background:
        radial-gradient(
            circle at top,
            #0b1220 0%,
            #020617 55%,
            #020617 100%
        );

    color: #e5e7eb;
}


.advertise-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;

    padding: 42px 0 70px;
}


/* =====================================================
   HERO
===================================================== */

.advertise-hero {
    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 72px 34px 66px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fffdf7 52%,
            #ffffff 100%
        );

    border: 1px solid rgba(214, 154, 29, 0.16);

    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.09);
}

body.dark-mode .advertise-hero {
    background:
        linear-gradient(
            135deg,
            #111827,
            #0f172a
        );

    border-color:
        rgba(231, 184, 63, 0.20);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45);
}


.advertise-hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d69a1d 25%,
            #f5c45b 50%,
            #d69a1d 75%,
            transparent
        );
}


.advertise-hero-badge {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border-radius: 999px;

    background:
        rgba(214, 154, 29, 0.09);

    border:
        1px solid rgba(214, 154, 29, 0.20);

    color: #b7791f;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.advertise-hero-badge span {
    font-size: 1rem;
}


.advertise-hero h1 {
    max-width: 900px;

    margin: 22px auto 18px;

    font-size: clamp(2.35rem, 5vw, 4.4rem);

    line-height: 1.06;

    font-weight: 800;

    letter-spacing: -0.045em;

    color: #0f172a;
}

body.dark-mode .advertise-hero h1 {
    color: #f8fafc;
}


.advertise-hero h1 span {
    color: #c88712;
}


.advertise-hero-text {
    max-width: 760px;

    margin: 0 auto;

    color: #475569;

    font-size: 1.08rem;

    line-height: 1.75;
}

body.dark-mode .advertise-hero-text {
    color: #cbd5e1;
}


.advertise-hero-actions {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* =====================================================
   BUTTONS
===================================================== */

.advertise-primary-btn,
.advertise-secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 22px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.advertise-primary-btn {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #d69a1d,
            #b7791f
        );

    box-shadow:
        0 10px 24px rgba(183, 121, 31, 0.25);
}


.advertise-secondary-btn {
    color: #9a6715;

    background: #ffffff;

    border:
        1px solid rgba(214, 154, 29, 0.35);
}


.advertise-primary-btn:hover,
.advertise-secondary-btn:hover {
    transform: translateY(-2px);
}


.advertise-primary-btn:hover {
    box-shadow:
        0 14px 30px rgba(183, 121, 31, 0.32);
}


.advertise-secondary-btn:hover {
    background: #fffaf0;
}


/* =====================================================
   GENERAL SECTION
===================================================== */

.advertise-section {
    margin-top: 28px;

    padding: 48px 38px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(15, 23, 42, 0.06);

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.07);
}

body.dark-mode .advertise-section {
    background: #0f172a;

    border-color:
        rgba(148, 163, 184, 0.15);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35);
}


.advertise-section-heading {
    max-width: 760px;

    margin: 0 auto 34px;

    text-align: center;
}


.section-kicker {
    display: block;

    margin-bottom: 9px;

    color: #c88712;

    font-size: 0.72rem;
    font-weight: 900;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.advertise-section-heading h2,
.advertise-why-content h2,
.contact-content h2 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: clamp(1.65rem, 3vw, 2.45rem);

    line-height: 1.2;

    letter-spacing: -0.025em;
}

body.dark-mode .advertise-section-heading h2,
body.dark-mode .advertise-why-content h2,
body.dark-mode .contact-content h2 {
    color: #f8fafc;
}


.advertise-section-heading p,
.advertise-why-content p,
.contact-content p {
    margin: 0 auto;

    color: #64748b;

    line-height: 1.75;
}

body.dark-mode .advertise-section-heading p,
body.dark-mode .advertise-why-content p,
body.dark-mode .contact-content p {
    color: #cbd5e1;
}


/* =====================================================
   AUDIENCE
===================================================== */

.advertise-audience-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.advertise-audience-card {
    padding: 26px 22px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffdf8
        );

    border:
        1px solid rgba(214, 154, 29, 0.13);
}

body.dark-mode .advertise-audience-card {
    background: #111827;

    border-color:
        rgba(231, 184, 63, 0.16);
}


.audience-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-bottom: 18px;

    border-radius: 50%;

    color: #c88712;

    background:
        rgba(214, 154, 29, 0.09);

    font-size: 1.35rem;
}


.advertise-audience-card h3,
.advertise-option-card h3 {
    margin: 0 0 9px;

    color: #172033;

    font-size: 1.05rem;
}

body.dark-mode .advertise-audience-card h3,
body.dark-mode .advertise-option-card h3 {
    color: #f8fafc;
}


.advertise-audience-card p,
.advertise-option-card p {
    margin: 0;

    color: #64748b;

    font-size: 0.88rem;

    line-height: 1.65;
}

body.dark-mode .advertise-audience-card p,
body.dark-mode .advertise-option-card p {
    color: #cbd5e1;
}


/* =====================================================
   OPTIONS
===================================================== */

.advertise-options-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.advertise-option-card {
    position: relative;

    padding: 30px 26px;

    border-radius: 18px;

    background: #f8fafc;

    border:
        1px solid rgba(15, 23, 42, 0.07);
}

body.dark-mode .advertise-option-card {
    background: #111827;

    border-color:
        rgba(148, 163, 184, 0.14);
}


.advertise-option-card.featured {
    background:
        linear-gradient(
            145deg,
            #fffdf7,
            #fff8e9
        );

    border-color:
        rgba(214, 154, 29, 0.35);

    box-shadow:
        0 14px 30px rgba(183, 121, 31, 0.10);
}


body.dark-mode .advertise-option-card.featured {
    background:
        linear-gradient(
            145deg,
            #171b25,
            #1d1a12
        );
}


.option-number {
    margin-bottom: 20px;

    color: #d69a1d;

    font-size: 0.78rem;
    font-weight: 900;

    letter-spacing: 0.1em;
}


.option-label {
    display: inline-block;

    margin-bottom: 12px;

    padding: 5px 9px;

    border-radius: 999px;

    color: #9a6715;

    background:
        rgba(214, 154, 29, 0.10);

    font-size: 0.68rem;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.advertise-option-card ul {
    margin: 20px 0 0;
    padding: 0;

    list-style: none;
}


.advertise-option-card li {
    position: relative;

    margin-top: 9px;
    padding-left: 18px;

    color: #475569;

    font-size: 0.84rem;
}

body.dark-mode .advertise-option-card li {
    color: #cbd5e1;
}


.advertise-option-card li::before {
    content: "•";

    position: absolute;

    left: 0;

    color: #d69a1d;

    font-weight: 900;
}


/* =====================================================
   WHY GLOBALTIME
===================================================== */

.advertise-why {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(360px, 0.8fr);

    gap: 50px;

    align-items: center;
}


.advertise-why-content p + p {
    margin-top: 14px;
}


.advertise-stat-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


.advertise-stat {
    padding: 22px;

    text-align: center;

    border-radius: 15px;

    background:
        rgba(214, 154, 29, 0.055);

    border:
        1px solid rgba(214, 154, 29, 0.13);
}


.advertise-stat strong {
    display: block;

    color: #b7791f;

    font-size: 1.15rem;
}


.advertise-stat span {
    display: block;

    margin-top: 5px;

    color: #64748b;

    font-size: 0.76rem;
}


/* =====================================================
   CONTACT
===================================================== */

.advertise-contact-section {
    display: grid;

    grid-template-columns: 86px minmax(0, 1fr);

    gap: 26px;

    align-items: center;

    margin-top: 28px;

    padding: 42px 48px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #fffdf7,
            #ffffff
        );

    border:
        1px solid rgba(214, 154, 29, 0.20);

    box-shadow:
        0 18px 45px rgba(183, 121, 31, 0.09);
}

body.dark-mode .advertise-contact-section {
    background:
        linear-gradient(
            135deg,
            #171a21,
            #0f172a
        );
}


.contact-icon {
    width: 76px;
    height: 76px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #c88712;

    background:
        rgba(214, 154, 29, 0.09);

    border:
        1px solid rgba(214, 154, 29, 0.20);

    font-size: 1.7rem;
}


.contact-content .advertise-primary-btn {
    margin-top: 20px;
}


/* =====================================================
   FAQ
===================================================== */

.faq-list {
    max-width: 850px;

    margin: 0 auto;
}


.faq-list details {
    padding: 0;

    border-bottom:
        1px solid rgba(15, 23, 42, 0.10);
}

body.dark-mode .faq-list details {
    border-color:
        rgba(148, 163, 184, 0.16);
}


.faq-list summary {
    padding: 19px 4px;

    cursor: pointer;

    color: #172033;

    font-size: 0.98rem;
    font-weight: 750;

    list-style: none;
}

body.dark-mode .faq-list summary {
    color: #f8fafc;
}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list summary::after {
    content: "+";

    float: right;

    color: #c88712;

    font-size: 1.2rem;
}


.faq-list details[open] summary::after {
    content: "−";
}


.faq-list details p {
    margin: 0;

    padding: 0 4px 20px;

    color: #64748b;

    font-size: 0.88rem;

    line-height: 1.7;
}

body.dark-mode .faq-list details p {
    color: #cbd5e1;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .advertise-main {
        width: min(100% - 20px, 620px);

        padding-top: 20px;
        padding-bottom: 45px;
    }

    .advertise-hero {
        padding: 48px 20px 44px;

        border-radius: 18px;
    }

    .advertise-hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);

        letter-spacing: -0.035em;
    }

    .advertise-hero-text {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .advertise-hero-actions {
        flex-direction: column;
    }

    .advertise-primary-btn,
    .advertise-secondary-btn {
        width: min(100%, 310px);
    }

    .advertise-section {
        padding: 34px 20px;

        border-radius: 18px;
    }

    .advertise-audience-grid,
    .advertise-options-grid {
        grid-template-columns: 1fr;
    }

    .advertise-why {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .advertise-stat-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .advertise-contact-section {
        grid-template-columns: 1fr;

        padding: 34px 22px;

        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-content .advertise-primary-btn {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 480px) {

    .advertise-main {
        width: calc(100% - 14px);
    }

    .advertise-hero {
        padding: 40px 16px 36px;
    }

    .advertise-section {
        padding: 30px 16px;
    }

    .advertise-section-heading h2,
    .advertise-why-content h2,
    .contact-content h2 {
        font-size: 1.55rem;
    }

    .advertise-stat-grid {
        grid-template-columns: 1fr;
    }

    .advertise-audience-card,
    .advertise-option-card {
        padding: 23px 20px;
    }

}
