/*
Theme Name: SBB (Solusi Bangun Beton)
Theme URI: https://solusibeton.com
Author: Solusi Bangun Beton
Author URI: https://solusibeton.com
Description: Custom theme untuk Solusi Bangun Beton dengan header modern dan responsif
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sbb
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove background from images */
img {
    background: transparent !important;
    background-color: transparent !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Ensure PNG images with transparency don't show gray background */
img[src$=".png"],
img[src*=".png"],
.wp-image,
.attachment,
figure img {
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: normal;
}

/* Fix for PNG transparency in browsers */
img[src$=".png"]:not([src*="data:"]),
img[src*=".png"]:not([src*="data:"]) {
    background: transparent !important;
    background-color: transparent !important;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #e5e5e5;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    min-height: 90px;
    transition: height 0.3s ease;
}

/* Logo */
.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

/* Custom Logo */
.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo-link img,
.custom-logo {
    width: 156px;
    height: 37px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    background-color: transparent !important;
}

.site-logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo-top {
    background: linear-gradient(135deg, #90EE90 0%, #7ED87E 100%);
    color: #1a1a1a;
    padding: 8px 16px 6px 16px;
    display: inline-block;
    width: fit-content;
    margin-bottom: -3px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(144, 238, 144, 0.2);
}

.site-logo:hover .logo-top {
    background: linear-gradient(135deg, #7ED87E 0%, #6BC86B 100%);
    box-shadow: 0 4px 8px rgba(144, 238, 144, 0.3);
}

.logo-bottom {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 6px 16px 8px 16px;
    display: inline-block;
    width: fit-content;
    border-radius: 0 0 4px 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.site-logo:hover .logo-bottom {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-shrink: 0;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.2px;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dc2626;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu a:hover,
.main-menu .current-menu-item > a,
.main-menu .current_page_item > a {
    color: #dc2626;
}

.main-menu a:hover::after,
.main-menu .current-menu-item > a::after,
.main-menu .current_page_item > a::after {
    width: 100%;
}

.main-menu .dropdown-toggle {
    font-size: 9px;
    margin-left: 4px;
    color: inherit;
    display: inline-block;
    transition: transform 0.3s ease;
}

.main-menu li:hover .dropdown-toggle {
    transform: rotate(180deg);
}

.main-menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 220px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 6px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.main-menu li:hover > .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.main-menu .sub-menu li {
    padding: 0;
    margin: 0;
}

.main-menu .sub-menu a {
    padding: 12px 24px;
    display: block;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.main-menu .sub-menu a::after {
    display: none;
}

.main-menu .sub-menu a:hover {
    background-color: #f8f9fa;
    color: #dc2626;
    border-left-color: #dc2626;
    padding-left: 28px;
}

/* Contact Button */
.contact-button {
    background: #E52020;
    color: #ffffff;
    width: 76px;
    height: 38px;
    padding: 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover {
    background: #c41c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: none;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-toggle:hover {
    background-color: #f8f9fa;
    border-color: #d1d5db;
}

.lang-toggle[aria-expanded="true"] {
    background-color: #f8f9fa;
    border-color: #d1d5db;
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Bendera Indonesia */
.lang-flag-id {
    background: linear-gradient(to bottom, #e70011 0%, #e70011 50%, #ffffff 50%, #ffffff 100%);
}

/* Bendera Inggris */
.lang-flag-en {
    background: linear-gradient(135deg, #012169 0%, #012169 25%, #ffffff 25%, #ffffff 30%, #C8102E 30%, #C8102E 35%, #ffffff 35%, #ffffff 65%, #C8102E 65%, #C8102E 70%, #ffffff 70%, #ffffff 100%);
    position: relative;
}

.lang-flag-en::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to right, #C8102E 0%, #C8102E 8%, transparent 8%, transparent 12%, #C8102E 12%, #C8102E 20%, transparent 20%, transparent 80%, #C8102E 80%, #C8102E 88%, transparent 88%, transparent 92%, #C8102E 92%, #C8102E 100%),
        linear-gradient(to bottom, #C8102E 0%, #C8102E 8%, transparent 8%, transparent 12%, #C8102E 12%, #C8102E 20%, transparent 20%, transparent 80%, #C8102E 80%, #C8102E 88%, transparent 88%, transparent 92%, #C8102E 92%, #C8102E 100%);
}

.lang-code {
    font-size: 13px;
    font-weight: 600;
    color: #2c2c2c;
}

.lang-arrow {
    font-size: 10px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 4px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    margin: 0;
    padding: 0;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #2c2c2c;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.lang-option:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.lang-option .lang-flag {
    width: 24px;
    height: 18px;
}

.lang-name {
    font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 24px;
    cursor: pointer;
    color: #2c2c2c;
    padding: 8px 12px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background-color: #f8f9fa;
    border-color: #dc2626;
    color: #dc2626;
}

.mobile-menu-toggle[aria-expanded="true"] {
    background-color: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}

.mobile-menu-toggle .hamburger-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon {
    transform: rotate(90deg);
}

/* Content Area */
.content-area {
    padding: 40px 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-main {
    min-height: 60vh;
    padding-top: 0;
}

/* About Section */
.about-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-blur-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: #BDD646;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    transform: translate(20%, 20%);
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #777654;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.about-btn {
    display: inline-block;
    width: 184px;
    height: 55px;
    background-color: #777654;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    transition: all 0.3s ease;
}

.about-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent #070707 transparent transparent;
    z-index: -1;
}

.about-btn:hover {
    background-color: #65644a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(119, 118, 84, 0.4);
    color: #ffffff;
}

.about-image {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
    overflow: hidden;
    min-height: 500px;
    border-radius: 8px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
    z-index: -1;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: transparent !important;
    background-color: transparent !important;
    image-rendering: auto;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

/* Specific fix for PNG images in about section */
.about-image-wrapper img[src$=".png"],
.about-image-wrapper img[src*=".png"] {
    background: none !important;
    background-color: transparent !important;
    opacity: 1;
    filter: none;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.about-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #BDD646;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(189, 214, 70, 0.4);
}

.about-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
}

.about-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-image {
        min-height: 400px;
    }
    
    .about-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-image {
        min-height: 300px;
        width: 100%;
    }
    
    .about-image-wrapper {
        min-height: 300px;
    }
    
    .about-icon {
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
    }
}

/* Footer */
.site-footer {
    background-color: rgba(0, 0, 0, 0.88);
    color: #D3D3D3;
    margin-top: 0;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Footer Left - Logo & Copyright */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-icon {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-box {
    width: 24px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-top,
.footer-logo-bottom {
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: -0.5px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-copyright {
    font-size: 13px;
    line-height: 1.6;
    color: #D3D3D3;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-copyright p {
    margin: 0 0 4px 0;
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

/* Footer Middle - Contact Info */
.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #D3D3D3;
    margin: 0;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-contact {
    margin: 0;
}

/* Footer Right - Search & Social */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-search {
    width: 100%;
}

.footer-search-form {
    display: flex;
    gap: 0;
    width: 100%;
}

.footer-search-input {
    flex: 1;
    padding: 10px 16px;
    background: #ffffff;
    border: none;
    font-size: 14px;
    color: #2c2c2c;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    outline: none;
}

.footer-search-input::placeholder {
    color: #999999;
}

.footer-search-button {
    padding: 10px 20px;
    background: #D3D3D3;
    border: none;
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: background 0.3s ease;
}

.footer-search-button:hover {
    background: #ffffff;
}

.footer-social {
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border-radius: 0;
}

.footer-social-icon:hover {
    background: #333333;
    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-privacy {
    color: #D3D3D3;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
}

.footer-privacy:hover {
    color: #ffffff;
}

.footer-member {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #D3D3D3;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-member-text {
    color: #D3D3D3;
}

.footer-member-logo {
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-right {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
        height: 80px;
    }
    
    .main-navigation {
        gap: 25px;
    }
    
    .main-menu {
        gap: 20px;
    }
    
    .main-menu a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        padding: 0 20px;
    }
    
    .header-container {
        height: 70px;
        padding: 0 20px;
    }
    
    .site-logo {
        font-size: 20px;
    }
    
    .logo-top {
        padding: 6px 12px 4px 12px;
    }
    
    .logo-bottom {
        padding: 4px 12px 6px 12px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        overflow-y: auto;
        align-items: flex-start;
        gap: 20px;
    }
    
    .main-navigation.active {
        display: flex;
    }
    
    .main-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: flex-start;
    }
    
    .main-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-menu li:last-child {
        border-bottom: none;
    }
    
    .main-menu a {
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
    }
    
    .main-menu a::after {
        display: none;
    }
    
    .main-menu .sub-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
        background-color: #f8f9fa;
        border-radius: 0;
        border: none;
        border-top: 1px solid #e5e7eb;
        opacity: 1;
        transform: none;
        display: none;
    }
    
    .main-menu li.active > .sub-menu {
        display: block;
    }
    
    .main-menu .sub-menu a {
        padding: 12px 0;
        border-left: none;
    }
    
    .main-menu .sub-menu a:hover {
        padding-left: 0;
        border-left: none;
    }
    
    .contact-button {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 10px;
        gap: 10px;
        justify-content: center;
    }
    
    .language-selector {
        width: 100%;
        justify-content: center;
    }
    
    .lang-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .lang-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .language-selector.active .lang-dropdown {
        transform: translateX(-50%) translateY(0);
    }
}

/* Single Post Styles */
.content-area article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Entry Header */
.entry-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.entry-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Entry Content - Typography */
.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.entry-content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
}

.entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 48px 0 24px;
    letter-spacing: -0.3px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.entry-content h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 40px 0 20px;
    letter-spacing: -0.2px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.entry-content h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 32px 0 16px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.entry-content h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #2c2c2c;
    margin: 28px 0 14px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.entry-content h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #2c2c2c;
    margin: 24px 0 12px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin: 24px 0;
    padding-left: 32px;
    line-height: 1.8;
}

.entry-content ul {
    list-style-type: disc;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
    margin-top: 12px;
    margin-bottom: 12px;
}

/* Links */
.entry-content a {
    color: #777654;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.entry-content a:hover {
    color: #65644a;
    text-decoration-thickness: 2px;
}

/* Images */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
    display: block;
    background: transparent !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.entry-content figure {
    margin: 32px 0;
    text-align: center;
}

.entry-content figure img {
    margin: 0;
}

.entry-content figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    font-style: italic;
    line-height: 1.6;
}

/* Blockquote */
.entry-content blockquote {
    border-left: 4px solid #BDD646;
    padding: 24px 32px;
    margin: 32px 0;
    background: #f8f9fa;
    font-style: italic;
    color: #555;
    font-size: 20px;
    line-height: 1.7;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.entry-content blockquote p {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.7;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Code */
.entry-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 16px;
    color: #d63384;
    font-family: 'Courier New', monospace;
}

.entry-content pre {
    background: #1a1a1a;
    color: #f8f8f2;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
    line-height: 1.6;
}

.entry-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: 14px;
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 16px;
}

.entry-content table th,
.entry-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.entry-content table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.entry-content table tr:hover {
    background: #f8f9fa;
}

/* Horizontal Rule */
.entry-content hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 40px 0;
}

/* Strong and Emphasis */
.entry-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.entry-content em {
    font-style: italic;
}

/* Entry Footer */
.entry-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.post-tags {
    margin-bottom: 30px;
}

.tags-label {
    font-weight: 600;
    color: #2c2c2c;
    margin-right: 12px;
}

.post-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 13px;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: #BDD646;
    color: #1a1a1a;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #2c2c2c;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #2c2c2c;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
}

.share-facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.share-twitter:hover {
    background: #1da1f2;
    color: #ffffff;
}

.share-linkedin:hover {
    background: #0077b5;
    color: #ffffff;
}

.share-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous,
.nav-next {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: border-color 0.2s ease;
}

.nav-previous:hover,
.nav-next:hover {
    border-bottom-color: #777654;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.nav-label {
    display: block;
    font-size: 13px;
    color: #999;
    font-weight: 400;
    margin-bottom: 8px;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    font-family: 'Signika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-next {
    text-align: right;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Responsive Single Post */
@media (max-width: 768px) {
    .content-area article {
        padding: 0 15px;
    }
    
    .entry-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .entry-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .entry-content {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .entry-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .entry-content h2 {
        font-size: 24px;
        margin: 36px 0 18px;
    }
    
    .entry-content h3 {
        font-size: 20px;
        margin: 30px 0 16px;
    }
    
    .entry-content h4 {
        font-size: 18px;
        margin: 24px 0 12px;
    }
    
    .entry-content blockquote {
        padding: 20px 24px;
        font-size: 18px;
        margin: 24px 0;
    }
    
    .entry-content blockquote p {
        font-size: 18px;
    }
    
    .entry-content ul,
    .entry-content ol {
        padding-left: 24px;
        margin: 20px 0;
    }
    
    .entry-content li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .entry-content img {
        margin: 24px 0;
    }
    
    .entry-footer {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .post-nav-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .nav-previous,
    .nav-next {
        padding: 16px 0;
    }
    
    .nav-title {
        font-size: 15px;
    }
    
    .nav-next {
        text-align: left;
    }
}

