
/* General Styling */
body {
    font-family: 'Montserrat', sans-serif; /* Font modern */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif; /* Font tebal untuk judul */
    color: #222;
    margin-bottom: 15px;
}

p {
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background-color: #ff5722; /* Oranye cerah */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none; /* Jika digunakan pada anchor tag */
}

.cta-button:hover {
    background-color: #e64a19; /* Oranye lebih gelap saat hover */
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay gelap untuk teks yang lebih jelas */
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9em;
    opacity: 0.8;
    cursor: pointer;
}

.scroll-down i {
    font-size: 2em;
    margin-bottom: 5px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.info-item {
    flex: 1;
    min-width: 280px;
    margin: 20px;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item .icon {
    font-size: 3em;
    color: #ff5722;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.info-item p {
    font-size: 1.1em;
    color: #666;
}

/* About Section */
.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.about-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-right: 40px;
}

.about-content h2 {
    font-size: 3em;
    color: #222;
}

.about-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}
.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 3em;
    margin-bottom: 50px;
    color: #222;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: #fdfdfd;
    border-left: 5px solid #ff5722;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.testimonial-card span {
    display: block;
    font-weight: bold;
    color: #ff5722;
    font-size: 0.95em;
}

/* CTA Bottom Section */
.cta-bottom-section {
    background-color: #333; /* Latar belakang gelap */
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-bottom-section h2 {
    font-size: 3em;
    color: white;
    margin-bottom: 20px;
}

.cta-bottom-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9em;
}

footer p {
    margin-bottom: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff5722;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5em;
    }
    .hero-content p {
        font-size: 1.3em;
    }
    .about-content {
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .info-section {
        flex-direction: column;
        align-items: center;
    }
    .info-item {
        max-width: 400px;
    }
    .about-section {
        flex-direction: column;
        text-align: center;
    }
    .about-content {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .about-image {
        margin-top: 20px;
    }
    .testimonials-section h2, .cta-bottom-section h2, .about-section h2 {
        font-size: 2.5em;
    }
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 0.9em;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .scroll-down {
        bottom: 15px;
        font-size: 0.8em;
    }
    .info-item h3 {
        font-size: 1.5em;
    }
    .info-item p {
        font-size: 1em;
    }
}
