/* =============================================
   PT SAHABAT STUDI RUSIA (SSR) - PUBLIC STYLES
   ============================================= */
 
/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a237e;
    --primary-light: #3949ab;
    --primary-dark: #0d1442;
    --accent: #ff6f00;
    --accent-light: #ffa040;
    --accent-hover: #e65100;
    --success: #2e7d32;
    --success-light: #4caf50;
    --danger: #c62828;
    --warning: #f9a825;
    --info: #0277bd;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
 
/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
 
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}
 
/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
 
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--gray-500); font-size: 0.85rem; }
 
.section-badge {
    display: inline-block;
    background: rgba(26, 35, 126, 0.08);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.badge-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
 
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
 
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
}
 
/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}
 
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}
 
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}
 
.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}
 
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
 
.btn-danger {
    background: var(--danger);
    color: var(--white);
}
 
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
 
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
 
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; }
 
/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
 
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
 
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
 
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
 
.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
}
 
.nav-logo-text span {
    color: var(--accent);
}
 
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
 
.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}
 
.nav-links a:hover { color: var(--primary); }
 
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
 
.nav-links a:hover::after { width: 100%; }
 
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
 
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}
 
.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}
 
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 999;
}
 
.mobile-menu.active { display: block; }
 
.mobile-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
 
.mobile-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
}
 
/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}
 
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,111,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
 
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(57,73,171,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
 
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
 
.hero-content { color: var(--white); }
 
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}
 
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
 
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
 
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
 
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
 
.hero-desc {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}
 
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual { position: relative; }
 
.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}
 
.hero-card h3 { font-size: 1.3rem; margin-bottom: 24px; }
 
.hero-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
 
.hero-card-item:last-child { border-bottom: none; }
 
.hero-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
    flex-shrink: 0;
}

.hero-card-text h4 { font-size: 0.95rem; font-weight: 600; }
.hero-card-text p { font-size: 0.82rem; opacity: 0.75; margin-top: 2px; }
 
/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--gray-50);
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.trust-item {
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.trust-sep {
    color: var(--gray-400);
    font-weight: 700;
}
 
/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}
 
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}
 
.about-lead {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}
 
.about-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 30px;
}
 
.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
 
.vm-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
}
 
.vm-card h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
 
.vm-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}
 
.vm-card ul {
    list-style: none;
    font-size: 0.88rem;
    color: var(--gray-600);
}
 
.vm-card ul li {
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}
 
.vm-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}
 
.about-values {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
}
 
.about-values-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
 
.value-card {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}
 
.value-card:last-of-type { border-bottom: none; }
 
.value-card { position: relative; padding-left: 16px; }
.value-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}
.value-card h4 { font-size: 0.95rem; color: var(--primary-dark); margin-bottom: 4px; }
.value-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }
 
.competitive-edge {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    color: var(--white);
}
 
.competitive-edge h4 { margin-bottom: 12px; font-size: 1rem; }
 
.competitive-edge ul {
    list-style: none;
    font-size: 0.88rem;
}
 
.competitive-edge ul li {
    padding: 4px 0;
    opacity: 0.95;
}
 
/* ===== MAIN SERVICES (3 Pillars) ===== */
.main-services {
    padding: 100px 0;
    background: var(--gray-50);
}
 
.services-three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
 
.service-pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
 
.service-pillar-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
 
.service-pillar-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
 
.service-pillar-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}
 
.service-pillar-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    margin-top: 24px;
    line-height: 1.4;
    max-width: 90%;
}
 
.service-pillar-card ul {
    list-style: none;
}
 
.service-pillar-card ul li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
}
 
.service-pillar-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-light);
    font-weight: bold;
}
 
/* ===== PACKAGES ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.packages-heading {
    margin-top: 80px;
    margin-bottom: 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}
 
.package-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
 
.package-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
 
.package-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
 
.package-card.featured::before {
    content: 'REKOMENDASI';
    position: absolute;
    top: 20px;
    right: -38px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.68rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1.5px;
}
 
.package-type {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
 
.package-type.mandiri { background: #e3f2fd; color: #1565c0; }
.package-type.premium { background: #fff3e0; color: #e65100; }
 
.package-name { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.package-desc { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 24px; }
 
.package-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}
 
.package-price .amount { font-size: 2rem; font-weight: 800; color: var(--primary-dark); }
.package-price .period { color: var(--gray-500); font-size: 0.9rem; }
.package-price .note { display: block; font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }
 
.package-features { list-style: none; margin-bottom: 30px; }
 
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}
 
.package-features .check { color: var(--success-light); font-weight: bold; flex-shrink: 0; }
.package-features .cross { color: var(--gray-400); flex-shrink: 0; }
.package-features .disabled { color: var(--gray-400); }
 
/* ===== BREAKDOWN ===== */
.breakdown {
    padding: 100px 0;
    background: var(--gray-50);
}
 
