/* style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #1ABC9C;
  --secondary-color: #2C3E50;
  --accent-color: #E74C3C;
  --light-color: #ECF0F1;
  --dark-color: #182633;
  --gradient-primary: linear-gradient(135deg, #1ABC9C 0%, #2C3E50 100%);
  --hover-color: #F1C40F;
  --background-color: #FFFFFF;
  --text-color: #34495E;
  --border-color: rgba(44, 62, 80, 0.1);
  --divider-color: rgba(26, 188, 156, 0.2);
  --shadow-color: rgba(44, 62, 80, 0.08);
  --highlight-color: #F1C40F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Work Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

.content-section, .features-section, .divider-section, .cta-section, .testimonials-section, .form-promo-section, .contact-section, .faq-section {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}

.hover-underline {
    transition: color 0.3s ease;
}

.hover-underline:hover {
    color: var(--hover-color) !important;
}

#menu-aktif:checked ~ .navigation {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 20px 0;
    z-index: 1000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

#menu-aktif:checked ~ .navigation ul {
    flex-direction: column;
    align-items: center;
}

#menu-aktif:checked ~ .navigation ul li {
    margin: 15px 0 !important;
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }
}

.feature-item, .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover, .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(26, 188, 156, 0.15) !important;
}

.faq-item {
    transition: all 0.2s ease;
}

.faq-item:hover {
    background-color: #FFFFFF !important;
    border-color: var(--primary-color) !important;
}

summary::-webkit-details-marker {
    display: none;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(26, 188, 156, 0.2);
}

button[type="submit"]:hover, a.inline-block:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}