/* ===== WBKH - Professional Academic Design ===== */
/* Color Palette: Navy Blue (#1B3A5C), Gold (#C8A951), White (#FFFFFF), Light Gray (#F8F9FA) */

:root {
    --primary-blue: #1B3A5C;
    --primary-gold: #C8A951;
    --dark-blue: #0F2440;
    --light-blue: #E8F0FE;
    --accent-gold: #D4AF37;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-cream: #FFFDF7;
    --border-light: #E9ECEF;
    --success-green: #28A745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.8;
    font-size: 19px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(27, 58, 92, 0.08);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(27, 58, 92, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo img {
    height: 110px;
    width: auto;
}

.nav-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    font-size: 1.1rem;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: color 0.3s ease;
}

.lang-switch a.active {
    color: var(--primary-blue);
    font-weight: 800;
}

.lang-switch span {
    color: var(--border-light);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 58, 92, 0.25);
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--dark-blue);
}

.btn-gold:hover {
    background: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.35);
}

.btn-outline {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--dark-blue);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.35);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 40px 120px;
    background: linear-gradient(160deg, var(--primary-blue) 0%, var(--dark-blue) 60%, #0a1a2e 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container-full {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.4);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 50px;
    max-width: 850px;
    line-height: 1.9;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 18px 38px;
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(27, 58, 92, 0.15);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 48px 32px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 28px;
    font-weight: 700;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 45px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light-blue);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 32px;
}

.section-light {
    background: var(--bg-light);
}

.section-white {
    background: var(--bg-white);
}

.section-blue {
    background: var(--primary-blue);
    color: white;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-header h2 span {
    color: var(--primary-gold);
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-blue .section-header h2 {
    color: white;
}

.section-blue .section-header h2 span {
    color: var(--primary-gold);
}

.section-blue .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== JOURNALS GRID ===== */
.journals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.journal-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 58, 92, 0.12);
    border-color: var(--primary-gold);
}

.journal-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: var(--light-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.journal-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== CONFERENCES ===== */
.conferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.conference-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.conference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-gold));
}

.conference-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 58, 92, 0.12);
}

.conference-card .badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.conference-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 14px;
    line-height: 1.4;
}

.conference-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.conference-card .btn-link {
    color: var(--primary-gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.conference-card .btn-link:hover {
    gap: 10px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(27, 58, 92, 0.12);
    border-color: var(--primary-gold);
}

.service-card .icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--light-blue), var(--bg-cream));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card .btn-link {
    color: var(--primary-gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-card .btn-link:hover {
    gap: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px;
    position: relative;
}

.testimonial-card .quote-icon {
    font-size: 2.4rem;
    color: var(--primary-gold);
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author .avatar {
    width: 52px;
    height: 52px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.testimonial-author .info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-author .info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== ABOUT ===== */
.about-intro {
    text-align: center;
    margin-bottom: 48px;
}

.about-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 18px;
}

.about-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item .icon {
    width: 56px;
    height: 56px;
    background: var(--light-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.08);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 72px 32px 28px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55); }
}

/* ===== PRICING TIERS (Service Pages) ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--primary-gold);
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(200, 169, 81, 0.2);
}

.pricing-card.best-value {
    border-color: var(--primary-blue);
}

.pricing-card .badge-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.pricing-card .badge-label.popular-badge {
    background: var(--primary-gold);
}

.pricing-card .badge-label.value-badge {
    background: var(--primary-blue);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-card ul li {
    padding: 8px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card .delivery {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--border-light);
}

/* ===== SERVICE PAGE HERO ===== */
.service-hero {
    padding: 160px 32px 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--light-blue) 100%);
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 32px;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary-blue);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}


/* ===== QUOTE REQUEST SECTION ===== */
.quote-request-section {
    padding: 80px 32px;
}

.quote-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-option-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.3s ease;
}

.quote-option-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 12px 40px rgba(200, 169, 81, 0.15);
    transform: translateY(-4px);
}

.quote-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.quote-option-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.quote-option-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1da851;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

@media (max-width: 768px) {
    .quote-options {
        grid-template-columns: 1fr;
    }
}

/* ===== RTL FIXES ===== */
[dir="rtl"] .pricing-card ul {
    text-align: right;
}

[dir="rtl"] .service-card {
    text-align: right;
}

[dir="rtl"] .quote-option-card {
    text-align: center;
}

/* ===== MOBILE MENU FUNCTIONALITY ===== */
.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    box-shadow: 0 8px 30px rgba(27, 58, 92, 0.12);
    gap: 16px;
    border-top: 1px solid var(--border-light);
    z-index: 999;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .nav-right {
        display: none;
    }
    .nav-right.mobile-show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 200px);
        left: 0;
        right: 0;
        background: white;
        padding: 16px 32px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ===== SECTION BLUE TEXT ===== */
