/* ================================
   GEOMETRIC POWER GLOBAL STYLES
================================ */

:root {
    --gp-primary: #071B12;
    --gp-primary-soft: #0d2b1d;
    --gp-green: #039403;
    --gp-green-dark: #027602;
    --gp-green-soft: #f0faf1;
    --gp-secondary: #ffbe00;
    --gp-secondary-soft: #fff7db;
    --gp-text: #111827;
    --gp-muted: #6b7280;
    --gp-border: #e5e7eb;
    --gp-bg-soft: #f9fafb;

    --gp-font-heading: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --gp-font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--gp-font-body);
    color: var(--gp-text);
    background: #ffffff;
    overflow-x: hidden;
}

.font-heading,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--gp-font-heading);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

::selection {
    background: rgba(255, 190, 0, 0.32);
    color: var(--gp-primary);
}


/* ================================
   GLOBAL BRAND UTILITIES
================================ */

.text-primary {
    color: var(--gp-green) !important;
}

.text-secondary {
    color: var(--gp-secondary) !important;
}

.bg-primary {
    background-color: var(--gp-green) !important;
}

.bg-gp-dark {
    background-color: var(--gp-primary) !important;
}

.border-primary {
    border-color: var(--gp-green) !important;
}

.gp-kicker {
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gp-green);
}

.accent-line {
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: var(--gp-secondary);
}

.gp-accent-dot {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gp-secondary);
}

.text-balance {
    text-wrap: balance;
}


/* ================================
   BUTTONS
================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gp-green);
    color: #ffffff;
    padding: 0.85rem 1.65rem;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background: var(--gp-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(3, 148, 3, 0.18);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(7, 27, 18, 0.18);
    background: transparent;
    color: var(--gp-primary);
    padding: 0.85rem 1.65rem;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
    background: var(--gp-green-soft);
    border-color: rgba(3, 148, 3, 0.35);
    color: var(--gp-green);
    transform: translateY(-1px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--gp-primary);
    padding: 0.85rem 1.65rem;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-white:hover {
    background: #f9fafb;
    color: var(--gp-green);
    transform: translateY(-1px);
}


/* ================================
   CARDS AND SECTIONS
================================ */

.gp-card {
    border: 1px solid var(--gp-border);
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(3, 148, 3, 0.4);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.gp-soft-card {
    border: 1px solid var(--gp-border);
    background: var(--gp-bg-soft);
}

.gp-dark-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.gp-section-dark {
    background: var(--gp-primary);
    color: #ffffff;
}

.gp-section-soft {
    background: var(--gp-bg-soft);
}


/* ================================
   BACKGROUND PATTERNS
================================ */

.gp-grid-pattern {
    background-image:
        linear-gradient(rgba(7, 27, 18, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 27, 18, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
}

.gp-dark-pattern {
    background-image:
        radial-gradient(circle at top right, rgba(255, 190, 0, 0.10), transparent 30%),
        radial-gradient(circle at bottom left, rgba(3, 148, 3, 0.16), transparent 35%);
}

.gp-green-glow {
    position: relative;
    overflow: hidden;
}

.gp-green-glow::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: rgba(3, 148, 3, 0.14);
    filter: blur(60px);
    pointer-events: none;
}

.gp-gold-glow {
    position: relative;
    overflow: hidden;
}

.gp-gold-glow::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(255, 190, 0, 0.08);
    filter: blur(70px);
    pointer-events: none;
}


/* ================================
   FORMS
================================ */

.form-label {
    display: block;
    margin-bottom: 0.45rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gp-green);
    box-shadow: 0 0 0 4px rgba(3, 148, 3, 0.10);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-help {
    margin-top: 0.4rem;
    color: #6b7280;
    font-size: 0.82rem;
}


/* ================================
   TABLES
================================ */

.gp-table {
    width: 100%;
    border-collapse: collapse;
}

.gp-table th {
    background: #f9fafb;
    color: #374151;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.gp-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.92rem;
}

.gp-table tr:hover td {
    background: #f9fafb;
}


/* ================================
   STATUS BADGES
================================ */

.status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
}

.status-draft {
    background: #f3f4f6;
    color: #374151;
}

.status-published,
.status-approved,
.status-active {
    background: #e9fbe9;
    color: #027602;
}

.status-submitted,
.status-pending {
    background: #fff8e6;
    color: #7a5600;
}

.status-rejected,
.status-closed {
    background: #fee2e2;
    color: #991b1b;
}

.status-shortlisted {
    background: #e0f2fe;
    color: #075985;
}

.status-interview {
    background: #ede9fe;
    color: #5b21b6;
}


/* ================================
   PARTNER LOGO BOXES
================================ */

