:root {
    --primary-color: #89755a;
    --secondary-color: #c5b49a;
    --bg-color: #f5eee6;
    --accent-color: #a58e6e;
    --text-color: #5a4a36;
    --card-bg: #faf7f2;


    --primary-dark: #3b2f24;
    --primary-medium: #89755a;
    --primary-light: #c5b49a;
    --primary-soft: #f5eee6;
    --text-dark: #2e2418;
    --text-light: #4a3f34;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* SECTION 01 VISI */
.visi-image-container {
    position: relative;
}
.visi-image-frame {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-25px, 25px);
    z-index: 1;
    border-radius: 15px;
}

.visi-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    border: 4px solid #eee;
}

@media (max-width: 768px) {
    .visi-image-frame, .visi-image {
        max-width: 100%;
        height: 250px;
    }
}
/* END OF SECTION 01 VISI */

/* SECTION 02 HUKUM */
.hukum-section {
    background-color: var(--primary-soft);
    position: relative;
    overflow: hidden;
}

.hukum-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-medium);
    margin-bottom: 2rem;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0;
}

.badge {
    background: rgba(137, 117, 90, 0.1);
    color: var(--primary-medium);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(137, 117, 90, 0.2);
}

.scripture-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-medium);
    margin-top: 3rem;
}

.scripture-box h3 {
    color: var(--primary-medium);
    margin-bottom: 1rem;
}

.scripture-quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}
/* END OF SECTION 02 HUKUM */

/* SECTION 03 MISI */
.misi-title{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-medium);
    margin-bottom: 2rem;
}

/* SECTION 04 TAHAPAN */
@media (max-width: 768px) {
    .target-section .gap-3 {
        height: 220px !important;
    }
}

/* SECTION 05 NILAI */
.glory-section {
    background-color: var(--bg-color);
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.glory-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 180, 154, 0.1) 0%, rgba(137, 117, 90, 0) 70%);
    z-index: 0;
}

.glory-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 180, 154, 0.08) 0%, rgba(137, 117, 90, 0) 70%);
    z-index: 0;
}

.glory-section .section-header {
    position: relative;
    margin-bottom: 3.5rem;
    z-index: 2;
}

/* .glory-section .subtitle-esensi {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
} */

.glory-section .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-medium);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.glory-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.glory-section .values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.glory-section .values-list {
    flex: 0 0 55%;
    max-width: 55%;
    padding-right: 3rem;
}

.glory-section .value-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(137, 117, 90, 0.08);
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.glory-section .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(137, 117, 90, 0.12);
    border-left-color: var(--primary-color);
}

.glory-section .value-letter {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.glory-section .value-item:hover .value-letter {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.glory-section .value-text {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

.glory-section .value-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 0;
}

.glory-section .value-expand p {
    margin-top: 1rem;
    padding-left: 55px;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.glory-section .value-item.active .value-expand {
    max-height: 200px;
}

.glory-section .image-container {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glory-section .image-frame {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(137, 117, 90, 0.15);
}
/* 
.glory-section .image-frame::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.7;
} */

.glory-section .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.glory-section .image-frame:hover img {
    transform: scale(1.03);
}

.glory-section .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.glory-section .floating-element {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(197, 180, 154, 0.2);
    animation: float 6s infinite ease-in-out;
}

.glory-section .floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    width: 25px;
    height: 25px;
}

.glory-section .floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
    width: 40px;
    height: 40px;
}

.glory-section .floating-element:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
    width: 20px;
    height: 20px;
}

.glory-section .floating-element:nth-child(4) {
    bottom: 25%;
    right: 5%;
    animation-delay: 3s;
    width: 35px;
    height: 35px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.glory-section .glory-acronym {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.glory-section .acronym-letter {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(137, 117, 90, 0.1);
    transition: all 0.3s ease;
}

.glory-section .acronym-letter:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.glory-section .acronym-letter.active {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 992px) {
    .glory-section .values-list, .glory-section .image-container {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .glory-section .values-list {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .glory-section .section-title {
        font-size: 2.3rem;
    }
    
    .glory-section .value-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .glory-section  {
        padding:3rem 2rem;
    }
    
    .glory-section .section-title {
        font-size: 2rem;
    }
    
    .glory-section .value-item {
        padding: 1.2rem 1.5rem;
    }
    
    .glory-section .value-text {
        font-size: 1.1rem;
    }
    
    .glory-section .image-frame {
        height: 300px;
    }
    
    .glory-section .acronym-letter {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 5px;
    }
}
/* END OF SECTION 05 NILAI */


/* SECTION 06 Harta */
.treasure-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.treasure-section .treasure-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.treasure-section .image-column {
    flex: 1;
    position: relative;
}

.treasure-section .content-column {
    flex: 1;
    padding-left: 20px;
}

.treasure-section .section-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.treasure-section .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-medium);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.treasure-section .section-title {
    position: relative;
    display: inline-block;
}

.treasure-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
    
}

.treasure-section .treasure-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.treasure-section .treasure-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.treasure-section .treasure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(137, 117, 90, 0.15);
    border-color: var(--secondary-color);
}

.treasure-section .treasure-card.active {
    border-color: var(--primary-color);
    background-color: white;
}

.treasure-section .treasure-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    z-index: 2;
}

.treasure-section .treasure-card:hover .treasure-number {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--accent-color);
}

