@font-face {
    font-family: 'Clemente_Pd';
    src: url('/fonts/Clemente_Pd.woff2') format('woff2'),
        url('/fonts/Clemente_Pd.woff') format('woff'),
        url('/fonts/Clemente_Pd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.features {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.features .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
}


.btn-custom {
    display: inline-flex;
    background-color: #FC6736;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.btn-custom:hover {
    background-color: #0c2d57;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-custom:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

}

.preloader-image {
    width: 50vh;
    height: auto;
    animation: pulse 1.5s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.about-section {
    padding: 60px 20px;
    background-color: #FAF6F2;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    gap: 80px;
}

.text-content {
    flex: 1 1 60%;
    max-width: 600px;
    text-align: left;
}

.text-content h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: #333;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.text-content ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

.text-content ul li {
    margin-bottom: 10px;
}

.image-content {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.justify-text {
    text-align: justify;
}

.vision-points {
    text-align: justify;
    margin-bottom: 10px;
}

#konten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 20px;
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
    
.rectangle {
    width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    cursor: pointer;
    padding: 10px;
    box-sizing: border-box;
    background-color: #0c2d57;
    border-radius: 5px;
    color: white;
}

.rectangle img {
    max-width: 70%;
    max-height: 70%;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.rectangle:hover {
    transform: scale(0.95);
}

.rectangle.clicked {
    transform: scale(0.95);
}

.konten {
    height: 0;
    /* Konten tidak memakan ruang pada awalnya */
    visibility: hidden;
    opacity: 0;
    width: 80%;
    background-color: #FC6736;
    border: 1px solid #0c2d57;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    transform: translateY(-20px);
    filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease, visibility 0s 0.5s;
    overflow: hidden;
}

.konten.show {
    visibility: visible;
    opacity: 1;
    height: 70vh;
    transform: translateY(0);
    filter: blur(0);
    transition: height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    color : white;
}

.profile-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.card-element {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s;
}

.card-element :hover {
    transform: translateY(-5px);
}

.card-element img {
    width: 60px;
    margin-bottom: 20px;
}

.card-element-title {
    font-size: 18px;
    font-weight: bold;
    color: #FC6736;
}

.contact {
    background-color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.contact-info h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--orange);
    margin-right: 1rem;
    margin-top: 5px;
}

.contact-text h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #0c2d57;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background-color: var(--navy);
    color: var(--orange);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    padding: 1rem;

}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}



.workflow-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Center line connector */
.center-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    margin-left: -3px;
    background: var(--main-color);
    z-index: 1;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(252, 103, 54, 0.2);
}

.workflow-step {
    margin-bottom: 70px;
    position: relative;
}

.workflow-step .row {
    position: relative;
    z-index: 2;
}

/* Circle connector */
.circle-connector {
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border: 6px solid var(--main-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 4px #dddddd;
}

/* Number badge */
.step-number {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(252, 103, 54, 0.3);
}

.workflow-step:nth-child(odd) .step-number {
    left: calc(50% + 30px);
    top: 50%;
    transform: translateY(-50%);
}

.workflow-step:nth-child(even) .step-number {
    right: calc(50% + 30px);
    top: 50%;
    transform: translateY(-50%);
}

/* Content card */
.step-content {
    background: white;
    border-radius: 5px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 5px solid var(--main-color);
}

.workflow-step:nth-child(even) .step-content {
    border-left: none;
    border-right: 5px solid var(--main-color);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(252, 103, 54, 0.15);
}

.step-icon {
    color: var(--main-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.step-title {
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* For odd steps, content on right side */
.workflow-step:nth-child(odd) .content-side {
    padding-left: 50px;
}

/* For even steps, content on left side */
.workflow-step:nth-child(even) .content-side {
    padding-right: 50px;
}

/* Image side styling */
.img-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-holder {
    width: 100px;
    height: 100px;
    background: #FC6736;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(252, 103, 54, 0.1);
}

.img-holder i {
    font-size: 4rem;
    color: var(--main-color);
}

.img-holder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(252, 103, 54, 0.2);
}

@media (max-width: 992px) {
    .center-line {
        left: 40px;
    }

    .workflow-step .row {
        margin-left: 30px;
    }

    .circle-connector {
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .step-number {
        left: 20px !important;
        right: auto !important;
        top: 50% !important;
    }

    .workflow-step:nth-child(odd) .content-side,
    .workflow-step:nth-child(even) .content-side {
        padding-left: 60px;
        padding-right: 15px;
    }

    .workflow-step:nth-child(even) .step-content {
        border-right: none;
        border-left: 5px solid var(--main-color);
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .img-side {
        display: none;
    }
}

.price-section {
    background: #fefefe;
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
    color: #222;
    animation: fadeSlideUp 0.8s ease-out both;
}

.price-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0e2752;
    margin-bottom: 2rem;
}

.price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding: 1rem 0;
}

.package h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
}

.package ul {
    list-style: disc;
    margin-left: 1rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0e2752;
    text-align: right;
}

.price span {
    display: block;
    font-size: 0.9rem;
    color: #333;
    font-weight: normal;
}

.silver {
    background: linear-gradient(145deg, #d8d8d8, #b0b0b0);
    color: #2c2c2c;
    border: 1px solid #a0a0a0;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    box-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.2),
        -2px -2px 5px rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease;
}

.silver:hover {
    transform: scale(1.1);
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.3),
        -3px -3px 6px rgba(255, 255, 255, 0.8);
}

.gold {
    background: linear-gradient(145deg, #ffe27a, #d4af37);
    color: #5a4100;
    border: 1px solid #d4af37;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    box-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.2),
        -2px -2px 5px rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease;
}

.gold:hover {
    transform: scale(1.1);
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.3),
        -3px -3px 6px rgba(255, 255, 255, 0.8);
}

.platinum {
    background: linear-gradient(145deg, #dceefa, #aee1f9);
    color: #0e2752;
    border: 1px solid #aee1f9;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    box-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.2),
        -2px -2px 5px rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease;
}

.platinum:hover {
    transform: scale(1.05);
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.3),
        -3px -3px 6px rgba(255, 255, 255, 0.8);
}

.add-ons {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.table-section h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #0e2752;
    margin-bottom: 0.5rem;
}

.table-section ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
}

.table-section li {
    margin-bottom: 0.5rem;
}

.normal_set {
    background-color: #ffffff;
        color: #2c2c2c;
        border: 1px solid #cccccc;
        padding: 8px 16px;
        border-radius: 30px;
        font-weight: bold;
        display: inline-block;
        box-shadow:
            2px 2px 6px rgba(0, 0, 0, 0.1),
            -1px -1px 3px rgba(255, 255, 255, 0.8);
        transition: transform 0.2s ease;
}

.normal_set:hover {
    transform: scale(1.05);
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.3),
        -3px -3px 6px rgba(255, 255, 255, 0.8);
}