/*
Theme Name: MHJ Theme
Theme URI: https://mirainohashi.co.id
Author: Mirai no Hashi
Author URI: https://mirainohashi.co.id
Description: Custom WordPress theme for Mirai no Hashi - Japanese-Indonesian career bridge. Features elegant Japanese-inspired design with green primary colors, modern typography, and smooth animations.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mhjtheme
Tags: custom-logo, custom-menu, featured-images, full-width-template, one-column, two-columns, translation-ready
*/

/* ========== CSS Variables ========== */
:root {
    /* Logo-inspired colors */
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --accent-red: #C62828;
    --accent-red-light: #EF5350;
    --accent-gold: #F9A825;
    --accent-gold-light: #FFD54F;

    /* Neutral palette */
    --white: #ffffff;
    --cream: #FAFAF8;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F4;
    --gray-200: #E8EAED;
    --gray-300: #DADCE0;
    --gray-400: #BDC1C6;
    --gray-500: #80868B;
    --gray-600: #5F6368;
    --gray-700: #3C4043;
    --dark: #1A1A1A;
    --ink: #0D1117;

    /* WhatsApp */
    --whatsapp: #25D366;
}

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.jp {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
}

h1 { font-size: 3.75rem; letter-spacing: -0.03em; }
h2 { font-size: 2.75rem; letter-spacing: -0.02em; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========== Layout ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 3rem;
}

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

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

.section.bg-green {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

/* ========== Japanese Pattern Overlay ========== */
.pattern-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='none' stroke='%232E7D32' stroke-width='1'/%3E%3C/svg%3E");
}

/* ========== Navigation ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.site-header.scrolled {
    padding: 0.5rem 3rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .main {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.logo-text .main span {
    color: var(--primary);
}

.logo-text .sub {
    font-size: 0.65rem;
    color: var(--gray-500);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-navigation ul {
    display: flex;
    gap: 0.25rem;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
    color: var(--primary);
    background: var(--gray-50);
}

/* Dropdown Menu */
.main-navigation ul ul {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    border: 1px solid var(--gray-100);
    display: block;
}

.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.main-navigation ul ul li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.main-navigation ul ul li a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* Nav CTA Button */
.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.35);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== Buttons ========== */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.35);
    color: var(--white);
}

.btn-primary .arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--gray-50);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 3rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, #E8F5E9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(46, 125, 50, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

/* Floating Japanese elements */
.floating-kanji {
    position: absolute;
    font-family: 'Noto Sans JP', serif;
    font-weight: 300;
    opacity: 0.04;
    pointer-events: none;
    color: var(--primary);
}

.floating-kanji.k1 {
    font-size: 15rem;
    top: 10%;
    right: 5%;
    transform: rotate(-10deg);
}

.floating-kanji.k2 {
    font-size: 10rem;
    bottom: 20%;
    left: 3%;
    transform: rotate(5deg);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 0.5rem 1rem 0.5rem 0.6rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hero-badge .flag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-badge .flag span {
    font-size: 1.1rem;
}

.hero-badge .divider {
    width: 1px;
    height: 16px;
    background: var(--gray-300);
}

.hero-badge .text {
    color: var(--primary);
    font-weight: 600;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    position: relative;
    color: var(--primary);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: var(--accent-gold);
    opacity: 0.6;
    z-index: -1;
}

.hero-jp {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-text strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-card-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.hero-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hero-card-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    color: var(--white);
}

/* Floating stats cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 1px solid var(--gray-100);
}

.float-card.fc1 {
    top: 40px;
    left: -60px;
    animation: float 6s ease-in-out infinite;
}

.float-card.fc2 {
    bottom: 120px;
    right: -40px;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-card .number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.float-card .label {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.float-card .icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.4);
}

/* ========== Stats Section ========== */
.stats {
    padding: 4rem 3rem;
    background: var(--white);
    position: relative;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ========== Section Header ========== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
}

.section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.bg-green .section-badge {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.bg-green .section-badge::before {
    background: var(--accent-gold);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.bg-green .section-title {
    color: var(--white);
}

.bg-green .section-title span {
    color: var(--accent-gold);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 550px;
    margin: 0 auto;
}

.bg-green .section-desc {
    color: rgba(255,255,255,0.8);
}

/* ========== Programs Grid ========== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: transparent;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: scale(1.05);
}

.program-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.program-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.program-link {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.program-link:hover {
    gap: 0.75rem;
}

/* ========== Jobs Grid ========== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.job-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.job-card-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.job-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.job-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-badge.urgent {
    background: #FFEBEE;
    color: var(--accent-red);
}

.job-badge.new {
    background: #E8F5E9;
    color: var(--primary);
}

.job-badge.hot {
    background: #FFF3E0;
    color: #E65100;
}

.job-badge.category {
    background: var(--gray-100);
    color: var(--gray-600);
}

.job-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.job-company {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.job-company svg {
    width: 14px;
    height: 14px;
}

.job-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
}

.job-detail svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.job-salary {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.job-salary span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-500);
}

.job-apply-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    text-align: center;
}

.job-apply-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    color: var(--white);
}

.view-all-link {
    text-align: center;
    margin-top: 3rem;
}

/* ========== Testimonials ========== */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gray-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-rating span {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========== News Grid ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.news-category {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.65rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.news-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.news-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.news-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.news-link:hover {
    gap: 0.6rem;
}

/* ========== CTA Section ========== */
.cta {
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta .pattern-overlay {
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.cta .jp-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--cream);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ========== Page Header ========== */
.page-header {
    padding: 10rem 3rem 5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, #E8F5E9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(46, 125, 50, 0.06) 0%, transparent 70%);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
    font-weight: 500;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header h1 span {
    color: var(--primary);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========== Footer ========== */
.site-footer {
    padding: 4rem 3rem 2rem;
    background: var(--ink);
    color: var(--white);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text .main {
    color: var(--white);
}

.footer-brand > p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-column ul a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.8rem;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ========== Forms ========== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: var(--accent-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s;
    background: var(--white);
    color: var(--dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========== WhatsApp Floating CTA ========== */
.whatsapp-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--whatsapp);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.3s;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* ========== Pagination ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination .current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ========== WordPress Specific ========== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
    padding-top: 0.5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-visual {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jobs-grid,
    .testimonials-container,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1.5rem;
    }

    .main-navigation ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .programs-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 8rem 1.5rem 4rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .site-footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .whatsapp-cta {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-btn span:not(.icon) {
        display: none;
    }

    .whatsapp-btn {
        padding: 1rem;
        border-radius: 50%;
    }
}
