/*
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
*/

/* ========================================
   CUSTOM FONTS - SIGText & SIGHeadline
   ======================================== */

/* SIGText Font Family - Font untuk body text */
@font-face {
    font-family: 'SIGText';
    src: url('./assets/fonts/SIG-Text/WOFF2/SIGText-Regular.woff2') format('woff2'),
         url('./assets/fonts/SIG-Text/WOFF/SIGText-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SIGText';
    src: url('./assets/fonts/SIG-Text/WOFF2/SIGText-Italic.woff2') format('woff2'),
         url('./assets/fonts/SIG-Text/WOFF/SIGText-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SIGText';
    src: url('./assets/fonts/SIG-Text/WOFF2/SIGText-Light.woff2') format('woff2'),
         url('./assets/fonts/SIG-Text/WOFF/SIGText-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SIGText';
    src: url('./assets/fonts/SIG-Text/WOFF2/SIGText-Medium.woff2') format('woff2'),
         url('./assets/fonts/SIG-Text/WOFF/SIGText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SIGText';
    src: url('./assets/fonts/SIG-Text/WOFF2/SIGText-Bold.woff2') format('woff2'),
         url('./assets/fonts/SIG-Text/WOFF/SIGText-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SIGText';
    src: url('./assets/fonts/SIG-Text/WOFF2/SIGText-ExtraBold.woff2') format('woff2'),
         url('./assets/fonts/SIG-Text/WOFF/SIGText-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* SIGHeadline Font Family - Font untuk heading/title */
@font-face {
    font-family: 'SIGHeadline';
    src: url('./assets/fonts/SIG-Headline/WOFF2/SIGHeadline-Regular.woff2') format('woff2'),
         url('./assets/fonts/SIG-Headline/WOFF/SIGHeadline-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SIGHeadline';
    src: url('./assets/fonts/SIG-Headline/WOFF2/SIGHeadline-Medium.woff2') format('woff2'),
         url('./assets/fonts/SIG-Headline/WOFF/SIGHeadline-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SIGHeadline';
    src: url('./assets/fonts/SIG-Headline/WOFF2/SIGHeadline-SemiBold.woff2') format('woff2'),
         url('./assets/fonts/SIG-Headline/WOFF/SIGHeadline-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SIGHeadline';
    src: url('./assets/fonts/SIG-Headline/WOFF2/SIGHeadline-Bold.woff2') format('woff2'),
         url('./assets/fonts/SIG-Headline/WOFF/SIGHeadline-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SIGHeadline';
    src: url('./assets/fonts/SIG-Headline/WOFF2/SIGHeadline-ExtraBold.woff2') format('woff2'),
         url('./assets/fonts/SIG-Headline/WOFF/SIGHeadline-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'SIGText';
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global heading styles - menggunakan SIGHeadline */
h1, h2, h3, h4, h5, h6,
.about-title,
.section-title,
.site-title,
.entry-title {
    font-family: 'SIGHeadline';
}

/* 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;
    position: relative;
    overflow: visible;
}

/* 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;
    position: relative;
    z-index: 100;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
}

.main-menu li.menu-item-has-children {
    z-index: 100;
}

.main-menu li.menu-item-has-children:hover {
    z-index: 1002;
}

.main-menu li.menu-item-has-children:hover .sub-menu {
    pointer-events: auto;
}

/* Jembatan hover untuk menjaga dropdown tetap terbuka saat cursor bergerak ke bawah */
/* Jembatan hover untuk menjaga dropdown tetap terbuka saat cursor bergerak ke bawah */
.main-menu li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 10px;
    background: transparent;
    z-index: 1001;
}

.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);
}

/* Semua sub-menu: dasar (sembunyi, style kotak) */
.main-menu .sub-menu {
    display: none;
    position: absolute;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 220px;
    list-style: none;
    padding: 12px 0 8px 0;
    margin: 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1001;
    pointer-events: none;
}
/* Sub-menu yang sedang di-hover atau parent-nya di-hover = aktif pointer */
.main-menu li:hover .sub-menu,
.main-menu li.menu-item-has-children:hover .sub-menu,
.main-menu .sub-menu:hover,
.main-menu .sub-menu li:hover .sub-menu {
    pointer-events: auto;
}

/* Hanya level 1: dropdown ke BAWAH (bawah item navbar) */
.main-menu > li > .sub-menu {
    top: calc(100% + 10px);
    left: 0;
    margin-top: 0;
}

/* Level 2 (Solusi Bahan Bangunan → Infrastruktur): di KANAN panel level 1, tidak nutupin Bahan Material */
.main-menu .sub-menu li > .sub-menu {
    top: 0;
    left: 100%;
    right: auto;
    margin-top: 0;
    margin-left: 4px;
    min-width: 200px;
    z-index: 1002;
    transform: translateY(0) translateX(-10px);
    pointer-events: none;
}
.main-menu .sub-menu li:hover > .sub-menu,
.main-menu .sub-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
    pointer-events: auto;
}
/* Level 2 tetap visible saat di-hover */
.main-menu .sub-menu li > .sub-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
    pointer-events: auto;
}
.main-menu .sub-menu .sub-menu .sub-menu {
    z-index: 1003;
}

/* Jembatan transparan di atas sub-menu level 1 untuk menjaga hover aktif */
.main-menu > li > .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    height: 10px;
    background: transparent;
    z-index: 1;
}

/* Jembatan ke KANAN: supaya geser ke kanan (ke sub-menu level 2) tidak lepas dropdown */
.main-menu > li > .sub-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 300px;
    bottom: 0;
    margin-left: 0;
    background: transparent;
    z-index: 1000;
    pointer-events: auto;
}
/* Jembatan juga saat sub-menu level 2 di-hover */
.main-menu > li > .sub-menu:has(.sub-menu:hover)::after {
    pointer-events: auto;
}

.main-menu li:hover > .sub-menu,
.main-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Level 1 tetap terbuka saat cursor di sub-menu level 2 (geser ke kanan) */
.main-menu li.menu-item-has-children:has(.sub-menu:hover) > .sub-menu,
.main-menu li.menu-item-has-children:has(.sub-menu .sub-menu:hover) > .sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}
.main-menu .sub-menu li:hover > .sub-menu,
.main-menu .sub-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
    pointer-events: auto;
}

/* Pastikan sub-menu tetap terbuka saat cursor berada di dalamnya */
.main-menu li.menu-item-has-children .sub-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.main-menu .sub-menu li.menu-item-has-children .sub-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
    pointer-events: auto;
}
.main-menu .sub-menu .sub-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
    pointer-events: auto;
}
/* Pastikan parent sub-menu tetap terbuka saat child di-hover */
.main-menu .sub-menu:has(.sub-menu:hover) {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-menu .sub-menu li {
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.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;
}

/* Parent sub-menu item: jangkar posisi untuk dropdown kanan */
.main-menu .sub-menu li.menu-item-has-children {
    position: relative;
}
.main-menu .sub-menu .sub-menu .sub-menu {
    z-index: 1003;
}
/* Jembatan ke kanan dari item (Solusi Bahan Bangunan) ke dropdown level 2 (Infrastruktur) */
.main-menu .sub-menu li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 0;
    right: -250px;
    bottom: 0;
    width: 254px;
    background: transparent;
    z-index: 1002;
    pointer-events: auto;
}
.main-menu .sub-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
    pointer-events: auto;
}
.main-menu .sub-menu li > .sub-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    height: 100%;
    width: auto;
    background: transparent;
    z-index: -1;
    pointer-events: auto;
}
/* Indikator anak panah untuk item yang punya sub-menu (level 2+) */
.main-menu .sub-menu .menu-item-has-children > a::before {
    content: '›';
    position: absolute;
    right: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #9ca3af;
}
.main-menu .sub-menu .dropdown-toggle {
    display: none;
}