.partner-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-logo-box:hover {
    transform: translateY(-3px);
    border-color: rgba(3, 148, 3, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.partner-logo-box img {
    max-height: 58px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.82;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.partner-logo-box:hover img {
    filter: grayscale(0);
    opacity: 1;
}


/* ================================
   GEOMETRIC POWER NAVBAR
================================ */

.gpnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    background: transparent;
    transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gpnav-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.gpnav-inner {
    display: flex;
    height: 88px;
    align-items: center;
    justify-content: space-between;
    transition: height 0.28s ease;
}

.gpnav-logo {
    position: relative;
    z-index: 100000;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.gpnav-logo-img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
}

.gpnav-desktop {
    display: none;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.gpnav.gpnav-scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(229, 231, 235, 0.95);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.gpnav.gpnav-scrolled .gpnav-inner {
    height: 76px;
}

.gpnav.gpnav-scrolled .gpnav-desktop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .gpnav-desktop {
        display: flex;
    }
}

.gpnav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 76px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.gpnav-link:hover {
    color: var(--gp-green);
}

.gpnav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: var(--gp-secondary);
    transition: width 0.22s ease;
}

.gpnav-link:hover::after {
    width: 100%;
}

.gpnav-chevron {
    height: 14px;
    width: 14px;
    transition: transform 0.2s ease;
}

.gpnav-item:hover .gpnav-chevron {
    transform: rotate(180deg);
}

.gpnav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    background: var(--gp-green);
    padding: 0 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gpnav-cta:hover {
    background: var(--gp-green-dark);
    transform: translateY(-1px);
}

.gpnav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.gpnav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100000;
    min-width: 295px;
    display: none;
    padding: 10px 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.gpnav-item:hover > .gpnav-dropdown,
.gpnav-item:focus-within > .gpnav-dropdown {
    display: block;
}

.gpnav-dropdown a {
    display: block;
    padding: 13px 18px;
    color: #111827;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.gpnav-dropdown a:last-child {
    border-bottom: 0;
}

.gpnav-dropdown a:hover {
    background: var(--gp-green-soft);
    color: var(--gp-green);
    padding-left: 22px;
}

.gpnav-mobile-btn {
    position: relative;
    z-index: 100000;
    display: inline-flex;
    height: 46px;
    width: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.gpnav.gpnav-scrolled .gpnav-mobile-btn {
    color: var(--gp-primary);
    border-color: rgba(7, 27, 18, 0.18);
    background: #ffffff;
}

.gpnav-mobile-icon {
    height: 24px;
    width: 24px;
}

@media (min-width: 1024px) {
    .gpnav-mobile-btn {
        display: none;
    }
}

.gpnav-mobile-menu {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.gpnav-mobile-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 26px;
}

.gpnav-mobile-link {
    display: block;
    padding: 15px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
}

.gpnav-mobile-link:hover {
    color: var(--gp-green);
}

.gpnav-mobile-details {
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
}

.gpnav-mobile-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.gpnav-mobile-details summary::-webkit-details-marker {
    display: none;
}

.gpnav-mobile-details summary::after {
    content: "+";
    color: var(--gp-green);
    font-size: 20px;
    font-weight: 700;
}

.gpnav-mobile-details[open] summary::after {
    content: "-";
}

.gpnav-mobile-details div {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-left: 14px;
}

.gpnav-mobile-details a {
    display: block;
    color: #4b5563;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.gpnav-mobile-details a:hover {
    color: var(--gp-green);
}


/* ================================
   ADMIN LAYOUT HELPERS
================================ */

.admin-shell {
    min-height: 100vh;
    background: #f3f4f6;
}

.admin-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.04);
}

.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-sidebar-link:hover,
.admin-sidebar-link.active {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}


/* ================================
   RICH CONTENT
================================ */

.gp-content {
    color: #374151;
    font-size: 1rem;
    line-height: 1.85;
}

.gp-content p {
    margin-bottom: 1.2rem;
}

.gp-content h2,
.gp-content h3,
.gp-content h4 {
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.gp-content h2 {
    font-size: 2rem;
}

.gp-content h3 {
    font-size: 1.5rem;
}

.gp-content ul,
.gp-content ol {
    margin: 1rem 0 1.5rem 1.4rem;
}

.gp-content li {
    margin-bottom: 0.55rem;
}

.gp-content blockquote {
    margin: 1.8rem 0;
    border-left: 4px solid var(--gp-green);
    background: var(--gp-green-soft);
    padding: 1rem 1.25rem;
    color: #374151;
}


/* ================================
   RESPONSIVE HELPERS
================================ */

@media (max-width: 768px) {
    .gp-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .gpnav-logo-img {
        height: 46px;
        max-width: 180px;
    }

    .gpnav-inner {
        height: 78px;
    }

    .gpnav.gpnav-scrolled .gpnav-inner {
        height: 72px;
    }
}

@media (max-width: 480px) {
    .gpnav-wrap,
    .gpnav-mobile-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    .gpnav-logo-img {
        height: 42px;
        max-width: 165px;
    }

    .btn-primary,
    .btn-outline,
    .btn-white {
        width: 100%;
    }
}


/* ================================
   UTILITY OVERRIDES
================================ */

.hidden {
    display: none !important;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}