/* Additional Sections CSS */

:root {
    --primary: #18362C;
    --accent-1: #A3DB7F;
    --accent-2: #2BA269;
    --grey-shade: #F5F5F7;
    --black: #000000;
    --white: #FFFFFF;

		--container-width: 1240px;
		--container-padding: clamp(1.25rem, 5vw, 3rem);
		--border-radius-lg: 24px;
		--border-radius-md: 16px;
}

/* Section Container & Utilities */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Lexend', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.section-intro {
    font-family: 'Lexend', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #666;
}

.accent-text {
    color: var(--accent-1);
}

.section-description {
    font-family: 'Lexend', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.5;
    color: #555;
    margin-bottom: 2rem;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--grey-shade);
}

/* ===== Section 2: Enable Connection ===== */
.section-enable-connection {
    padding: 6rem 0;
    background: var(--white);
}

.enable-connection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.enable-connection-image {
    order: 2;
}

.enable-connection-content {
    order: 1;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-1);
    color: var(--black);
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

.btn-arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover .btn-arrow {
    transform: translateX(3px);
}

/* ===== Section 3: Infrastructure Services ===== */
.section-infrastructure {
    padding: 6rem 0;
    background: var(--grey-shade);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--black);
    stroke-width: 2;
}

.service-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.service-description {
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}

/* ===== Section 4: Work Environments ===== */
.section-work-environments {
    padding: 6rem 0;
    background: var(--white);
}

.work-env-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.work-env-image {
    order: 2;
}

.work-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: var(--grey-shade);
    border-radius: 12px;
    border-left: 4px solid var(--accent-1);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--black);
    stroke-width: 2;
}

.feature-item h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.feature-item p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}

/* ===== Section 5: How People Work ===== */
.section-how-people-work {
    padding: 6rem 0;
    background: var(--grey-shade);
}

.how-people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-people-image {
    order: 1;
}

.how-people-content {
    order: 2;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.benefits-list li {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

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

.benefit-number {
    font-family: 'Lexend', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-1);
    flex-shrink: 0;
}

.benefits-list h4 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.benefits-list p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}

/* ===== Section 6: Indonesian CTA ===== */
.section-indonesian-cta {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
}

.indonesian-cta-content {
    text-align: center;
}

.cta-title {
    font-family: 'Lexend', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--white);
}

.cta-title .accent-text {
    color: var(--accent-1);
}

