/*--------------------------------------------------------------
# Global Styles & Variables
--------------------------------------------------------------*/
:root {
    --ag-green: #2e7d32;
    --ag-green-light: #E8F5E9;
    --ag-blue: #1565C0;
    --ag-yellow: #FACC15;
    --ag-orange: #F57C00;
    --ag-white: #ffffff;
    --ag-text-dark: #333333;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: var(--ag-text-dark);
}

/*--------------------------------------------------------------
# Utility & Layout
--------------------------------------------------------------*/
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-weight: 700;
    color: var(--ag-text-dark);
    margin-bottom: 1rem;
}

.company-profile-section .section-title {
    color: var(--ag-white);
}

.divider-line {
    width: 80px;
    height: 3px;
    background-color: var(--ag-yellow);
    margin: 0 auto 3rem auto;
}

/*--------------------------------------------------------------
# Navigation Bar
--------------------------------------------------------------*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(46, 125, 50, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}

.navbar .nav-link {
    color: var(--ag-white);
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--ag-yellow);
}

.btn-get-started {
    background-color: var(--ag-yellow);
    color: #1a202c;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    background-color: #eab308;
    color: #000;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    background-image: url('assets/drone.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Sedikit lebih gelap untuk kontras teks */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    max-width: 550px;
}

.btn-book {
    background-color: var(--ag-yellow);
    color: #1a202c;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #eab308;
    color: #000;
}

/*--------------------------------------------------------------
# Features Section (Split Banner)
--------------------------------------------------------------*/
.features-section {
    background-color: var(--ag-yellow);
    padding: 2rem 0;
}

.client-avatars .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -20px;
    object-fit: cover;
}

.client-avatars .avatar:first-child {
    margin-left: 0;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-section {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -15%;
    width: 50%;
    height: 120%;
    background: var(--ag-blue);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 60% 100%);
    opacity: 0.8;
    z-index: 0;
}

.about-section .text-content {
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.about-section .text-content h1 {
    display: inline;
    background: linear-gradient(120deg, var(--ag-yellow) 0%, var(--ag-yellow) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.4em;
    background-position: 0 88%;
    transition: all 0.25s ease-in;
}

.about-section .text-content h1:hover {
    background-size: 100% 100%;
}

.image-gallery .image-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    height: 500px;
}

.image-gallery .image-wrapper {
    overflow: hidden;
    position: relative;
}

.image-gallery .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-gallery .image-wrapper:hover img {
    transform: scale(1.1);
}

.image-gallery .shape1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.image-gallery .shape2 {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    padding-right: 10px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#services {
    background-color: #f8f9fa;
}

#services .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

#services .feature-icon {
    font-size: 2.5rem;
    color: var(--ag-green);
}

/*--------------------------------------------------------------
# Vision & Mission Section
--------------------------------------------------------------*/
.vision-mission-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa; /* Latar belakang lembut */
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -15%;
    width: 50%;
    height: 150%;
    background: var(--ag-blue);
    clip-path: polygon(0 0, 40% 0, 60% 100%, 0% 100%);
    opacity: 0.8;
    z-index: 0;
}

.vision-mission-section .container {
    position: relative;
    z-index: 1;
}

.vm-box {
    background-color: var(--ag-green);
    color: var(--ag-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vm-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ag-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.vm-box ul {
    padding-left: 20px;
}

/*--------------------------------------------------------------
# Pillars Section
--------------------------------------------------------------*/
.pillars-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin-top: -1px;
}

.pillars-section .container {
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .pillars-section .container {
        padding: 0 30px;
    }
}

@media (min-width: 1200px) {
    .pillars-section .container {
        padding: 0 50px;
    }
}

.pillar-card {
    border: none;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.pillar-card-header {
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
}

.pillar-card-header h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 2rem;
}

.pillar-card-header .title-agro { color: var(--ag-blue); }
.pillar-card-header .title-mina { color: var(--ag-green); }
.pillar-card-header .title-biotech { color: var(--ag-yellow); }

.pillar-card .card-body {
    background-color: var(--ag-green-light);
    padding: 20px;
}

@media (min-width: 768px) {
    .pillar-card .card-body {
        padding: 25px;
    }
}

@media (min-width: 1200px) {
    .pillar-card .card-body {
        padding: 30px;
    }
}

/*--------------------------------------------------------------
# Company Profile Section
--------------------------------------------------------------*/
.company-profile-section {
    padding: 80px 0;
    background-color: var(--ag-green);
    color: var(--ag-white);
}

.preview-image {
    width: 30rem;
    transition: transform 0.5s ease;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.preview-image:hover {
    transform: scale(1.05);
}

/* Membuat gambar pemicu modal lebih interaktif */
#previewImage {
    transition: opacity 0.3s ease;
}

#previewImage:hover {
    opacity: 0.8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/*--------------------------------------------------------------
# Catalog Section
--------------------------------------------------------------*/
.catalog-section {
    padding: 80px 0;
    background-color: var(--ag-green);
    color: var(--ag-white);
}
.catalog-scroll-wrapper {
    position: relative;
}

.catalog-scroll-container {
    display: flex;
    overflow-x: auto; /* Memungkinkan scroll horizontal */
    overflow-y: hidden;
    white-space: nowrap; /* Mencegah item turun ke baris baru */
    padding-bottom: 20px; /* Memberi ruang jika scrollbar terlihat */
    scroll-behavior: smooth; /* Efek scroll halus saat pakai tombol */
    -webkit-overflow-scrolling: touch; /* Smooth scroll di iOS */
    will-change: scroll-position; /* Optimasi performa */

    /* Scrollbar styling will be handled by webkit scrollbar below */
}

/* Style scrollbar horizontal untuk tampilan yang menarik */
.catalog-scroll-container::-webkit-scrollbar {
    height: 8px; /* Tinggi scrollbar */
}

/* Track scrollbar (jalur scrollbar) */
.catalog-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 20px; /* Margin di kiri dan kanan */
}