.section-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.section-blue h2 {
    color: white;
}

.section-blue h2 span {
    color: var(--primary-gold);
}

/* Publish Your Conference With Us Section */
.publish-section {
    background: linear-gradient(135deg, #0a1628 0%, var(--primary-blue) 50%, #1a3a5c 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.publish-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a951' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.publish-section h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}
.publish-section h2 span {
    color: var(--primary-gold);
}
.publish-section > p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
}
.publish-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
}
.publish-feature-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
}
.publish-feature-item .icon {
    font-size: 2rem;
    margin-bottom: 8px;
}
.publish-feature-item h4 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 6px;
}
.publish-feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .publish-section {
        padding: 60px 20px;
    }
    .publish-section h2 {
        font-size: 2rem;
    }
    .publish-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Journal of Global Sustainability Pathways (JGSP) */
.jgsp-card {
    position: relative;
    overflow: hidden;
    border: 2px solid #3f8d79 !important;
    background: linear-gradient(145deg, #f3faf6 0%, #ffffff 62%) !important;
    text-decoration: none;
}
.jgsp-card::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    top: -48px;
    right: -34px;
    border: 14px solid rgba(63, 141, 121, 0.10);
    border-radius: 50%;
}
.jgsp-card .icon {
    position: relative;
    z-index: 1;
    background: #e3f3eb;
    color: #23745e;
}
.jgsp-card h4 {
    position: relative;
    z-index: 1;
    color: #174d40 !important;
    font-size: 0.92rem;
    line-height: 1.35;
}
.jgsp-card .journal-card-meta {
    position: relative;
    z-index: 1;
    color: #277360;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 5px;
}
.journal-status {
    color: #277360;
    background: #e3f3eb;
    border: 1px solid rgba(39, 115, 96, 0.18);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}
.jgsp-hero {
    min-height: 545px;
    background: radial-gradient(circle at 22% 18%, rgba(103, 176, 137, 0.34) 0%, rgba(103, 176, 137, 0) 26%), radial-gradient(circle at 83% 80%, rgba(190, 166, 87, 0.16) 0%, rgba(190, 166, 87, 0) 27%), linear-gradient(135deg, #0d302b 0%, #154a41 52%, #1e5a4c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 28px 92px;
}
.jgsp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
}
.jgsp-hero-orbit {
    position: absolute;
    border: 1px solid rgba(229, 210, 139, 0.26);
    border-radius: 50%;
    pointer-events: none;
}
.orbit-one { width: 520px; height: 520px; top: -180px; left: -100px; }
.orbit-two { width: 640px; height: 640px; right: -260px; bottom: -355px; }
.jgsp-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}
.journal-kicker, .section-eyebrow {
    color: #baac72;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.journal-kicker-mark {
    color: #e7d492;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid rgba(231, 212, 146, 0.48);
}
.journal-symbol {
    width: 64px;
    height: 64px;
    margin: 18px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 2rem;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.20);
    box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}