.cta-description {
    font-family: 'Lexend', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-primary {
    display: inline-block;
    background: var(--accent-1);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-radius: 2rem 2rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Lexend', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-1);
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-section-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-1);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-nav-links,
.footer-language-links {
    list-style: none;
    padding: 0;
}

.footer-nav-links li,
.footer-language-links li {
    margin-bottom: 0.75rem;
}

.footer-nav-links a,
.footer-language-links a {
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover,
.footer-language-links a:hover {
    color: var(--accent-1);
}

.lang-active {
    color: var(--accent-1) !important;
    font-weight: 600;
}

.footer-info-item {
    margin-bottom: 1.5rem;
}

.footer-info-item h4 {
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-1);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-info-item p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.6;
}

.footer-info-item a {
    color: var(--accent-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-item a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Lexend', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .enable-connection-grid,
    .work-env-grid,
    .how-people-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enable-connection-image,
    .work-env-image,
    .how-people-image {
        order: 0 !important;
    }

    .enable-connection-content,
    .work-env-content,
    .how-people-content {
        order: 0 !important;
    }

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

    .work-features {
        gap: 1rem;
    }

    .benefits-list li {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

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

		.scroll-down-icon {
			display: flex;
		}

		.hero-content {
			padding-bottom: 0;
			padding-left: 0;
		}

		.hero-title {
			font-size: 5rem;
		}
}

 /* Start Banner Class */
.common-container,
.banner-container,
.section-container {
	max-width: var(--container-width);
	margin: 0 auto;
	/*padding-inline: var(--container-padding);*/
	padding-inline: 1.2rem;
	width: 100%;
	box-sizing: border-box;
}

/* ===== Animations (Fade, Scale, Slide) ===== */

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
	will-change: transform, opacity;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.reveal.fade-up { transform: translateY(40px); }
.reveal.fade-up.active { transform: translateY(0); }

.reveal.scale-in { transform: scale(0.92); opacity: 0; }
.reveal.scale-in.active { transform: scale(1); opacity: 1; }

.reveal.slide-left { transform: translateX(-40px); }
.reveal.slide-right { transform: translateX(40px); }
.reveal.slide-left.active,
.reveal.slide-right.active { transform: translateX(0); }

/* Stagger Delay Helper */
.delay-100.active { transition-delay: 0.1s; }
.delay-200.active { transition-delay: 0.2s; }
.delay-300.active { transition-delay: 0.3s; }


/* ===== Banner Section ===== */
.banner-wrapper {
	background-color: var(--primary);
	padding-top: 160px;
	overflow: hidden;
}

.banner-header {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 4rem;
}

/* Typography Fluid */
.banner-title {
	font-family: 'Lexend', sans-serif;
	font-size: clamp(2.5rem, 8vw, 5.5rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--white);
	letter-spacing: -0.02em;
}

.banner-title .accent-text {
	color: var(--accent-2);
}

/* Meta Section (Scroll Button & Description) */
.banner-meta {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.banner-description-text {
	font-family: 'Lexend', sans-serif;
	font-size: clamp(1rem, 2vw, 1.125rem);
	font-weight: 300;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	max-width: 100%;
}

.scroll-down-container {
	display: flex;
	margin-top: auto;
	margin-bottom: 10vh;
}

.circle-white {
	width: 48px;
	height: 48px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.circle-white:hover {
	transform: translateY(5px);
}

/* Banner Image Wrapper */
.banner-image-wrapper {
	width: 100%;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	aspect-ratio: 16 / 9;
}

.banner-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.banner-image-wrapper:hover .banner-image {
	transform: scale(1.05);
}

/* Featured Image Section */
.featured-image-section {
	padding: 0;
	background-color: var(--white);
	width: 100%;
	margin-bottom: 0;
}

.featured-image-wrapper {
	width: 100%;
	height: clamp(400px, 60vh, 800px); /* Tinggi responsif yang lebih dramatis */
	border-radius: 0;
	overflow: hidden;
	position: relative;
}

.featured-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation Hover */
.featured-image-wrapper:hover img {
	transform: scale(1.05);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet & Desktop (min-width: 768px) */
@media (min-width: 768px) {
	.banner-wrapper {
		padding-top: 160px;
		padding-bottom: 80px;
	}
	.banner-header {
		gap: 6rem;
		margin-bottom: 6rem;
	}

	.banner-meta {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}

	.banner-description-text {
		max-width: 800px;
		margin-left: auto;
	}

	.banner-image-wrapper {
		aspect-ratio: 21 / 9;
	}
}

/* Mobile Specific Adjustments */
@media (max-width: 767px) {
	.banner-title {
		word-break: break-word;
	}

	.banner-image-wrapper {
		aspect-ratio: 4 / 3;
	}

	.scroll-down-container {
		display: none;
	}
}

/* --- Banner Hero --- */
.hero-banner {
	position: relative;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;

	padding-bottom: 8vh;
	box-sizing: border-box;
}

.hero-banner::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 10;

	text-align: left;
	margin-bottom: 10vh;
	padding-left: 0;
	padding-bottom: 0;
}

.hero-title {
	margin: 0;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	color: #ffffff;
}

.hero-title .accent-text {
	color: var(--accent-2);
}

.scroll-down-icon {
	display: none;
	position: relative;
	z-index: 10;
	width: 50px;
	height: 50px;
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	cursor: pointer;
	color: #333;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.scroll-down-icon:hover {
	transform: translateY(5px);
}

.scroll-down-icon svg {
	width: 30px;
	height: 30px;
}

