/**
 * DNA Studio Main Stylesheet
 *
 * @package DNA_Studio
 */

/* ========================================
   HEADER STYLES
   ======================================== */

.site-header {
    position: relative;
    z-index: 1000;
    background-color: var(--dnastudio-white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background-color: var(--dnastudio-blue);
    padding: 8px 0;
    font-size: 0.875rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.header-contact {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dnastudio-white);
}

.contact-item a {
    color: var(--dnastudio-white);
    transition: opacity var(--transition-fast);
}

.contact-item a:hover {
    opacity: 0.8;
}

.contact-item i {
    font-size: 0.875rem;
}

.header-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--dnastudio-white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--dnastudio-gold);
    color: var(--dnastudio-dark);
    transform: translateY(-2px);
}

.header-main {
    padding: var(--spacing-md) 0;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.site-branding {
    display: flex;
    align-items: center;
}

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

.site-title {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.site-title a {
    color: var(--dnastudio-blue);
}

.site-description {
    font-size: 0.875rem;
    color: var(--dnastudio-gray-dark);
    margin: 0;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-xs);
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dnastudio-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--dnastudio-blue);
    background-color: var(--dnastudio-light);
}

/* Submenu */
.main-navigation .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--dnastudio-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--spacing-xs);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.main-navigation li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .submenu li {
    width: 100%;
}

.main-navigation .submenu a {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.85rem;
    text-transform: none;
    font-weight: 500;
}

.main-navigation .submenu a:hover {
    background-color: var(--dnastudio-light);
    color: var(--dnastudio-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--dnastudio-blue);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-toggle:hover {
    background-color: var(--dnastudio-blue);
    color: var(--dnastudio-white);
}

.menu-toggle-icon {
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: all var(--transition-fast);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    top: 6px;
}


/* ========================================
   PAGE BANNER
   ======================================== */

.page-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dnastudio-blue) 0%, var(--dnastudio-blue-dark) 100%);
    padding: var(--spacing-xxl) 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%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');
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 107, 107, 0.85);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-title {
    font-size: 2.5rem;
    color: var(--dnastudio-white);
    margin-bottom: var(--spacing-md);
}

.breadcrumb {
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--dnastudio-white);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 var(--spacing-xs);
}

/* ========================================
   COURSE CARDS
   ======================================== */

.course-card .card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.course-card .card-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background-color: var(--dnastudio-blue);
    color: var(--dnastudio-white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--dnastudio-gray-dark);
}

.course-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.course-meta .meta-item i {
    font-size: 0.8rem;
}

.course-price {
    font-weight: 700;
    color: var(--dnastudio-blue);
    font-size: 1.1rem;
}

.course-price.contact {
    color: var(--dnastudio-gray-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   SCHEME CARDS
   ======================================== */

.scheme-card {
    text-align: center;
}

.scheme-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--dnastudio-gold) 0%, var(--dnastudio-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dnastudio-white);
}

.scheme-code {
    display: inline-block;
    background-color: var(--dnastudio-light);
    color: var(--dnastudio-blue);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.scheme-field {
    color: var(--dnastudio-gray-dark);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.scheme-price {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--dnastudio-gray);
}

.price-label {
    font-size: 0.85rem;
    color: var(--dnastudio-gray-dark);
}

.price-value {
    font-weight: 700;
    color: var(--dnastudio-blue);
    margin-left: var(--spacing-xs);
}


/* ========================================
   FEATURES SECTION
   ======================================== */

.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--dnastudio-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--dnastudio-blue) 0%, var(--dnastudio-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dnastudio-white);
}