/* Handle scrollbar (bagian yang bisa digeser) */
.catalog-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--ag-yellow) 0%, var(--ag-blue) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Handle scrollbar saat hover */
.catalog-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #eab308 0%, #0d47a1 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Style untuk Firefox */
.catalog-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: var(--ag-yellow) rgba(255, 255, 255, 0.1);
}

.catalog-card {
    display: inline-block; /* Membuat card berjajar */
    width: 300px; /* Lebar card tetap */
    flex-shrink: 0; /* Mencegah card menyusut */
    margin-right: 1.5rem; /* Jarak antar card (24px) */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Agar border-radius di gambar rapi */
}

.catalog-card:last-child {
    margin-right: 0;
}


.catalog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.catalog-card img {
    width: 100%;
    height: 200px; /* Tinggi gambar seragam */
    object-fit: cover; /* Gambar akan terpotong (crop) agar pas */
}

.catalog-card-body {
    padding: 1rem;
    white-space: normal; /* Mengembalikan white-space normal untuk teks */
}

.catalog-title {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #1a4d2e; /* Warna hijau tua (sesuaikan jika perlu) */
    margin-bottom: 0.5rem;
}

.catalog-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

/* Tombol Navigasi Scroll */
.btn-scroll-nav {
    position: absolute;
    top: 50%;
    /* Atur agar tombol ditengah vertikal card (200px tinggi img + 110px tinggi body) / 2 = 155px. 
       Dikurangi setengah tinggi tombol (22.5px) = 132.5px */
    top: 132.5px; 
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-scroll-nav:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#catalog-prev-btn {
    left: -20px; /* Sedikit di luar kontainer */
}

#catalog-next-btn {
    right: -20px; /* Sedikit di luar kontainer */
}

/* CSS untuk membuat tombol berdampingan */
.catalog-buttons {
    display: flex;
    gap: 0.5rem; /* Memberi jarak antar tombol */
}

.catalog-buttons .btn {
    flex-grow: 1; /* Membuat kedua tombol sama lebar */
    flex-basis: 0; /* Memastikan flex-grow berfungsi dengan benar */
}

/* Sembunyikan tombol di mobile, karena scroll-swipe lebih natural */
@media (max-width: 767.98px) {
    .btn-scroll-nav {
        display: none;
    }
    .catalog-scroll-container {
         /* Beri padding di awal agar card tidak menempel di tepi */
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .catalog-card {
        width: 250px; /* Kecilkan card di mobile */
        margin-right: 1rem;
    }
}

/* Perbaikan scroll horizontal untuk performa yang lebih baik */
.catalog-scroll-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scroll di iOS */
    will-change: scroll-position; /* Optimasi performa */
}

/* Pastikan scroll container tidak overflow di container utama */
.catalog-scroll-wrapper {
    overflow: hidden; /* Pastikan tidak ada overflow horizontal di wrapper */
}

/* Tambahan untuk scroll indicator (opsional) */
.catalog-scroll-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--ag-yellow) 50%, transparent 100%);
    opacity: 0.3;
    pointer-events: none;
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.modal-content {
    background: transparent;
    border: none;
}
.modal-header .btn-close-white {
    opacity: 1;
    font-size: 1rem;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--ag-green);
    flex-shrink: 0;
}

.contact-info .contact-text {
    flex: 1;
}

.contact-info .contact-text strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--ag-text-dark);
}

.contact-info .contact-text p {
    color: #666;
    line-height: 1.5;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background-color: var(--ag-green);
    color: #f1f1f1;
    padding: 60px 0 0;
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--ag-white);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--ag-yellow);
    padding-left: 5px;
}

.site-footer .contact-info {
    list-style: none;
    padding-left: 0;
}

.site-footer .contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.site-footer .contact-info i {
    color: var(--ag-yellow);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--ag-white);
    text-decoration: none;
    margin-right: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--ag-yellow);
    color: var(--ag-text-dark);
    transform: translateY(-3px);
}

