@font-face {
    font-family: 'Frogie-Regular';
    src: url('../fonts/Frogie-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

body {
    font-family: 'Frogie-Regular', Arial, sans-serif;
}

/* Header */
.hero-content h1 {
    font-family: 'Frogie-Regular', Arial, sans-serif;
}

.hero-content .deskripsi {
    font-family: Arial, sans-serif;
}


/* Semua isi form */
.features-wrapper {
    font-family: Arial, sans-serif;
}

/* HEADER GRADASI */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 100px;
}

/* Layer untuk menutup seluruh bagian atas */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #fff;
    z-index: 1;
}


/* Layer ellipse untuk membuat lengkungan */
.hero::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    width: 140%;
    height: 500px;

    background: linear-gradient(
        to bottom,
        #b34b66 70%,
        #98b8dc 100%
    );

    border-radius: 50%;

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.breadcrumb > .breadcrumb-item a {
    text-decoration: none;
}

.breadcrumb > .breadcrumb-item a, .breadcrumb > .breadcrumb-item:before {
    color: #b34b66;
}

.breadcrumb-item.active {
    color: #98b8dc;
}

.btn-prev, .btn-next {
    background-color: #98b8dc;
    color: #fff;
}

.btn-prev:hover, .btn-next:hover {
    background-color: #b34b66;
    color: #fff;
}

.real-talk-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.real-talk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.real-talk-card img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
}

.real-talk-card h3 {
    font-family: 'Frogie-Regular', Arial, sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #6397cd;
}

.real-talk-card .quote {
    font-family: Arial, sans-serif;
    color: #666;
    line-height: 1.6;
    min-height: 80px;
}

.real-talk-card .btn {
    border-radius: 30px;
    padding: 10px 20px;
}

.real-talk-card .btn i {
    margin-left: 6px;
}

.btn-kalcer {
    background-color: #6397cd;
    color: #fff;
}

.btn-kalcer:hover {
    background-color: #b34b66;
    color: #fff;
}

.text-justify {
    text-align: justify;
}

/* DESKTOP */
@media (min-width: 768px) {
    .hero {
        padding-top: 50px;
        padding-bottom: 120px;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    .hero {
        text-align: center;
        padding-top: 0;
        padding-bottom: 60px;
    }

    .features-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .real-talk-card img {
        width: 100%;
        aspect-ratio: 16/7;
        object-fit: cover;
        display: block;
    }
}