/* ===================================
   GEOSYS - Global Styles & Variables
   =================================== */

:root {
    /* Primary Colors - Teal/Blue Theme */
    --primary-color: #14A2BA;
    --primary-dark: #125D72;
    --primary-darker: #00526F;
    --primary-light: #1eb3cc;

    /* Accent Colors */
    --accent-color: #0a4d5c;
    --secondary-color: #2dd4bf;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #e9ecef;
    --dark-gray: #6c757d;
    --darker-gray: #343a40;
    --black: #000000;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-light: #718096;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===================================
   Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all var(--transition-normal);
}

/* ===================================
   Utility Classes
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
    position: relative;
    overflow: visible;
    /* PENTING: Agar logo besar tidak terpotong */
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-right: 60px;
    /* Spacer untuk logo besar */
}

.nav-logo img {
    height: 50px;
    width: auto;
    transform: scale(2.8);
    transform-origin: left center;
    position: relative;
    top: 8px;
    /* Turun sedikit saja */
    z-index: 2000;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-color);
}

.nav-icon:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 30px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 77, 92, 0);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 50vh;
}

.hero-text {
    color: var(--white);
    margin-top: 150px;
}

.hero-text-center {
    color: var(--white);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px var(--spacing-md) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    text-align: left;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
    max-width: 90%;
}

@media (min-width: 1024px) {
    .hero-title {
        max-width: 80%;
    }
}

.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-slide.active .hero-subtitle {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-image {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slide.active .hero-image {
    animation: fadeInScale 0.8s ease 0.6s forwards;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.slider-controls {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ===================================
   About Section
   =================================== */

.about-section {
    background: var(--light-gray);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-color);
}

.nav-icon:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 30px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-text {
    color: var(--white);
    margin-top: 150px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slide.active .hero-subtitle {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-image {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slide.active .hero-image {
    animation: fadeInScale 0.8s ease 0.6s forwards;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.slider-controls {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ===================================
   About Section
   =================================== */

.about-section {
    background: var(--light-gray);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    stroke-width: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    text-align: center;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: auto;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: var(--spacing-sm);
}

/* ===================================
   Portfolio Section
   =================================== */

.portfolio-section {
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 162, 186, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: var(--spacing-lg);
}

.portfolio-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: var(--spacing-sm);
}

.portfolio-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   News Section
   =================================== */

.news-section {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 60px;
    box-shadow: var(--shadow-md);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 2px;
}

.news-content {
    padding: var(--spacing-lg);
}

.news-meta {
    display: flex;
    gap: var(--spacing-md);
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.125rem;
    color: var(--primary-darker);
    margin-bottom: var(--spacing-xs);
}

.info-text p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 162, 186, 0.1);
}

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

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.footer-text {
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    line-height: 1.7;
}

.footer-address {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-contact li {
    opacity: 0.9;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    opacity: 0.9;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top.visible:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-xl);
        transition: left var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-3xl: 3rem;
    }

    .section-padding {
        padding: var(--spacing-2xl) 0;
    }

    .nav-container {
        padding: var(--spacing-sm);
    }

    .slider-controls {
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .services-grid,
    .portfolio-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Global Layout & Spacing
   =================================== */

.section,
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {

    .section,
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* ===================================
   Business Process Animation
   =================================== */
.process-diagram-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-area {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px dashed #ddd;
    /* Style garis putus-putus seperti di gambar */
    position: relative;
}

.area-label {
    text-align: center;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Area Kiri: Sumber Biomassa */
.source-area {
    flex: 2;
    border-color: #f1c40f;
    /* Kuning */
    background: #fffdf0;
}

.source-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.source-icon {
    width: 60px;
    text-align: center;
    font-size: 2rem;
    z-index: 2;
}

.source-icon small {
    display: block;
    font-size: 0.6rem;
    line-height: 1.2;
    font-weight: 600;
    color: #666;
}

.road-path {
    flex-grow: 1;
    height: 4px;
    background: #e0e0e0;
    margin: 0 10px;
    position: relative;
    border-radius: 4px;
}

.flow-arrow {
    position: absolute;
    right: -5px;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #e0e0e0;
}

/* Truck Animation */
.moving-truck {
    position: absolute;
    top: -18px;
    font-size: 1.5rem;
    left: 0;
    animation: driveRight 3s linear infinite;
    transform: scaleX(-1);
    /* Flip truck icon to face right */
}

.truck-delay-1 {
    animation-delay: 0s;
}

.truck-delay-2 {
    animation-delay: 1s;
}

.truck-delay-3 {
    animation-delay: 2s;
}

@keyframes driveRight {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 90%;
        opacity: 0;
    }
}

/* Area Tengah: Stockpile */
.stockpile-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
}

.stockpile-center {
    text-align: center;
    position: relative;
}

.stockpile-icon {
    font-size: 4rem;
    display: block;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.excavator-icon {
    font-size: 2rem;
    position: absolute;
    right: -10px;
    bottom: 10px;
    animation: dig 2s ease-in-out infinite;
}

@keyframes dig {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-10deg) translateX(-5px);
    }
}

.label-box {
    background: #333;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
}

/* Area Kanan: Transportasi */
.transport-area {
    flex: 2;
    border-color: #3498db;
    /* Biru */
    background: #f0f8ff;
    display: flex;
    flex-direction: column;
}

.transport-road {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    padding: 20px 0;
    position: relative;
}

.big-truck-container {
    flex-grow: 1;
    height: 60px;
    border-bottom: 4px solid #3498db;
    border-top: 4px solid #3498db;
    margin: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.big-truck {
    font-size: 2rem;
    position: absolute;
}

.big-truck.moving-right {
    top: 5px;
    transform: scaleX(-1);
    animation: transportRight 4s linear infinite;
}

.big-truck.moving-left {
    bottom: 5px;
    animation: transportLeft 4s linear infinite;
    animation-delay: 2s;
}

@keyframes transportRight {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 85%;
        opacity: 0;
    }
}

@keyframes transportLeft {
    0% {
        right: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        right: 85%;
        opacity: 0;
    }
}

.factory-icon {
    font-size: 3rem;
    text-align: center;
}

.factory-icon small {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .process-diagram-container {
        flex-direction: column;
    }

    .road-path {
        min-width: 50px;
    }
}

/* ===================================
   Partner / Client Logos Section
   =================================== */

.partners-section {
    background-color: #f9fbfd;
    /* Light gray background */
    border-bottom: 1px solid #eaeaea;
}

.partners-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.partners-label::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    filter: grayscale(100%);
    /* Start black & white */
    padding: 10px;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    /* Full color on hover */
    transform: translateY(-5px);
}

.partner-logo img {
    max-height: 50px;
    /* Limit height */
    max-width: 160px;
    /* Limit width */
    object-fit: contain;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .partners-carousel {
        gap: 20px;
    }

    .partner-logo img {
        max-height: 40px;
        max-width: 120px;
    }
}

/* ===================================
   Modern Infinite Partner Slider
   =================================== */
.partners-slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.partners-slider::before,
.partners-slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 150px;
    z-index: 2;
}

.partners-slider::after {
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    right: 0;
    top: 0;
}

.partners-slider::before {
    left: 0;
    top: 0;
}

.slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(250px * 10);
    /* Sesuaikan dengan jumlah logo total (termasuk duplikat) */
    gap: 40px;
}

.slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.slide img {
    max-width: 180px;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
    cursor: pointer;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5 - 200px));
        /* Geser setengah dari total panjang track */
    }
}