.copyright-bar {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
    .hero-text {
        text-align: center;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .about-section .text-content {
        padding: 2rem;
        text-align: center;
    }
    .about-section .text-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    .about-section .text-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    .image-gallery {
        margin-top: 2rem;
    }
    .image-gallery .image-grid {
        height: 400px;
        gap: 10px;
    }
    .vision-mission-section::before {
        clip-path: polygon(0 0, 100% 0, 100% 25%, 0 50%);
        height: 50%;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 3rem 0;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    /* About Section Mobile Optimization */
    .about-section {
        padding: 2rem 0;
    }
    .about-section::before {
        display: none;
    }
    .about-section .text-content {
        padding: 1rem;
        text-align: center;
        order: 1;
    }
    .about-section .text-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    .about-section .text-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .about-section .image-gallery {
        order: 2;
        margin-top: 1rem;
    }
    .image-gallery .image-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .image-gallery .image-wrapper {
        clip-path: none !important;
        border-radius: 12px;
        margin-bottom: 0;
        height: 250px;
    }
    .image-gallery .shape1,
    .image-gallery .shape2 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .image-gallery .image-wrapper img {
        height: 100%;
        object-fit: cover;
    }
    
    .pillar-card {
        margin-bottom: 20px;
    }
    .pillar-card-header h3 {
        font-size: 1.75rem;
    }
    .pillar-card .card-body h5 {
        font-size: 1.2rem;
    }
    .pillar-card .card-body p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .row.g-4 {
        margin-left: -10px;
        margin-right: -10px;
    }
    .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Tablet Specific Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .about-section .text-content {
        padding: 1.5rem 2rem;
    }
    .about-section .text-content h1 {
        font-size: 2.5rem;
    }
    .about-section .text-content p {
        font-size: 1rem;
    }
    .image-gallery .image-grid {
        height: 350px;
    }
    .image-gallery .shape1 {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    .image-gallery .shape2 {
        grid-column: 2 / 4;
        grid-row: 2 / 4;
        padding-right: 15px;
    }
}

/* Mobile Landscape Optimization */
@media (max-width: 767.98px) and (orientation: landscape) {
    .about-section .text-content h1 {
        font-size: 1.8rem;
    }
    .about-section .text-content p {
        font-size: 0.9rem;
    }
    .image-gallery .image-wrapper {
        height: 200px;
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .about-section .text-content h1 {
        font-size: 1.8rem;
    }
    .about-section .text-content p {
        font-size: 0.9rem;
    }
    .image-gallery .image-wrapper {
        height: 200px;
    }
}

/* ========================================= */
/* PERBAIKAN EFEK HOVER (CARD & TOMBOL) */
/* ========================================= */

/* 1. Paksa hilangkan efek hover 'mengambang' PADA CARD di SEMUA UKURAN LAYAR */
.catalog-card:hover {
    transform: none; /* Membatalkan efek 'mengambang' */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Kembalikan ke shadow normal */
}

/* 2. Paksa hilangkan efek hover PADA TOMBOL di dalam card */

/* Hapus animasi transisi */
.catalog-buttons .btn {
    transition: none !important;
}

/* Paksa tombol 'Lihat Detail' (outline-primary) 
   MENGGUNAKAN WARNA TEMA ANDA (--ag-blue)
*/
.catalog-buttons .btn-outline-primary,
.catalog-buttons .btn-outline-primary:hover,
.catalog-buttons .btn-outline-primary:focus,
.catalog-buttons .btn-outline-primary:active {
    color: #fff !important; /* <-- DIGANTI ke --ag-blue */
    background-color: var(--ag-blue) !important;
    border-color: var(--ag-blue) !important; /* <-- DIGANTI ke --ag-blue */
    box-shadow: none !important; 
}

/* Paksa tombol 'Unduh PDF' (warning) 
   MENGGUNAKAN WARNA TEMA ANDA (--ag-yellow)
*/
.catalog-buttons .btn-warning,
.catalog-buttons .btn-warning:hover,
.catalog-buttons .btn-warning:focus,
.catalog-buttons .btn-warning:active {
    color: #fff !important;
    background-color: var(--ag-yellow) !important; /* <-- DIGANTI ke --ag-yellow */
    border-color: var(--ag-yellow) !important; /* <-- DIGANTI ke --ag-yellow */
    box-shadow: none !important; 
}
/* ========================================= */
/* PENYESUAIAN PADDING MOBILE KANAN & KIRI
/* ========================================= */

/* Terapkan pada layar di bawah 768px (breakpoint mobile Anda) */
@media (max-width: 767.98px) {

    /* * Target ini adalah semua section utama Anda.
     * Kita tambahkan padding di kiri dan kanan agar konten 
     * tidak menempel di tepi layar HP.
     * (Nilai '1rem' setara dengan 16px dan bisa Anda sesuaikan)
     */
    .section-padding,
    .about-section,
    .vision-mission-section,
    .pillars-section,
    .company-profile-section,
    .catalog-section,
    .contact-section,
    #services {
        padding-left: 1rem;  /* Tambah padding kiri */
        padding-right: 1rem; /* Tambah padding kanan */
    }

    /* * Khusus untuk .about-section .text-content, 
     * di CSS Anda sudah diberi 'padding: 1rem;'.
     * Aturan di atas akan membuat padding section .about-section 
     * (induknya) juga memiliki padding, yang sudah benar.
     */
}

