/* ========================================
   BASE.CSS - STYLES GLOBAL
   ========================================
   File ini dimuat di SEMUA halaman.
   Berisi: reset, typography, layout, header,
   navigation, footer, forms, buttons, widgets,
   utilities, dan responsive dasar.
   ======================================== */

/* ========================================
   1. RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a2e;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4f46e5;
}

ul,
ol {
    padding-left: 24px;
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 16px;
}

/* ========================================
   3. LAYOUT & CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

/* ========================================
   4. HEADER
   ======================================== */
.site-header {
    position: relative;
    padding: 16px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-logo-wrapper img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.site-title a {
    color: #1a1a2e;
    text-decoration: none;
}

.site-title a:hover {
    color: #6366f1;
}

.site-description {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}



/* ========================================
   5. NAVIGATION
   ======================================== */
.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: #f1f5f9;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.hamburger-icon .line {
    display: block;
    height: 2.5px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-icon .line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active .hamburger-icon .line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-icon .line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.primary-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}
/* ===== Ikon Hamburger ===== */
.menu-toggle .hamburger-icon .line {
    background: var(--mytheme-header-link, #1a1a2e);
}

 
.primary-menu li {
    position: relative;
    margin: 0;
}

.primary-menu a {
    display: block;
    padding: 10px 16px;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a,
.primary-menu .current_page_item a,
.primary-menu .current_page_parent a {
    color: #6366f1;
    background: #eef2ff;
}

.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    list-style: none;
    z-index: 999;
    border: 1px solid #e2e8f0;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li.focus > .sub-menu {
    display: block;
}

.primary-menu .sub-menu li {
    margin: 0;
}

.primary-menu .sub-menu a {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
}

.primary-menu .sub-menu a:hover {
    background: #f8fafc;
}

.dropdown-icon {
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.primary-menu li:hover > a .dropdown-icon {
    transform: rotate(180deg);
}

/* ========================================
   6. BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* ========================================
   7. FORMS
   ======================================== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #6366f1;
    outline: none;
}

/* ========================================
   8. WIDGETS
   ======================================== */
.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #1a1a2e;
    text-decoration: none;
}

.widget ul li a:hover {
    color: #6366f1;
}

.widget_search .search-form {
    display: flex;
    gap: 8px;
}

.widget_search .search-form input[type="search"] {
    flex: 1;
}

.widget_search .search-form button {
    padding: 10px 20px;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.widget_search .search-form button:hover {
    background: #4f46e5;
}

.tagcloud a {
    display: inline-block;
    padding: 4px 12px;
    margin: 0 4px 8px 0;
    background: #f1f5f9;
    border-radius: 50px;
    font-size: 13px !important;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tagcloud a:hover {
    background: #6366f1;
    color: #ffffff;
}

/* ========================================
   9. FOOTER
   ======================================== */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    margin-top: 60px;
}

.footer-widgets {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* Footer MAIN */



.footer-main {
    padding: 60px 0 40px;
}






/* ========================================
   FOOTER MAIN - ELEGAN & PRESISI (FIXED)
   ======================================== */

.site-footer {
    background: var(--mytheme-footer-bg, #0F1A2E);
    color: var(--mytheme-footer-text, #9E9A94);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative top border */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--mytheme-accent, #C9A84C) 0%, 
        var(--mytheme-accent, #C9A84C) 40%,
        transparent 80%,
        transparent 100%
    );
    opacity: 0.6;
}

/* ========================================
   FOOTER MAIN CONTAINER
   ======================================== */

.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   FOOTER GRID - 3 KOLOM PRESISI (RECOMMENDED)
   ======================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.2fr;  /* Branding 1, Artikel 1.6, Kontak 1.2 */
    gap: 40px 60px;
    align-items: start;
}

/* ========================================
   FOOTER COLUMN STYLING
   ======================================== */

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Column Titles */
.footer-col-title {
    color: var(--mytheme-footer-heading, #FFFFFF);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    padding-bottom: 14px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* Underline accent */
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2.5px;
    background: var(--mytheme-accent, #C9A84C);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col:hover .footer-col-title::after {
    width: 55px;
}

/* ========================================
   COLUMN 1 - BRANDING
   ======================================== */

.footer-col-brand {
    gap: 18px;
}

.footer-logo {
    margin-bottom: 4px;
}

.footer-logo .custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo .custom-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(201, 168, 76, 0.25));
    transform: scale(1.02);
}

.footer-site-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-site-title a {
    color: var(--mytheme-footer-heading, #FFFFFF);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-site-title a:hover {
    color: var(--mytheme-accent, #C9A84C);
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--mytheme-footer-text, #9E9A94);
    margin: 0;
    max-width: 300px;
    opacity: 0.85;
}

/* Social Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.social-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--mytheme-footer-text, #9E9A94);
    letter-spacing: 0.3px;
    opacity: 0.7;
}

.social-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-menu li {
    margin: 0;
}

.social-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--mytheme-footer-text, #9E9A94);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-menu a:hover {
    background: var(--mytheme-accent, #C9A84C);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
    border-color: var(--mytheme-accent, #C9A84C);
}

/* ========================================
   COLUMN 2 - RECENT POSTS (LEBIH LEBAR)
   ======================================== */

.footer-col-posts {
    gap: 14px;
}

.footer-recent-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-recent-posts li {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.footer-recent-posts li:first-child {
    padding-top: 0;
}

.footer-recent-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-recent-posts li:hover {
    border-color: rgba(201, 168, 76, 0.2);
    padding-left: 4px;
}

.footer-recent-posts a {
    color: var(--mytheme-footer-text, #9E9A94);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    display: block;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-recent-posts a:hover {
    color: var(--mytheme-footer-heading, #FFFFFF);
}

.footer-recent-posts .post-date {
    font-size: 12px;
    color: var(--mytheme-footer-text, #9E9A94);
    opacity: 0.4;
    display: block;
    margin-top: 3px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ========================================
   COLUMN 3 - CONTACT INFO
   ======================================== */

.footer-col-contact {
    gap: 14px;
}

.footer-contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-contact-info li {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--mytheme-footer-text, #9E9A94);
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.footer-contact-info li:first-child {
    padding-top: 0;
    background: transparent;
}

.footer-contact-info li:last-child {
    padding-bottom: 0;
}

.footer-contact-info li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.footer-contact-info li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--mytheme-accent, #C9A84C);
    margin-top: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-contact-info li:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.footer-contact-info li span,
.footer-contact-info li a {
    color: var(--mytheme-footer-text, #9E9A94);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.footer-contact-info li a:hover {
    color: var(--mytheme-footer-heading, #FFFFFF);
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */

.footer-bottom {
    border-top: 1px solid var(--mytheme-footer-border, #1B2F4A);
    padding: 20px 0;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.footer-copyright {
    margin: 0;
    color: var(--mytheme-footer-text, #9E9A94);
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.footer-copyright a {
    color: var(--mytheme-footer-text, #9E9A94);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-copyright a:hover {
    color: var(--mytheme-footer-heading, #FFFFFF);
}

.footer-credit {
    margin: 0;
    color: var(--mytheme-footer-text, #9E9A94);
    opacity: 0.5;
    font-size: 12px;
    font-weight: 300;
}

.footer-credit a {
    color: var(--mytheme-footer-text, #9E9A94);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--mytheme-footer-heading, #FFFFFF);
    opacity: 1;
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at bottom right, 
        rgba(201, 168, 76, 0.04) 0%, 
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 50px;
    }
    
    .footer-col-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col:hover .footer-col-title::after {
        width: 55px;
        transform: translateX(-50%);
    }
    
    .footer-contact-info li {
        padding: 10px 16px;
    }
    
    .footer-contact-info li:first-child {
        padding-top: 10px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col {
        text-align: center;
        align-items: center;
    }
    
    .footer-col-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-description {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col:hover .footer-col-title::after {
        width: 55px;
        transform: translateX(-50%);
    }
    
    .footer-recent-posts li {
        text-align: center;
        padding: 10px 0;
    }
    
    .footer-recent-posts li:hover {
        padding-left: 0;
    }
    
    .footer-contact-info li {
        justify-content: center;
        padding: 10px 16px;
        width: 100%;
        max-width: 340px;
    }
    
    .footer-contact-info li:first-child {
        padding-top: 10px;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .footer-contact-info li:hover {
        transform: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-logo .custom-logo {
        max-height: 50px;
    }
}

/* Very Small Mobile */
@media (max-width: 400px) {
    .footer-main .container {
        padding: 0 16px;
    }
    
    .footer-contact-info li {
        font-size: 13px;
        padding: 8px 12px;
        max-width: 100%;
    }
    
    .social-menu a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}
















/* ========================================
   10. UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background: #ffffff;
    clip: auto !important;
    clip-path: none;
    color: #1a1a2e;
    display: block;
    font-size: 14px;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 12px 20px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px 24px;
    z-index: 999999;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
}

.skip-link:focus {
    top: 10px;
}

/* ========================================
   11. RESPONSIVE (BASE)
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
	
	  .menu-toggle {
        display: flex !important; /* pastikan muncul */
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 8px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .hamburger-icon .line {
        background: var(--mytheme-header-link, #ffffff); /* lebih cerah di mobile */
    }



    .primary-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 0;
    }

    .primary-menu.active {
        display: flex;
    }

    .primary-menu li {
        width: 100%;
    }

    .primary-menu a {
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .primary-menu .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: transparent;
        border-radius: 0;
    }

    .primary-menu .sub-menu a {
        padding: 10px 0;
        border-bottom: none;
    }

    .primary-menu li:hover > .sub-menu,
    .primary-menu li.focus > .sub-menu {
        display: none;
    }

    .primary-menu li.active > .sub-menu {
        display: block;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-widgets {
        padding: 40px 0 20px;
    }

    .footer-widgets-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-social .social-menu {
        justify-content: flex-start;
    }

    .search-dropdown .search-form {
        flex-direction: column;
    }

    .search-dropdown .search-form button {
        width: 100%;
        justify-content: center;
    }

    .widget_search .search-form {
        flex-direction: column;
    }

    .widget_search .search-form button {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .footer-social .social-menu a {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 13px;
    }
}

/* ========================================
   SELECTION / HIGHLIGHT
   ======================================== */
::selection {
    background: #6366f1;
    color: #ffffff;
}

::-moz-selection {
    background: #6366f1;
    color: #ffffff;
}

/* ========================================
   CONTENT SECTION
   ======================================== */

.content-section {
    padding: 60px 0;
    background: #ffffff;
}

.content-section .entry-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #1a1a2e;
}

.content-section .entry-content h1,
.content-section .entry-content h2,
.content-section .entry-content h3,
.content-section .entry-content h4,
.content-section .entry-content h5,
.content-section .entry-content h6 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.content-section .entry-content h2 {
    font-size: 28px;
}

.content-section .entry-content h3 {
    font-size: 22px;
}

.content-section .entry-content p {
    margin-bottom: 20px;
}

.content-section .entry-content a {
    color: #6366f1;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.content-section .entry-content a:hover {
    color: #4f46e5;
}

.content-section .entry-content ul,
.content-section .entry-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.content-section .entry-content ul li,
.content-section .entry-content ol li {
    margin-bottom: 8px;
}

.content-section .entry-content blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid #6366f1;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #334155;
}

.content-section .entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.content-section .entry-content .wp-block-image {
    margin: 24px 0;
}

.content-section .entry-content .wp-block-image img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.content-section .entry-content .wp-block-image figcaption {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
}

.content-section .entry-content .wp-block-button .wp-block-button__link {
    display: inline-block;
    padding: 12px 28px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.content-section .entry-content .wp-block-button .wp-block-button__link:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.content-section .entry-content .wp-block-columns {
    gap: 30px;
    margin: 24px 0;
}

.content-section .entry-content .wp-block-column {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

/* ========================================
   RESPONSIVE CONTENT SECTION
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .content-section {
        padding: 50px 0;
    }

    .content-section .entry-content {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }

    .content-section .entry-content {
        font-size: 15px;
        padding: 0 4px;
    }

    .content-section .entry-content h2 {
        font-size: 24px;
    }

    .content-section .entry-content h3 {
        font-size: 20px;
    }

    .content-section .entry-content blockquote {
        padding: 12px 16px;
        margin: 16px 0;
    }

    .content-section .entry-content .wp-block-columns {
        flex-direction: column;
        gap: 16px;
    }

    .content-section .entry-content .wp-block-column {
        padding: 16px;
    }

    .content-section .entry-content .wp-block-button .wp-block-button__link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .content-section {
        padding: 30px 0;
    }

    .content-section .entry-content {
        font-size: 14px;
    }

    .content-section .entry-content h2 {
        font-size: 20px;
    }

    .content-section .entry-content h3 {
        font-size: 18px;
    }

    .content-section .entry-content ul,
    .content-section .entry-content ol {
        padding-left: 18px;
    }
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    padding: 16px 0;
    font-size: 14px;
    color: #64748b;
    background: transparent;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #94a3b8;
    font-weight: 300;
}

.breadcrumb-link {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.breadcrumb-item.current {
    color: #1a1a2e;
    font-weight: 600;
}

.breadcrumb-item.current span {
    color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 13px;
        padding: 12px 0;
    }
    .breadcrumb-item:not(:last-child)::after {
        margin-left: 4px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 12px;
        padding: 10px 0;
    }
}
/* ========================================
   SOSIAL MEDIA ICONS - FOOTER
   ======================================== */
/* ========================================
   SOSIAL MEDIA ICONS - FONT AWESOME 7.3.1
   ======================================== */
/* ========================================
   SOSIAL MEDIA ICONS - ELEGAN & MEWAH
   ======================================== */

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 8px 0;
}

.social-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--mytheme-footer-text, #9E9A94);
    opacity: 0.7;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-right: 16px;
}

/* Garis pemisah setelah label */
.social-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.social-menu-container {
    display: inline-flex;
}

.social-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-menu li {
    margin: 0;
}

/* ========================================
   BASE STYLE - LINGKARAN BERSINAR
   ======================================== */

.social-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--mytheme-footer-text, #9E9A94);
    font-size: 0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Efek glow ring di belakang */
.social-menu a::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.social-menu a .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   ICON STYLING
   ======================================== */

.social-menu a::before {
    font-family: "Font Awesome 7 Brands";
    font-weight: 400;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   ICON MAPPING
   ======================================== */

.social-menu a[href*="facebook.com"]::before {
    content: "\f39e";
}

.social-menu a[href*="instagram.com"]::before {
    content: "\f16d";
}

.social-menu a[href*="youtube.com"]::before,
.social-menu a[href*="youtu.be"]::before {
    content: "\f167";
}

.social-menu a[href*="twitter.com"]::before,
.social-menu a[href*="x.com"]::before {
    content: "\f099";
}

.social-menu a[href*="tiktok.com"]::before {
    content: "\e07b";
}

.social-menu a[href*="linkedin.com"]::before {
    content: "\f08c";
}

.social-menu a[href*="wa.me"]::before,
.social-menu a[href*="whatsapp.com"]::before {
    content: "\f232";
}

.social-menu a[href*="pinterest.com"]::before {
    content: "\f0d2";
}

.social-menu a[href*="t.me"]::before {
    content: "\f2c6";
}

/* ========================================
   HOVER EFFECT - ELEGAN
   ======================================== */

/* Efek umum hover */
.social-menu a:hover {
    transform: translateY(-4px) scale(1.08);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.social-menu a:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ========================================
   WARNA BRAND - GLOW EFFECT
   ======================================== */

/* Facebook */
.social-menu a[href*="facebook.com"]:hover {
    background: #1877F2;
    box-shadow: 0 8px 32px rgba(24, 119, 242, 0.5);
}

/* Instagram - Gradien */
.social-menu a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 8px 32px rgba(225, 48, 108, 0.5);
}

/* YouTube */
.social-menu a[href*="youtube.com"]:hover,
.social-menu a[href*="youtu.be"]:hover {
    background: #FF0000;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.5);
}

/* Twitter / X */
.social-menu a[href*="twitter.com"]:hover,
.social-menu a[href*="x.com"]:hover {
    background: #000000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* TikTok */
.social-menu a[href*="tiktok.com"]:hover {
    background: #000000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* LinkedIn */
.social-menu a[href*="linkedin.com"]:hover {
    background: #0A66C2;
    box-shadow: 0 8px 32px rgba(10, 102, 194, 0.5);
}

/* WhatsApp */
.social-menu a[href*="wa.me"]:hover,
.social-menu a[href*="whatsapp.com"]:hover {
    background: #25D366;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* Pinterest */
.social-menu a[href*="pinterest.com"]:hover {
    background: #E60023;
    box-shadow: 0 8px 32px rgba(230, 0, 35, 0.5);
}

/* Telegram */
.social-menu a[href*="t.me"]:hover {
    background: #26A5E4;
    box-shadow: 0 8px 32px rgba(38, 165, 228, 0.5);
}

/* ========================================
   VARIANT 2: BORDER GLOW (Lebih Mewah)
   ======================================== */

/* Opsional: Gunakan ini jika ingin efek border glow */
.social-menu a {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-menu a:hover {
    border-color: currentColor;
}

/* ========================================
   VARIANT 3: EFEK RIPPLE (Saat Klik)
   ======================================== */

.social-menu a:active {
    transform: scale(0.92);
    transition-duration: 0.1s;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .social-label {
        font-size: 12px;
        padding-right: 12px;
    }
    
    .social-label::after {
        height: 16px;
    }
    
    .social-menu {
        gap: 8px;
    }
    
    .social-menu a {
        width: 38px;
        height: 38px;
    }
    
    .social-menu a::before {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
        gap: 10px;
    }
    
    .social-label {
        display: none;
    }
    
    .social-menu a {
        width: 44px;
        height: 44px;
    }
    
    .social-menu a::before {
        font-size: 19px;
    }
}

/* ========================================
   FLOATING BUTTONS - TELEPON & WHATSAPP
   ======================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* ========================================
   BASE STYLE FLOATING BUTTON
   ======================================== */

.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    overflow: visible;
}

.float-btn .float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.float-btn .float-icon svg {
    width: 28px;
    height: 28px;
    stroke: #FFFFFF;
    fill: none;
    transition: all 0.3s ease;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.float-wa {
    background: linear-gradient(145deg, #25D366, #1DA851);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.float-wa:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.float-wa:active {
    transform: scale(0.92);
}

/* ========================================
   TELEPON BUTTON
   ======================================== */

.float-phone {
    background: linear-gradient(145deg, #4A90D9, #357ABD);
    box-shadow: 0 6px 24px rgba(74, 144, 217, 0.45);
}

.float-phone:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 144, 217, 0.55);
}

.float-phone:active {
    transform: scale(0.92);
}

/* ========================================
   TOOLTIP
   ======================================== */

.float-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(0, 0, 0, 0.85);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid rgba(0, 0, 0, 0.85);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

/* ========================================
   BADGE (Notification Dot)
   ======================================== */

.float-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #FF3B30;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========================================
   SHOW ON SCROLL (Animasi Muncul)
   ======================================== */

.floating-buttons {
    animation: float-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 1s;
}

@keyframes float-in {
    from {
        transform: translateY(30px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-btn .float-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .float-tooltip {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
    }
    
    .float-btn .float-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .float-badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }
}
/* ========================================
   FIX: SUBMENU MOBILE & VISIBILITY
   ======================================== */

/* --- Submenu warna teks & background --- */
.primary-menu .sub-menu a {
    color: #1a1a2e; /* Warna teks gelap agar terbaca */
    background: #ffffff; /* Background putih solid */
}

/* Untuk mobile, pastikan submenu memiliki background solid */
@media (max-width: 768px) {
    .primary-menu .sub-menu {
        background: #ffffff !important; /* Background putih untuk mobile */
        border-radius: 8px;
        padding: 8px 0;
        margin: 4px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
    }

    .primary-menu .sub-menu a {
        padding: 10px 20px !important;
        color: #1a1a2e !important;
        font-weight: 400;
        border-bottom: 1px solid #f1f5f9;
    }

    .primary-menu .sub-menu a:hover {
        background: #f8fafc !important;
        color: #6366f1 !important;
    }

    /* Tampilkan submenu jika parent memiliki class 'active' */
    .primary-menu li.active > .sub-menu {
        display: block !important;
    }

    /* Ikon dropdown berputar saat aktif */
    .primary-menu li.active > a .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Atur ulang posisi dropdown icon di mobile */
    .primary-menu a .dropdown-icon {
        float: right;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    /* Pastikan link utama tetap terlihat */
    .primary-menu > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}/* ============================================================
   LOGO GLOW EMAS - TANPA BACKGROUND GELAP (UNTUK LOGO CERAH)
   ============================================================ */
/* ============================================================
   LOGO MERAH + AURA EMAS - ROYAL EDITION
   ============================================================ */

.custom-logo-wrapper {
    display: inline-flex;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.custom-logo-wrapper img {
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    filter: 
        brightness(1.2) 
        saturate(1.2)
        drop-shadow(0 0 20px rgba(255, 215, 0, 0.9))
        drop-shadow(0 0 60px rgba(212, 175, 55, 0.5))
        drop-shadow(0 0 120px rgba(255, 50, 50, 0.25));
    
    animation: redGoldBreath 3.5s infinite ease-in-out;
}

@keyframes redGoldBreath {
    0%, 100% { 
        filter: 
            brightness(1.2) 
            saturate(1.2)
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.9))
            drop-shadow(0 0 60px rgba(212, 175, 55, 0.5))
            drop-shadow(0 0 120px rgba(255, 50, 50, 0.25));
    }
    50% { 
        filter: 
            brightness(1.45) 
            saturate(1.4)
            drop-shadow(0 0 40px rgba(255, 215, 0, 1))
            drop-shadow(0 0 90px rgba(212, 175, 55, 0.8))
            drop-shadow(0 0 180px rgba(255, 50, 50, 0.45));
    }
}

.custom-logo-wrapper:hover img {
    transform: scale(1.05);
    animation: none;
}