/* ===================================
   MOBILE RESPONSIVE FIXES
   =================================== */

@media (max-width: 768px) {

    /* 1. Global Section Spacing */
    .section,
    .section-padding {
        padding: 50px 0 !important;
        /* Kurangi padding di HP */
    }

    /* 2. Hero Section */
    .hero-title {
        font-size: 2rem !important;
        /* Judul lebih kecil */
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    /* 3. Biomass Process Animation (Truk) */
    .process-container {
        flex-direction: column !important;
        /* Susun vertikal */
        gap: 40px;
    }

    .process-area {
        width: 100% !important;
        margin-bottom: 20px;
        min-width: auto !important;
    }

    /* Panah antar zona di HP jadi ke bawah */
    .process-arrow-mobile {
        transform: rotate(90deg);
        margin: 10px auto;
    }

    /* 4. Partnership Slider */
    .partners-slider {
        height: 80px !important;
        /* Lebih pendek di HP */
    }

    .slide img {
        max-height: 40px !important;
        /* Logo lebih kecil */
    }

    /* 5. Service & Grid Layouts */
    .services-grid,
    .stats-grid,
    .news-grid,
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        /* 1 Kolom penuh */
        gap: 30px !important;
    }

    /* 6. Navigation */
    .nav-menu {
        /* Pastikan menu hamburger jalan (biasanya sudah ada scriptnya) */
    }
}

/* ===================================
   MOBILE IMAGE & ICON FIXES
   =================================== */

@media (max-width: 768px) {

    /* 1. KECILKAN IKON EMOJI DI PROSES BIOMASSA */
    .biomass-sources div[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
        /* Kecilkan ikon sumber (Sawmill, Forest, dll) */
        width: 40px !important;
    }

    .stockpile-area div[style*="font-size: 5rem"] {
        font-size: 3rem !important;
        /* Kecilkan ikon Stockpile */
    }

    .transport-area div[style*="font-size: 4rem"] {
        font-size: 2.5rem !important;
        /* Kecilkan ikon Pabrik */
    }

    /* 2. ATUR ULANG UKURAN LOGO PARTNER */
    .partners-slider {
        height: 60px !important;
        /* Slider lebih pendek */
    }

    .slide {
        width: 120px !important;
        /* Jarak antar logo lebih rapat */
        padding: 0 10px !important;
    }

    .slide img {
        max-height: 30px !important;
        /* Logo lebih kecil */
        max-width: 100% !important;
    }

    /* 3. BATASI GAMBAR ABOUT US */
    .about-image img {
        max-height: 300px;
        /* Batasi tinggi gambar about */
        object-fit: cover;
        /* Agar tidak gepeng */
        width: 100%;
    }

    /* 4. PERBAIKI LINE-HEIGHT JUDUL */
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }

    /* 5. HERO SLIDER SPACING */
    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }
}