.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
 
.breakdown-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
 
.breakdown-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
 
.breakdown-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
 
.bg-blue { background: #e3f2fd; }
.bg-green { background: #e8f5e9; }
.bg-orange { background: #fff3e0; }
.bg-purple { background: #f3e5f5; }
.bg-teal { background: #e0f7fa; }
.bg-pink { background: #fce4ec; }
.bg-yellow { background: #fff8e1; }
 
.breakdown-card h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 8px; }
.breakdown-card .range { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.breakdown-card p { font-size: 0.85rem; color: var(--gray-600); }
 
.breakdown-note {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    padding: 28px 32px;
    color: var(--white);
}

.breakdown-note h3 { font-size: 1.1rem; margin-bottom: 8px; }
.breakdown-note p { opacity: 0.92; font-size: 0.92rem; line-height: 1.7; }
 
/* ===== PROCESS ===== */
.process { padding: 100px 0; background: var(--white); }
 
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
 
.process-step { text-align: center; padding: 30px 20px; }
 
.process-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}
 
.process-step h3 { font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--gray-600); }
 
/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--gray-50); }
 
.faq-grid { max-width: 800px; margin: 0 auto; }
 
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}
 
.faq-item:hover { box-shadow: var(--shadow-md); }
 
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
    transition: var(--transition);
    gap: 12px;
}
 
.faq-question:hover { color: var(--primary); }
 
.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--gray-600);
}
 
.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}
 
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer { max-height: 2000px; }

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-answer-content p { margin: 0 0 10px; }
.faq-answer-content p:last-child { margin-bottom: 0; }

.faq-scholarship-item {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

.faq-scholarship-item strong {
    display: block;
    color: var(--gray-800);
    margin-bottom: 4px;
}
 
/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--white); }
 
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
 
.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
 
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
 
.testimonial-stars { color: var(--warning); font-size: 0.9rem; margin-bottom: 16px; }
 
.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}
 
.testimonial-author { display: flex; align-items: center; gap: 12px; }
 
.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}
 
.testimonial-info h4 { font-size: 0.9rem; color: var(--gray-800); }
.testimonial-info p { font-size: 0.8rem; color: var(--gray-500); }
 
/* ===== COMMITMENT BANNER ===== */
.commitment {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
}
 
.commitment-content { max-width: 700px; margin: 0 auto; }
.commitment-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
 
.commitment-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
}
 
.commitment-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
 
.commitment-badge {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}
 
/* ===== CONSULTATION FORM ===== */
.consultation {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
 
.consultation::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,111,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
 
.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
 
.consultation-info h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.consultation-info p { opacity: 0.9; margin-bottom: 30px; line-height: 1.7; }
 
.consultation-benefits { list-style: none; }
 
.consultation-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
}
 
.consultation-benefits .icon { font-size: 1.2rem; }
 
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}
 
.form-card h3 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 8px; }
.form-card .form-subtitle { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 24px; }
 
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
 
.form-group { margin-bottom: 16px; }
 
.form-group label {
    display: block;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
}
 
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-50);
    color: var(--gray-800);
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(57, 73, 171, 0.1);
}
 
.form-group textarea { resize: vertical; min-height: 100px; }
 
.form-submit-btn { width: 100%; padding: 16px; margin-top: 8px; }
 
/* ===== REFUND POLICY ===== */
.policy { padding: 80px 0; background: var(--gray-50); }
 
.policy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
 
.policy-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}
 
.policy-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
 
.policy-card p,
.policy-card ul {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}
 
.policy-card ul { list-style: none; margin-top: 8px; }
.policy-card ul li { padding: 4px 0; }
 
/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}
 
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
 
.footer-brand h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.footer-brand h3 span { color: var(--accent); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
 
.footer-social { display: flex; gap: 10px; }
 
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}
 
.footer-social a:hover { background: var(--accent); color: var(--white); }
 
.footer-section h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
 
.footer-section a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}
 
.footer-section a:hover { color: var(--accent-light); }
 
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
 
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 12px;
}
 
.footer-admin-link {
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}
 
.footer-admin-link:hover { color: var(--accent-light); }
 