/* 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;
}

/* Custom teks per-block (tanpa Google Translate) - style edit mode & modal */

/* 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 English - Amerika Serikat (US) */
.lang-flag-en {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24'%3E%3Crect fill='%23B22234' width='40' height='1.85'/%3E%3Crect fill='%23fff' y='1.85' width='40' height='1.85'/%3E%3Crect fill='%23B22234' y='3.7' width='40' height='1.85'/%3E%3Crect fill='%23fff' y='5.55' width='40' height='1.85'/%3E%3Crect fill='%23B22234' y='7.4' width='40' height='1.85'/%3E%3Crect fill='%23fff' y='9.25' width='40' height='1.85'/%3E%3Crect fill='%23B22234' y='11.1' width='40' height='1.85'/%3E%3Crect fill='%23fff' y='12.95' width='40' height='1.85'/%3E%3Crect fill='%23B22234' y='14.8' width='40' height='1.85'/%3E%3Crect fill='%23fff' y='16.65' width='40' height='1.85'/%3E%3Crect fill='%23B22234' y='18.5' width='40' height='1.85'/%3E%3Crect fill='%23fff' y='20.35' width='40' height='1.85'/%3E%3Crect fill='%23B22234' y='22.2' width='40' height='1.85'/%3E%3Crect fill='%233C3B6E' width='16' height='12.95'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.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;
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

.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: #bbd448;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    transform: translate(20%, 20%);
}

/* Overlay asset di kiri atas section Sekilas Tentang Kami */
.about-overlay {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: url('assets/images/sbb-overlay.png') no-repeat top left;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.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-family: 'SIGHeadline';
    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;
    height: 580px;
}

.about-image-wrapper {
    position: relative;
    width: 515px;
    height: 580px;
    background: transparent;
    overflow: hidden;
    border-radius: 8px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    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: transparent;
    z-index: 1;
}