/* ===================================
   Responsive Icon Sizes (Replaces Inline Styles)
   =================================== */

/* Default Desktop Sizes */
.icon-lg {
    font-size: 2.5rem;
}

.icon-xl {
    font-size: 4rem;
}

.icon-xxl {
    font-size: 5rem;
}

/* Mobile Sizes (Override) */
@media (max-width: 768px) {
    .icon-lg {
        font-size: 1.8rem !important;
    }

    .icon-xl {
        font-size: 2.5rem !important;
    }

    .icon-xxl {
        font-size: 3rem !important;
    }

    /* Fix Stockpile container on mobile */
    .process-area {
        width: 100% !important;
        min-width: 0 !important;
        /* Force reset min-width */
    }
}

/* ===================================
   CRITICAL MOBILE FIXES (STRONG OVERRIDE)
   =================================== */

@media screen and (max-width: 768px) {

    /* 1. Cegah layar geser ke kanan (horizontal scroll) */
    html,
    body {
        width: 100%;
        overflow-x: hidden !important;
        position: relative;
    }

    /* 2. Container Padding agar tidak mepet layar */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* 3. Perbaiki Header Navbar */
    .navbar {
        padding: 10px 0 !important;
    }

    .nav-container {
        padding: 0 15px !important;
    }

    .nav-logo img {
        height: 35px !important;
        /* Logo header lebih kecil */
        width: auto !important;
    }

    /* 4. Perbaiki Hero Slider */
    .hero-slider,
    .hero-slide {
        height: 100vh !important;
        /* Full screen height */
    }

    .hero-content {
        padding: 0 15px !important;
        width: 100% !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        /* Judul Hero proporsional */
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    /* 5. Perbaiki Animasi Proses Biomassa (YANG PALING KRUSIAL) */
    .process-container {
        flex-direction: column !important;
        /* Vertikal tegak lurus */
        width: 100% !important;
        gap: 30px !important;
    }

    .process-area {
        width: 100% !important;
        /* Lebar penuh */
        min-width: 0 !important;
        /* Hapus min-width desktop */
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    /* Kecilkan jalur truk */
    .biomass-sources div[style*="flex-grow: 1"] {
        margin: 0 5px !important;
        /* Kurangi margin jalur */
    }

    .transport-area div[style*="flex-grow: 1"] {
        margin-right: 10px !important;
    }

    /* Sembunyikan Animasi Truk jika layar terlalu sempit (<350px) */
    @media (max-width: 350px) {
        .biomass-sources div[style*="transform: scaleX(-1)"] {
            display: none !important;
        }
    }

    /* 6. Perbaiki Partner Slider */
    .partners-slider {
        width: 100vw !important;
        /* Lebar layar penuh */
        margin-left: -20px !important;
        /* Kompensasi padding container */
        margin-right: -20px !important;
        padding: 0 !important;
    }

    .slide img {
        max-width: 100px !important;
        /* Logo partner kecil */
        height: auto !important;
    }

    /* 7. Perbaiki Gambar About */
    .about-content {
        flex-direction: column !important;
    }

    .about-image {
        margin-top: 20px !important;
        width: 100% !important;
    }

    .about-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
    }
}

/* ===================================
   LOGO FIX (CRITICAL FOR MOBILE ZOOM)
   =================================== */

@media screen and (max-width: 768px) {

    /* RESET LOGO SCALING */
    .nav-logo {
        margin-right: 0 !important;
        flex: 1;
        /* Agar logo ambil sisa ruang */
    }

    .nav-logo img {
        transform: none !important;
        /* HAPUS SCALE 2.8X */
        height: 40px !important;
        /* Tinggi wajar di HP */
        width: auto !important;
        top: 0 !important;
        position: relative !important;
        display: block !important;
    }

    /* Reset Container padding */
    .nav-container {
        padding: 10px 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* Pastikan menu hamburger terlihat */
    .nav-actions {
        display: flex !important;
        align-items: center !important;
    }

    .hamburger {
        display: block !important;
        margin-left: 10px;
    }
}

/* ===================================
   Text Alignment & Readability
   =================================== */
.about-text p,
.lead-text,
.news-excerpt,
.project-desc,
.article-content p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
}

/* Fix Card Spacing - Center Align for better balance */
.service-desc {
    text-align: center;
    line-height: 1.6;
}

.section-header .section-subtitle {
    text-align: center;
}