@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #064EA6;
    --bg-color: linear-gradient(220deg, #66CCFF, #1152D4);
    /* Teal */
    --secondary-color: #F7931E;
    /* Orange */
    --dark-bg: #1A1A1A;
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Work Sans", sans-serif;
}

p {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}


body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    width: 100%;
}

.mobile-cta-container {
    display: none;
}

/* Header */
header {
    background-color: transparent;
    padding: 20px 0;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    transition: all 0.3s ease;
}

.btn-close {
    display: none;
}

.btn-cta-orange {
    display: none;
}

header.scrolled {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo,
header.scrolled .nav-links a {
    color: var(--text-color);
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li {
    position: relative;
    /* For dropdown positioning */
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}


.nav-links a:hover {
    color: var(--text-color);
}

/* Dropdown Styles */
.dropdown-content {
    display: block;
    /* Change to block but use opacity/visibility for transition */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: var(--border-radius);
    padding: 10px 0;
    top: 150%;
    left: 0;
    transition: all 0.3s ease;
    transition-delay: 0.2s;
    /* Delay hiding */
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    top: 100%;
    /* Slight animation */
    transition-delay: 0s;
    /* Show immediately on hover */
}

.dropdown-content li {
    width: 100%;
    list-style-type: none;
}

.dropdown-content li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 0.9rem;
}

.dropdown-content li a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-content {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 102%;
    top: -10px;
    /* Slight offset for animation */
    min-width: 220px;
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 0;
    z-index: 1001;
    transition: all 0.3s ease;
    transition-delay: 0.2s;
}

.dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    top: 0;
    transition-delay: 0s;
}



.btn-cta {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 40px;
    font-size: 14px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-radius: 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--bg-color);
    color: var(--white);
    padding: 150px 0 120px;
    text-align: left;
    position: relative;
    border-bottom-left-radius: 0;
    height: 850px;
    /* Removed curve based on new image, looks flatter or different curve, assuming full width block for now or subtle */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    max-width: 540px;
}

.hero-text h1 {
    font-size: 34px;
    margin-bottom: 45px;
    line-height: 1.2;
    font-weight: 600;
}

.hero-text p {
    margin-bottom: 45px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}


/* Countdown Timer */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 48px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

.timer-box {
    background-color: #111;
    color: var(--white);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.time-val {
    font-size: 2.2rem;
    font-weight: 700;
}

.time-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.timer-separator {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 35px;
    /* Aligns with boxes */
    padding: 0 5px;
}

.timer-separator span {
    display: block;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
}

.btn-hero-promo {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.hero-image {
    max-width: 50%;
}

/* Social icons removed from hero in this version */

/* Packages Section */
.packages {
    padding: 100px 0;
    text-align: center;
    background-color: var(--white);
}

.section-title h2 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 2rem;
    max-width: 1200px;
}

.package-title-maintenace {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-family: "Roboto", sans-serif;
}

.package-desc-maintenace {
    font-size: 18px;
    color: #a4a4a4;
    margin-bottom: 50px;
    padding: 0 10px;
    /* Aligns buttons better */
    line-height: 1.5;
    letter-spacing: 1px;
}

.title-underline {
    width: 50px;
    height: 3px;
    background-color: var(--text-color);
    margin: 0 auto 20px;
}

.section-title p {
    color: #666;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.package-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border: 1px solid #f8f8f8;
    padding: 65px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 380px;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-title {
    color: #064EA6;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.package-desc {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    padding: 0 10px;
    /* Aligns buttons better */
    line-height: 1.5;
    margin-right: 10px;
    margin-left: 10px;
}

.start-from {
    font-size: 14px;
    color: #bbb;
    /* Subtle grey like in image */
    margin-bottom: 40px;
    font-weight: 400;
}

.package-price {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 50px;
}

.previous-price {
    /* Removed in new design */
    display: none;
}

.btn-package {
    display: inline-block;
    background-color: #ff7a00;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    max-width: 280px;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.25);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.4);
    background-color: #e68a1c;
}

/*title Underline*/
.title-underline {
    width: 100%;
    max-width: 1500px;
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px auto 50px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #333;
}

/* SSL Section */
.ssl-section {
    padding: 98px 0;
    background-color: var(--white);
}

.ssl-content {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-direction: row-reverse;
    /* Text on right, Image on left in design, but let's check basic flex. Usually text right image left. Design shows Image Left. So flex-direction row. */
    flex-direction: row;
}

.ssl-image {
    flex: 1;
    width: 45%;
}

.ssl-text {
    flex: 1;
    width: 55%;
    text-align: left;
}

.ssl-text h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.ssl-text p {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}



/* Process Section */
.process-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--white);
    /* Changed to white per image? or keep light bg. Image looks white/clean */
}