.treasure-section .treasure-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 180, 154, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.treasure-section .treasure-card:hover .treasure-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.treasure-section .treasure-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: var(--transition);
}

.treasure-section .treasure-card:hover .treasure-name {
    color: var(--accent-color);
}

.treasure-section .treasure-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
}

.treasure-section .treasure-card.active .treasure-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* Image Column Styling */
.treasure-section .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(137, 117, 90, 0.15);
    height: 500px;
}

.treasure-section .image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.treasure-section .image-wrapper:hover .image-main {
    transform: scale(1.05);
}

.treasure-section .image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.7;
    transform: rotate(-2deg);
    transition: var(--transition);
}

.treasure-section .image-wrapper:hover .image-frame {
    transform: rotate(0deg);
    opacity: 0.8;
}

.treasure-section .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(89, 74, 54, 0.8) 0%, transparent 100%);
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.treasure-section .image-wrapper:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.treasure-section .overlay-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.treasure-section .overlay-text {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Treasure indicators */
.treasure-section .treasure-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.treasure-section .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.treasure-section .indicator:hover, .indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Background decorative elements */
.treasure-section .bg-element {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(197, 180, 154, 0.05);
    z-index: 1;
}

.treasure-section .bg-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}

.treasure-section .bg-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -50px;
}

/* Responsive design */
@media (max-width: 1200px) {
    .treasure-section .treasure-container {
        gap: 40px;
    }
    
    .treasure-section .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .treasure-section .treasure-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .treasure-section .content-column, .image-column {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .treasure-section .content-column {
        padding-left: 0;
    }
    
    .treasure-section .image-wrapper {
        height: 400px;
    }
    
    .treasure-section .treasure-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .treasure-section .treasure-section {
        padding: 60px 0;
    }
    
    .treasure-section .treasure-container {
        padding: 0 20px;
    }
    
    .treasure-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .treasure-section .treasure-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .treasure-section .treasure-card {
        padding: 20px;
    }
    
    .treasure-section .image-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .treasure-section .treasure-name {
        font-size: 1.1rem;
    }
    
    .treasure-section .treasure-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
/* END OF SECTION 06 HARTA */


/* SECTION OF 07 TAHAPAN */
.stages-section {
    background-color: var(--light-bg);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.stages-section .bg-element {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(197, 180, 154, 0.05);
    z-index: 1;
}

.stages-section .bg-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.stages-section .bg-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

.stages-section .section-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.stages-section .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-medium);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.stages-section .section-title {
    position: relative;
    /* display: inline-block; */
}

.stages-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 46%;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .stages-section {
        padding: 40px 0;
    }
    
    .stages-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .stages-section img{
        padding: 0 2rem !important;
    }
    .stages-section .section-title::after {
        left: 40%;
    }
}

/* SECTION OF UCAPAN BAHAGIA */
.beatitudes-section {
    background-color: var(--light-bg);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.beatitudes-section .beatitudes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.beatitudes-section .section-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.beatitudes-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    padding-bottom: 1rem;
}
.beatitudes-section .section-subtitle {
    text-align: center;
    font-size:14px;
    color: #777777;
    max-width: 800px;
    margin: 0 auto 3rem;
}
/* Belief Cards */
.beatitudes-section .belief-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    margin-bottom:10rem !important;
}

.beatitudes-section .belief-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--secondary-color);
}

.beatitudes-section .belief-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.beatitudes-section .belief-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.beatitudes-section .belief-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.beatitudes-section .beatitudes-header {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beatitudes-section .beatitudes-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.beatitudes-section .scripture-ref {
    font-size: 1rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.beatitudes-section .beatitudes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.beatitudes-section .beatitudes-column {
    padding: 0;
}

.beatitudes-section .column-title {
    background-color: #f5eee6;
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid #eaeaea;
    font-size: 1.2rem;
}

.beatitudes-section .beatitude-item {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.beatitudes-section .beatitude-item:hover {
    background-color: #f9f9f9;
}

.beatitudes-section .beatitude-item:last-child {
    border-bottom: none;
}

.beatitudes-section .beatitude-id {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.beatitudes-section .beatitude-id i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.beatitudes-section .beatitude-main {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-size: 1.1rem;
}

.beatitudes-section .beatitude-sub {
    font-size: 14px;
    color: var(--light-text);
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .main-title {
        font-size: 2.3rem;
    }
    
    .beatitudes-content {
        grid-template-columns: 1fr;
    }
    
    .beatitudes-column:first-child {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .beatitudes-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .belief-container {
        grid-template-columns: 1fr;
    }
    .beatitudes-section .beatitudes-container {
        padding: 10px ;
    }
    .beatitudes-section .belief-container {
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2.5rem 1rem;
        border-radius: 0 0 30px 30px;
    }
    
    .main-title {
        font-size: 1.7rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .beatitude-item {
        padding: 1.2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}