@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%;
}

/* 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-desain {
    background: var(--bg-color);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-desain .hero-content {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
}

.hero-desain h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.breadcrumb {
    font-size: 18px;
    opacity: 0.9;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

/*title Underline*/
.title-underline {
    width: 100%;
    max-width: 1500px;
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px auto 20px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #333;
}

/* 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: black;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1.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;
    font-family: "Roboto", sans-serif;
}

.process-card p {
    color: #777;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Existing Responsive adjustments */
@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;
        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;
    }


}


@media (max-width: 768px) {
    .hero-desain {
        height: 350px;
        padding: 100px 0 60px;
    }

    .hero-desain h1 {
        font-size: 2.2rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }

    .template-header h2 {
        font-size: 2.2rem;
    }

    .request-title {
        font-size: 2.2rem;
    }

    .request-text {
        font-size: 1rem;
    }

    .btn-request {
        padding: 15px 35px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-desain h1 {
        font-size: 1.8rem;
    }

    .template-header h2 {
        font-size: 1.8rem;
    }

    .filter-tabs {
        gap: 15px;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding-bottom: 10px;
        justify-content: center;
    }
}

/* Office Section */
.office-section {
    padding: 100px 0;
    background-color: #fff;
}

.office-grid {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.office-info {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.office-sub {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    font-family: "roboto", sans-serif;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
}

.office-title {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 23px;
}

.office-title em {
    font-style: italic;
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-right: 210px;
}

.contact-list li {
    margin-bottom: 30px;
}

.contact-list strong {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    font-family: "Work Sans", sans-serif;
}

.contact-list p {
    color: #999999;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 1px;
}

.office-social {
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #e4405f;
    /* Instagram color */
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.office-image-wrapper {
    flex: 1;
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.office-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #007bff 100%);
    border-radius: 12px;
    z-index: 1;
}

.office-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Next Steps Section */
.next-steps {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.next-steps .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.next-steps .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.next-steps .section-header p {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
}

.step-item {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-item.active {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 800;
    opacity: 0.15;
    z-index: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
}

.step-item[data-step="01"] .step-number {
    color: #FFF3E0;
    opacity: 1;
}

/* Very light orange */
.step-item[data-step="02"] .step-number {
    color: #E8EAF6;
    opacity: 1;
}

/* Very light blue */
.step-item[data-step="03"] .step-number {
    color: #E0F7FA;
    opacity: 1;
}

/* Very light cyan */
.step-item[data-step="04"] .step-number {
    color: #FCE4EC;
    opacity: 1;
}

/* Very light pink */

.step-circle {
    width: 190px;
    height: 190px;
    background: #fff;
    border-radius: 50%;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.step-circle::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.step-item[data-step="01"] .step-circle::after {
    border-color: rgba(247, 147, 30, 0.3);
}

.step-item[data-step="02"] .step-circle::after {
    border-color: rgba(74, 111, 211, 0.3);
}

.step-item[data-step="03"] .step-circle::after {
    border-color: rgba(91, 207, 255, 0.3);
}

.step-item[data-step="04"] .step-circle::after {
    border-color: rgba(255, 182, 193, 0.3);
}

.step-item:hover .step-circle::after {
    opacity: 1;
    animation: rotateCircle 10s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.step-item:hover .step-circle {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.step-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
}

.step-circle h3 {
    font-size: 24px;
    /* Larger size like in image */
    font-weight: 500;
    color: #999;
    max-width: 160px;
    line-height: 1.3;
    margin: 0;
}

.next-steps-note {
    max-width: 900px;
    margin: 0 auto;
    background: #fdf8f0;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    text-align: left;
}

.next-steps-note p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 992px) {
    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-item {
        flex: 0 0 45%;
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .step-item {
        flex: 0 0 100%;
    }

    .next-steps .section-header h2 {
        font-size: 28px;
    }
}

.location {
    width: 100%;
    height: 100%;
    padding: 10px 10px;
}



@media (max-width: 992px) {
    .office-grid {
        flex-direction: column;
        gap: 60px;
    }

    .office-image-wrapper {
        width: 100%;
        max-width: 600px;
        order: -1;
    }

    .office-title {
        font-size: 2.2rem;
    }
}

/* Payment Section */
.payment-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.payment-section .section-header {
    margin-bottom: 50px;
}

.payment-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.payment-section .section-header p {
    color: #999;
    font-size: 16px;
}

.bank-card {
    background-color: #f1f1f1;
    width: 100%;
    margin: 0 auto;
    padding: 50px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: solid 1px #000;
}

.bank-logo img {
    height: 90px;
    width: auto;
}

.bank-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-name {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    letter-spacing: 1px;
}

.account-number {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

/* 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);
}

@media (max-width: 768px) {
    .bank-card {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
        text-align: center;
    }

    .bank-info {
        text-align: center;
    }

    .account-number {
        font-size: 24px;
    }
}

/* 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;
    }
}

/* 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;
    }
}

/* 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;
    }
}

/* 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;
    }
}