/* ══════════════════════════════════════════════════════════════
   University of Gold Coast — Landing Page
   Aesthetic: refined luxury academic (charcoal + gold, serif display)
════════════════════════════════════════════════════════════════ */

.ugc-landing {
    --lp-gold: #d1aa66;
    --lp-gold-dark: #b08c4a;
    --lp-gold-light: #e6cf9c;
    --lp-ink: #1a1a1a;
    --lp-ink-soft: #4a4a4a;
    --lp-muted: #6b7280;
    --lp-cream: #faf6ee;
    --lp-line: rgba(209, 170, 102, 0.28);
    font-family: 'Inter', sans-serif;
    color: var(--lp-ink);
    overflow-x: clip;
}

.ugc-landing h1,
.ugc-landing h2,
.ugc-landing h3 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

/* ── Shared buttons ── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-2px); text-decoration: none; }
.lp-btn-lg { padding: 1.05rem 2.4rem; font-size: 1.08rem; }

.lp-btn-gold {
    background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dark) 100%);
    color: #1a1a1a;
    box-shadow: 0 10px 26px rgba(209, 170, 102, 0.42);
}
.lp-btn-gold:hover { color: #1a1a1a; box-shadow: 0 14px 34px rgba(209, 170, 102, 0.55); }

.lp-btn-ghost {
    background: transparent;
    color: #1a1a1a;
    border-color: rgba(26, 26, 26, 0.22);
}
.lp-btn-ghost:hover { border-color: var(--lp-gold); color: var(--lp-gold-dark); }

.lp-btn-dark {
    background: #1a1a1a;
    color: var(--lp-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.lp-btn-dark:hover { background: #000; color: var(--lp-gold-light); }

/* ══════════════════ Hero ══════════════════ */
.lp-hero {
    position: relative;
    padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6.5rem);
    background:
        radial-gradient(1100px 480px at 88% -8%, rgba(209, 170, 102, 0.16), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--lp-cream) 100%);
    overflow: hidden;
}
.lp-hero-glow {
    position: absolute;
    top: -160px; right: -140px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(209, 170, 102, 0.35), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lp-gold-dark);
    background: rgba(209, 170, 102, 0.12);
    border: 1px solid var(--lp-line);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.4rem;
}
.lp-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lp-gold);
    box-shadow: 0 0 0 4px rgba(209, 170, 102, 0.25);
}

.lp-hero-title {
    font-size: clamp(2.3rem, 4.6vw, 3.7rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.3rem;
    color: #171717;
}
.lp-accent {
    color: var(--lp-gold-dark);
    position: relative;
    white-space: normal;
}
.lp-accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.06em;
    height: 0.28em;
    background: linear-gradient(90deg, rgba(209, 170, 102, 0.35), rgba(209, 170, 102, 0));
    z-index: -1;
    border-radius: 2px;
}

.lp-hero-lead {
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--lp-ink-soft);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
}

.lp-hero-meta {
    font-size: 0.9rem;
    color: var(--lp-muted);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.lp-hero-meta i, .lp-hero-meta svg { color: var(--lp-gold-dark); width: 1.05em; height: 1.05em; }
.lp-hero-meta strong { color: var(--lp-ink); }

/* Hero visual */
.lp-hero-visual { position: relative; }
.lp-hero-frame {
    position: relative;
    border-radius: 26px;
    padding: 10px;
    background: linear-gradient(150deg, rgba(209, 170, 102, 0.55), rgba(209, 170, 102, 0.05));
    box-shadow: 0 30px 60px rgba(26, 26, 26, 0.16);
}
.lp-hero-img {
    display: block;
    width: 100%;
    aspect-ratio: 8 / 5;
    border-radius: 18px;
    object-fit: cover;
    object-position: center;
}
.lp-hero-badge {
    position: absolute;
    left: -18px; bottom: 26px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 16px;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(209, 170, 102, 0.4);
}
.lp-hero-badge-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--lp-gold);
}
.lp-hero-badge-label {
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cfcfcf;
    line-height: 1.2;
}

/* ══════════════════ Trust strip ══════════════════ */
.lp-trust {
    margin-top: -2.2rem;
    position: relative;
    z-index: 3;
    padding-bottom: 1rem;
}
.lp-trust-grid {
    background: #1a1a1a;
    border: 1px solid rgba(209, 170, 102, 0.35);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(26, 26, 26, 0.18);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.5rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-trust-item:last-child { border-right: none; }
.lp-trust-item i,
.lp-trust-item svg {
    width: 1.6rem;
    height: 1.6rem;
    color: var(--lp-gold);
    flex-shrink: 0;
    stroke-width: 2;
}
.lp-trust-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.lp-trust-label {
    font-size: 0.78rem;
    color: #b7b7b7;
    margin-top: 0.15rem;
}

/* ══════════════════ Sections ══════════════════ */
.lp-section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.lp-section-head {
    max-width: 46rem;
    margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
}
.lp-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lp-gold-dark);
    margin-bottom: 0.8rem;
}
.lp-section-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: #181818;
    margin-bottom: 0.9rem;
}
.lp-section-sub {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--lp-muted);
    margin: 0;
}