/* ===== FLOATING WHATSAPP BUTTON ===== */
.wa-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.wa-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}
 
/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    z-index: 5000;
    transition: var(--transition);
    opacity: 0;
}
 
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
 
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
 
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-three-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid { gap: 40px; }
    .about-grid { gap: 40px; }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-card {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:last-child { border-right: none; }

.stat-card:hover { background: var(--gray-50); }

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 10px;
    line-height: 1.5;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
    padding: 100px 0;
    background: var(--gray-50);
}

.blog-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
}

.blog-preview-header .section-title { margin-bottom: 8px; }
.blog-preview-header .section-subtitle { margin-bottom: 0; }
.blog-preview-all { flex-shrink: 0; align-self: flex-end; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-height: 280px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.blog-card-body {
    padding: 28px 28px 16px;
    flex: 1;
}

.blog-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.45;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.blog-card-footer {
    padding: 16px 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--gray-100);
}

.blog-card-meta {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.blog-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.blog-card-link:hover { color: var(--accent); }

.blog-skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    border-radius: var(--radius-md);
    height: 280px;
    animation: shimmer 1.6s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.blog-coming-soon {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px dashed var(--gray-300);
}

.blog-coming-soon p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.blog-coming-soon a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.blog-coming-soon a:hover { color: var(--accent); }

/* ===== TESTIMONIAL PLACEHOLDER ===== */
.testimonial-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
    color: var(--gray-600);
}

.testimonial-placeholder-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.testimonial-placeholder p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

/* ===== END NEW SECTIONS ===== */

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .nav-links { display: none; }
    .hamburger { display: flex; background: none; border: none; }

    .hero { min-height: auto; padding: 110px 0 60px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .hero-buttons { justify-content: center; }
    .hero-card { padding: 28px 22px; }
    .hero-visual { max-width: 500px; margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; }
    .about-vision-mission { grid-template-columns: 1fr; }
    .consultation-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .services-three-grid { grid-template-columns: 1fr; }

    .trust-bar-content { gap: 10px; }
    .trust-item { font-size: 0.8rem; }

    .main-services, .breakdown, .process, .about,
    .faq, .testimonials, .consultation, .policy { padding: 70px 0; }

    .stats-section { padding: 60px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .stat-card:nth-child(odd) { border-right: 1px solid var(--gray-200); }
    .stat-card:nth-last-child(-n+2) { border-bottom: none; }

    .blog-preview { padding: 70px 0; }
    .blog-preview-header { flex-direction: column; align-items: flex-start; }
    .blog-preview-all { align-self: auto; }
    .blog-grid { grid-template-columns: 1fr; }
    .packages-heading { margin-top: 60px; }

    .form-card { padding: 28px 22px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .btn-lg { padding: 14px 30px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .nav-cta .btn { padding: 8px 14px; font-size: 0.82rem; }
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
    .trust-sep { display: none; }
    .trust-bar-content { gap: 6px 14px; }
}

/* ===== SVG ICON UTILITY ===== */
.icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

/* ===== HAMBURGER (SVG) ===== */
.hamburger .icon { width: 22px; height: 22px; color: var(--gray-800); }

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }

/* ===== MOBILE MENU CTA ===== */
.mobile-menu-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    text-align: center;
    margin-top: 8px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}
.mobile-menu-cta:hover { background: var(--accent-hover) !important; color: var(--white) !important; }

/* ===== FOOTER LOGO ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-logo img { border-radius: 6px; flex-shrink: 0; }
.footer-logo span { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.footer-logo em { font-style: normal; color: var(--accent); }

/* ===== FOOTER SOCIAL SVG ===== */
.footer-social a { display: flex; align-items: center; justify-content: center; }
.footer-social a svg { display: block; width: 18px; height: 18px; }

/* ===== FOOTER CONTACT ITEMS ===== */
a.footer-contact-item { color: var(--gray-400); text-decoration: none; transition: var(--transition); }
a.footer-contact-item:hover { color: var(--accent-light); }
.footer-contact-item .icon { width: 16px; height: 16px; margin-top: 2px; opacity: 0.75; }

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.newsletter-text h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.newsletter-text p { font-size: 0.85rem; color: var(--gray-500); }
.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
    padding: 11px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    min-width: 220px;
    outline: none;
    transition: var(--transition);
}
.newsletter-form input[type="email"]::placeholder { color: var(--gray-600); }
.newsletter-form input[type="email"]:focus {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.12);
}