.jgsp-hero h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin: 0;
}
.jgsp-hero h1 span { color: #e7ce79; }
.journal-tagline {
    max-width: 630px;
    color: rgba(255,255,255,0.83);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.75;
    margin: 20px auto 0;
}
.journal-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 27px 0 31px;
    color: rgba(255,255,255,0.74);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.journal-hero-meta i {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #e7ce79;
}
.journal-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.journal-hero-actions .btn-primary span, .jgsp-launch-section .btn-primary span { margin-left: 8px; }
.journal-quiet-link {
    color: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.46);
    padding-bottom: 4px;
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 600;
}
.journal-quiet-link:hover { color: #e7ce79; border-color: #e7ce79; }
.jgsp-intro-grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.85fr) minmax(400px, 1.15fr);
    gap: 80px;
    align-items: start;
}
.section-eyebrow {
    color: #277360;
    margin-bottom: 14px;
}
.jgsp-section-title {
    color: var(--primary-blue);
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin: 0;
}
.jgsp-section-title span { color: #33846f; }
.jgsp-intro-copy {
    padding: 6px 0 6px 30px;
    border-left: 2px solid #8fc6ab;
}
.jgsp-intro-copy p {
    color: var(--text-medium);
    font-size: 1.04rem;
    line-height: 1.85;
    margin: 0 0 16px;
}
.jgsp-intro-copy p:last-child { margin-bottom: 0; }
.jgsp-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 42px auto 0;
}
.jgsp-focus-card {
    padding: 28px 25px 25px;
    background: #ffffff;
    border: 1px solid #e3ece7;
    border-radius: 14px;
    transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms cubic-bezier(0.23, 1, 0.32, 1);
}
.jgsp-focus-card:hover {
    transform: translateY(-4px);
    border-color: #79b69a;
    box-shadow: 0 14px 30px rgba(30, 85, 70, 0.10);
}
.focus-icon { display: block; font-size: 1.7rem; margin-bottom: 13px; }
.jgsp-focus-card h3 { color: #174d40; font-size: 1.05rem; margin: 0 0 9px; }
.jgsp-focus-card p { color: var(--text-medium); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.jgsp-profile-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}
.jgsp-profile-heading > p { color: var(--text-medium); line-height: 1.75; margin: 20px 0 0; }
.jgsp-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #dfeae4;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}
.jgsp-profile-item { padding: 22px 23px; border-bottom: 1px solid #e5eee9; }
.jgsp-profile-item:nth-child(odd) { border-right: 1px solid #e5eee9; }
.jgsp-profile-item:nth-last-child(-n+2) { border-bottom: 0; }
.jgsp-profile-item span { display: block; color: #3c806d; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 800; margin-bottom: 8px; }
.jgsp-profile-item strong { color: #173f36; display: block; font-size: 1.02rem; line-height: 1.3; }
.jgsp-profile-item small { color: var(--text-medium); display: block; margin-top: 6px; line-height: 1.45; }
.jgsp-launch-section {
    padding: 92px 24px;
    background: linear-gradient(116deg, #103931, #1d5a4c);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.jgsp-launch-section::before {
    content: '';
    position: absolute;
    width: 530px;
    height: 530px;
    border: 1px solid rgba(231, 206, 121, 0.20);
    border-radius: 50%;
    top: -370px;
    left: calc(50% - 265px);
}
.jgsp-launch-content { position: relative; max-width: 720px; margin: 0 auto; }
.jgsp-launch-section .section-eyebrow { color: #d9c375; }
.jgsp-launch-section h2 { color: #ffffff; font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.16; margin: 0; letter-spacing: -0.03em; }
.jgsp-launch-section h2 span { color: #e7ce79; }
.jgsp-launch-section p { color: rgba(255,255,255,0.77); font-size: 1.06rem; line-height: 1.75; margin: 18px auto 29px; }
@media (max-width: 980px) {
    .jgsp-intro-grid, .jgsp-profile-wrap { grid-template-columns: 1fr; gap: 34px; }
    .jgsp-focus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .journal-status { display: none; }
    .jgsp-hero { min-height: 500px; padding-top: 135px; padding-bottom: 72px; }
    .journal-hero-actions { flex-direction: column; gap: 18px; }
    .jgsp-intro-copy { padding-left: 20px; }
    .jgsp-focus-grid { grid-template-columns: 1fr; }
    .jgsp-profile-grid { grid-template-columns: 1fr; }
    .jgsp-profile-item, .jgsp-profile-item:nth-child(odd) { border-right: 0; border-bottom: 1px solid #e5eee9; }
    .jgsp-profile-item:last-child { border-bottom: 0; }
    .journal-hero-meta { gap: 8px; font-size: 0.65rem; }
}
@media (prefers-reduced-motion: reduce) {
    .jgsp-focus-card { transition: none; }
    .jgsp-focus-card:hover { transform: none; }
}

/* JGSP editorial journal layout — original WBKH implementation */
.jgsp-card {
    border: 1px solid #d7e2df !important;
    background: #ffffff !important;
    box-shadow: none;
}
.jgsp-card::after {
    width: 72px;
    height: 72px;
    top: -39px;
    right: -28px;
    border-width: 11px;
    border-color: rgba(27, 58, 92, 0.08);
}
.jgsp-card .icon { background: #edf3f1; color: #1c6453; }
.jgsp-card h4 { color: var(--primary-blue) !important; }
.jgsp-card .journal-card-meta { color: #4b716a; }
.jgsp-editorial-page { background: #f8fafb; }
.jgsp-editorial-page .navbar { position: relative; }
.jgsp-masthead {
    background: #ffffff;
    border-bottom: 1px solid #dbe4e8;
}
.jgsp-masthead-inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 23px 0 31px;
}
.jgsp-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #83909d;
    font-size: 0.78rem;
    margin-bottom: 23px;
}
.jgsp-breadcrumb a { color: #52718c; text-decoration: none; }
.jgsp-breadcrumb a:hover { color: var(--primary-gold); }
.jgsp-identity-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 225px;
    gap: 24px;
    align-items: center;
}
.jgsp-mark {
    width: 82px;
    height: 82px;
    border-radius: 4px;
    background: linear-gradient(135deg, #183d62, #285f76);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.08em;
    box-shadow: inset 0 0 0 5px rgba(255,255,255,0.07);
}
.jgsp-mark b { color: #d5b75b; }
.jgsp-overline {
    color: #6b8296;
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    font-weight: 800;
    margin: 0 0 7px;
}
.jgsp-title-group h1 {
    margin: 0;
    color: #173b5e;
    font-size: clamp(1.75rem, 3.15vw, 2.7rem);
    letter-spacing: -0.045em;
    line-height: 1.12;
}
.jgsp-subtitle {
    color: #647587;
    font-size: 0.98rem;
    margin: 9px 0 0;
    line-height: 1.55;
}
.jgsp-title-status {
    align-self: stretch;
    padding: 14px 0 14px 19px;
    border-left: 1px solid #e0e7eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.jgsp-title-status strong { color: #234d65; font-size: 0.9rem; line-height: 1.3; }
.jgsp-title-status small { color: #788795; font-size: 0.75rem; line-height: 1.45; margin-top: 4px; }
.status-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #c6a647; left: -4px; top: calc(50% - 4px); }
.jgsp-journal-nav {
    background: #173b5e;
    box-shadow: 0 3px 10px rgba(22, 52, 78, 0.12);
}
.jgsp-journal-nav-inner {
    max-width: 1240px;
    width: calc(100% - 48px);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 48px;
}
.jgsp-journal-nav a {
    color: rgba(255,255,255,0.84);
    padding: 15px 17px 13px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}
.jgsp-journal-nav a:hover, .jgsp-journal-nav a.active { color: #ffffff; border-bottom-color: #d5b75b; }
.jgsp-journal-nav .jgsp-nav-action { margin-left: auto; background: #c9a950; color: #1a3d5f; border-bottom: 0; padding-left: 21px; padding-right: 21px; }
.jgsp-journal-nav .jgsp-nav-action:hover { color: #14334f; background: #d8ba65; }
.jgsp-content-shell { padding: 42px 0 80px; }
.jgsp-content-grid {
    max-width: 1160px;
    width: calc(100% - 48px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}
.jgsp-main-column {
    background: #ffffff;
    border: 1px solid #e0e7eb;
    border-radius: 3px;
    padding: 0 42px;
}
.jgsp-editorial-section { padding: 36px 0; border-bottom: 1px solid #e5eaed; }
.jgsp-editorial-section:last-child { border-bottom: 0; }
.jgsp-section-label { color: #b18b31; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; margin: 0 0 10px; }
.jgsp-editorial-section h2 { color: #1a4266; font-size: 1.55rem; line-height: 1.25; margin: 0 0 16px; letter-spacing: -0.02em; }
.jgsp-editorial-section p { color: #43566a; font-size: 0.95rem; line-height: 1.8; margin: 0 0 14px; }
.jgsp-editorial-section p:last-child { margin-bottom: 0; }
.jgsp-editorial-section .jgsp-lead { color: #263e53; font-size: 1.03rem; line-height: 1.85; }
.jgsp-theme-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 21px; }
.jgsp-theme-list span { position: relative; color: #365970; background: #f2f6f7; border-left: 3px solid #c9a950; padding: 11px 12px; font-size: 0.84rem; font-weight: 600; }
.jgsp-callout-section { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 18px; padding: 30px 0; }
.jgsp-callout-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: #edf3f6; border: 1px solid #d8e4e9; border-radius: 2px; font-size: 1.35rem; }
.jgsp-callout-section h2 { margin-bottom: 8px; }
.jgsp-update-section { background: linear-gradient(90deg, #f7f8f8 0%, #ffffff 100%); margin: 0 -42px; padding-left: 42px; padding-right: 42px; }
.jgsp-text-link { color: #1e5b78; font-size: 0.88rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid #9db6c5; padding-bottom: 3px; }
.jgsp-text-link:hover { color: #b38b2a; border-color: #b38b2a; }
.jgsp-sidebar { display: flex; flex-direction: column; gap: 18px; }
.jgsp-side-card { background: #ffffff; border: 1px solid #dfe6ea; border-radius: 3px; padding: 25px; }
.jgsp-side-card-kicker { display: block; color: #a17b27; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; margin-bottom: 10px; }
.jgsp-side-card h3 { color: #1d4568; font-size: 1.18rem; line-height: 1.35; margin: 0 0 12px; }
.jgsp-side-card p { color: #607182; font-size: 0.88rem; line-height: 1.7; margin: 0; }
.jgsp-submit-card { background: linear-gradient(160deg, #1a4266, #214f70); border: 0; }
.jgsp-submit-card .jgsp-side-card-kicker { color: #e3c874; }
.jgsp-submit-card h3 { color: #ffffff; }
.jgsp-submit-card p { color: rgba(255,255,255,0.79); margin-bottom: 20px; }
.jgsp-submit-card .btn-primary { width: 100%; text-align: center; box-sizing: border-box; font-size: 0.86rem; }
.jgsp-submit-card .btn-primary span { margin-left: 7px; }
.jgsp-meta-list { margin: 0; }
.jgsp-meta-list > div { display: grid; grid-template-columns: 105px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid #e7ecef; }
.jgsp-meta-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.jgsp-meta-list dt { color: #748494; font-size: 0.75rem; font-weight: 600; }
.jgsp-meta-list dd { color: #2d4b62; font-size: 0.78rem; font-weight: 600; margin: 0; line-height: 1.45; }
.jgsp-right-note { border-left: 3px solid #c9a950; padding-top: 18px; padding-bottom: 18px; }
@media (max-width: 980px) {
    .jgsp-identity-row { grid-template-columns: 74px minmax(0, 1fr); }
    .jgsp-mark { width: 70px; height: 70px; }
    .jgsp-title-status { grid-column: 2; border-left: 0; border-top: 1px solid #e0e7eb; padding: 13px 0 0; }
    .status-dot { display: none; }
    .jgsp-content-grid { grid-template-columns: 1fr; }
    .jgsp-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .jgsp-sidebar .jgsp-right-note { grid-column: span 2; }
}
@media (max-width: 760px) {
    .jgsp-masthead-inner, .jgsp-journal-nav-inner, .jgsp-content-grid { width: calc(100% - 32px); }
    .jgsp-masthead-inner { padding: 20px 0 25px; }
    .jgsp-identity-row { grid-template-columns: 1fr; gap: 15px; }
    .jgsp-mark { width: 60px; height: 60px; font-size: 1.1rem; }
    .jgsp-title-status { grid-column: auto; }
    .jgsp-journal-nav-inner { overflow-x: auto; }
    .jgsp-journal-nav a { padding-left: 13px; padding-right: 13px; }
    .jgsp-journal-nav .jgsp-nav-action { display: none; }
    .jgsp-content-shell { padding: 24px 0 54px; }
    .jgsp-main-column { padding: 0 22px; }
    .jgsp-editorial-section { padding: 28px 0; }
    .jgsp-update-section { margin: 0 -22px; padding-left: 22px; padding-right: 22px; }
    .jgsp-theme-list { grid-template-columns: 1fr; }
    .jgsp-sidebar { display: flex; }
    .jgsp-sidebar .jgsp-right-note { grid-column: auto; }
    .jgsp-meta-list > div { grid-template-columns: 100px 1fr; }
}

/* JGSP inner editorial pages */
.jgsp-compact-masthead { background: #ffffff; border-bottom: 1px solid #dbe4e8; }
.jgsp-compact-masthead-inner { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 22px 0; display: flex; align-items: center; gap: 17px; }
.jgsp-compact-mark { width: 48px; height: 48px; border-radius: 3px; background: linear-gradient(135deg, #183d62, #285f76); color: #ffffff; font-weight: 800; line-height: 0.8; letter-spacing: -0.08em; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0.87rem; flex: 0 0 auto; }
.jgsp-compact-mark b { color: #d5b75b; }
.jgsp-compact-title { min-width: 0; }
.jgsp-compact-title p { color: #718396; font-size: 0.64rem; letter-spacing: 0.12em; font-weight: 800; margin: 0 0 4px; }
.jgsp-compact-title h1 { color: #1b4265; font-size: 1.18rem; line-height: 1.3; margin: 0; }
.jgsp-compact-issn { color: #657789; font-size: 0.77rem; margin-left: auto; white-space: nowrap; }
.jgsp-page-shell { padding: 42px 0 80px; }
.jgsp-page-layout { width: min(1040px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 255px; gap: 34px; align-items: start; }
.jgsp-page-card { background: #ffffff; border: 1px solid #e0e7eb; border-radius: 3px; padding: 39px 42px; }
.jgsp-page-card h2 { color: #1b4265; font-size: 1.82rem; line-height: 1.2; letter-spacing: -0.025em; margin: 0 0 12px; }
.jgsp-page-card h3 { color: #204b6d; font-size: 1.12rem; margin: 30px 0 11px; }
.jgsp-page-card p { color: #45596c; font-size: 0.94rem; line-height: 1.8; margin: 0 0 14px; }
.jgsp-page-card p.jgsp-page-intro { color: #324d64; font-size: 1.02rem; }
.jgsp-sidebar-links { background: #ffffff; border: 1px solid #e0e7eb; border-radius: 3px; padding: 21px 22px; }
.jgsp-sidebar-links h3 { color: #234b6b; font-size: 0.92rem; margin: 0 0 10px; }
.jgsp-sidebar-links a { display: block; color: #4e6980; text-decoration: none; font-size: 0.83rem; line-height: 1.35; padding: 11px 0; border-bottom: 1px solid #e7ecef; }
.jgsp-sidebar-links a:last-child { border-bottom: 0; }
.jgsp-sidebar-links a:hover, .jgsp-sidebar-links a.active { color: #b08b2e; font-weight: 700; }
.jgsp-step-list { counter-reset: jgsp-step; list-style: none; margin: 25px 0 0; padding: 0; }
.jgsp-step-list li { position: relative; padding: 0 0 23px 56px; min-height: 38px; color: #45596c; line-height: 1.7; font-size: 0.91rem; }
.jgsp-step-list li::before { counter-increment: jgsp-step; content: counter(jgsp-step); position: absolute; left: 0; top: 0; width: 34px; height: 34px; border: 1px solid #bca052; color: #8f722c; display: flex; align-items: center; justify-content: center; font-size: 0.79rem; font-weight: 800; }
.jgsp-step-list li strong { display: block; color: #244d6b; font-size: 0.97rem; margin-bottom: 3px; }
.jgsp-page-notice { background: #f4f8f8; border-left: 3px solid #c9a950; padding: 18px 20px; margin: 27px 0; color: #456075; font-size: 0.87rem; line-height: 1.7; }
.jgsp-submission-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 23px; }
.jgsp-submission-actions .btn-primary { font-size: 0.88rem; }
.jgsp-article-table { width: 100%; border-collapse: collapse; margin-top: 21px; font-size: 0.84rem; }
.jgsp-article-table th { background: #1b4265; color: #ffffff; text-align: left; padding: 12px; font-size: 0.75rem; letter-spacing: 0.03em; }
.jgsp-article-table td { color: #475c6c; line-height: 1.6; padding: 13px 12px; vertical-align: top; border-bottom: 1px solid #e4eaed; }
.jgsp-article-table tr:nth-child(even) td { background: #f7f9fa; }
.jgsp-article-table td:first-child { color: #234b6d; font-weight: 700; width: 28%; }
.jgsp-indexing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 18px; }
.jgsp-indexing-item { border: 1px solid #dfe7e9; padding: 15px; background: #ffffff; }
.jgsp-indexing-item strong { display: block; color: #234b6d; font-size: 0.9rem; margin-bottom: 5px; }
.jgsp-indexing-item span { color: #708090; font-size: 0.75rem; line-height: 1.45; }
.jgsp-indexing-item .jgsp-indexing-status { color: #967329; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }
@media (max-width: 800px) {
    .jgsp-compact-masthead-inner, .jgsp-page-layout { width: calc(100% - 32px); }
    .jgsp-compact-issn { display: none; }
    .jgsp-page-layout { grid-template-columns: 1fr; }
    .jgsp-page-card { padding: 29px 22px; }
    .jgsp-sidebar-links { order: -1; }
    .jgsp-sidebar-links h3 { display: none; }
    .jgsp-sidebar-links { display: flex; overflow-x: auto; gap: 19px; padding: 0 15px; }
    .jgsp-sidebar-links a { border-bottom: 2px solid transparent; white-space: nowrap; padding: 15px 0 13px; }
    .jgsp-sidebar-links a.active { border-bottom-color: #c9a950; }
    .jgsp-indexing-grid { grid-template-columns: 1fr; }
    .jgsp-article-table { display: block; overflow-x: auto; white-space: nowrap; }
}


/* Additional JGSP journal destinations */
.jgsp-policy-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.jgsp-policy-links a { position: relative; min-height: 95px; text-decoration: none; background: #f5f8f9; border: 1px solid #e0e8eb; padding: 15px 35px 14px 16px; transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1); }
.jgsp-policy-links a:hover { transform: translateY(-3px); border-color: #b6c7cf; box-shadow: 0 9px 18px rgba(26, 64, 92, 0.08); }
.jgsp-policy-links strong { display: block; color: #204a6c; font-size: 0.9rem; margin-bottom: 5px; }
.jgsp-policy-links span { display: block; color: #627587; font-size: 0.77rem; line-height: 1.5; }
.jgsp-policy-links b { position: absolute; right: 15px; top: 17px; color: #b18b31; font-size: 1rem; }
.jgsp-journal-more a { display: block; color: #506d83; text-decoration: none; font-size: 0.82rem; padding: 10px 0; border-bottom: 1px solid #e7ecef; }
.jgsp-journal-more a:last-child { border-bottom: 0; padding-bottom: 0; }
.jgsp-journal-more a:hover { color: #a37e2a; }
@media (max-width: 760px) { .jgsp-policy-links { grid-template-columns: 1fr; } }


/* JGSP latest articles, editorial board, article preview, and Arabic RTL support */
.jgsp-section-split { display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.jgsp-latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 20px; }
.jgsp-latest-card { display: flex; flex-direction: column; min-height: 190px; text-decoration: none; padding: 17px; border: 1px solid #dfe7ea; background: #fbfcfc; transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms cubic-bezier(0.23, 1, 0.32, 1); }
.jgsp-latest-card:hover { transform: translateY(-3px); border-color: #b8cbd1; box-shadow: 0 10px 20px rgba(28,65,91,0.09); }
.jgsp-latest-card span { color: #a07e2d; font-size: 0.61rem; font-weight: 800; letter-spacing: 0.07em; line-height: 1.4; }
.jgsp-latest-card h3 { color: #204a6c; font-size: 0.97rem; line-height: 1.38; margin: 11px 0 7px; }
.jgsp-latest-card p { color: #657687; font-size: 0.78rem; line-height: 1.55; margin: 0; }
.jgsp-latest-card b { margin-top: auto; padding-top: 12px; color: #38617c; font-size: 0.76rem; }
.jgsp-board-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 18px; }
.jgsp-board-grid > div { padding: 18px; background: #f7f9fa; border-top: 3px solid #c9a950; }
.jgsp-board-grid span { display: block; color: #9a7626; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.09em; margin-bottom: 8px; }
.jgsp-board-grid strong { display: block; color: #244e70; font-size: 1rem; margin-bottom: 7px; }
.jgsp-board-grid p { color: #627486; font-size: 0.82rem; line-height: 1.55; margin: 0; }
.jgsp-sample-ribbon { display: inline-block; color: #805f1e; background: #fff3cd; border: 1px solid #ead28b; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.08em; padding: 7px 9px; margin-bottom: 17px; }
.jgsp-article-meta { color: #778898 !important; font-size: 0.8rem !important; font-weight: 600; }
.jgsp-article-title { color: #1a4266; font-size: clamp(1.7rem, 3vw, 2.42rem); line-height: 1.2; margin: 10px 0; letter-spacing: -0.03em; }
.jgsp-article-authors { color: #526e83 !important; font-size: 0.9rem !important; }
.jgsp-article-tools { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 27px; }
.jgsp-article-tools span { color: #587084; background: #edf3f5; font-size: 0.7rem; font-weight: 700; padding: 6px 8px; }
.jgsp-keywords { color: #2a5875 !important; font-weight: 600; }
.jgsp-citation { color: #51667a !important; background: #f7f9fa; border-left: 3px solid #c9a950; padding: 15px 17px; font-size: 0.87rem !important; }
.jgsp-ar-page { font-family: 'Tajawal', sans-serif; }
.jgsp-ar-page .jgsp-title-status { border-left: 0; border-right: 1px solid #e0e7eb; padding-left: 0; padding-right: 19px; }
.jgsp-ar-page .status-dot { left: auto; right: -4px; }
.jgsp-ar-page .jgsp-journal-nav .jgsp-nav-action { margin-left: 0; margin-right: auto; }
.jgsp-ar-page .jgsp-policy-links a { padding-left: 35px; padding-right: 16px; }
.jgsp-ar-page .jgsp-policy-links b { right: auto; left: 15px; }
.jgsp-ar-page .jgsp-theme-list span { border-left: 0; border-right: 3px solid #c9a950; }
.jgsp-ar-page .jgsp-intro-copy, .jgsp-ar-page .jgsp-citation { border-left: 0; border-right: 3px solid #c9a950; }
.jgsp-ar-page .jgsp-step-list li { padding: 0 56px 23px 0; }
.jgsp-ar-page .jgsp-step-list li::before { left: auto; right: 0; }
.jgsp-ar-page .jgsp-page-notice, .jgsp-ar-page .jgsp-right-note { border-left: 0; border-right: 3px solid #c9a950; }
.jgsp-ar-page .jgsp-latest-card b { text-align: left; }
.jgsp-ar-page .jgsp-meta-list > div { grid-template-columns: 1fr 105px; }
.jgsp-ar-page .jgsp-article-table th { text-align: right; }
@media (max-width: 900px) { .jgsp-latest-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .jgsp-section-split { align-items: start; flex-direction: column; } .jgsp-board-grid { grid-template-columns: 1fr; } .jgsp-ar-page .jgsp-title-status { border-right: 0; padding-right: 0; } }

/* Expanded JGSP multidisciplinary scope */
.jgsp-expanded-scope .jgsp-scope-lead { color: #435f73; font-size: 0.98rem; line-height: 1.8; margin-bottom: 15px; }
.jgsp-expanded-scope .jgsp-scope-note { color: #587084; font-size: 0.86rem; font-weight: 700; margin: 0 0 14px; }
.jgsp-scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 10px; }
.jgsp-scope-grid article { background: #f7f9fa; border: 1px solid #e0e8eb; border-top: 3px solid #c8a951; padding: 16px 17px; transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1); }
.jgsp-scope-grid article:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(28, 65, 91, 0.08); }
.jgsp-scope-grid h3 { color: #244e70; font-size: 0.91rem; line-height: 1.35; margin: 0 0 8px; }
.jgsp-scope-grid p { color: #637587; font-size: 0.78rem; line-height: 1.62; margin: 0; }
.jgsp-ar-page .jgsp-scope-grid { text-align: right; }
.jgsp-ar-page .jgsp-expanded-scope .jgsp-scope-lead { line-height: 2; }
@media (max-width: 650px) { .jgsp-scope-grid { grid-template-columns: 1fr; } }


/* Journal of Global Business and Management (JGBM) card */
.jgbm-card { position: relative; overflow: hidden; border: 1px solid #d6e1eb !important; background: #ffffff !important; text-decoration: none; box-shadow: none; }
.jgbm-card::after { content: ''; position: absolute; width: 72px; height: 72px; top: -39px; right: -28px; border: 11px solid rgba(27, 58, 92, 0.08); border-radius: 50%; }
.jgbm-card .icon { position: relative; z-index: 1; background: #e9f0f6; color: #1b3a5c; }
.jgbm-card h4 { position: relative; z-index: 1; color: var(--primary-blue) !important; font-size: 0.92rem; line-height: 1.35; }
.jgbm-card .journal-card-meta { position: relative; z-index: 1; color: #496a83; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.04em; margin-top: 5px; }


/* Journal of Global Artificial Intelligence Systems (JGAIS) card */
.jgais-card { position: relative; overflow: hidden; border: 1px solid #dedcf0 !important; background: linear-gradient(145deg, #ffffff 0%, #faf9ff 100%) !important; text-decoration: none; box-shadow: none; }
.jgais-card::after { content: ''; position: absolute; width: 72px; height: 72px; top: -39px; right: -28px; border: 11px solid rgba(90, 73, 160, 0.10); border-radius: 50%; }
.jgais-card .icon { position: relative; z-index: 1; background: #eeeafd; color: #4f3c9e; }
.jgais-card h4 { position: relative; z-index: 1; color: #2f2a63 !important; font-size: 0.90rem; line-height: 1.35; }
.jgais-card .journal-card-meta { position: relative; z-index: 1; color: #665d9b; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.04em; margin-top: 5px; }


/* Journal of Global Health Sciences and Practice (JGHSP) card */
.jghsp-card { position: relative; overflow: hidden; border: 1px solid #cfe4e4 !important; background: linear-gradient(145deg, #ffffff 0%, #f5fbfb 100%) !important; text-decoration: none; box-shadow: none; }
.jghsp-card::after { content: ''; position: absolute; width: 72px; height: 72px; top: -39px; right: -28px; border: 11px solid rgba(30, 132, 135, 0.10); border-radius: 50%; }
.jghsp-card .icon { position: relative; z-index: 1; background: #e3f4f3; color: #14787a; }
.jghsp-card h4 { position: relative; z-index: 1; color: #1b525a !important; font-size: 0.90rem; line-height: 1.35; }
.jghsp-card .journal-card-meta { position: relative; z-index: 1; color: #4b7f84; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.04em; margin-top: 5px; }




/* Journal of Global Engineering Systems (JGES) card */
.jges-card { position: relative; overflow: hidden; border: 1px solid #d1dce4 !important; background: linear-gradient(145deg, #ffffff 0%, #f3f7fa 100%) !important; text-decoration: none; box-shadow: none; }
.jges-card::after { content: ''; position: absolute; width: 72px; height: 72px; top: -39px; right: -28px; border: 11px solid rgba(43, 92, 123, 0.10); border-radius: 50%; }
.jges-card .icon { position: relative; z-index: 1; background: #e6eff5; color: #2b5c7b; }
.jges-card h4 { position: relative; z-index: 1; color: #294b63 !important; font-size: 0.90rem; line-height: 1.35; }
.jges-card .journal-card-meta { position: relative; z-index: 1; color: #557489; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.04em; margin-top: 5px; }


/* Proceedings of Global Research and Innovation (PGRI) card */
.pgri-card { position: relative; overflow: hidden; border: 1px solid #ded4e5 !important; background: linear-gradient(145deg, #ffffff 0%, #faf6fc 100%) !important; text-decoration: none; box-shadow: none; }
.pgri-card::after { content: ''; position: absolute; width: 72px; height: 72px; top: -39px; right: -28px; border: 11px solid rgba(94, 70, 116, 0.10); border-radius: 50%; }
.pgri-card .icon { position: relative; z-index: 1; background: #f0eaf4; color: #5e4674; }
.pgri-card h4 { position: relative; z-index: 1; color: #513966 !important; font-size: 0.88rem; line-height: 1.35; }
.pgri-card .journal-card-meta { position: relative; z-index: 1; color: #806a91; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.04em; margin-top: 5px; }

/* ===== JOURNAL INTERFACE RESPONSIVE HARDENING ===== */
/* Keep publication pages clean on laptop and tablet widths by collapsing the global menu before it wraps. */
@media (max-width: 1320px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .jgsp-journal-nav-inner {
        overflow-x: auto;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .jgsp-journal-nav a {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .jgsp-compact-masthead-inner {
        gap: 11px;
        padding: 16px 0;
    }

    .jgsp-compact-title h1 {
        font-size: 1rem;
    }

    .jgsp-compact-title p {
        font-size: 0.57rem;
    }
}