.process-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.process-card {
    flex: 1;
    min-width: 220px;
    background: var(--white);
    padding: 60px 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border: 1px solid #f5f5f5;
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-icon-new {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    /* Emoji placeholder size */
    color: var(--primary-color);
    /* For real icons, use img or svg */
}

.process-section .section-title h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.process-section .section-title p {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 55px;
}

.process-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.process-card p {
    color: #777;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Promo Section */
.promo-section {
    background-color: #000080;
    /* Dark Blue */
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.promo-section h2 {
    font-size: 48px;
    margin-bottom: 35px;
    font-weight: 800;
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
    letter-spacing: -1.5px;
}

.btn-promo {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--black);
    padding: 25px 50px;
    border: 1px solid var(--black);
    border-radius: 5px;
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-promo:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    text-align: center;
}

.guarantee-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.guarantee-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 60px 0px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guarantee-section .section-title h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

guarantee-section .section-title p {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 55px;
}

.guarantee-card h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 50px;
}

.guarantee-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    /* Per image design */
    font-weight: 700;
    margin-bottom: 50px;
}

.guarantee-list {
    list-style: none;
    margin-bottom: 30px;
}

.guarantee-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.guarantee-list li:first-child {
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.btn-guarantee {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 10px 30px;
    border-radius: 25px;
    color: #00bcd4;
    /* Light Blue text as in button on image */
    font-weight: 600;
    transition: all 0.3s;
}

.btn-guarantee:hover {
    background-color: #00bcd4;
    color: var(--white);
}

/* Features Section (Updated) */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.feature-image {
    flex: 1;
}

.feature-text {
    flex: 1.2;
}

.feature-text h2 {
    color: var(--primary-color);
    font-size: 48px;
    margin-bottom: 55px;
    font-weight: 800;
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.feature-list-numbered {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.feature-num {
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    flex-shrink: 0;
    background-color: #fcfcfc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.feature-item p {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* Location */
.location {
    padding: 80px 0;
    background-color: var(--white);
}

.location-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
    flex-wrap: row;
}

.location-image {
    flex: 1;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 15px;
}

.location-text p {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

/* Partners */
.partners {
    padding: 40px 0;
    text-align: center;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    opacity: 0.7;
}

.btn-package-location {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    width: 40%;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 80px 0 0;
    font-family: 'Open Sans', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: none;
    border-bottom: none;
    padding-bottom: 0;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #999;
}

.footer-logo {
    width: 100px;
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i,
.contact-item .icon {
    color: #999;
    font-size: 14px;
    margin-top: 3px;
}

.contact-item a {
    color: #999;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: transform 0.3s;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background-color: #0077b5;
}


.social-icon:hover {
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: #111;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color);
}

.trustpilot-widget {
    margin-top: 30px;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    display: inline-block;
}

.trustpilot-widget img {
    max-width: 120px;
    display: block;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col:first-child {
        grid-column: span 2;
        text-align: center;
    }

    .footer-col:first-child .social-links,
    .footer-col:first-child .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-col:first-child {
        grid-column: span 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 0 20px !important;
    }

    .btn-close {
        display: block;
    }

    .btn-cta-orange {
        display: block;
    }

    /* Header & Nav */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        margin-left: auto;
    }

    .menu-toggle span {
        width: 30px;
        height: 3px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }

    header.scrolled .menu-toggle span {
        background-color: var(--text-color);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background-color: #ffffff !important;
        /* Solid White */
        flex-direction: column;
        padding: 60px 0 20px;
        gap: 0;
        display: flex;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 2500;
        /* Higher than overlay */
        overflow-y: auto;
        opacity: 1 !important;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        color: var(--text-color);
        padding: 15px 25px;
        display: flex;
        justify-content: space-between;
        font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
        align-items: center;
        width: 100%;
        font-weight: 600;
        cursor: pointer;
    }

    .dropdown-content,
    .dropdown-submenu-content {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        padding-left: 20px !important;
        display: none !important;
        background-color: transparent !important;
        transition: none !important;
        top: 0 !important;
        padding-bottom: 10px !important;
    }

    .dropdown.active>.dropdown-content,
    .dropdown-submenu.active>.dropdown-submenu-content {
        display: block !important;
    }

    /* Mobile Close Button */
    .btn-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 2rem;
        color: #333;
        cursor: pointer;
        line-height: 1;
    }

    /* Mobile Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Sidebar CTA */
    .nav-links .mobile-cta-container {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        padding: 0 20px 40px;
    }

    .mobile-cta-container .btn-cta-orange {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: var(--secondary-color);
        color: var(--white);
        border-radius: 50px;
    }

    .navbar .btn-cta {
        display: none;
    }

    /* Hero Responsive */
    .hero {
        height: auto !important;
        padding: 120px 0 60px !important;
        text-align: center;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero-text {
        max-width: 100% !important;
    }

    .hero-text h1 {
        font-size: 2.5rem !important;
    }

    .hero-image {
        max-width: 80% !important;
        margin: 0 auto;
    }

    .countdown-timer {
        justify-content: center;
        width: 100%;
        gap: 8px;
    }

    .timer-box {
        width: 60px !important;
        height: 60px !important;
        border-radius: 12px !important;
    }

    .time-val {
        font-size: 1.4rem !important;
    }

    .time-label {
        font-size: 0.8rem !important;
    }

    .timer-item {
        gap: 10px !important;
    }

    .timer-separator {
        margin-bottom: 25px !important;
        gap: 5px !important;
    }

    .timer-separator span {
        width: 4px !important;
        height: 4px !important;
    }

    /* Grid Responsiveness */
    .services-grid,
    .pricing-grid,
    .portofolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* SSL Section */
    .ssl-content {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .ssl-text,
    .ssl-image {
        width: 100% !important;
    }

    .ssl-text h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 20px;
    }

    .ssl-text p {
        text-align: center;
        padding: 0 10px;
    }

    .ssl-image img {
        max-width: 80% !important;
        margin: 0 auto;
        display: block;
    }

    /* Features (Why Us) Section */
    .feature-content {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .feature-list-numbered {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: left;
    }

    .feature-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px;
        width: 100%;
        max-width: 400px;
    }

    /* Location Section */
    .location-content {
        flex-direction: column-reverse !important;
        text-align: center;
        gap: 30px;
    }

    .location-text {
        max-width: 100% !important;
    }

    .btn-package-location {
        width: 100% !important;
    }
}

@media (max-width: 768px) {

    .services-grid,
    .pricing-grid,
    .portofolio-grid {
        grid-template-columns: 1fr !important;
    }

    .section-title h2 {
        font-size: 2rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .search-box {
        flex-direction: column;
        padding: 10px;
    }

    .search-box input {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}



/* Pricing Section */
.pricing {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.pricing-web {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 15px 0 18px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.pricing-header-red {
    background-color: #d1211b;
}

.pricing-body {
    padding: 30px 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-body-artikel {
    padding: 60px 0 40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-price-artikel {
    font-size: 48px;
    font-weight: 700;
    color: #064EA6;
    /* Teal for maintenance as per image */
    margin-bottom: 2px;
    font-family: "Roboto", sans-serif;
    line-height: 1;
}

.pricing-body-artikel .price-label {
    font-size: 18px;
    color: #222222;
    display: block;
    margin-bottom: 5px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pricing-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 50px;
    width: 100%;
    font-weight: 400;
}

.price-container {
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ff0000;
    font-size: 20px;
    display: block;
    margin-bottom: 16px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.price-subtitle {
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.main-price {
    font-size: 48px;
    font-weight: 800;
    color: #064EA6;
    /* Teal for maintenance as per image */
    margin-bottom: 2px;
    font-family: "Roboto", sans-serif;
    line-height: 1;
}

.price-note {
    font-size: 0.75rem;
    color: #222222;
    display: block;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pricing-features {
    list-style: none;
    margin-bottom: 50px;
    flex: 1;
}

.pricing-features li {
    margin-bottom: 10px;
    color: #222222;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;

}

.pricing-features li.description {
    margin-top: 25px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #888;
    font-style: italic;
    padding-top: 15px;
}

.btn-pricing {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    width: 80%;
    transition: background 0.3s;
}

.btn-pricing:hover {
    background-color: #e68a1c;
    /* Slightly darker orange */
}

/* New pricing elements */
.package-pages {
    font-size: 12px;
    color: #222222;
    margin-bottom: 16px;
    display: block;
}

.include-setup {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pricing-header-red {
    background-color: #d32f2f !important;
    /* Red for Advanced package */
}

/* Hosting Own CTA */
.hosting-own {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #00d4ff 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.hosting-own h2 {
    font-size: 42px;
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.hosting-own p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.btn-redesign {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 45px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-redesign:hover {
    background-color: #e68a1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Custom Development section */
.custom-dev {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.section-title h2 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 2rem;
    max-width: 1200px;
}

.section-title p {
    color: #666;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    width: 100%;
}

.custom-card {
    border: 1px solid #eee;
    padding-top: 20px;
    /* Space for title that replaces header */
}

.custom-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 35px;
}

.custom-title small {
    font-size: 18px;
    color: #222222;
    margin-top: 10px;
    font-weight: 400;
}

.mulai-dari {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.custom-price {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
}

.title-underline {
    width: 100%;
    max-width: 1500px;
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px auto 50px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #333;
}

.custom-card .pricing-features {
    text-align: center;
}

.custom-card .pricing-features li:last-child {
    border-bottom: none;
}

.custom-card .pricing-features li.description {
    font-style: italic;
    color: #555;
    background: transparent;
    padding: 20px 0 0 0;
}

/* Terima Beres Section */
.terima-beres {
    padding: 50px 0;
    background-color: #fff;
}

.content-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* KIRI (GAMBAR) */
.image-placeholder {
    flex: 0 0 55%;
    /* 55% */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* BOX HIJAU */
.box-teal {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    border-radius: 30px;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.8;
}

/* GAMBAR */
.main-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* KANAN (TEKS) */
.text-content {
    flex: 0 0 45%;
    /* 45% */
}

.text-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}


.btn-cta-orange {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.btn-cta-orange:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.4);
    background-color: #e68a1c;
}

/* Solusi Perusahaan Section */
.solusi-perusahaan {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.solusi-perusahaan .section-title {
    text-align: center;
}

.solusi-perusahaan .section-title h2 {
    font-size: 2rem;
    font-weight: 800;
}

.solusi-perusahaan .section-title p {
    color: #666;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    width: 73%;
}

.solusi-perusahaan .section-title p {
    font-size: 15px;
    font-weight: 400;
}

.solusi-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 50px;
    gap: 30px;
}

.solusi-image {
    width: 55%;
    align-items: center;
    justify-content: center;
}

.solusi-image img {
    width: 80%;
    height: auto;
}

.solusi-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 45%;
}

.solusi-item {
    display: flex;
    gap: 25px;
}

.icon-check {
    width: 30px;
    height: 30px;
    background:#008f84;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 14px;
}

.icon-cross {
    width: 30px;
    height: 30px;
    background-color: red;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 14px;
}

.solusi-text h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.solusi-text p {
    font-size: 14px;
    color: #222222;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {

    .content-flex,
    .solusi-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solusi-item {
        text-align: left;
    }

    .text-content h2,
    .solusi-perusahaan .section-title h2 {
        font-size: 2.2rem;
    }
}

/* Interested Section */
.interested {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #00d4ff 100%);
    text-align: center;
    color: var(--white);
}

.interested-content {
    text-align: center;
    max-width: 900px;
}

.interested-content h2 {
    font-size: 42px;
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.interested-content p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.9;
}

/* Why Us & SEO Geo Sections */
.why-us {
    padding: 50px 0;
    background-color: #fff;
}

.seo-geo {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #333;
}

.check-mark {
    font-size: 0.95rem;
    color: #1a1a1a;
}

.image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder-square {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.image-placeholder-square .box-teal {
    position: absolute;
    left: -20px;
    border-radius: 20px;
    width: 280px;
    height: 280px;
    background-color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.seo-geo .box-teal {
    background-color: #008080;
}

.image-placeholder-square .main-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.why-us .text-content h2,
.seo-geo .text-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: "Work Sans", sans-serif;
}

.why-us .text-content p,
.seo-geo .text-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.seo-geo .text-content p {
    margin-bottom: 20px;
}

.seo-geo .text-content p:last-child {
    margin-bottom: 0;
}


@media (max-width: 992px) {

    .why-us .content-flex,
    .seo-geo .content-flex {
        flex-direction: column;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .why-us .text-content,
    .seo-geo .text-content {
        padding: 0 20px;
        text-align: left !important;
        width: 100% !important;
    }

    .why-us .text-content h2,
    .why-us .text-content p,
    .seo-geo .text-content h2,
    .seo-geo .text-content p {
        text-align: left !important;
    }

    .check-list li {
        justify-content: flex-start !important;
        text-align: left !important;
    }
}

/* Free Features Section */
.free-features {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}

.features-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 15px 0 15px;
}

.feature-item-v {
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-item-v:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
}

.feature-item-v h3 {
    font-size: 20px;
    color: #111;
    font-weight: 700;
}

.feature-item-v p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Responsive for Features */
@media (max-width: 992px) {
    .features-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .features-grid-four {
        grid-template-columns: 1fr;
    }
}

/* Premium Features Section */
.premium-features {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: #f7f7f7;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-rows: auto 0fr;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-item[open] {
    grid-template-rows: auto 1fr;
    background-color: #fff;
}

.faq-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    list-style: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: rgba(0, 169, 157, 0.03);
}

.faq-header::-webkit-details-marker {
    display: none;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

details[open] .faq-header h3 {
    color: var(--primary-color);
}

.faq-icon {
    width: 22px;
    height: 22px;
    color: #999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

details[open] .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-content-wrapper {
    overflow: hidden;
    transition: visibility 0.4s;
}

.faq-content {
    padding: 30px 30px 30px;
    color: #666;
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
    background-color: #ffffff;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

details[open] .faq-content {
    opacity: 1;
    transform: translateY(0);
}

details[open] .faq-header {
    border-bottom: 1px solid rgba(0, 169, 157, 0.1);
}

/* Tech Stack Showcase */
.tech-stack {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 300px;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 169, 157, 0.1);
}

.tech-card h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

.tech-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon svg,
.tech-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .tech-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .tech-card {
        flex: 0 0 100%;
    }
}

/* Custom Web List Section */
.custom-web-list {
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    color: #ffffff;
    padding: 80px 0;
}

.custom-web-list h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-web-list .description {
    margin: 0 auto 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.web-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.web-list-col ul {
    list-style: none;
    padding: 0;
}

.web-list-col ul li {
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.web-list-col ul li::before {
    content: "-";
    position: absolute;
    left: 0;
}

.custom-web-list .footer-note {
    margin-top: 20px;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .web-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .web-list-grid {
        grid-template-columns: 1fr;
    }

    .custom-web-list h2 {
        font-size: 1.8rem;
    }
}

/* Custom Process Section */
.custom-process {
    padding: 50px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.process-bg-text {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    letter-spacing: 20px;
    pointer-events: none;
    text-transform: uppercase;
}

.custom-process .container {
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header span {
    color: #00ccff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.process-header h2 {
    font-size: 2rem;
    color: #064EA6;
    font-weight: 700;
}

.steps-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0px 100px;
}

.step-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

/* Process Progress Images */
.progress-line-img {
    grid-column: 1 / span 2;
    width: 100%;
    max-width: 500px;
    margin: -30px auto;
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.progress-line-img.reverse {
    transform: scaleX(-1);
}

.step-item.left {
    grid-column: 1;
    text-align: left;
}

.step-item.right {
    grid-column: 2;
    text-align: left;
}


.step-number {
    width: 45px;
    height: 45px;
    background: #00ccff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 204, 255, 0.3);
}

/* The Rotating Rings */
.step-rings {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-item.animate .step-rings {
    opacity: 1;
    animation: rotateAround 1.5s ease-out forwards;
}

.step-rings::before,
.step-rings::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.step-rings::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-color: rgba(0, 204, 255, 0.4);
    border-left-color: rgba(0, 204, 255, 0.2);
}

.step-rings::after {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-bottom-color: rgba(0, 204, 255, 0.4);
    border-right-color: rgba(0, 204, 255, 0.2);
}

@keyframes rotateAround {
    from {
        transform: rotate(-360deg) scale(0.6);
    }

    to {
        transform: rotate(0deg) scale(1);
    }
}

.step-item h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 450px;
}

@media (max-width: 768px) {
    .step-item {
        align-self: center !important;
        text-align: center;
        max-width: 100%;
        margin-bottom: 60px;
    }

    .progress-line-img {
        display: none;
    }

    .step-number {
        margin: 0 auto 30px;
    }

    .process-header h2 {
        font-size: 1.8rem;
    }
}

/* Why Ads Section */
.why-ads {
    padding: 80px 0;
    background-color: #ffffff;
}

.ads-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.numbered-list {
    list-style: none;
    padding: 0;
}

.numbered-list li {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.numbered-list li:hover {
    transform: translateX(10px);
}

.numbered-list .number {
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    flex-shrink: 0;
    background-color: #fff;
}

.numbered-list p {
    margin: 0;
    font-size: 1.05rem;
    color: #444;
    font-weight: 500;
}

.ads-preview img {
    border-radius: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .ads-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .numbered-list li {
        gap: 15px;
    }
}

/* Location Grid Section */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.location-item .check-icon {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: px 0;
    background-color: #eef6ff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    margin-bottom: 34px;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0px;
    margin-top: 40px;
}

.testimonials-bg-title {
    display: inline-block;
    width: auto;
    font-weight: 800;
    font-size: 104px;
    line-height: 1;
    margin: 0;
    color: rgba(84, 143, 255, .22);
}

.testimonials-subtitle {
    max-width: 850px;
    margin: 12px auto 24px;
}

.testimonials-subtitle p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
}

.stars-container {
    display: flex;
    gap: 6px;
}

.star-box {
    background: #1a1a1a;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffc107;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.star-box::before {
    content: "★";
}

.review-count {
    color: #444;
    font-size: 1rem;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    border-left: 1px solid #ddd;
}

.google-brand img {
    width: 24px;
}

.google-brand span {
    color: #666;
    font-size: 1rem;
}

/* Slider */
.testimonial-slider {
    margin-top: 20px;
    padding-bottom: 30px;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: pointer;
    user-select: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 17px);
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f8f8f8;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.reviewer-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.card-stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
}

.google-badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

.google-badge img {
    width: 18px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-top: 5px;
}

@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-bg-title {
        font-size: 42px;
    }

    .testimonial-track {
        display: grid;
        grid-template-rows: repeat(3, 1fr);
        grid-auto-flow: column;
        grid-auto-columns: 90vw;
        /* Screen-width based for better fit */
        gap: 15px;
        padding: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px;
        /* Offset container padding to allow full-width scroll */
        width: calc(100% + 40px);
    }

    .testimonial-card {
        width: 100%;
        padding: 20px;
        margin: 0;
        scroll-snap-align: center;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .google-rating {
        flex-direction: column;
        gap: 15px;
    }

    .google-brand {
        border-left: none;
        padding-left: 0;
    }
}

/* Insight Section */
.insight-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.insight-section .section-title h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
}

.insight-section .section-title p {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}

.insight-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.insight-slider-container {
    overflow: hidden;
    border-radius: 20px;
}

.insight-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-card {
    flex: 0 0 calc(33.333% - 13.33px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 16;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(8px);
    opacity: 0.5;
    transform: scale(0.9);
}

.insight-card.is-center {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.insight-media {
    width: 100%;
    height: 100%;
    position: relative;
}

.insight-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.insight-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-nav:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.insight-nav.prev {
    left: -10px;
}

.insight-nav.next {
    right: -10px;
}

@media (max-width: 992px) {
    .insight-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .insight-card {
        flex: 0 0 100%;
    }

    .insight-slider-wrapper {
        padding: 0 10px;
    }

    .insight-nav {
        display: none;
    }
}

/* Template Modern Section */
.template-modern {
    padding: 100px 0;
    background-color: #fff;
}

.template-header {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    height: auto;
}

.template-header-highlight {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    height: auto;
}

.template-header-highlight h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;

}

.template-header-highlight em {
    font-style: italic;
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.template-header-web {
    display: flex;
    justify-content: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: auto;
}

.template-header-web h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;

}

.template-header-web em {
    font-style: italic;
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.template-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;
}

.filter-tabs {
    display: flex;
    gap: 40px;
    padding-bottom: 0;
    border-bottom: none;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    position: relative;
    padding: 0 0 15px 0;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: #333;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333;
}

/* Template Grid */
.template-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.template-grid-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 kolom */
    gap: 40px;
    margin-top: 40px;
}

.template-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    opacity: 1;
    transform: scale(1);
}

.template-card.hide {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: none;
}

.template-card.show {
    animation: fadeInOnly 0.4s ease forwards;
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.template-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: transparent;
    /* Start transparent */
    transition: all 0.4s ease;
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 3/2;
}

.template-card:hover .template-img {
    background-color: #E6F2FF;
    /* Blue background only on hover as requested */
}

.template-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Soft shadow like the reference photo */
    transition: all 0.4s ease;
}

.template-card:hover .template-img img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* More prominent shadow on hover */
}



.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.btn-demo {
    background: #fff;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-demo:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.template-info {
    padding: 25px 10px 10px;
    text-align: center;
}

.template-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.template-info .category {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

/* Clients Logo Section */
.clients-section {
    padding: 80px 0 40px;
    background-color: #fff;
    text-align: center;
}

.clients-section .section-title {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.clients-section .section-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 16px;
}

.clients-logo {
    max-width: 1000px;
    margin: 0 auto;
}

.clients-logo img {
    width: 100%;
    height: auto;
}

/* Media Coverage Section */
.media-coverage {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

.media-coverage .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.media-coverage .section-title h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 28px;
}

.media-coverage .section-title p {
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Slider Animation */
.media-slider {
    width: 90%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
}

.media-slide-track {
    display: flex;
    width: max-content;
    /* transition will be handled by JS */
}

.media-logo-item {
    width: 250px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.media-logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.media-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
    .media-logo-item {
        width: 150px;
        padding: 0 15px;
    }
}

/* WhatsApp Floating Container */
.wa-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    
    gap: 12px;
    /* Space between label and button */
    z-index: 9999;
    font-family: 'Open Sans', sans-serif;
}

/* Label: "Konsultasi Gratis" */
.wa-label {
    background-color: #25d366;
    /* WhatsApp Green */
    color: #ffffff;
    padding: 5px 30px;
    border-radius: 8px;
    /* Slightly rounded corners */
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    animation: shake .6s infinite linear;
    /* Appearence delay */
}

/* Button with Icon */
.wa-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    z-index: 100;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    animation: shake .6s infinite linear;
    /* Shake effect */
}

/* Icon size inside button */
.wa-button img {
    display: block;
}

/* Hover effects */
.wa-floating-container:hover .wa-button {
    background-color: #20bd5a;
    transform: scale(1.05);
}

.wa-floating-container:hover .wa-label {
    background-color: #20bd5a;
}

/* Shake Animation Keyframes */
@keyframes shake {
    0% {
        transform: translateX(-3px);
    }

    25% {
        transform: translateX(3px);
    }

    50% {
        transform: translateX(0px);
    }

    75% {
        transform: translateX(3px);
    }

    90% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* Label Entrance Animation */
@keyframes fadeInLabel {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wa-floating-container {
        bottom: 20px;
        right: 20px;
    }

    .wa-label {
        font-size: 13px;
        padding: 8px 15px;
        display: none;
        /* Hide label on very small screens if needed, or keep it */
    }

    .wa-button {
        width: 50px;
        height: 50px;
    }

    .wa-button img {
        width: 28px;
        height: 28px;
    }
}