/* Custom CSS untuk Desain Modern dan Inovatif */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lora:wght@400;700&display=swap');

/* Basic Reset & Global Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f4f7; /* Very light cool grey */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: #004085; /* Dark blue for headings */
    margin-top: 0;
    margin-bottom: 20px;
}

h1 {
    font-size: 4.2em;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

h2 {
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
    color: #0056b3;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background-color: #007bff; /* Primary blue accent */
    border-radius: 5px;
}

h3 {
    font-size: 2em;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 1em;
    font-size: 1.1em;
    line-height: 1.7;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05em;
}

ul li::before {
    content: '→'; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: #007bff; /* Blue arrow */
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
}

strong {
    color: #004085;
}

/* Header Section */
.main-header {
    background: linear-gradient(145deg, #0056b3 0%, #007bff 100%);
    color: white;
    padding: 140px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 80px; /* More distinct rounded corner */
    border-bottom-right-radius: 80px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.header-title {
    margin-bottom: 10px;
}

.header-subtitle {
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 60px;
    opacity: 0.9;
}

.header-image-container {
    margin-top: 50px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.header-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Blocks */
.content-block {
    padding: 100px 0;
    border-bottom: 1px solid #e0e0e0;
}

.content-block:last-of-type {
    border-bottom: none;
}

.bg-accent {
    background-color: #eaf3fa; /* Light blueish background for emphasis */
}

.section-description {
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 70px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Strategy Cards */
.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card-item {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-bottom: 6px solid #007bff; /* Accent border */
}

.card-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.card-item i {
    font-size: 3.5em; /* Icon size */
    color: #007bff;
    margin-bottom: 20px;
    display: block;
}

.card-item h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #0056b3;
}

/* Icon Placeholders (using Unicode or simple shapes) */
.icon-tech::before { content: '💻'; } /* Laptop/Tech icon */
.icon-training::before { content: '🎓'; } /* Graduation cap/Training icon */
.icon-service::before { content: '🤝'; } /* Handshake/Service icon */


/* Split Layout (Text & Image Side-by-Side) */
.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.split-content-text {
    flex: 2;
    min-width: 350px;
}

.split-content-image {
    flex: 1;
    min-width: 300px;
}

.section-image-side {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}

/* Benefit Cards */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    border-top: 5px solid #28a745; /* Green accent */
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    font-size: 1.8em;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.benefit-card h3 {
    margin-top: 30px; /* Space for the number */
    color: #28a745;
}

/* Footer */
.main-footer {
    background-color: #2c3e50; /* Dark blue-grey */
    color: white;
    padding: 60px 20px;
    text-align: center;
    font-size: 1em;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.footer-nav {
    margin-top: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #007bff;
}

/* Animations (for header elements) */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlideUp 0.8s forwards ease-out;
}

.animate-in.delay-1 { animation-delay: 0.2s; }
.animate-in.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered animations for content blocks */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3.5em;
    }
    h2 {
        font-size: 2.5em;
    }
    .main-header {
        padding: 100px 20px 70px;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    .content-block {
        padding: 70px 0;
    }
    .split-layout {
        flex-direction: column;
        gap: 40px;
    }
    .split-content-image {
        order: -1; /* Image appears first on mobile */
    }
    .strategy-cards,
    .benefit-cards {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
    .footer-nav a {
        display: block;
        margin: 10px 0;
    }
    .main-footer {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 2em;
    }
    h3 {
        font-size: 1.6em;
    }
    .header-subtitle {
        font-size: 1.6em;
    }
    .header-image-container {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2em;
    }
    .header-subtitle {
        font-size: 1.2em;
    }
    .container {
        padding: 0 15px;
    }
    .header-image-container {
        max-width: 280px;
    }
    .benefit-number {
        font-size: 1.5em;
        width: 50px;
        height: 50px;
    }
}