/* Why — feature cards */
.lp-why { background: #fff; }
.lp-card {
    height: 100%;
    background: #fff;
    border: 1px solid #efe7d6;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(26, 26, 26, 0.1);
    border-color: var(--lp-gold);
}
.lp-card-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dark) 100%);
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 8px 20px rgba(209, 170, 102, 0.35);
}
.lp-card-title {
    font-size: 1.28rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: #1a1a1a;
}
.lp-card-text {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--lp-muted);
    margin: 0;
}

/* How to Apply — timeline */
.lp-apply { background: linear-gradient(180deg, var(--lp-cream) 0%, #fff 100%); }
.lp-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
}
.lp-timeline::before {
    content: '';
    position: absolute;
    top: 34px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-gold-light), var(--lp-gold), var(--lp-gold-light));
    z-index: 0;
}
.lp-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 0.75rem;
}
.lp-step-icon {
    width: 68px; height: 68px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 2px solid var(--lp-gold);
    color: var(--lp-gold-dark);
    font-size: 1.5rem;
    box-shadow: 0 8px 22px rgba(209, 170, 102, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.lp-step:hover .lp-step-icon {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-dark));
    color: #1a1a1a;
}
.lp-step-num {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-gold-dark);
    margin-bottom: 0.3rem;
}
.lp-step-title { font-size: 1.08rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.4rem; }
.lp-step-desc { font-size: 0.88rem; line-height: 1.55; color: var(--lp-muted); }

/* ══════════════════ Final CTA ══════════════════ */
.lp-cta { padding: clamp(1rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 5rem); }
.lp-cta-inner {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 26px;
    padding: clamp(2.75rem, 6vw, 4.5rem) 1.5rem;
    background:
        radial-gradient(700px 300px at 50% -40%, rgba(255, 255, 255, 0.28), transparent 70%),
        linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dark) 100%);
    box-shadow: 0 26px 60px rgba(209, 170, 102, 0.4);
}
.lp-cta-title {
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}
.lp-cta-sub {
    font-size: 1.08rem;
    color: #40320f;
    margin-bottom: 1.9rem;
}

/* ══════════════════ Motion ══════════════════ */
.reveal, .lp-card, .lp-step, .lp-trust-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in, .lp-card.in, .lp-step.in, .lp-trust-item.in {
    opacity: 1;
    transform: none;
}
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }
.lp-card:nth-child(2) .lp-card, .lp-timeline .lp-step:nth-child(2) { transition-delay: 0.08s; }
.lp-timeline .lp-step:nth-child(3) { transition-delay: 0.16s; }
.lp-timeline .lp-step:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .lp-card, .lp-step, .lp-trust-item { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════ Responsive ══════════════════ */
@media (max-width: 991.98px) {
    /* Bootstrap's .container switches to a fixed max-width + auto margins at
       this range, which drifts out of step with the header logo above (a
       simple 90%-of-viewport image). Go fluid instead and pad symmetrically
       so section content lines up with the logo's edges. */
    .ugc-landing .container { max-width: 100%; padding-left: 6vw; padding-right: 6vw; }

    /* Image sits above the copy on smaller screens (see order-* classes in
       index.html) — center it and give it breathing room below instead of
       the top margin it needed when it followed the text. */
    .lp-hero-visual { margin: 0 auto 2rem; max-width: 560px; }
    .lp-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-trust-item:nth-child(2) { border-right: none; }
    .lp-trust-item:nth-child(1), .lp-trust-item:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .lp-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .lp-timeline::before { display: none; }
}

@media (max-width: 575.98px) {
    .ugc-landing .container { padding-left: 5.5vw; padding-right: 5.5vw; }

    /* Slightly smaller, tighter type so the narrower padded column still
       breathes on phones. */
    .lp-hero-title { font-size: 2rem; }
    .lp-hero-lead { font-size: 1rem; }
    .lp-section-title { font-size: 1.6rem; }
    .lp-card { padding: 1.5rem 1.25rem; }
    .lp-step-icon { width: 56px; height: 56px; font-size: 1.25rem; }
    .lp-cta-inner { padding: 2rem 1.25rem; }

    .lp-hero-actions .lp-btn { flex: 1 1 100%; justify-content: center; }
    .lp-trust-grid { grid-template-columns: 1fr; }
    .lp-trust-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .lp-trust-item:last-child { border-bottom: none; }
    .lp-timeline { grid-template-columns: 1fr; }
    .lp-hero-badge { left: 12px; }
}