/* Responsive About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-image {
        min-height: 400px;
    }
    
    .about-image-wrapper {
        width: 515px;
        height: 580px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-label {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .about-title {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .about-description {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .about-btn {
        width: 100%;
        max-width: 100%;
        height: 50px;
        font-size: 14px;
    }
    
    .about-image {
        min-height: 280px;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 100%;
        min-height: 280px;
        height: 280px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .about-image-wrapper img {
        object-position: center center !important;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        transform: none !important;
    }
    
    
    .about-blur-shape {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-content {
        gap: 24px;
    }
    
    .about-label {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .about-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .about-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .about-image {
        min-height: 240px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 100%;
        min-height: 240px;
        height: 240px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .about-image-wrapper img {
        object-position: center center !important;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        transform: none !important;
    }
    
}

/* 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-image-link {
    display: inline-block;
    line-height: 0;
}

.footer-logo-white {
    width: 201.86px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    background: transparent !important;
    background-color: transparent !important;
}

.footer-logo-image-link:hover .footer-logo-white {
    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: 'SIGText';
}

.footer-copyright {
    font-size: 13px;
    line-height: 1.6;
    color: #D3D3D3;
    font-family: 'SIGText';
}

.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: 'SIGText';
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #D3D3D3;
    margin: 0;
    font-family: 'SIGText';
}

.footer-email-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-email-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.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: 'SIGText';
    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: 'SIGText';
    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 {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

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

.footer-privacy {
    color: #333333;
    text-decoration: none;
    font-size: 13px;
    font-family: 'SIGText';
    transition: color 0.3s ease;
}

.footer-privacy:hover {
    color: #000000;
}

.footer-member {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-member-image {
    height: auto;
    max-height: 24px;
    width: auto;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-member-image:hover {
    opacity: 0.8;
}

/* 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-member-image {
        max-height: 22px;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-member-image {
        max-height: 20px;
    }
}

/* 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,
    .main-menu .sub-menu li.active > .sub-menu {
        display: block;
    }
    
    .main-menu .sub-menu .sub-menu {
        position: static;
        left: auto;
        right: auto;
        margin-left: 0;
        padding-left: 20px;
        background-color: #eff1f3;
        z-index: auto;
    }
    
    .main-menu .sub-menu .sub-menu .sub-menu {
        position: static;
        left: auto;
        right: auto;
        margin-left: 0;
        padding-left: 20px;
        background-color: #e5e7eb;
        z-index: auto;
    }
    
    .main-menu .sub-menu a {
        padding: 12px 0;
        border-left: none;
    }
    
    .main-menu .sub-menu a:hover {
        padding-left: 0;
        border-left: none;
    }
    
    .main-menu .sub-menu .menu-item-has-children > a::before {
        right: 0;
    }
    
    .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);
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        padding: 0 15px;
        font-size: 10px;
    }
    
    .header-container {
        height: 65px;
        padding: 0 15px;
    }
    
    .custom-logo-link img,
    .custom-logo {
        width: 130px;
        height: auto;
    }
    
    .site-logo {
        font-size: 18px;
    }
    
    .logo-top {
        padding: 5px 10px 3px 10px;
        font-size: 18px;
    }
    
    .logo-bottom {
        padding: 3px 10px 5px 10px;
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        font-size: 20px;
        padding: 6px 10px;
    }
    
    .main-navigation {
        top: 65px;
        padding: 25px 15px;
    }
    
    .main-menu .sub-menu {
        padding-left: 15px;
    }
}

/* Single Post Styles */
.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    padding: 40px 20px;
}

.content-area article {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Entry Header */
.entry-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.entry-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-family: 'SIGText';
}

/* Entry Meta (Date & Category) */
.entry-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
    font-family: 'SIGText';
}

.meta-separator {
    color: #999;
}

.post-date,
.post-category {
    color: #666;
}

/* Featured Image */
.entry-featured-image {
    margin-bottom: 0;
    width: 100%;
}

.entry-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0;
}

/* Entry Content - Typography */
.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    font-family: 'SIGText';
    text-align: justify;
}

.entry-title,
.entry-content h1 {
    font-family: 'SIGHeadline';
    text-align: left;
}

.entry-content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    text-align: justify;
}

.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: 'SIGHeadline';
    text-align: left;
}

.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: 'SIGHeadline';
    text-align: left;
}

.entry-content h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 32px 0 16px;
    font-family: 'SIGHeadline';
    text-align: left;
}

.entry-content h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #2c2c2c;
    margin: 28px 0 14px;
    font-family: 'SIGHeadline';
    text-align: left;
}

.entry-content h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #2c2c2c;
    margin: 24px 0 12px;
    font-family: 'SIGHeadline';
    text-align: left;
}

/* 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 #bbd448;
    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: #bbd448;
    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: 'SIGText';
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    font-family: 'SIGText';
}

.nav-next {
    text-align: right;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Single Post Sidebar */
.single-post-sidebar {
    padding-top: 0;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #bbd448;
    font-family: 'SIGHeadline';
    line-height: 1.4;
}

.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-post-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.related-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.related-post-link:hover {
    color: #65644a;
}

.related-post-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 8px;
    font-family: 'SIGText';
    transition: color 0.2s ease;
}

.related-post-link:hover .related-post-title {
    color: #65644a;
}

.related-post-date {
    font-size: 14px;
    color: #999;
    font-family: 'SIGText';
}

/* Responsive Single Post */
@media (max-width: 768px) {
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px 15px;
    }
    
    .content-area article {
        padding: 0;
    }
    
    .entry-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .entry-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .entry-meta {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .sidebar-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .related-post-item {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .related-post-title {
        font-size: 15px;
    }
    
    .related-post-date {
        font-size: 13px;
    }
    
    .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;
    }
}

/* ========================================
   Archive Page Styles
   ======================================== */

