/* Global Styles */
:root {
    --primary-color: #2AD7B0;
    --primary-dark: #0dafa4;
    --secondary-color: #ff6584;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --gray-color: #718096;
    --light-gray: #e2e8f0;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 1002;
  background-color: white;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-button.primary:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.cta-button.primary.big{
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.primary.big:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.cta-button.big {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-button.whatsapp {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.cta-button.whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Header Styles */
/* Perbaikan Header dan Navbar */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ini memastikan logo dan navbar sejajar */
    padding: 15px 20px; /* Padding yang konsisten */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001; /* Lebih tinggi dari navbar */
}


.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo h1 span {
    color: var(--primary-color);
}

/* Perbaikan Navbar */
.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--primary-color);
}

.navbar .cta-button {
    margin-left: 10px;
}

/* Perbaikan Mobile Menu */
.mobile-menu {
    display: none; /* Tetap disembunyikan di desktop */
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    padding: 110px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #f9faff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero .subheading {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 500px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.badge i {
    color: var(--success-color);
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Intro Section */
.intro {
    padding: 80px 0;
}

.intro h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.1);
}

.intro-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.intro-card p {
    color: var(--gray-color);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f9faff;
}

.benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray-color);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
}

.why-us .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-us-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.why-us-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.why-us-content {
    flex: 1;
}

.why-us h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.why-us ul {
    list-style: none;
}

.why-us ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.why-us ul li i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9faff;
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    font-size: 1.2rem;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.urgency h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.urgency-offer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.offer-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    min-width: 250px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.offer-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-card p {
    opacity: 0.8;
}

.countdown {
    margin: 40px 0;
}

.countdown p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px 15px;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.guarantee p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact p {
    color: var(--gray-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--gray-color);
}

.response-time i {
    color: var(--primary-color);
}

/* Note Section */
.note {
    padding: 40px 0;
    background-color: #fff8f8;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.note p {
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 40px;
    margin-bottom: 40px;
}


.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo h1 {
    color: white;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .hero .subheading {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .why-us .container {
        flex-direction: column;
    }
}


/* Perbaikan Responsive */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding-top: 80px; /* Memberi ruang untuk header */
    }
    
    .navbar.active {
        transform: translateY(0);
    }
    
    .mobile-menu {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .navbar .cta-button {
        margin: 0;
    }
    
    /* Pastikan menu tidak disembunyikan oleh style lain */
    .navbar {
        display: flex !important;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero .subheading {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
    }
    
    .intro-grid, .benefits-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}