/* 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;
		--border-radius-sm: 8px;

	--footer-bg: #1e322b; /* Sesuaikan dengan warna hijau gelap desain Anda */
	--footer-accent: #a8cf7d; /* Warna teks hijau terang */
	--footer-text: #ffffff;
	--footer-line: rgba(168, 207, 125, 0.3); /* Warna garis pemisah */
}

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

.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-color: var(--primary);
	color: var(--white);
	padding: 5rem 1.5rem 2rem;
	font-family: 'Lexend', sans-serif;
	margin-top: -40px;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	z-index: 20;
	position: relative;
}

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

/* --- Header Section --- */
.footer-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 4rem;
}

.company-desc {
	font-size: clamp(1rem, 0.8043rem + 0.8696vw, 1.5rem);
	line-height: 1.5;
	font-weight: 500;
	max-width: 900px;
	margin: 0;
	font-family: Lexend, sans-serif;
	color: var(--footer-text);
}

.back-to-top {
	display: none; /* Sembunyikan di mobile */
	background: #ffffff;
	color: var(--footer-bg);
	border: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 2rem;
	transition: background 0.3s;
}

.back-to-top:hover {
	background: var(--footer-accent);
}

/* --- Contact Info Grid --- */
.footer-contact-grid {
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;
	gap : 1rem
}

.footer-contact-item {
	/*padding: 1.5rem 0;*/
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--accent-2);
}

.footer-contact-item:first-child {
	padding-top: 0;
}

.contact-label {
	color: var(--primary-green);
	font-size: clamp(0.75rem, 0.6522rem + 0.4348vw, 1rem);
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}

.contact-value, .contact-value a {
	color: var(--footer-text);
	font-size: clamp(0.75rem, 0.6522rem + 0.4348vw, 1rem);
	line-height: 1.5;
	text-decoration: none;
	font-weight: 300;
}

/* --- Navigation Links --- */
.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 2rem;
	font-weight: 300;
	font-size: clamp(0.75rem, 0.6522rem + 0.4348vw, 1rem);
}

.footer-nav a {
	color: var(--footer-text);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 300;
	transition: color 0.3s;
}

.footer-nav a:hover {
	color: var(--footer-accent);
}

/* --- Giant Logo --- */
.footer-giant-logo {
	margin-bottom: 2rem;
}

.giant-logo-img {
	width: 100%;
	height: auto;
	display: block;
}

/* --- Bottom Section --- */
.footer-bottom {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	justify-content: space-between;
}

.footer-lang {
	display: flex;
	gap: 1rem;
}

.footer-text {
	font-weight: 300;
	font-size: 2rem;
	text-transform: uppercase;
}

.footer-lang a {
	color: var(--footer-text);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 300;
}

.footer-lang a.lang-active {
	color: var(--footer-accent);
}

.footer-copyright {
	font-size: 0.875rem;
	font-weight: 300;
}

/* --- Responsive Utility Classes --- */
.desktop-hide {
	display: flex;
}
.mobile-hide {
	display: none;
}

/* --- DESKTOP VIEW --- */
@media (min-width: 768px) {
	.site-footer {
		padding: 5rem 3rem 2rem;
	}

	.company-desc {
		font-size: 1.5rem;
	}

	.back-to-top {
		display: flex; /* Munculkan di desktop */
	}

	.footer-contact-grid {
		flex-direction: row;
		margin-bottom: 4rem;
	}

	.footer-contact-item {
		flex: 1;
		padding: 0 2rem;
		border-bottom: none;
		border-left: 1px solid var(--accent-2);
	}

	.footer-contact-item:first-child {
		padding-left: 0;
		border-left: none; /* Item pertama tidak ada garis vertikal di kiri */
	}

	/* Tukar kemunculan navigasi */
	.desktop-hide {
		display: none;
	}
	.mobile-hide {
		display: flex;
	}
	.footer-nav {
		margin-bottom: 0;
		width: 50%;
	}

	.footer-giant-logo {
		margin-bottom: 3rem;
	}

	.footer-bottom {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 2rem;
	}

	.footer-bottom .footer-nav {
		flex: 6 1 0%;
		justify-content: flex-start;
	}

	.footer-bottom .footer-lang {
		flex: 1 1 auto;
		justify-content: center;
	}

	.footer-bottom .footer-copyright {
		flex: 1 1 auto;
		text-align: right;
	}

}

/* ===== 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: 5rem;
}

/* Typography Fluid */
.banner-title {
	font-family: 'Lexend', sans-serif;
	font-size: clamp(2.75rem, 1.087rem + 7.3913vw, 7rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--white);

	max-width: 100%;
}

.banner-title-hero {
	font-family: 'Lexend', sans-serif;
	font-size: clamp(2.5rem, 8vw, 7rem);
	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-hero {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	align-items: end;
	gap: 2rem;
}

.banner-description-text {
	font-family: 'Lexend', sans-serif;
	font-size: clamp(0.875rem, 0.7283rem + 0.6522vw, 1.25rem);
	font-weight: 300;
	line-height: 1.6;
	color: white;
	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-sm);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.banner-image-spacing {
	margin-top: 3rem;
}

.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);
	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 ===== */

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

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

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

	.banner-hero {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		align-items: end;
		gap: 2rem;
	}

	.banner-hero .hero-content {
		grid-column: span 4;
		margin-bottom: 0;
		padding-left: 0;
	}

	.banner-hero .scroll-down-container {
		grid-column: span 2;
		justify-self: end;
		margin-bottom: 0;
		margin-top: 0;
	}

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

	.banner-image-wrapper {
		aspect-ratio: 21 / 9;
	}
	.hero-banner {
		height: 55rem;
	}
}

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

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

	.featured-image-wrapper img {
		transform: scale(1.7);
	}

	.featured-image-wrapper:hover img {
		transform: scale(1.9);
	}

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

