* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 90px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #45B54A;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    cursor: pointer;
    font-size: 20px;
}

.konsultasi-btn {
    background: #45B54A;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.konsultasi-btn:hover {
    background: #3a9940;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero1.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Account for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #45B54A;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #3a9940;
}

/* Service Checklist */
.service-checklist {
    list-style: none;
    margin: 15px 0 20px 20px;
}

.service-checklist li {
    position: relative;
    padding: 5px 0 5px 30px;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.service-checklist .checkmark {
    position: absolute;
    left: 0;
    top: 7px;
    width: 20px;
    height: 20px;
    background-color: #45B54A;
    border-radius: 50%;
}

.service-checklist .checkmark:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* About Us Section */
.about-us {
    padding: 100px 0 80px;
    background-color: #fff;
}

.about-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.about-title-line span {
    color: #45B54A;
    font-size: 18px;
    position: relative;
    padding: 0 20px;
}

.about-title-line span::before,
.about-title-line span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #45B54A;
}

.about-title-line span::before {
    right: 100%;
}

.about-title-line span::after {
    left: 100%;
}

.about-header h2 {
    font-size: 36px;
    color: #0D4A26;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

.feature-box {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-box-highlight {
    background-color: #fff;
    border: 2px solid #45B54A;
    position: relative;
}

.feature-box-highlight h3 {
    color: #0D4A26;
    font-weight: bold;
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon img,
.feature-icon svg {
    width: 50px;
    height: 50px;
}

.feature-icon svg {
    fill: #45B54A;
}

.feature-box h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.about-image {
    flex: 1;
}

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 24px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .logo {
        height: 35px;
    }

    .konsultasi-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    /* About Us responsive styles */
    .about-us {
        padding: 60px 0 40px;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-header h2 {
        font-size: 28px;
    }
    
    .about-content {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-box {
        padding: 15px;
    }
    
    .feature-box h3 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-title-line span::before,
    .about-title-line span::after {
        width: 20px;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-us-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-image {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    background-color: #45B54A;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.overlay-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.overlay-text {
    font-size: 12px;
    text-align: center;
}

.why-us-content {
    flex: 1;
    padding: 0 20px;
}

.why-us-header {
    margin-bottom: 30px;
}

.section-title-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.section-title-line span {
    color: #45B54A;
    font-size: 18px;
    position: relative;
    padding-right: 20px;
}

.section-title-line span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 30px;
    height: 1px;
    background-color: #45B54A;
}

.why-us-header h2 {
    font-size: 36px;
    color: #0D4A26;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-us-text {
    margin-bottom: 30px;
}

.why-us-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.why-us-button {
    display: inline-block;
    background: #45B54A;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.why-us-button:hover {
    background: #3a9940;
}

/* Why Us Responsive Styles */
@media (max-width: 968px) {
    .why-us {
        padding: 60px 0;
    }
    
    .why-us-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .why-us-header h2 {
        font-size: 28px;
    }
    
    .overlay-content {
        width: 100px;
        height: 100px;
    }
    
    .overlay-logo {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .why-us-text p {
        font-size: 14px;
    }
    
    .why-us-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title-line span::after {
        width: 20px;
    }
}

/* Services Section */
.services {
    background-color: #1e3c25;
    padding: 80px 0;
    color: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.services-leaf {
    display: inline-block;
    margin-bottom: 10px;
}

.services-leaf .icon {
    width: 30px;
    height: 30px;
    fill: #45B54A;
}

.services-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #45B54A;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
    position: relative;
    color: #333;
}

.service-content h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #1e3c25;
    padding-right: 40px;
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-icon .icon {
    width: 30px;
    height: 30px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #666;
}

/* Services Section Responsive */
@media screen and (max-width: 968px) {
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .services {
        padding: 40px 0;
    }
    
    .services-header {
        margin-bottom: 30px;
    }
    
    .services-title {
        font-size: 14px;
    }
    
    .services-header h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 180px;
    }
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.location-leaf {
    display: inline-block;
    margin-bottom: 10px;
}

.location-leaf .icon {
    width: 30px;
    height: 30px;
    fill: #45B54A;
}

.location-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #45B54A;
    margin-bottom: 10px;
}

.location-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background-color: #45B54A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.contact-text h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
    color: #333;
}

.contact-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.contact-text a {
    color: #45B54A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #1e3c25;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #45B54A;
    outline: none;
}

.contact-form .btn {
    background-color: #45B54A;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #1e3c25;
}

/* Footer */
.footer {
    background-color: #1e3c25;
    color: #fff;
    padding: 60px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #45B54A;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #45B54A;
}

.social-icon .icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

/* Location Section Responsive */
@media screen and (max-width: 968px) {
    .location {
        padding: 60px 0;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .location {
        padding: 40px 0;
    }
    
    .location-header {
        margin-bottom: 30px;
    }
    
    .location-title {
        font-size: 14px;
    }
    
    .location-header h2 {
        font-size: 28px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* How To Section */
.how-to {
    padding: 80px 0;
    background-color: #fff;
}

.how-to-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Statistics Styles */
.statistics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    fill: #45B54A;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #0D4A26;
}

.stat-number sup {
    font-size: 14px;
    color: #45B54A;
}

.stat-label {
    font-size: 14px;
    color: #555;
}

/* Steps Styles */
.steps-header {
    text-align: center;
    margin-bottom: 50px;
}

.steps-title {
    color: #45B54A;
    font-size: 18px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.steps-title::before,
.steps-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #45B54A;
}

.steps-title::before {
    right: 100%;
    margin-right: 15px;
}

.steps-title::after {
    left: 100%;
    margin-left: 15px;
}

.steps-header h2 {
    font-size: 36px;
    color: #0D4A26;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 22%;
}

.step-number {
    background-color: #45B54A;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-icon {
    background-color: #f9f9f9;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    fill: #45B54A;
}

.step-item h3 {
    font-size: 18px;
    color: #0D4A26;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* How To Responsive Styles */
@media (max-width: 968px) {
    .how-to {
        padding: 60px 0;
    }
    
    .how-to-container {
        padding: 0 20px;
    }
    
    .statistics {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-item {
        width: 45%;
    }
    
    .steps-header h2 {
        font-size: 28px;
    }
    
    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-item {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .statistics {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .steps-title::before,
    .steps-title::after {
        width: 20px;
    }
    
    .step-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon svg {
        width: 35px;
        height: 35px;
    }
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}