.archive-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.archive-title {
    font-family: 'SIGHeadline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.3;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.archive-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Category Filter */
.archive-category-filter {
    display: flex;
    width: 100%;
    gap: 1px;
    margin-bottom: 40px;
    border: none;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #e0e0e0;
}

.category-filter-btn {
    flex: 1;
    padding: 12px 36px;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: none;
    background: #ffffff;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    outline: none;
    white-space: nowrap;
    text-align: center;
}

.category-filter-btn:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.category-filter-btn:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.category-filter-btn:hover:not(.active) {
    background: #f5f5f5;
}

.category-filter-btn.active {
    background: #8DC63F;
    color: #ffffff;
    font-weight: 700;
}

.category-filter-btn.active:hover {
    background: #7DB82F;
}

.archive-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.archive-news-card {
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.archive-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.archive-news-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.archive-news-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.archive-news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.archive-news-card:hover .archive-news-image {
    transform: scale(1.05);
}

.archive-news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.archive-news-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 128px;
    height: 58px;
    background: rgba(50, 70, 30, 0.75);
    color: #ffffff;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    line-height: 58px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.archive-news-content {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.archive-news-date {
    display: block;
    font-size: 13px;
    color: #999999;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.archive-news-card-title {
    margin: 0 0 14px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    color: #2c2c2c;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.archive-news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-news-card-title a:hover {
    color: #65644a;
}

.archive-news-excerpt {
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
}

.archive-news-excerpt p {
    margin: 0;
    padding: 0;
}

.archive-no-posts {
    text-align: center;
    color: #999999;
    padding: 60px 20px;
    font-size: 16px;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Archive Pagination */
.archive-pagination {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'SIGText', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-width: 44px;
    text-align: center;
}

.archive-pagination .page-numbers a:hover {
    background: #777654;
    color: #ffffff;
    border-color: #777654;
}

.archive-pagination .page-numbers .current {
    background: #777654;
    color: #ffffff;
    border-color: #777654;
}

.archive-pagination .page-numbers .prev,
.archive-pagination .page-numbers .next {
    padding: 10px 20px;
}

/* Responsive Archive */
@media (max-width: 1024px) {
    .archive-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .archive-news-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .archive-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .archive-title {
        font-size: 32px;
    }
    
    .archive-category-filter {
        margin-bottom: 30px;
    }
    
    .category-filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .archive-news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .archive-news-card {
        min-height: auto;
    }
    
    .archive-news-image-wrapper {
        height: 240px;
    }
    
    .archive-news-content {
        padding: 20px;
    }
    
    .archive-pagination {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .archive-pagination .page-numbers a,
    .archive-pagination .page-numbers span {
        padding: 8px 12px;
        font-size: 14px;
        margin: 0 2px;
        min-width: 40px;
    }
    
    .archive-pagination .page-numbers .prev,
    .archive-pagination .page-numbers .next {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ========================================
   About Page Styles (Tentang Kami)
   ======================================== */

/* About Page Slider */
.about-page-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent !important;
    background-color: transparent !important;
}

.about-slider-container {
    position: relative;
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
}

.about-slide {
    display: none;
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
}

.about-slide.active {
    display: block;
    background: transparent !important;
    background-color: transparent !important;
}

/* Top Section dengan Pattern Background */
.about-slide-top {
    position: relative;
    background: #f5f5f5;
    padding: 60px 0 40px;
    background-size: auto;
    background-position: 0 0;
    background-repeat: repeat;
}

.about-slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.1) 10px, rgba(0,0,0,0.1) 20px);
}

.about-slide-title-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.about-slide-title {
    font-family: 'SIGHeadline', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
    opacity: 1;
}

/* Main Image Section */
.about-slide-image {
    position: relative;
    width: 100%;
    height: 445px;
    min-height: 445px;
    overflow: hidden;
    background: #777654 !important;
    background-color: #777654 !important;
}

.about-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    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 slider */
.about-slide-image img[src$=".png"],
.about-slide-image img[src*=".png"] {
    background: #777654 !important;
    background-color: #777654 !important;
    opacity: 1;
    filter: none;
}

.about-slide-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(189, 214, 70, 0.35) 0%, rgba(189, 214, 70, 0.2) 30%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Fix untuk menghilangkan background putih pada PNG transparan */
.about-slide-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

/* Bottom Navigation Bar dengan Diagonal Cut */
.about-slider-nav {
    position: relative;
    background: #777654;
    padding: 16px 0;
    color: #ffffff;
    z-index: 10;
}

.about-nav-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.about-slider-nav .breadcrumb-home {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.about-slider-nav .breadcrumb-home:hover {
    opacity: 0.8;
}

.about-slider-nav .breadcrumb-home svg {
    width: 18px;
    height: 18px;
}

.about-slider-nav .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.about-slider-nav .breadcrumb-current {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.about-nav-diagonal {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: #777654;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
    z-index: 1;
}

/* Slider Controls */
.about-slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.about-slider-prev,
.about-slider-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #777654;
}

.about-slider-prev:hover,
.about-slider-next:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.about-slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.about-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.about-slider-dot.active,
.about-slider-dot:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Hero Section dengan Background Image (fallback) */
.about-hero-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(189, 214, 70, 0.4) 0%, rgba(119, 118, 84, 0.6) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.about-hero-title {
    font-family: 'SIGHeadline';
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb */
.about-breadcrumb {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-home {
    display: flex;
    align-items: center;
    color: #777654;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-home:hover {
    color: #65644a;
}

.breadcrumb-home svg {
    width: 18px;
    height: 18px;
}

.breadcrumb-separator {
    color: #999;
    font-size: 14px;
}

.breadcrumb-current {
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 500;
}

/* Profil Perusahaan Section */
.about-profile-section {
    padding: 80px 0;
    background: linear-gradient(90deg, rgba(189, 214, 70, 0.15) 0%, rgba(189, 214, 70, 0.05) 40%, #ffffff 60%);
    position: relative;
    overflow: hidden;
}

.about-profile-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-profile-text {
    flex: 1;
    max-width: 50%;
}

.profile-section-title {
    font-family: 'SIGHeadline';
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.profile-content {
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
}

.profile-content p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
}

.profile-content p:last-child {
    margin-bottom: 0;
}

.about-profile-image {
    flex: 1;
    position: relative;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    overflow: visible;
    background: transparent !important;
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent !important;
    background-color: transparent !important;
    object-fit: contain;
    object-position: center center;
}

/* Fix untuk PNG images di profile section */
.profile-image-wrapper img[src$=".png"],
.profile-image-wrapper img[src*=".png"] {
    background: none !important;
    background-color: transparent !important;
    opacity: 1;
    filter: none;
}

.section-title {
    font-family: 'SIGHeadline';
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 48px;
}

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

/* Visi dan Misi Section */
.about-visi-misi-section {
    padding: 80px 0 0; /* Padding normal, bottom line akan langsung di bawah */
    background: #777654;
    position: relative;
    overflow: visible; /* Visible agar gambar bisa keluar */
    height: 517px; /* Tinggi section sesuai desain */
    margin-bottom: 0; /* Tidak perlu margin, bottom line akan langsung di bawah */
    z-index: 2; /* Z-index section */
    display: block;
}

.about-visi-misi-section .container {
    position: relative;
    overflow: visible;
}

.visi-misi-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding-bottom: 0; /* Hapus padding bottom karena section sudah fixed height */
    position: relative;
    z-index: 1;
}

.visi-misi-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1; /* Pastikan container tidak menghalangi */
}

.visi-misi-main-title {
    font-family: 'SIGHeadline';
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.visi-misi-description {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

.visi-misi-image-wrapper {
    margin-top: 20px;
    width: 630px;
    max-width: 100%;
    height: 423px;
    overflow: visible;
    border-radius: 12px;
    position: absolute;
    bottom: -250px; /* Turunkan lebih banyak agar tidak nutupin text deskripsi */
    left: 0;
    z-index: 10; /* Z-index lebih tinggi dari bottom line agar gambar di depan */
}

.visi-misi-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10; /* Pastikan gambar di depan */
}

.visi-misi-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.visi-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visi-title {
    font-family: 'SIGHeadline';
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.visi-text {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

.misi-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.misi-title {
    font-family: 'SIGHeadline';
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.misi-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    padding-left: 24px;
    position: relative;
    opacity: 0.95;
}

.misi-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff; /* Ubah warna dot jadi putih */
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
}

.visi-misi-bottom-line {
    width: 100%;
    height: 50px;
    background: #bbd448;
    position: relative;
    z-index: 0; /* Z-index lebih rendah dari semua elemen agar garis di belakang */
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    clear: both; /* Clear float/absolute positioning */
}

/* Struktur Organisasi Section */
.about-struktur-section {
    padding: 300px 0 80px; /* Tambah padding top untuk space gambar overlay dari visi misi */
    background: #ffffff;
    position: relative;
    margin-top: 0;
}

.struktur-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.struktur-title {
    font-family: 'SIGHeadline';
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    line-height: 50px;
    letter-spacing: 0%;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.struktur-description {
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    color: #2c2c2c;
    margin: 0 0 48px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.struktur-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
}

.struktur-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive untuk Struktur Organisasi Section */
@media (max-width: 1024px) {
    .about-struktur-section {
        padding: 250px 0 80px; /* Kurangi padding top di tablet */
    }
    
    .struktur-title {
        font-size: 36px;
        line-height: 45px;
    }
    
    .struktur-description {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-struktur-section {
        padding: 200px 0 60px; /* Kurangi padding top di mobile */
    }
    
    .struktur-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .struktur-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 32px;
    }
}

/* Filosofi Logo Section - tidak full width, tinggi 675px */
.about-filosofi-section {
    max-width: 1260px;
    height: 675px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    padding: 24px;
    box-sizing: border-box;
    background-color: #f5f5f5;
    background-repeat: repeat;
    position: relative;
}

.about-filosofi-section .container {
    max-width: 100%;
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.filosofi-image-wrapper {
    width: 100%;
    max-width: 1260px;
    height: 560px;
    flex-shrink: 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.filosofi-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.filosofi-unduh-wrap {
    text-align: center;
    flex-shrink: 0;
}

.filosofi-unduh-logo-btn {
    display: inline-block;
    padding: 14px 32px 14px 28px;
    background-color: #777654;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px 0 8px 8px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    transition: background-color 0.2s ease;
}

.filosofi-unduh-logo-btn:hover {
    background-color: #65634a;
    color: #fff;
}

/* Responsive untuk Filosofi Logo Section */
@media (max-width: 1400px) {
    .about-filosofi-section {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 768px) {
    .about-filosofi-section {
        height: auto;
        min-height: auto;
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 48px;
        padding: 32px 20px 28px;
    }
    .about-filosofi-section .container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .filosofi-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1260 / 675;
        max-height: 50vh;
    }
    .filosofi-image-wrapper img {
        object-fit: contain;
    }
    .filosofi-unduh-wrap {
        margin-top: 0;
        width: 100%;
        max-width: 280px;
    }
    .filosofi-unduh-logo-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-filosofi-section {
        margin-left: 12px;
        margin-right: 12px;
        padding: 24px 16px 24px;
        margin-bottom: 40px;
    }
    .about-filosofi-section .container {
        gap: 24px;
    }
    .filosofi-image-wrapper {
        max-height: 45vh;
    }
    .filosofi-unduh-logo-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Responsive untuk Visi Misi Section */
@media (max-width: 1024px) {
    .about-visi-misi-section {
        margin-bottom: 120px; /* Sesuaikan margin di tablet */
    }
    
    .visi-misi-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visi-misi-main-title {
        font-size: 36px;
    }
    
    .visi-title,
    .misi-title {
        font-size: 28px;
    }
    
    .visi-misi-image-wrapper {
        width: 100%;
        max-width: 630px;
        height: auto;
        aspect-ratio: 630 / 423; /* Maintain aspect ratio (width / height) */
        position: relative; /* Kembali ke relative di tablet */
        bottom: auto;
        left: auto;
        margin-bottom: -40px; /* Overlay lebih kecil di tablet */
    }
    
    .visi-misi-image-wrapper img {
        height: auto;
    }
    
}

@media (max-width: 768px) {
    .about-visi-misi-section {
        padding: 60px 0 80px; /* Tambah padding bottom untuk mobile */
        height: auto; /* Auto height di mobile */
        min-height: 400px;
        margin-bottom: 80px; /* Sesuaikan margin di mobile */
    }
    
    .visi-misi-content {
        padding-bottom: 40px;
    }
    
    .visi-misi-main-title {
        font-size: 32px;
    }
    
    .visi-title,
    .misi-title {
        font-size: 24px;
    }
    
    .visi-misi-description,
    .visi-text,
    .misi-list li {
        font-size: 15px;
    }
    
    .visi-misi-image-wrapper {
        width: 100%;
        max-width: 630px;
        height: auto;
        aspect-ratio: 630 / 423; /* Maintain aspect ratio (width / height) */
        position: relative; /* Kembali ke relative di mobile */
        bottom: auto;
        left: auto;
        margin-bottom: -30px; /* Overlay lebih kecil di mobile */
    }
    
    .visi-misi-image-wrapper img {
        height: auto;
    }
    
}

/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 40px;
}

.vision-mission-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vision-mission-icon {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vision-mission-title {
    font-family: 'SIGHeadline';
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.vision-mission-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.vision-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-mission-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.vision-mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #777654;
    font-weight: 700;
    font-size: 18px;
}

.vision-mission-list li:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    margin-top: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background 0.3s ease;
}

.value-item:hover .value-icon {
    background: #bbd448;
}

.value-title {
    font-family: 'SIGHeadline';
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.value-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA Section */
.about-page-cta {
    background: linear-gradient(135deg, #777654 0%, #65644a 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.about-page-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'SIGHeadline';
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.about-page-cta .about-btn {
    background-color: #ffffff;
    color: #777654;
    margin: 0 auto;
}

.about-page-cta .about-btn:hover {
    background-color: #bbd448;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(189, 214, 70, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-profile-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-profile-text {
        max-width: 100%;
    }
    
    .about-profile-image {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .profile-image-wrapper {
        max-width: 100%;
    }
    
    .about-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .about-slide-top {
        padding: 40px 0 30px;
    }
    
    .about-slide-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .about-slide-image {
        height: 450px;
        min-height: 450px;
    }
    
    .about-nav-diagonal {
        width: 80px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    }
    
    .about-slider-controls {
        bottom: 70px;
        gap: 15px;
    }
    
    .about-hero-section {
        min-height: 400px;
    }
    
    .about-hero-content {
        padding: 40px 0 30px;
    }
    
    .about-hero-title {
        font-size: 32px;
    }
    
    .about-profile-section {
        padding: 60px 0;
    }
    
    .profile-section-title {
        font-size: 32px;
    }
    
    .profile-content p {
        font-size: 15px;
    }
    
    .about-slider-nav .breadcrumb-home svg {
        width: 16px;
        height: 16px;
    }
    
    .about-slider-nav .breadcrumb-separator,
    .about-slider-nav .breadcrumb-current {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-slide-top {
        padding: 40px 0 30px;
    }
    
    .about-slide-title {
        font-size: 28px;
        line-height: 36px;
        padding: 0 20px;
    }
    
    .about-slide-image {
        height: 400px;
        min-height: 400px;
    }
    
    .about-nav-diagonal {
        width: 80px;
    }
    
    .about-slider-controls {
        bottom: 60px;
    }
    
    .about-slider-prev,
    .about-slider-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .about-hero-section {
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .profile-section-title {
        font-size: 28px;
    }
    
    .about-profile-content {
        gap: 32px;
    }
}

/* ========================================
   PELANGGAN & PROYEK PAGE STYLES
   ======================================== */

/* Hero Section menggunakan class yang sama dengan About Page (about-page-slider-section) */

/* Intro Section */
.pelanggan-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.pelanggan-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.pelanggan-intro-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #777654;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
    text-align: center;
}

.pelanggan-intro-title {
    font-family: 'SIGHeadline', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 32px 0;
    text-align: center;
}

.pelanggan-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
    text-align: center;
}

.pelanggan-intro-text p {
    margin: 0 0 20px 0;
}

.pelanggan-intro-text p:last-child {
    margin-bottom: 0;
}

/* Accordion Section */
.pelanggan-accordion-section {
    padding: 0 0 100px;
    background: #ffffff;
}

.pelanggan-accordion-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
}

.pelanggan-accordion-item {
    border-bottom: 1px solid #d1d5db;
    margin-bottom: 0;
    background: #EAEAEA;
}

.pelanggan-accordion-item:first-child {
    border-top: 1px solid #d1d5db;
}

.pelanggan-accordion-item.active {
    background: #777654;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pelanggan-accordion-item.active:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pelanggan-accordion-header {
    width: 100%;
    max-width: 1360px;
    height: 115px;
    background: transparent;
    border: none;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    box-sizing: border-box;
}

.pelanggan-accordion-header .accordion-title {
    flex: 1;
    min-width: 0;
}

.pelanggan-accordion-header:hover {
    background: rgba(0, 0, 0, 0.03);
}

.pelanggan-accordion-item.active .pelanggan-accordion-header {
    background: transparent;
}

.pelanggan-accordion-item.active .pelanggan-accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-title {
    font-family: 'SIGHeadline', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0%;
    color: #1a1a1a;
    margin: 0;
}

.pelanggan-accordion-item.active .accordion-title {
    color: #ffffff;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: none;
    outline: none;
    cursor: pointer;
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.pelanggan-accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background: #777654;
    color: #ffffff;
}

.pelanggan-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.pelanggan-accordion-item.active .pelanggan-accordion-content {
    padding: 0 50px 40px 50px;
    max-width: 1360px;
    margin: 0 auto;
    max-height: 5000px; /* Override agar konten terbuka saat load */
}

.accordion-inner {
    padding-top: 0;
}

.accordion-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 32px 0;
    text-align: left;
    padding: 0;
}

/* Carousel dalam Accordion */
.accordion-carousel-wrapper {
    margin: 0 0 32px 0;
    padding: 0;
}

.accordion-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 410px;
    min-width: 0;
}

.carousel-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.carousel-card:hover {
    transform: translateY(-4px);
}

.carousel-image {
    width: 410px;
    height: 503.68px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
}

.carousel-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.carousel-image.placeholder svg {
    width: 80px;
    height: 80px;
}

.carousel-content {
    width: 370px;
    height: 185px;
    padding: 24px 28px;
    background: #ffffff;
    position: absolute;
    bottom: 0;
    left: 45%;
    transform: translateX(-50%);
    z-index: 3;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
}

.carousel-title {
    font-family: 'SIGHeadline', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    text-align: left;
    line-height: 1.4;
}

.carousel-description {
    font-size: 14px;
    line-height: 1.6;
    color: #2c2c2c;
    margin: 0;
    text-align: left;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
}

.pelanggan-accordion-section .carousel-prev,
.pelanggan-accordion-section .carousel-next {
    background: #777654;
    color: #fff;
}
.pelanggan-accordion-section .carousel-prev:hover,
.pelanggan-accordion-section .carousel-next:hover {
    background: #5c5a3f;
    color: #fff;
}
.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #EEEEEE;
    color: #666666;
    font-size: 18px;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #E0E0E0;
    color: #333333;
}

.carousel-prev:active,
.carousel-next:active {
    background: #D5D5D5;
}

/* Accordion Footer */
.accordion-footer {
    margin-top: 24px;
}

.accordion-footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

.learn-more-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: normal;
    margin-left: 4px;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles untuk Pelanggan & Proyek */
@media (max-width: 1024px) {
    
    .pelanggan-intro-title {
        font-size: 40px;
    }
    
    .accordion-title {
        font-size: 28px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }
    
    .carousel-image {
        width: 100%;
        height: auto;
        aspect-ratio: 410 / 503.68;
    }
    
    .carousel-content {
        width: calc(370px * 0.85);
        height: calc(240px * 0.85);
        padding: 20px 24px;
    }
}

@media (max-width: 768px) {
    .pelanggan-intro-section {
        padding: 60px 0;
    }
    
    .pelanggan-intro-content {
        padding: 0 20px;
    }
    
    .pelanggan-intro-title {
        font-size: 32px;
    }
    
    .pelanggan-accordion-wrapper {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .pelanggan-accordion-header {
        max-width: 100%;
        padding: 20px;
    }
    
    .pelanggan-accordion-header {
        height: auto;
        min-height: 80px;
        padding: 20px 30px;
        max-width: 100%;
    }
    
    .pelanggan-accordion-item.active .pelanggan-accordion-content {
        padding: 0 30px 30px 30px;
    }
    
    .accordion-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .accordion-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }
    
    .accordion-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-image {
        width: 100%;
        height: auto;
        aspect-ratio: 410 / 503.68;
    }
    
    .carousel-content {
        width: calc(370px * 0.7);
        height: calc(240px * 0.7);
        padding: 16px 20px;
    }
    
    .carousel-controls {
        margin-top: 24px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pelanggan-intro-title {
        font-size: 28px;
    }
    
    .pelanggan-accordion-header {
        height: auto;
        min-height: 70px;
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .pelanggan-accordion-item.active .pelanggan-accordion-content {
        padding: 0 20px 25px 20px;
    }
    
    .accordion-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .accordion-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }
    
    .accordion-description {
        font-size: 15px;
    }
}

/* ========================================
   KONTAK KAMI PAGE STYLES
   ======================================== */

/* Hero Section */
.kontak-hero-section {
    background: #ffffff;
}

.kontak-hero-top {
    background: #f5f5f5;
    padding: 60px 0 40px;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px);
    background-size: 20px 20px;
}

.kontak-hero-title {
    font-family: 'SIGHeadline', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 54px;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
}

.kontak-hero-image {
    position: relative;
    width: 100%;
    height: 445px;
    min-height: 445px;
    overflow: hidden;
    background: #777654;
}

.kontak-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.kontak-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(189, 214, 70, 0.35) 0%, rgba(189, 214, 70, 0.2) 30%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.kontak-breadcrumb {
    position: relative;
    background: #777654;
    padding: 16px 0;
    color: #ffffff;
    z-index: 10;
}

.kontak-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kontak-breadcrumb .breadcrumb-home {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.kontak-breadcrumb .breadcrumb-home:hover {
    opacity: 0.8;
}

.kontak-breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.kontak-breadcrumb .breadcrumb-current {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* Content Section */
.kontak-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.kontak-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Contact Info */
.kontak-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kontak-info-box {
    background: #777654;
    color: #ffffff;
    padding: 40px;
    border-radius: 0;
}

.kontak-info-title {
    font-family: 'SIGHeadline', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.kontak-info-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
}

.kontak-company-details {
    margin-bottom: 32px;
}

.kontak-company-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.kontak-company-address {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.kontak-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontak-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #ffffff;
}

.kontak-icon {
    flex-shrink: 0;
    color: #90EE90;
}

.kontak-contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontak-contact-item a:hover {
    color: #90EE90;
}

.kontak-bottom-image {
    width: 100%;
    overflow: hidden;
}

.kontak-bottom-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Right Column - Contact Form */
.kontak-form-column {
    background: #ffffff;
    padding: 0;
}

.kontak-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kontak-form-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.kontak-form-message.success {
    background: #f0f9f0;
    color: #2d5016;
    border: 1px solid #90EE90;
}

.kontak-form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

.kontak-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kontak-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.kontak-form-group .required {
    color: #dc2626;
}

.kontak-form-group input[type="text"],
.kontak-form-group input[type="email"],
.kontak-form-group select,
.kontak-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'SIGText', sans-serif;
    background: #ffffff;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.kontak-form-group input[type="text"]:focus,
.kontak-form-group input[type="email"]:focus,
.kontak-form-group select:focus,
.kontak-form-group textarea:focus {
    outline: none;
    border-color: #777654;
    box-shadow: 0 0 0 3px rgba(119, 118, 84, 0.1);
}

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

.kontak-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #777654;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'SIGText', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.kontak-submit-btn:hover {
    background: #65644a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(119, 118, 84, 0.3);
}

.kontak-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Kontak Page */
@media (max-width: 1024px) {
    .kontak-content-layout {
        gap: 40px;
    }
    
    .kontak-info-box {
        padding: 32px;
    }
    
    .kontak-hero-title {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 768px) {
    .kontak-hero-top {
        padding: 40px 0 30px;
    }
    
    .kontak-hero-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .kontak-hero-image {
        height: 350px;
        min-height: 350px;
    }
    
    .kontak-content-section {
        padding: 60px 0;
    }
    
    .kontak-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kontak-info-box {
        padding: 28px;
    }
    
    .kontak-info-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .kontak-hero-top {
        padding: 30px 0 20px;
    }
    
    .kontak-hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .kontak-hero-image {
        height: 300px;
        min-height: 300px;
    }
    
    .kontak-content-section {
        padding: 40px 0;
    }
    
    .kontak-info-box {
        padding: 24px;
    }
    
    .kontak-info-title {
        font-size: 24px;
    }
    
    .kontak-form {
        gap: 20px;
    }
}

/* ========================================
   SINGLE PROJECT PAGE STYLES
   ======================================== */

/* Project Hero Section */
.project-hero-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #777654;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(189, 214, 70, 0.4) 0%, rgba(119, 118, 84, 0.6) 100%);
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.project-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #777654;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.project-hero-title {
    font-family: 'SIGHeadline';
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.project-hero-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 700px;
}

.project-breadcrumb {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.project-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-home {
    display: flex;
    align-items: center;
    color: #777654;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-home:hover {
    color: #65644a;
}

.breadcrumb-separator {
    color: #999;
    font-size: 14px;
}

.breadcrumb-current {
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 500;
}

/* Project Content Section */
.project-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.project-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.project-main-content {
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
}

.project-main-content h2 {
    font-family: 'SIGHeadline';
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 48px 0 24px;
    letter-spacing: -0.3px;
}

.project-main-content h2:first-child {
    margin-top: 0;
}

.project-main-content h3 {
    font-family: 'SIGHeadline';
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 36px 0 18px;
}

.project-main-content p {
    margin-bottom: 20px;
}

.project-main-content ul,
.project-main-content ol {
    margin: 20px 0;
    padding-left: 32px;
}

.project-main-content li {
    margin-bottom: 10px;
}

.project-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.project-section h2 {
    font-family: 'SIGHeadline';
    font-size: 32px;
    font-weight: 700;
    color: #777654;
    margin-bottom: 24px;
}

.project-section-content {
    font-size: 16px;
    line-height: 1.8;
}

/* Project Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.project-info-box {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
}

.project-info-box h3 {
    font-family: 'SIGHeadline';
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #777654;
}

.project-info-item {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.project-info-item:last-child {
    margin-bottom: 0;
}

.project-info-item strong {
    display: block;
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 4px;
}

.project-info-item span {
    display: block;
    color: #666;
}

.project-related {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
}

.project-related h3 {
    font-family: 'SIGHeadline';
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #777654;
}

.project-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-related-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.project-related-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-related-list a {
    color: #777654;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.project-related-list a:hover {
    color: #65644a;
    text-decoration: underline;
}

.project-back-link {
    margin-top: 30px;
}

.project-back-link .button {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background: #777654;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.project-back-link .button:hover {
    background: #65644a;
    color: #ffffff;
}

/* Responsive Project Page */
@media (max-width: 1024px) {
    .project-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-sidebar {
        position: static;
    }
    
    .project-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .project-hero-section {
        min-height: 400px;
    }
    
    .project-hero-content {
        padding: 40px 0 30px;
    }
    
    .project-hero-title {
        font-size: 32px;
    }
    
    .project-hero-excerpt {
        font-size: 16px;
    }
    
    .project-content-section {
        padding: 40px 0;
    }
    
    .project-main-content h2 {
        font-size: 28px;
        margin: 36px 0 20px;
    }
    
    .project-section {
        margin-top: 36px;
        padding-top: 30px;
    }
}