.feature-item h4 {
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    color: var(--dnastudio-gray-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   NEWS CARDS
   ======================================== */

.news-card .post-category {
    margin-bottom: var(--spacing-sm);
}

.news-card .post-category a {
    color: var(--dnastudio-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-card .card-title a {
    color: var(--dnastudio-dark);
    transition: color var(--transition-fast);
}

.news-card .card-title a:hover {
    color: var(--dnastudio-blue);
}


/* ========================================
   SIDEBAR STYLES
   ======================================== */

.sidebar {
    padding-left: var(--spacing-lg);
}

.sidebar-widget {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--dnastudio-light);
    border-radius: var(--radius-md);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--dnastudio-blue);
}

/* Search Widget */
.search-input-wrapper {
    display: flex;
    gap: var(--spacing-xs);
}

.search-input-wrapper .search-field {
    flex: 1;
    padding: var(--spacing-sm);
    border: 2px solid var(--dnastudio-gray);
    border-radius: var(--radius-md);
}

.search-input-wrapper .search-submit {
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--dnastudio-blue);
    color: var(--dnastudio-white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.search-input-wrapper .search-submit:hover {
    background-color: var(--dnastudio-blue-dark);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    border-bottom: 1px solid var(--dnastudio-gray);
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    color: var(--dnastudio-dark);
    transition: color var(--transition-fast);
}

.categories-list a:hover {
    color: var(--dnastudio-blue);
}

.categories-list .count {
    background-color: var(--dnastudio-gray);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: var(--spacing-md);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-post-link {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.recent-post-thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.recent-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    display: block;
    font-weight: 600;
    color: var(--dnastudio-dark);
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.recent-post-link:hover .recent-post-title {
    color: var(--dnastudio-blue);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--dnastudio-gray-dark);
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tag-link {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--dnastudio-white);
    border: 1px solid var(--dnastudio-gray);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--dnastudio-dark);
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background-color: var(--dnastudio-blue);
    border-color: var(--dnastudio-blue);
    color: var(--dnastudio-white);
}

/* ========================================
   FOOTER — 2 Column (Brand + Quick Links)
   ======================================== */

.site-footer {
    background: #0D2A2A;
    color: rgba(255,255,255,0.75);
}

.footer-main {
    padding: 64px 0 48px;
}

.footer-two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── LEFT: Brand col ── */
.footer-brand-col {}

.footer-logo { margin-bottom: 6px; }
.footer-logo img { max-height: 48px; width: auto; }
.footer-site-name {
    font-size: 1.25rem; font-weight: 800;
    color: #ffffff; font-family: 'Montserrat', sans-serif;
}

.footer-tagline {
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: #2A8F8F; margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem; color: rgba(255,255,255,0.55);
    line-height: 1.75; max-width: 340px; margin-bottom: 24px;
}

.footer-socials {
    display: flex; gap: 10px; flex-wrap: wrap;
}

.footer-social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65); font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-btn:hover {
    background: #1B6B6B;
    border-color: #1B6B6B;
    color: #ffffff;
}

/* ── RIGHT: Links col ── */
.footer-links-col {}

.footer-col-title {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.40);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-quick-links {
    list-style: none; padding: 0; margin: 0 0 28px;
}

.footer-quick-links li { margin-bottom: 4px; }

.footer-quick-links a {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s, border-color 0.2s;
}
.footer-quick-links a:hover {
    background: rgba(27,107,107,0.20);
    border-color: rgba(42,143,143,0.30);
}

.footer-quick-links a > i {
    font-size: 1.2rem; color: #2A8F8F;
    flex-shrink: 0; width: 20px; text-align: center;
}

.footer-quick-links a > span {
    display: flex; flex-direction: column; gap: 2px;
}

.footer-quick-links strong {
    font-size: 0.9rem; font-weight: 700;
    color: #ffffff; display: block;
}

.footer-quick-links small {
    font-size: 0.76rem; color: rgba(255,255,255,0.45);
    display: block;
}

/* WA Button */
.footer-wa-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; width: 100%;
    padding: 13px 20px;
    background: #25D366; color: #ffffff;
    border-radius: 10px; font-weight: 700;
    font-size: 0.9rem; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.footer-wa-btn:hover {
    background: #1EAF55; transform: translateY(-2px);
}
.footer-wa-btn i { font-size: 1.1rem; }

/* ── BOTTOM BAR ── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 8px;
}

.footer-copyright p {
    font-size: 0.8rem; color: rgba(255,255,255,0.30); margin: 0;
}

.footer-legal .legal-text {
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
    font-weight: 600; letter-spacing: 0.5px;
}
.footer-legal .legal-badge {
    height: 28px; width: auto; opacity: 0.6;
    vertical-align: middle; margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-desc { max-width: 100%; }
}

.main-content {
    min-width: 0;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */


/* ============================================================
   DNA STUDIO — HOME SECTIONS CSS (Clean Rewrite)
   Palette: Deep Teal #1B6B6B | Slate Grey #5A6F6F | Mint #F0F5F5
   ============================================================ */

/* ── SHARED SECTION DEFAULTS ── */
.section { padding: 80px 0; }
.section-light { background: #F0F5F5; }
.section-dark  { background: #0F3333; }

.section-title {
    text-align: center;
    margin-bottom: 56px;
}
.section-title h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #1E2E2E;
    margin-bottom: 0;
    line-height: 1.25;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #1B6B6B, #2A8F8F);
    margin: 14px auto 0;
    border-radius: 2px;
}
.section-subtitle {
    display: block;
    margin-top: 14px;
    color: #5A6F6F;
    font-size: 1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── SECTION CTA BUTTON ── */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── GRID HELPERS ── */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── CARD BASE ── */
.card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(27,107,107,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(27,107,107,0.14);
}
.card-body   { padding: 24px; flex: 1; }
.card-footer { padding: 16px 24px; border-top: 1px solid #E2EAEA; display: flex; align-items: center; justify-content: space-between; }
.card-image-wrapper { position: relative; overflow: hidden; }
.card-image  { width: 100%; height: 200px; object-fit: cover; display: block; }
.card-title  { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.card-title a { color: #1E2E2E; text-decoration: none; }
.card-title a:hover { color: #1B6B6B; }
.card-text   { font-size: 0.9rem; color: #5A6F6F; line-height: 1.65; margin: 0; }
.card-badge  {
    position: absolute; top: 10px; left: 10px;
    background: #1B6B6B; color: #fff;
    padding: 3px 10px; border-radius: 4px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: 8px; font-weight: 600;
    font-size: 0.9rem; text-decoration: none; cursor: pointer;
    border: 2px solid transparent; transition: all 0.2s ease;
    letter-spacing: 0.3px; line-height: 1;
}
.btn-sm  { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-primary {
    background: #1B6B6B; color: #fff; border-color: #1B6B6B;
}
.btn-primary:hover { background: #104444; border-color: #104444; }
.btn-secondary {
    background: #2A8F8F; color: #fff; border-color: #2A8F8F;
}
.btn-secondary:hover { background: #1B6B6B; border-color: #1B6B6B; }
.btn-outline {
    background: transparent; color: #1B6B6B; border-color: #1B6B6B;
}
.btn-outline:hover { background: #1B6B6B; color: #fff; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.home-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    /* Default gradient — tetap bagus kalau gak ada BG image */
    background: linear-gradient(150deg, #0D3B3B 0%, #1B6B6B 55%, #2A8F8F 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Pattern overlay subtle */
.home-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M0 0h40v40H0zm40 40h40v40H40z"/%3E%3C/g%3E%3C/svg%3E');
    pointer-events: none; z-index: 0;
}

/* Dark overlay — biar teks tetap terbaca walau ada BG image */
.home-hero .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8, 32, 32, 0.80) 0%,
        rgba(27, 107, 107, 0.60) 100%
    );
    z-index: 1;
}

.home-hero .hero-container {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 100px 24px 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.home-hero .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
    margin-bottom: 20px;
    line-height: 1.12;
    font-family: 'Montserrat', sans-serif;
}

.home-hero .hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.88) !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

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

.home-hero .btn-primary {
    background: #ffffff; color: #104444;
    border-color: #ffffff; font-weight: 700;
}
.home-hero .btn-primary:hover {
    background: rgba(255,255,255,0.90); border-color: rgba(255,255,255,0.90);
}
.home-hero .btn-secondary {
    background: #2A8F8F; color: #ffffff;
    border-color: #2A8F8F; font-weight: 700;
}
.home-hero .btn-secondary:hover {
    background: #1B6B6B; border-color: #1B6B6B;
}

/* STATS BAR */
.home-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%; max-width: 600px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.18);
    position: relative; z-index: 2;
}

.home-hero .stat-item {
    text-align: center;
    padding: 0 16px;
}
.home-hero .stat-item + .stat-item {
    border-left: 1px solid rgba(255,255,255,0.15);
}

.home-hero .stat-number {
    display: block;
    font-size: 2rem; font-weight: 800;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1; margin-bottom: 6px;
}

.home-hero .stat-label {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.60);
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

/* ============================================================
   QUICK ACCESS / DUAL PILLARS
   ============================================================ */
.quick-access-section {
    background: #ffffff;
    padding: 80px 0;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
}

.quick-card,
.quick-access-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 4px 24px rgba(27,107,107,0.08);
    border: 1px solid rgba(27,107,107,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative; overflow: hidden;
}

/* Accent bar kiri */
.quick-card::before,
.quick-access-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
}
.lpk-card.quick-card::before,
.lpk-card.quick-access-card::before { background: #1B6B6B; }
.lsp-card.quick-card::before,
.lsp-card.quick-access-card::before { background: #2A8F8F; }

.quick-card:hover,
.quick-access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(27,107,107,0.14);
}

.quick-icon,
.quick-access-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 14px;
}
.lpk-card .quick-icon,
.lpk-card .quick-access-icon { background: rgba(27,107,107,0.08); color: #1B6B6B; }
.lsp-card .quick-icon,
.lsp-card .quick-access-icon { background: rgba(42,143,143,0.10); color: #2A8F8F; }

.quick-label {
    display: inline-block;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 3px 10px; border-radius: 20px;
    margin-bottom: 10px;
    background: rgba(27,107,107,0.07); color: #1B6B6B;
}

.quick-card h3,
.quick-access-content h3 {
    font-size: 1.25rem; font-weight: 700;
    color: #1E2E2E; margin-bottom: 10px; line-height: 1.35;
}

.quick-card > p,
.quick-access-content p {
    color: #5A6F6F; font-size: 0.93rem;
    line-height: 1.65; margin-bottom: 18px;
}

.quick-features,
.quick-access-features {
    list-style: none; padding: 0; margin: 0 0 24px;
}
.quick-features li,
.quick-access-features li {
    display: flex; align-items: center;
    gap: 8px; margin-bottom: 7px;
    font-size: 0.88rem; color: #1E2E2E;
}
.quick-features li i,
.quick-access-features li i { color: #2A8F8F; font-size: 0.8rem; flex-shrink: 0; }

/* ============================================================
   PHILOSOPHY / THE LEGACY
   ============================================================ */
.philosophy-section {
    background: #EFF5F5;
    padding: 80px 0;
    position: relative; overflow: hidden;
}

.philosophy-section::after {
    content: '';
    position: absolute; top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(42,143,143,0.07) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
}

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

.philosophy-icon-wrap {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #104444 0%, #2A8F8F 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: #fff;
    box-shadow: 0 6px 22px rgba(27,107,107,0.28);
}

.philosophy-eyebrow {
    font-size: 0.70rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: #2A8F8F; margin-bottom: 10px; display: block;
}

.philosophy-content h2 {
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    color: #1E2E2E; line-height: 1.35;
    margin-bottom: 0; text-align: center;
}

.philosophy-divider {
    width: 44px; height: 3px;
    background: linear-gradient(90deg, #1B6B6B, #2A8F8F);
    margin: 18px auto; border-radius: 2px;
}

.philosophy-body {
    font-size: 1.02rem; color: #5A6F6F;
    line-height: 1.80; text-align: center;
    max-width: 640px; margin: 0 auto;
}

.philosophy-pillars {
    display: flex; justify-content: center;
    gap: 20px; margin-top: 44px; flex-wrap: wrap;
}

.philosophy-pillar {
    text-align: center; padding: 24px 26px;
    background: #fff; border-radius: 14px;
    box-shadow: 0 3px 14px rgba(27,107,107,0.08);
    flex: 1; min-width: 120px; max-width: 170px;
    transition: transform 0.25s ease;
}
.philosophy-pillar:hover { transform: translateY(-4px); }
.philosophy-pillar i {
    font-size: 1.6rem; margin-bottom: 10px;
    display: block; color: #1B6B6B;
}
.philosophy-pillar:nth-child(2) i { color: #2A8F8F; }
.philosophy-pillar:nth-child(3) i { color: #1B6B6B; }
.philosophy-pillar span {
    font-weight: 700; font-size: 0.9rem; color: #1E2E2E;
}

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.why-us-section { background: #fff; padding: 80px 0; }

.features-grid { display: grid; gap: 24px; }
.grid-4.features-grid { grid-template-columns: repeat(4, 1fr); }

.feature-item {
    text-align: center; padding: 32px 24px;
    background: #fff; border-radius: 14px;
    box-shadow: 0 3px 16px rgba(27,107,107,0.07);
    border: 1px solid rgba(27,107,107,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(27,107,107,0.13);
}

.feature-icon {
    width: 72px; height: 72px; margin: 0 auto 18px;
    background: linear-gradient(135deg, #1B6B6B 0%, #2A8F8F 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: #fff;
}

.feature-item h4 { font-size: 1rem; font-weight: 700; color: #1E2E2E; margin-bottom: 8px; }
.feature-item p  { font-size: 0.88rem; color: #5A6F6F; line-height: 1.65; margin: 0; }

/* ============================================================
   VERIFICATION SECTION
   ============================================================ */
.verification-section {
    background: #0F3333;
    padding: 80px 0;
}

.verification-section .verification-content {
    max-width: 560px; margin: 0 auto;
    text-align: center; display: flex;
    flex-direction: column; align-items: center; gap: 28px;
}

.verification-section .verification-text h2 {
    font-size: 2rem; color: #ffffff; margin-bottom: 10px;
}

.verification-section .verification-text p {
    color: rgba(255,255,255,0.72); margin: 0;
}

.verification-section .verification-form-wrapper { width: 100%; }

.verification-section .verification-form .form-group {
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
}

.verification-section .verification-form .form-control {
    width: 100%; padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: #fff; font-size: 1rem;
    outline: none; transition: border-color 0.2s;
}
.verification-section .verification-form .form-control:focus {
    border-color: rgba(255,255,255,0.40);
}
.verification-section .verification-form .form-control::placeholder {
    color: rgba(255,255,255,0.38);
}

.verification-section .verification-form .btn {
    padding: 13px 40px;
    background: #2A8F8F; color: #fff;
    border: none; border-radius: 8px;
    font-weight: 700; font-size: 0.95rem;
    cursor: pointer; letter-spacing: 0.5px;
    transition: background 0.2s;
}
.verification-section .verification-form .btn:hover {
    background: #1B6B6B;
}

/* Result states */
.verification-result { margin-top: 16px; width: 100%; }
.result-success, .result-error {
    padding: 20px; border-radius: 10px;
    text-align: center;
}
.result-success { background: rgba(46,204,113,0.12); border: 1px solid #2ecc71; }
.result-success i, .result-success h4 { color: #2ecc71; }
.result-error   { background: rgba(220,53,69,0.12); border: 1px solid #DC3545; }
.result-error i, .result-error h4   { color: #DC3545; }
.result-success i, .result-error i  { font-size: 2.2rem; margin-bottom: 8px; display: block; }
.result-success h4, .result-error h4 { margin-bottom: 6px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #0D3B3B 0%, #1B6B6B 60%, #2A8F8F 100%);
    padding: 96px 0;
    text-align: center; position: relative; overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    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%3Cg fill="%23ffffff" 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/svg%3E');
}

.cta-content {
    position: relative; z-index: 1;
    max-width: 660px; margin: 0 auto;
}

.cta-trust {
    display: inline-block;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: rgba(255,255,255,0.55); margin-bottom: 12px;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #ffffff; margin-bottom: 12px;
}

.cta-content > p {
    font-size: 1rem; color: rgba(255,255,255,0.78);
    line-height: 1.75; margin-bottom: 36px;
}

.cta-buttons {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #ffffff; color: #104444;
    border-color: #ffffff; font-weight: 700;
}
.cta-buttons .btn-primary:hover { background: rgba(255,255,255,0.88); }

.cta-buttons .btn-secondary {
    background: transparent;
    border-color: rgba(255,255,255,0.40); color: #fff;
}
.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.70);
}

.cta-closing {
    margin-top: 28px !important; display: block;
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.35) !important;
    font-style: italic;
}

/* ============================================================
   COURSE & NEWS CARDS
   ============================================================ */
.featured-courses-section { background: #F0F5F5; padding: 80px 0; }
.latest-news-section      { background: #F0F5F5; padding: 80px 0; }

.courses-grid,
.news-grid,
.schemes-grid { display: grid; gap: 24px; }
.courses-grid, .news-grid { grid-template-columns: repeat(3, 1fr); }
.schemes-grid { grid-template-columns: repeat(3, 1fr); }

.course-meta {
    display: flex; gap: 16px;
    margin-top: 10px; font-size: 0.82rem; color: #5A6F6F;
}
.course-meta .meta-item { display: flex; align-items: center; gap: 4px; }
.course-price { font-weight: 700; color: #1B6B6B; font-size: 1.05rem; }
.course-price.contact { color: #5A6F6F; font-size: 0.88rem; }

.post-date { font-size: 0.8rem; color: #5A6F6F; margin-bottom: 8px; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-4.features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }

    .home-hero { min-height: auto; }
    .home-hero .hero-container { padding: 72px 20px 56px; }
    .home-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 320px; gap: 0;
    }
    .home-hero .stat-item + .stat-item {
        border-left: none;
    }
    .home-hero .stat-item:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.15); }
    .home-hero .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; margin-top: 20px; }
    .home-hero .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.15); border-left: 1px solid rgba(255,255,255,0.15); padding-top: 20px; margin-top: 20px; }

    .quick-access-grid { grid-template-columns: 1fr; }

    .grid-2, .grid-3, .courses-grid, .news-grid, .schemes-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-pillars { gap: 14px; }
    .philosophy-pillar  { min-width: 90px; padding: 18px 14px; }

    .cta-section { padding: 64px 0; }
}

@media (max-width: 480px) {
    .home-hero .hero-buttons { flex-direction: column; align-items: center; }
    .home-hero .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ============================================================
   PAGE HERO BANNER (inner pages: LPK, LSP, Profil, Blog, Kontak)
   ============================================================ */
.page-hero-banner {
    background: linear-gradient(150deg, #0D3B3B 0%, #1B6B6B 60%, #2A8F8F 100%);
    padding: 72px 0 64px;
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero-banner::before {
    content: '';
    position: absolute; inset: 0;
    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%3Cg fill="%23ffffff" fill-opacity="0.04"%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/svg%3E');
}
.page-hero-banner h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ffffff; font-weight: 800;
    margin-bottom: 12px; position: relative;
}
.page-hero-banner p {
    font-size: 1.05rem; color: rgba(255,255,255,0.82);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
    position: relative;
}

/* Legacy classes (lpk-hero, lsp-hero, profil-hero, blog-hero) → sama */
.lpk-hero, .lsp-hero, .profil-hero, .blog-hero {
    background: linear-gradient(150deg, #0D3B3B 0%, #1B6B6B 60%, #2A8F8F 100%) !important;
    padding: 72px 0 64px;
    text-align: center; color: white; position: relative; overflow: hidden;
}
.lpk-hero h1, .lsp-hero h1, .profil-hero h1, .blog-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ffffff !important; font-weight: 800; margin-bottom: 12px;
}
.lpk-hero p, .lsp-hero p, .profil-hero p, .blog-hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.82) !important;
    max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ============================================================
   PAGE CTA SECTION (inner pages)
   ============================================================ */
.page-cta-section,
.cta-section {  /* override old cta-section yang flat */
    background: linear-gradient(135deg, #0D3B3B 0%, #1B6B6B 60%, #2A8F8F 100%);
    padding: 80px 0;
    text-align: center; position: relative; overflow: hidden;
}
.page-cta-section::before,
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    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%3Cg fill="%23ffffff" fill-opacity="0.04"%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/svg%3E');
    pointer-events: none;
}

.page-cta-content {
    position: relative; z-index: 1;
    max-width: 640px; margin: 0 auto;
}

/* Semua h2 dan p di dalam cta harus putih */
.page-cta-section h2,
.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #ffffff !important;
    margin-bottom: 12px;
}
.page-cta-section p,
.cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.80) !important;
    margin-bottom: 32px; line-height: 1.7;
}

.page-cta-buttons {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
}

/* Tombol putih solid */
.btn-white {
    background: #ffffff; color: #104444 !important;
    border: 2px solid #ffffff; font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); }

/* Tombol outline putih transparan */
.btn-outline-white {
    background: transparent; color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.45); font-weight: 600;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.72);
}

/* Fix: btn-primary di dalam cta sections → putih */
.page-cta-section .btn-primary,
.cta-section .btn-primary {
    background: #ffffff; color: #104444 !important;
    border-color: #ffffff; font-weight: 700;
}
.page-cta-section .btn-primary:hover,
.cta-section .btn-primary:hover {
    background: rgba(255,255,255,0.88);
}

/* ============================================================
   BLOG PAGE STYLES (replace inline styles)
   ============================================================ */
.blog-filter {
    display: flex; justify-content: center;
    gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.blog-filter .filter-btn {
    padding: 9px 22px;
    border: 2px solid #1B6B6B;
    background: white; color: #1B6B6B;
    border-radius: 25px; cursor: pointer;
    font-weight: 600; transition: all 0.25s;
    font-size: 0.88rem;
}
.blog-filter .filter-btn:hover,
.blog-filter .filter-btn.active {
    background: #1B6B6B; color: white;
}

.blog-meta {
    display: flex; gap: 14px;
    font-size: 0.78rem; color: #5A6F6F;
    margin-bottom: 10px; flex-wrap: wrap;
    align-items: center;
}
.blog-meta i { margin-right: 4px; }
.blog-date { color: #5A6F6F; }
.blog-category a { color: #1B6B6B; font-weight: 600; }

.blog-placeholder {
    height: 200px; display: flex;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1B6B6B, #2A8F8F) !important;
}
.blog-placeholder i { font-size: 48px; color: rgba(255,255,255,0.3); }

.blog-footer {
    display: flex; justify-content: space-between;
    align-items: center; margin-top: 14px;
    padding-top: 14px; border-top: 1px solid #E2EAEA;
}
.blog-author { font-size: 0.78rem; color: #5A6F6F; }
.read-more {
    font-size: 0.82rem; font-weight: 700;
    color: #1B6B6B; display: flex;
    align-items: center; gap: 5px; text-decoration: none;
    transition: color 0.2s;
}
.read-more:hover { color: #2A8F8F; }
.read-more i { font-size: 0.72rem; transition: transform 0.2s; }
.read-more:hover i { transform: translateX(4px); }

.blog-pagination {
    display: flex; justify-content: center; margin-top: 48px; gap: 8px;
}
.blog-pagination a, .blog-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 10px;
    border: 2px solid #E2EAEA; border-radius: 8px;
    color: #1E2E2E; text-decoration: none; transition: all 0.2s;
    font-size: 0.88rem;
}
.blog-pagination a:hover,
.blog-pagination span.current {
    background: #1B6B6B; border-color: #1B6B6B; color: white;
}

.no-posts {
    text-align: center; padding: 60px 20px;
    grid-column: 1 / -1; color: #5A6F6F;
}

/* Newsletter */
.newsletter-wrapper {
    display: flex; justify-content: space-between;
    align-items: center; gap: 28px;
    background: white; padding: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(27,107,107,0.08);
    flex-wrap: wrap;
}
.newsletter-content { flex: 1; min-width: 250px; }
.newsletter-content h3 { color: #1E2E2E; margin-bottom: 8px; }
.newsletter-content p { color: #5A6F6F; margin: 0; font-size: 0.93rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
    padding: 11px 18px; border: 2px solid #E2EAEA;
    border-radius: 8px; font-size: 0.95rem; min-width: 240px;
    transition: border-color 0.2s;
}
.newsletter-form input:focus { outline: none; border-color: #1B6B6B; }

/* ============================================================
   SIDEBAR — Blog
   ============================================================ */
.content-sidebar-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.sidebar-widget {
    background: #fff; border-radius: 14px;
    padding: 24px;
    box-shadow: 0 3px 14px rgba(27,107,107,0.07);
    margin-bottom: 24px;
    border: 1px solid rgba(27,107,107,0.06);
}
.widget-title {
    font-size: 1rem; font-weight: 700;
    color: #1E2E2E; margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1B6B6B;
}

/* Search widget */
.search-input-wrapper { display: flex; gap: 8px; }
.search-input-wrapper .search-field {
    flex: 1; padding: 10px 14px;
    border: 2px solid #E2EAEA; border-radius: 8px; font-size: 0.9rem;
}
.search-input-wrapper .search-field:focus { outline: none; border-color: #1B6B6B; }
.search-input-wrapper .search-submit {
    padding: 10px 16px; background: #1B6B6B; color: white;
    border: none; border-radius: 8px; cursor: pointer; transition: background 0.2s;
}
.search-input-wrapper .search-submit:hover { background: #104444; }

/* Recent posts widget */
.recent-posts-list { list-style: none; padding: 0; margin: 0; }
.recent-posts-list li {
    padding: 10px 0; border-bottom: 1px solid #E2EAEA;
    display: flex; gap: 10px; align-items: flex-start;
}
.recent-posts-list li:last-child { border-bottom: none; padding-bottom: 0; }
.recent-posts-list a {
    font-size: 0.88rem; color: #1E2E2E; text-decoration: none;
    font-weight: 600; line-height: 1.4; transition: color 0.2s;
}
.recent-posts-list a:hover { color: #1B6B6B; }
.recent-post-date { font-size: 0.75rem; color: #5A6F6F; margin-top: 3px; display: block; }

/* Category widget */
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { padding: 7px 0; border-bottom: 1px solid #E2EAEA; }
.category-list li:last-child { border-bottom: none; }
.category-list a {
    display: flex; justify-content: space-between; align-items: center;
    color: #1E2E2E; text-decoration: none; font-size: 0.9rem;
    transition: color 0.2s;
}
.category-list a:hover { color: #1B6B6B; }
.category-count {
    background: #EFF5F5; color: #1B6B6B;
    padding: 2px 8px; border-radius: 12px;
    font-size: 0.75rem; font-weight: 700;
}

@media (max-width: 900px) {
    .content-sidebar-wrap { grid-template-columns: 1fr; }
    .newsletter-wrapper { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; justify-content: center; }
    .newsletter-form input { min-width: 100%; }
}

/* ============================================================
   SIDEBAR WIDGETS — Kursus, Newsletter, Artikel Pilihan
   ============================================================ */

/* Kursus list */
.sidebar-courses-list {
    list-style: none; padding: 0; margin: 0 0 16px;
}
.sidebar-course-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px solid #E2EAEA;
}
.sidebar-course-item:last-child { border-bottom: none; }

.sidebar-course-thumb { flex-shrink: 0; }
.sidebar-thumb-img {
    width: 64px; height: 52px;
    object-fit: cover; border-radius: 8px; display: block;
}

.sidebar-course-info { flex: 1; min-width: 0; }
.sidebar-course-title {
    display: block; font-size: 0.85rem; font-weight: 700;
    color: #1E2E2E; text-decoration: none; line-height: 1.35;
    margin-bottom: 4px; transition: color 0.2s;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sidebar-course-title:hover { color: #1B6B6B; }
.sidebar-course-level {
    display: inline-block; font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    background: rgba(27,107,107,0.08); color: #1B6B6B;
    padding: 2px 7px; border-radius: 10px; margin-right: 6px;
}
.sidebar-course-price {
    font-size: 0.82rem; font-weight: 700; color: #1B6B6B;
}
.sidebar-course-price.free { color: #5A6F6F; font-weight: 600; }

.sidebar-all-btn {
    display: flex; width: 100%; justify-content: center;
    margin-top: 4px;
}
.sidebar-empty { color: #5A6F6F; font-size: 0.88rem; }

/* Newsletter widget */
.sidebar-widget-newsletter {
    background: linear-gradient(135deg, #0D3B3B, #1B6B6B) !important;
    border: none !important;
}
.sidebar-widget-newsletter .widget-title {
    color: #ffffff; border-bottom-color: rgba(255,255,255,0.25);
}
.sidebar-newsletter-icon {
    font-size: 1.75rem; color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}
.sidebar-newsletter-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.75);
    line-height: 1.6; margin-bottom: 16px;
}
.sidebar-newsletter-form {
    display: flex; flex-direction: column; gap: 10px;
}
.sidebar-newsletter-form input {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff; font-size: 0.88rem;
}
.sidebar-newsletter-form input::placeholder { color: rgba(255,255,255,0.40); }
.sidebar-newsletter-form input:focus {
    outline: none; border-color: rgba(255,255,255,0.45);
}
.sidebar-newsletter-form .btn-primary {
    background: #2A8F8F; border-color: #2A8F8F;
    color: #fff; font-weight: 700; justify-content: center;
}
.sidebar-newsletter-form .btn-primary:hover { background: #1B6B6B; border-color: #1B6B6B; }

/* Artikel Pilihan */
.recent-posts-list { list-style: none; padding: 0; margin: 0; }
.recent-posts-list li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px solid #E2EAEA;
}
.recent-posts-list li:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-thumb {
    width: 60px; height: 50px;
    object-fit: cover; border-radius: 6px;
    display: block; flex-shrink: 0;
}
.recent-posts-list a {
    font-size: 0.85rem; color: #1E2E2E; text-decoration: none;
    font-weight: 600; line-height: 1.35; transition: color 0.2s;
    display: block; margin-bottom: 4px;
}
.recent-posts-list a:hover { color: #1B6B6B; }
.recent-post-date {
    font-size: 0.72rem; color: #5A6F6F;
    display: block;
}
.recent-post-date i { margin-right: 3px; }

/* WP default search form override */
.blog-sidebar .search-form { display: flex; gap: 8px; }
.blog-sidebar .search-field {
    flex: 1; padding: 10px 14px;
    border: 2px solid #E2EAEA; border-radius: 8px;
    font-size: 0.9rem; transition: border-color 0.2s;
}
.blog-sidebar .search-field:focus { outline: none; border-color: #1B6B6B; }
.blog-sidebar .search-submit {
    padding: 10px 16px; background: #1B6B6B; color: white;
    border: none; border-radius: 8px; cursor: pointer;
    font-size: 0.85rem; transition: background 0.2s;
}
.blog-sidebar .search-submit:hover { background: #104444; }

/* ============================================================
   SIDEBAR — Blog Widgets (LPK-relevant)
   ============================================================ */

/* Courses list */
.sidebar-courses-list {
    list-style: none; padding: 0; margin: 0 0 14px;
}
.sidebar-courses-list li {
    padding: 9px 0;
    border-bottom: 1px solid #E2EAEA;
}
.sidebar-courses-list li:last-child { border-bottom: none; }
.sidebar-courses-list a {
    display: flex; justify-content: space-between;
    align-items: center; gap: 8px;
    text-decoration: none; transition: color 0.2s;
}
.sidebar-courses-list a:hover .sidebar-course-title { color: #1B6B6B; }
.sidebar-course-title {
    font-size: 0.88rem; font-weight: 600;
    color: #1E2E2E; line-height: 1.35; flex: 1;
}
.sidebar-course-badge {
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    background: rgba(27,107,107,0.08);
    color: #1B6B6B; padding: 2px 8px;
    border-radius: 10px; white-space: nowrap; flex-shrink: 0;
}
.sidebar-empty a {
    color: #1B6B6B; font-size: 0.88rem;
    font-weight: 600; text-decoration: none;
}
.sidebar-more-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem; font-weight: 700;
    color: #1B6B6B; text-decoration: none;
    transition: gap 0.2s;
}
.sidebar-more-link:hover { gap: 10px; }

/* Newsletter widget */
.sidebar-newsletter { background: linear-gradient(135deg, #EFF5F5, #fff); }
.sidebar-newsletter-desc {
    font-size: 0.88rem; color: #5A6F6F;
    margin-bottom: 14px; line-height: 1.55;
}
.sidebar-newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.sidebar-newsletter-form input {
    padding: 10px 14px;
    border: 2px solid #E2EAEA; border-radius: 8px;
    font-size: 0.9rem; width: 100%;
    transition: border-color 0.2s;
}
.sidebar-newsletter-form input:focus {
    outline: none; border-color: #1B6B6B;
}

/* Artikel Pilihan — with thumbnail */
.recent-posts-list li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px solid #E2EAEA;
}
.recent-posts-list li:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-post-thumb { flex-shrink: 0; }
.sidebar-thumb-img {
    width: 56px; height: 56px;
    object-fit: cover; border-radius: 8px; display: block;
}

.recent-posts-list a {
    font-size: 0.87rem; font-weight: 600;
    color: #1E2E2E; text-decoration: none;
    line-height: 1.4; display: block;
    margin-bottom: 4px; transition: color 0.2s;
}
.recent-posts-list a:hover { color: #1B6B6B; }
.recent-post-date {
    font-size: 0.74rem; color: #5A6F6F; display: block;
}
.recent-post-date i { margin-right: 3px; }

/* Widget title icons */
.widget-title i {
    margin-right: 7px; color: #1B6B6B;
    font-size: 0.9rem;
}

/* ============================================================
   PROFIL PAGE — Stats, Vision/Mission, Values, Legal
   ============================================================ */

/* Stats Section */
.stats-section { background: #1B6B6B; padding: 64px 0; }

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

.stats-section .stat-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stats-section .stat-item:last-child { border-right: none; }

.stat-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.stats-section .stat-number {
    display: block;
    font-size: 2.4rem; font-weight: 800;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}

.stats-section .stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.vm-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(27,107,107,0.08);
    border-left: 4px solid #1B6B6B;
}

.vm-icon {
    width: 52px; height: 52px;
    background: rgba(27,107,107,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #1B6B6B;
    margin-bottom: 16px;
}

.vm-card h3 {
    font-size: 1.3rem; font-weight: 700;
    color: #1E2E2E; margin-bottom: 14px;
}

.vm-card p {
    color: #5A6F6F; line-height: 1.75; margin: 0; font-size: 0.95rem;
}

.vm-card ul {
    padding-left: 0; margin: 0;
    list-style: none;
}

.vm-card ul li {
    padding: 7px 0 7px 24px;
    position: relative;
    color: #5A6F6F; font-size: 0.93rem;
    border-bottom: 1px solid #E2EAEA;
}
.vm-card ul li:last-child { border-bottom: none; }
.vm-card ul li::before {
    content: '';
    position: absolute; left: 0; top: 14px;
    width: 8px; height: 8px;
    background: #2A8F8F;
    border-radius: 50%;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-item {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(27,107,107,0.07);
    border: 1px solid rgba(27,107,107,0.06);
    transition: transform 0.25s ease;
}
.value-item:hover { transform: translateY(-4px); }

.value-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #1B6B6B, #2A8F8F);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    margin: 0 auto 16px;
}

.value-item h4 { font-size: 1rem; font-weight: 700; color: #1E2E2E; margin-bottom: 8px; }
.value-item p  { font-size: 0.88rem; color: #5A6F6F; line-height: 1.65; margin: 0; }

/* Legalitas */
.section-dark { background: #0F3333; }
.section-dark .section-title h2 { color: #ffffff; }
.section-dark .section-title h2::after { background: linear-gradient(90deg, #2A8F8F, #3AABAB); }

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

.legal-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: background 0.25s ease;
}
.legal-item:hover { background: rgba(255,255,255,0.10); }

.legal-icon {
    width: 56px; height: 56px;
    background: rgba(42,143,143,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #3AABAB;
    margin: 0 auto 14px;
}

.legal-item h4 { font-size: 0.95rem; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
.legal-item p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
    background: linear-gradient(150deg, #0D3B3B 0%, #1B6B6B 60%, #2A8F8F 100%);
    padding: 72px 0 64px;
    text-align: center; position: relative; overflow: hidden;
}
.contact-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ffffff; font-weight: 800; margin-bottom: 12px;
}
.contact-hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.82);
    max-width: 500px; margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 1.5rem; font-weight: 700;
    color: #1E2E2E; margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2EAEA;
}

.contact-form .form-group { margin-bottom: 18px; }

.contact-form label {
    display: block; font-size: 0.88rem;
    font-weight: 600; color: #1E2E2E; margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 11px 14px;
    border: 2px solid #E2EAEA; border-radius: 8px;
    font-size: 0.93rem; color: #1E2E2E;
    transition: border-color 0.2s; background: #fff;
    font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none; border-color: #1B6B6B;
}
.contact-form textarea { resize: vertical; min-height: 130px; }

/* Contact Info */
.contact-info-wrapper {
    background: #EFF5F5; border-radius: 16px; padding: 32px;
}

.contact-info-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 14px 0; border-bottom: 1px solid #E2EAEA;
}
.contact-info-item:last-of-type { border-bottom: none; }

.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: #1B6B6B; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #fff;
}

.contact-details h4 {
    font-size: 0.85rem; font-weight: 700;
    color: #1E2E2E; margin-bottom: 3px;
}
.contact-details p { font-size: 0.88rem; color: #5A6F6F; margin: 0; line-height: 1.5; }

.contact-social { padding-top: 20px; }
.contact-social h4 { font-size: 0.88rem; font-weight: 700; color: #1E2E2E; margin-bottom: 12px; }
.contact-social .social-links { display: flex; gap: 10px; }
.contact-social .social-links a {
    width: 38px; height: 38px;
    background: #1B6B6B; color: #fff;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; transition: background 0.2s;
    text-decoration: none;
}
.contact-social .social-links a:hover { background: #104444; }

/* Map */
.map-wrapper h2 {
    font-size: 1.5rem; font-weight: 700;
    color: #1E2E2E; margin-bottom: 20px;
}
.map-container {
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(27,107,107,0.10);
}

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.page-banner {
    background: linear-gradient(150deg, #0D3B3B 0%, #1B6B6B 60%, #2A8F8F 100%);
    padding: 64px 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.page-banner .banner-overlay {
    position: absolute; inset: 0;
    background: rgba(10,40,40,0.45);
}
.page-banner .banner-content { position: relative; z-index: 1; }
.page-banner .banner-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #ffffff; font-weight: 700;
    margin-bottom: 10px;
}
.page-banner .breadcrumb { color: rgba(255,255,255,0.70); font-size: 0.85rem; }
.page-banner .breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }

.single-post-section { background: #f8fafa; }

.single-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.single-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(27,107,107,0.07);
}

.post-thumbnail img {
    width: 100%; max-height: 460px;
    object-fit: cover; display: block;
}

.post-header { padding: 28px 32px 0; }

.post-meta {
    display: flex; flex-wrap: wrap; gap: 14px;
    font-size: 0.82rem; color: #5A6F6F;
    padding-bottom: 18px;
    border-bottom: 1px solid #E2EAEA;
}
.post-meta span { display: flex; align-items: center; gap: 5px; }
.post-meta i { color: #2A8F8F; }
.post-meta a { color: #1B6B6B; text-decoration: none; font-weight: 600; }

.post-content {
    padding: 24px 32px 28px;
    font-size: 1rem; line-height: 1.85;
    color: #374040;
}
.post-content h2, .post-content h3, .post-content h4 {
    color: #1E2E2E; margin: 24px 0 12px;
}
.post-content p { margin-bottom: 16px; }
.post-content a { color: #1B6B6B; }
.post-content ul, .post-content ol {
    padding-left: 24px; margin-bottom: 16px;
}
.post-content li { margin-bottom: 6px; }
.post-content blockquote {
    border-left: 4px solid #2A8F8F;
    background: #EFF5F5;
    padding: 16px 20px; margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic; color: #5A6F6F;
}
.post-content img { max-width: 100%; border-radius: 8px; }

/* Tags */
.post-tags {
    padding: 16px 32px;
    border-top: 1px solid #E2EAEA;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.tags-label { font-size: 0.82rem; font-weight: 700; color: #1E2E2E; }
.tags-list { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; padding: 0; margin: 0; }
.tags-list li a {
    padding: 4px 12px; background: #EFF5F5; color: #1B6B6B;
    border-radius: 20px; font-size: 0.78rem; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
}
.tags-list li a:hover { background: #1B6B6B; color: #fff; }

/* Share */
.post-share {
    padding: 16px 32px 28px;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.share-label { font-size: 0.82rem; font-weight: 700; color: #1E2E2E; }
.share-buttons { display: flex; gap: 8px; }
.share-btn {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: #fff; text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.85; }
.share-btn.facebook  { background: #1877F2; }
.share-btn.twitter   { background: #1DA1F2; }
.share-btn.linkedin  { background: #0A66C2; }
.share-btn.whatsapp  { background: #25D366; }

/* Post navigation */
.post-navigation {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 28px;
}
.nav-previous, .nav-next {
    background: #fff; border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(27,107,107,0.07);
    text-decoration: none; display: block;
    transition: box-shadow 0.2s;
}
.nav-previous:hover, .nav-next:hover {
    box-shadow: 0 6px 20px rgba(27,107,107,0.13);
}
.nav-next { text-align: right; }
.nav-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: #2A8F8F; font-weight: 700; margin-bottom: 4px; }
.nav-title { font-size: 0.9rem; font-weight: 600; color: #1E2E2E; line-height: 1.35; }

/* Author box */
.author-box {
    background: #EFF5F5; border-radius: 14px;
    padding: 24px; margin-top: 28px;
    display: flex; gap: 20px; align-items: flex-start;
}
.author-avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.author-name { font-size: 1rem; font-weight: 700; color: #1E2E2E; margin-bottom: 4px; }
.author-bio  { font-size: 0.88rem; color: #5A6F6F; line-height: 1.6; }

/* Related posts */
.related-posts { margin-top: 32px; }
.related-posts h3 { font-size: 1.2rem; font-weight: 700; color: #1E2E2E; margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Sidebar single */
.sidebar { position: sticky; top: 24px; }

/* ============================================================
   LSP PAGE — Process steps, verification inline
   ============================================================ */
.process-steps {
    display: flex;
    gap: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
}

.process-step {
    text-align: center;
    flex: 1; min-width: 120px; max-width: 180px;
    position: relative;
    padding: 20px 16px;
}

.process-step-number {
    width: 48px; height: 48px;
    background: #1B6B6B; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800;
    margin: 0 auto 12px;
    position: relative; z-index: 1;
}

.process-step-title { font-size: 0.88rem; font-weight: 700; color: #1E2E2E; margin-bottom: 6px; }
.process-step-desc  { font-size: 0.78rem; color: #5A6F6F; line-height: 1.5; }

.process-arrow {
    display: flex; align-items: center;
    color: #2A8F8F; font-size: 1.2rem;
    margin-top: 28px; flex-shrink: 0;
}

/* Verification inline (LSP page) */
.verification-inline {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #EFF5F5;
    border-radius: 12px;
    padding: 24px 28px;
    flex-wrap: wrap;
}
.verification-inline h3 {
    font-size: 1.1rem; font-weight: 700;
    color: #1E2E2E; margin-bottom: 4px;
}
.verification-inline p {
    font-size: 0.88rem; color: #5A6F6F; margin: 0;
}
.verification-form-inline {
    display: flex; gap: 10px; flex: 1; flex-wrap: wrap;
}
.verification-form-inline input {
    flex: 1; min-width: 200px;
    padding: 11px 14px;
    border: 2px solid #E2EAEA; border-radius: 8px;
    font-size: 0.93rem;
    transition: border-color 0.2s;
}
.verification-form-inline input:focus {
    outline: none; border-color: #1B6B6B;
}

/* ============================================================
   RESPONSIVE — New pages
   ============================================================ */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .single-layout { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-section .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .stats-section .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
    .stats-section .stat-item:last-child, .stats-section .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

    .legal-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-arrow { transform: rotate(90deg); margin: 0; }

    .post-header, .post-content, .post-tags, .post-share { padding-left: 20px; padding-right: 20px; }
}