/* ===== WA FLOAT SVG ===== */
.wa-float-btn svg { width: 28px; height: 28px; display: block; }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,111,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.page-hero .section-badge { background: rgba(255,255,255,0.15); color: var(--white); }
.page-hero p { font-size: 1.1rem; opacity: 0.88; line-height: 1.7; margin-top: 16px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }

/* ===== CTA BAND (mini CTA on sub-pages) ===== */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 12px; }
.cta-band p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-band .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== POST DETAIL PAGE ===== */

/* Loading skeleton */
.post-loading {
    padding: 120px 0 80px;
}
.post-skeleton-bar {
    height: 18px;
    background: var(--gray-100);
    border-radius: 6px;
    margin-bottom: 16px;
    animation: shimmer 1.4s infinite linear;
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
}
.post-skeleton-bar--sm  { width: 30%; height: 14px; }
.post-skeleton-bar--md  { width: 60%; }
.post-skeleton-bar--lg  { width: 80%; height: 32px; margin-bottom: 24px; }

/* Article layout */
.post-article {
    padding: 100px 0 80px;
}
.post-article .container {
    max-width: 760px;
}

/* Breadcrumb */
.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.post-breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--primary); }
.post-breadcrumb-sep { color: var(--gray-300); }

/* Post header */
.post-header { margin-bottom: 40px; }
.post-header .blog-card-category { margin-bottom: 16px; }
.post-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 16px;
}
.post-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Post body typography */
.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    border-top: 1px solid var(--gray-100);
    padding-top: 36px;
    margin-bottom: 48px;
}
.post-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 36px 0 14px;
    line-height: 1.3;
}
.post-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 28px 0 10px;
}
.post-body p  { margin: 0 0 18px; }
.post-body ul,
.post-body ol { margin: 0 0 18px; padding-left: 24px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { font-weight: 700; color: var(--text-primary); }
.post-body em     { font-style: italic; }
.post-body hr {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 36px 0;
}
.post-body blockquote {
    border-left: 3px solid var(--accent);
    margin: 24px 0;
    padding: 12px 20px;
    background: var(--gray-50);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Post footer */
.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-100);
    margin-bottom: 32px;
}
.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.post-share-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.post-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-family: inherit;
    color: var(--text-primary);
}
.post-share-btn:hover    { border-color: var(--primary); color: var(--primary); }
.post-share-wa           { color: #25D366; border-color: #25D366; }
.post-share-wa:hover     { background: #25D366; color: var(--white); }
.post-back-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}
.post-back-link:hover { color: var(--primary); }

/* Not found */
.post-not-found {
    padding: 140px 0 80px;
    text-align: center;
}
.post-not-found-icon { font-size: 3rem; margin-bottom: 16px; }
.post-not-found h1   { font-size: 1.6rem; margin-bottom: 12px; }
.post-not-found p    { color: var(--text-secondary); margin-bottom: 28px; }

/* ===== BLOG LISTING PAGE ===== */

.blog-listing { padding: 60px 0 80px; }

.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }

.filter-pill {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.filter-pill:hover  { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.blog-contributor-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 32px;
}
.blog-contributor-cta-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.5;
}
.blog-contributor-cta .btn-outline {
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
}
.blog-contributor-cta .btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.pagination-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.pagination-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.pagination-info { font-size: 0.875rem; color: var(--text-secondary); }

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.blog-contribute {
    padding: 72px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}
.blog-contribute-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 2px 16px rgba(13,31,53,0.06);
}
.blog-contribute-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(13,31,53,0.06);
    border-radius: 12px;
    color: var(--primary);
}
.blog-contribute-icon svg { width: 28px; height: 28px; }
.blog-contribute-body { flex: 1; }
.blog-contribute-body h2 { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.blog-contribute-body p  { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; margin: 0; }
.blog-contribute-btn { flex-shrink: 0; white-space: nowrap; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    .footer-newsletter { flex-direction: column; padding: 24px 20px; gap: 16px; }
    .newsletter-form { width: 100%; }
    .newsletter-form input[type="email"] { min-width: auto; flex: 1; }
    .page-hero { padding: 110px 0 60px; }
    .cta-band { padding: 60px 0; }
    .blog-contribute-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
    .blog-contribute-btn  { width: 100%; justify-content: center; }
    .blog-contributor-cta { flex-direction: column; text-align: center; }
    .blog-contributor-cta .btn-outline { width: 100%; justify-content: center; }
    .post-article { padding: 80px 0 60px; }
    .post-footer  { flex-direction: column; align-items: flex-start; }
}