


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}


.background-container {
    position: relative;
    width: 100%;
    height: auto; /* Height adjusts automatically based on the image aspect ratio */
    overflow: hidden; /* Ensures no overflow */
}

    .background-container img {
        width: 100%; /* Fit the width of the container */
        height: auto; /* Height adjusts automatically based on the image's aspect ratio */
        display: block; /* Removes bottom space below the image */
    }

.content {
    position: relative; /* Ensures content is positioned above the background image */
    text-align: center;
    padding: 20px;
    color: white;/*  Ensure text is readable against the background */
    z-index: 2; /* Makes sure content appears above the background image */
}

.button-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
    z-index: 3;
}

.download-button {
background: linear-gradient(45deg, #16a085, #80ea60);
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    width: 220px;
    /* standard size desktop */
    text-align: center;
}

.download-button:hover {
    background: linear-gradient(45deg, #80ea60, #16a085);
    transform: scale(1.05);
}

/* PHONE — maintain row, just smaller */
@media (max-width: 600px) {
    .button-container {
        bottom: 10px;
        /* lagi rendah daripada 20px sebelum ni */
        gap: 8px;
    }

    .download-button {
        width: 140px;
        font-size: 0.8rem;
        padding: 3px 4px;
        /* kecilkan lagi height (vertical) */
    }
}

/* ================================ */
/*   WHAT IS CONFIMUM - NEW DESIGN  */
/* ================================ */

.confimum-section {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
}

.confimum-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeDown 0.9s ease forwards;
}

/* Container */
.confimum-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

/* Box Styling */
.confimum-box {
    width: 280px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 150, 150, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

/* Scroll animation shows the card */
.confimum-box.show {
    transform: translateY(0);
    opacity: 1;
}

/* Icon animation */
.confimum-icon {
    font-size: 2.5rem;
    color: #ff7a8a;
    margin-bottom: 15px;
    animation: floatIcon 3s ease-in-out infinite;
}

.confimum-box h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Blink Animation */
@keyframes blink {

    0%,
    50%,
    100% {
        transform: translateY(0);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-color: #ddd;
    }

    25% {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(255, 105, 135, 0.3);
        border-color: #ff8fa0;
    }

    75% {
        transform: translateY(-4px);
        box-shadow: 0 8px 18px rgba(255, 105, 135, 0.2);
        border-color: #ffa0b0;
    }
}

/* Apply to your box */
.confimum-box {
    transition: all 0.3s ease;
    animation: blink 2s infinite;
}

/* Animations */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 1.8em;
    }

    .info-item {
        width: calc(50% - 20px); /* Adjust to fit two items per row with gap */
    }

        .info-item h2 {
            font-size: 1.3em;
        }

        .info-item p {
            font-size: 0.9em;
        }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5em;
    }

    .info-item {
        width: 100%; /* Full width for single item per row */
    }

        .info-item i {
            font-size: 1.5em;
        }

        .info-item h2 {
            font-size: 1.2em;
        }

        .info-item p {
            font-size: 0.8em;
        }
}



/* ===== Why Choose Us New Style ===== */
.why-choose-us-new {
    position: relative;
    padding: 50px 20px;
background: linear-gradient(180deg, #fff 0%, #ffe3e8 100%);
    text-align: center;
    overflow: hidden;
}



@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title smaller */
.wcu-new-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    /* dari 2.5rem ke 2rem */
    font-weight: bold;
    margin-bottom: 40px;
    /* kurang dari 60px */
    color: #ff6b81;
    opacity: 0;
    animation: fadeDown 1s forwards;
}
/* Container flex column */
.wcu-new-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

/* Box text: pastikan <p> di bawah h3 */
.wcu-new-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 10px 15px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    /* tukar dari left ke center */
    border-left: 5px solid #ff6b81;
    box-shadow: 0 12px 30px rgba(255, 105, 135, 0.2);
    opacity: 0;
    transform: translateX(0) translateY(50px) rotate(0deg);
    transition: all 0.6s ease-out;
    display: flex;
    flex-direction: column;
    /* pastikan icon, h3, p stacked vertically */
    align-items: center;
    gap: 15px;
    /* ruang antara icon, h3, p */
}

/* Icon di atas, h3 di tengah, p bawah */
.wcu-new-icon {
    font-size: 2.5rem;
    color: #ff6b81;
    margin-top: 5px;
}

/* H3 */
.wcu-new-box h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    /* lebih kecil */
    margin-bottom: 10px;
    color: #333;
}

/* Paragraph di bawah */
.wcu-new-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6rem;
    text-align: center;
    /* pastikan teks bawah center */
}


/* Zig-Zag animation: odd boxes slide from left, even boxes from right */
.wcu-new-box.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.wcu-new-box:nth-child(odd).show {
    animation: slideFromLeft 0.8s forwards;
}

.wcu-new-box:nth-child(even).show {
    animation: slideFromRight 0.8s forwards;
}

/* Keyframes */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(50px) rotate(-2deg);
    }

    60% {
        transform: translateX(20px) translateY(-10px) rotate(1deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(100%) translateY(50px) rotate(2deg);
    }

    60% {
        transform: translateX(-20px) translateY(-10px) rotate(-1deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

/* Add keyframes for additional animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box:nth-child(1) {
    animation: slideIn 0.6s ease-out;
}

.box:nth-child(2) {
    animation: slideIn 0.8s ease-out;
}

.box:nth-child(3) {
    animation: slideIn 1s ease-out;
}

.box:nth-child(4) {
    animation: slideIn 1.2s ease-out;
}

/* Navbar */
header {
    background-color: #dea5a4;
    padding: 10px 20px;
    color: white;
}

/* Brand text style */
h3 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: bolder;
    margin: 0;
    padding: 0;
}

.box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
    flex: 1 1 250px;
    max-width: 300px;
    box-sizing: border-box;
    word-wrap: break-word;
    text-align: center;
}

.box h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .box h3 {
        font-size: 1em;
    }

    .box p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .box h3 {
        font-size: 0.95em;
        line-height: 1.2em;
    }

    .box p {
        font-size: 0.85em;
        line-height: 1.4em;
    }
}


/* Menu text style */
h6 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

/* Footer */
.footer {
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    background-color: #dcdcdc;
    color: #333;
    text-align: center;
    padding: 10px 0;
}

/* Utility classes from .NET */
.border-top {
    border-top: 1px solid #e5e5e5;
}
.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}
.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
