body {
    background-color: #FFF9F4;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

header {
    padding-top: 50px;
    overflow: hidden;
}

.font-ibm {
    font-family: 'IBM Plex Sans', sans-serif;
}

.font-karla {
    font-family: 'Karla', sans-serif;
}

button {
    cursor: pointer;
}

.navbar-container {
    width: 100%;
    height: 100px;
    z-index: 50;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}

nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.nav-logo {
    height: 55px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-button {
    background-color: #b91c1c;
    border-radius: 100px;
    padding: 8px 20px 8px 12px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 300ms ease;
}

.nav-button .icon-btn {
    width: 34px;
    height: 34px;
}

.nav-button:hover {
    background-color: #991b1b;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(185, 28, 28, 0.6);
}

.nav-list .nav-item {
    position: relative;
    color: #444;
    font-weight: 500;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list .nav-item:hover {
    color: #b91c1c;
}

.nav-list .nav-item span {
    position: absolute;
    bottom: -8px;
    left: 50%;
    height: 6px;
    width: 6px;
    translate: -50%;
    scale: 0;
    border-radius: 100%;
    background-color: #b91c1c;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover span {
    scale: 1;
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.chevron {
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background: #fff;
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 100;
}

.navbar-container.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background-color: #fff0f0;
    /* Background merah super muda */
    color: #b91c1c;
}

.main-header {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
    padding: 100px 0 20px 0;
    position: relative;
}

/* Main Header Decor relative to .main-header */
.japan-map {
    position: absolute;
    pointer-events: none;
    right: -600px;
    top: -100px;
    z-index: -1;
}

.sakura {
    position: absolute;
    pointer-events: none;
    left: -50px;
    top: 50px;
    z-index: -1;
}

.daruma {
    position: absolute;
    pointer-events: none;
    right: -70px;
    top: 180px;
    z-index: -1;
}

.ha {
    position: absolute;
    pointer-events: none;
    left: 350px;
    top: 50px;
    z-index: -1;
}

.yukata {
    position: absolute;
    pointer-events: none;
    left: -70px;
    bottom: 50px;
    z-index: -1;
}

.ka {
    position: absolute;
    pointer-events: none;
    left: 150px;
    bottom: 0;
    z-index: -1;
}

.gate {
    position: absolute;
    pointer-events: none;
    right: -70px;
    bottom: 200px;
    z-index: -1;
}

.ma {
    position: absolute;
    pointer-events: none;
    left: 150px;
    top: 25px;
    z-index: -1;
}

/* End Decor */

.header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-title .subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #b91c1c;
}

.header-title .title {
    font-size: 34px;
    color: #222;
    font-weight: 700;
    margin-top: 8px;
}

.header-title .title span {
    color: #b91c1c;
}

.header-title .desc {
    font-size: 16px;
    color: #444;
    margin-top: 12px;
    line-height: 20px;
}

.header-title .btn-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 14px;
}

.header-title .btn-group .btn-primary {
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 100px;
    background-color: #b91c1c;
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
}

.header-title .btn-group .btn-primary .icon {
    width: 24px;
}

.header-title .btn-group .btn-secondary {
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #444;
    background-color: #fff;
    padding: 12px 20px;
    color: #222;
    font-weight: 600;
}

.header-title .btn-group .btn-secondary .icon {
    width: 24px;
}

.header-title .decoration {
    margin-top: 20px;
}

.header-hero {
    display: grid;
    height: 280px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, minmax(0, 1fr));
    gap: 25px;
}

.header-hero .img-1 {
    grid-column: span 1;
    grid-row: span 5;
    box-shadow: 0px 0px 4px #ddd;
    border-radius: 28px;
}

.header-hero .img-2 {
    grid-column: span 1;
    grid-row: span 3;
    box-shadow: 0px 0px 4px #ddd;
    border-radius: 28px;
}

.header-hero .img-3 {
    grid-column: span 1;
    grid-row: span 2;
    box-shadow: 0px 0px 4px #ddd;
    border-radius: 28px;
}

.header-hero .hero-image {
    overflow: hidden;
}

.header-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* about section */

.about-section {
    margin-top: 70px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.custom-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    background-color: #ddd;
}

.custom-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0000000b;
    transition: opacity 0.3s ease;
}

.custom-video-wrapper.is-playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}


.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #b91c1c;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.about-video {
    order: 2;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content .subtitle {
    font-size: 18px;
    color: #b91c1c;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content .title {
    font-size: 32px;
    color: #444;
    font-weight: 700;
    margin-top: 4px;
}

.about-content .desc {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-top: 10px;
    margin-bottom: 32px;
    line-height: 24px;
    text-align: justify;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    background-color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0px 8px #dddddd87;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    background-color: #b91c1c;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 22px;
}

.feature-card p {
    font-size: 14px;
    font-weight: 700;
    color: rgb(31, 41, 55);
}

/* program section */
.program-section {
    margin-top: 70px;
    text-align: center;
}

.program-header {
    margin: 0 auto 32px auto;
}

.program-header .subtitle {
    font-size: 18px;
    color: #b91c1c;
    font-weight: 600;
    text-transform: uppercase;
}

.program-header .title {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-top: 8px;
}

.program-header .desc {
    font-size: 16px;
    color: #444;
    margin-top: 16px;
    line-height: 24px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.program-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card-image-placeholder {
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    height: 220px;
    background-color: #b91c1c;
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.card-content h3 {
    font-size: 20px;
    color: #222;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 20px;
}

.card-desc {
    font-size: 14px;
    color: #444;
    line-height: 24px;
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: justify;
}

.btn-card {
    display: inline-block;
    width: 100%;
    background-color: #b91c1c;
    color: #FFFFFF;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-card:hover {
    background-color: #991b1b;
}


/* alur section */
.alur-section {
    background-image: url('https://res.cloudinary.com/depmeqzg0/image/upload/v1775318890/image_1024_ocxgql.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    margin-top: 70px;
}

.alur-header {
    margin-bottom: 48px;
}

.alur-header .title {
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 700;
}

.alur-header .desc {
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 16px;
    opacity: 0.9;
}

.alur-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

.alur-card {
    background-color: #FFFFFF;
    border-radius: 25px;
    padding: 25px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #0000000b;
    cursor: pointer;
}

.alur-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.alur-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-label {
    font-size: 14px;
    color: #A2A2A2;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.alur-card h3 {
    font-size: 20px;
    color: #222;
    font-weight: 700;
    line-height: 34px;
}


/* requirements section */

.req-section {
    margin-top: 70px;
}

.req-header {
    text-align: center;
    margin: 0 auto 32px auto;
}

.req-header .subtitle {
    font-size: 18px;
    color: #b91c1c;
    font-weight: 600;
    text-transform: uppercase;
}

.req-header .title {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-top: 8px;
}

.req-header .desc {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    margin-top: 10px;
    line-height: 24px;
}

.req-content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.req-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.req-card {
    background-color: #FFFFFF;
    border-radius: 44px;
    padding: 35px 40px;
    box-shadow: 0 0 8px #dddddd87;
}

.req-card-header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 20px;
}

.req-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-card-header h3 {
    font-size: 20px;
    color: #222;
    font-weight: 700;
}

.req-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    line-height: 24px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-req-primary {
    display: inline-block;
    align-self: center;
    background-color: #b91c1c;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

.btn-req-primary:hover {
    background-color: #BE123C;
}

.req-right {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.req-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.main-img {
    width: 100%;
    height: auto;
    display: block;
}



/* Gallery Section */
.gallery-section {
    margin-top: 70px;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
    align-items: center;
}

.gallery-content .subtitle {
    font-size: 18px;
    color: #b91c1c;
    font-weight: 600;
    text-transform: uppercase;
}

.gallery-content .title {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-top: 8px;
}

.gallery-content .desc {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-top: 16px;
    margin-bottom: 32px;
    line-height: 24px;
}

.btn-gallery {
    display: inline-block;
    background-color: #b91c1c;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-gallery:hover {
    background-color: #b91c1c;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.img-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.img-tall {
    grid-row: span 2;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Legalitas Section */
.legalitas-section {
    margin-top: 70px;
}

.legalitas-header {
    margin-bottom: 25px;
}

.legalitas-header .subtitle {
    font-size: 18px;
    color: #b91c1c;
    font-weight: 600;
    text-transform: uppercase;
}

.legalitas-header .title {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-top: 8px;
}

.legalitas-cards {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}


.leg-card {
    background-color: #b91c1c;
    color: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.leg-icon-box {
    background-color: #FFFFFF;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leg-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.leg-info p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #fff;
}

.leg-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leg-details span {
    font-size: 14px;
}

.legalitas-image {
    grid-column: span 5;
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.legalitas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* CTA Section */
.cta-section {
    margin-top: 70px;
}

.cta-box {
    background-color: #b91c1c;
    border-radius: 32px;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.cta-content .title {
    font-size: 38px;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content .desc {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #FFFFFF;
    color: #222;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.decor-sakura {
    top: 3%;
    left: 5%;
    width: 60px;
}

.decor-huruf {
    top: 5%;
    left: 70%;
    width: 40px;
}

.decor-daruma {
    top: 40%;
    right: 5%;
    width: 75px;
}

.decor-omamori {
    bottom: 15%;
    left: 5%;
    width: 65px;
}

.decor-lampion {
    bottom: 15%;
    right: 5%;
    width: 60px;
}

/* FAQ Section */
.faq-section {
    margin-top: 70px;
}

.faq-header {
    text-align: center;
    margin-bottom: 32px;
}

.faq-header .subtitle {
    font-size: 18px;
    color: #b91c1c;
    font-weight: 700;
    text-transform: uppercase;
}

.faq-header .title {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-top: 8px;
}

.faq-content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.faq-left {
    display: none;
    justify-content: center;
    align-items: flex-end;
}

.faq-image-wrapper {
    position: relative;
    width: 100%;
}

.faq-image-wrapper .main-img {
    width: 100%;
    display: block;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px #00000010;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #B91C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon span {
    position: absolute;
    background-color: #B91C1C;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-icon span:nth-child(1) {
    width: 12px;
    height: 2px;
}

.faq-icon span:nth-child(2) {
    width: 2px;
    height: 12px;
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-in-out;
}

.faq-answer {
    overflow: hidden;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1.6;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
}

/* when yh aktif */
.faq-item.active {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.faq-item.active .faq-question {
    color: #FFFFFF;
}

.faq-item.active .faq-icon {
    border-color: #FFFFFF;
    background-color: #FFFFFF;
}

.faq-item.active .faq-icon span {
    background-color: #b91c1c;
}

.faq-item.active .faq-icon span:nth-child(2) {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

/* Footer Section */
.footer-section {
    background-color: #222;
    color: #fff;
    padding-top: 60px;
    margin-top: 70px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.footer-logo {
    max-width: 120px;
    width: 100%;
}

.footer-contact-col {
    font-size: 14px;
    color: #ddd;
    line-height: 24px;
}

.footer-contact-col .address {
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 16px;
}

.contact-item .label {
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.footer-nav-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    border-left: 1px solid #444;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #D1D5DB;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #b91c1c;
}

.badge-new {
    background-color: #b91c1c;
    color: #FFFFFF;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid #B0B0B0;
    padding: 24px 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: #ddd;
}

.social-area {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #F3F4F6;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.social-icons a:nth-child(1) svg,
.social-icons a:nth-child(3) svg {
    fill: #F3F4F6;
    stroke: none;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover svg {
    transform: translateY(-3px);
}

.social-icons a:hover svg {
    stroke: #E11D48;
}

.social-icons a:nth-child(1):hover svg,
.social-icons a:nth-child(3):hover svg {
    fill: #E11D48;
}

.container {
    height: 100%;
    margin: 0 auto;
}


/* Page Program */
.program-hero .program-image {
    overflow: hidden;
    height: 250px;
    box-shadow: 0px 0px 4px #ddd;
    border-radius: 28px;
    margin-bottom: 50px;
}

.program-hero .program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-phone {
    width: 20px;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 0px 8px #dddddd80;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: #b91c1c;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.benefit-card .icon-box img {
    width: 32px;
    height: auto;
}

.benefit-card h3 {
    font-size: 20px;
    color: #222;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Program Info Section */
.program-info-section {
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.info-card {
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0px 8px #dddddd80;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
}

/* Card Themes */
.info-card.dark {
    background-color: #222;
    color: #fff;
}

.info-card.light {
    background-color: #fff;
    color: #222;
}

.info-card.primary {
    background-color: #b91c1c;
    color: #fff;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.list-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.list-icon.red {
    background-color: #b91c1c;
}

.list-icon.outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.list-icon img {
    width: 20px;
    height: 20px;
}

.info-list h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-list p {
    font-size: 12px;
    color: #ccc;
    line-height: 1.5;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444;
}

.check-list li img {
    width: 18px;
    height: 18px;
}

.cost-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cost-item p {
    font-size: 14px;
    margin-bottom: 4px;
    color: #ffcccc;
}

.cost-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cost-item span {
    font-size: 12px;
    color: #ffe6e6;
}

.bottom-content-section {
    margin-bottom: 80px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.jobs-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 0px 8px #dddddd80;
}

.jobs-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 12px;
}

.jobs-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.job-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.job-item img {
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: #FAEACB;
    border-radius: 12px;
}

.job-item span {
    font-size: 18px;
    color: #b91c1c;
    font-weight: 700;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testi-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.testi-card {
    background-image: url('https://res.cloudinary.com/depmeqzg0/image/upload/v1775397637/rectangle4588_zlyycb.webp');
    background-size: cover;
    border-radius: 24px;
    padding: 24px;
    position: relative;
}

.person-image {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testi-header h4 {
    font-size: 16px;
    color: #b91c1c;
}

.testi-header span {
    font-size: 12px;
    color: #777;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
}

.testi-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    max-width: 85%;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    border-radius: 100px;
    background-color: #fff;
    color: #222;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0px 8px #dddddd80;
}

.btn-outline img {
    width: 20px;
    height: 20px;
}

.btn-outline:hover {
    border-color: #b91c1c;
    color: #b91c1c;
}

/* Page Gallery */

.gallery-page-section {
    padding-top: 70px;
}

.gallery-page-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.gallery-page-header .subtitle {
    font-size: 16px;
    color: #b91c1c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-page-header .title {
    font-size: 36px;
    color: #222;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 16px;
}

.gallery-page-header .desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #ddd;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.item-overlay h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.page-number,
.page-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #ffffff;
    color: #444;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.page-nav img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.page-number:hover,
.page-nav:hover {
    border-color: #b91c1c;
    color: #b91c1c;
}

.page-number.active {
    background-color: #b91c1c;
    color: #ffffff;
    border-color: #b91c1c;
}

.page-dots {
    color: #888;
    font-weight: 600;
    padding: 0 4px;
}

/* Page Contact */
.contact-page-section {
    padding-top: 70px;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header .title {
    font-size: 40px;
    color: #222;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-header .subtitle {
    font-size: 16px;
    color: #b91c1c;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #b91c1c;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(185, 28, 28, 0.2);
}

.btn-action img {
    width: 20px;
    height: 20px;
}

.btn-action:hover {
    background-color: #991b1b;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(185, 28, 28, 0.3);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #ffe5e5;
    /* Border merah tipis saat di-hover */
}

.card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 32px;
    height: 32px;
}

.card-text {
    text-align: left;
}

.card-text h3 {
    font-size: 16px;
    color: #222;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.contact-map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    background-color: #ddd;
    transition: transform 0.3s ease;
}

.contact-map-wrapper:hover {
    transform: scale(1.01);
}

/* Testimoni by Yussar */
.testimoni-page-section {
    padding-top: 70px;
}

.testimoni-page-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimoni-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #b91c1c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.testimoni-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;
}

.testimoni-page .testi-card {
    position: relative;
    width: 100%;
    height: 235px;
    flex-shrink: 0;
}

.testi-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testi-photo {
    position: absolute;
    right: 10px;
    top: 0px;
    width: 140px;
    height: 175px;
    object-fit: cover;
    object-position: top center;
    z-index: -1;
    clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.testi-content {
    position: absolute;
    left: 20px;
    top: 18px;
    width: 55%;
    z-index: 2;
}

.testi-name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #b91c1c;
    margin-bottom: 2px;
}

.testi-role {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin-bottom: 10px;
}

.quote-mark {
    font-size: 32px;
    color: #b91c1c;
    font-family: Georgia, serif;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.testi-text {
    font-size: 12px;
    color: #444;
    line-height: 1.65;
}

@media (max-width: 576px) {
    .container {
        padding: 0 25px;
    }

    .navbar-container .container {
        padding: 0 0;
    }

    .nav-wrapper .nav-button {
        font-size: 14px;
    }

    .nav-list .nav-item span {
        display: none;
    }

    .gallery-page-header .title {
        font-size: 28px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .item-overlay h3 {
        font-size: 18px;
    }

    .page-number,
    .page-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .contact-header .title {
        font-size: 32px;
    }

    .contact-actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .btn-action {
        justify-content: center;
    }

    .contact-map-wrapper {
        height: 300px;
    }

    .testimoni-title {
        font-size: 26px;
    }

    .testimoni-grid {
        grid-template-columns: 1fr;
    }


    .testi-bg {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 991px) {
    .nav-logo {
        height: 40px;
    }

    .navbar-container {
        padding: 15px 20px;
        height: auto;
    }

    .navbar-mobile-pill {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 100px;
        padding: 8px 20px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .nav-button {
        padding: 10px;
        border-radius: 50%;
        justify-content: center;
    }

    .nav-button .text-btn {
        display: none;
    }

    .nav-button .icon-btn {
        width: 24px;
        height: 24px;
        margin: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 5px;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background-color: #444;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fffafa;
        border: 1px solid #fff7f7;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: -1;
    }

    .nav-list.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        min-width: 100%;
        padding: 0;
        margin-top: 10px;
        display: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease forwards;
    }

    .dropdown.active .chevron {
        transform: rotate(180deg);
    }

    .dropdown-link {
        padding: 10px 15px 10px 20px;
        border-left: 2px solid #ddd;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .dropdown-link:hover {
        border-left-color: #b91c1c;
        background: transparent;
    }

    .testimoni-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .alur-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 740px;
    }

    header {
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-map-wrapper {
        height: 450px;
    }

    .contact-page-section {
        padding-top: 0px;
    }

    .testimoni-page-section {
        padding-top: 0px;
    }

    .japan-map {
        right: -400px;
        top: -10px;
    }

    .sakura {
        left: -100px;
        top: 0;
    }

    .daruma {
        right: -140px;
        top: 250px;
    }

    .ha {
        left: 350px;
        top: 50px;
    }

    .yukata {
        left: -110px;
        bottom: -20px;
    }

    .ka {
        left: 250px;
        bottom: 50px;
    }

    .gate {
        right: -50px;
        bottom: -50px;
    }

    .ma {
        right: 200px;
        left: auto;
        top: 0;
    }

    .decor-sakura {
        top: 15%;
        left: 10%;
        width: 60px;
    }

    .decor-huruf {
        top: 12%;
        left: 55%;
        width: 40px;
    }

    .decor-daruma {
        top: 35%;
        right: 8%;
        width: 75px;
    }

    .decor-omamori {
        bottom: 15%;
        left: 15%;
        width: 65px;
    }

    .decor-lampion {
        bottom: 15%;
        right: 20%;
        width: 60px;
    }

    .nav-list {
        display: flex;
    }

    .main-header {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-hero {
        display: grid;
        height: 400px;
    }

    .header-title {
        align-items: flex-start;
        text-align: left;
    }

    .header-title .subtitle {
        font-size: 24px;
    }

    .header-title .title {
        font-size: 44px;
    }

    .header-title .desc {
        font-size: 18px;
        line-height: 24px;
    }

    .header-title .btn-group {
        width: fit-content;
        flex-direction: row;
        align-items: flex-start;
        font-size: 16px;
    }

    .about-section {
        margin-top: 0px;
    }

    .about-video {
        order: 0;
    }

    .about-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-content .subtitle {
        font-size: 20px;
    }

    .about-content .title {
        font-size: 36px;
    }

    .about-content .desc {
        font-size: 18px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-section {
        margin-top: 120px;
    }

    .program-header {
        max-width: 650px;
    }

    .program-header .subtitle {
        font-size: 20px;
    }

    .program-header .title {
        font-size: 36px;
    }

    .program-header {
        margin: 0 auto 48px auto;
    }

    .program-header .desc {
        font-size: 18px;
    }

    .alur-section {
        margin-top: 120px;
    }

    .alur-header .title {
        font-size: 40px;
    }

    .alur-header .desc {
        font-size: 20px;
    }

    .alur-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .alur-icon {
        width: 54px;
        height: 54px;
    }

    .alur-card h3 {
        font-size: 26px;
    }

    .req-section {
        margin-top: 120px;
    }

    .req-header {
        max-width: 600px;
        margin: 0 auto 48px auto;
    }

    .req-header .subtitle {
        font-size: 20px;
    }

    .req-header .title {
        font-size: 36px;
    }

    .req-header .desc {
        font-size: 18px;
    }

    .req-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .req-list li {
        font-size: 18px;
    }

    .req-right {
        display: flex;
    }

    .btn-req-primary {
        align-self: flex-start;
    }

    .gallery-section {
        margin-top: 120px;
    }

    .gallery-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-content .subtitle {
        font-size: 20px;
    }

    .gallery-content .title {
        font-size: 36px;
    }

    .gallery-content .desc {
        font-size: 18px;
    }

    .legalitas-section {
        margin-top: 120px;
    }

    .legalitas-header {
        margin-bottom: 40px;
    }

    .legalitas-header .subtitle {
        font-size: 20px;
    }

    .legalitas-header .title {
        font-size: 36px;
    }

    .legalitas-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-box {
        padding: 80px 24px;
    }

    .cta-section {
        margin-top: 120px;
    }

    .cta-content {
        max-width: 800px;
    }

    .cta-content .title {
        font-size: 56px;
    }

    .cta-content .desc {
        font-size: 20px;
        font-weight: 600;
    }

    .faq-section {
        margin-top: 120px;
    }

    .faq-header {
        margin-bottom: 48px;
    }

    .faq-header .subtitle {
        font-size: 20px;
    }

    .faq-header .title {
        font-size: 36px;
    }

    .faq-content {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .faq-left {
        grid-column: span 1;
        display: flex;
    }

    .faq-right {
        grid-column: span 2;
    }

    .faq-image-wrapper {
        max-width: 400px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        overflow: hidden;
        color: #FFFFFF;
        font-size: 15px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .footer-section {
        margin-top: 120px;
        padding-top: 80px;
    }

    .footer-top {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 40px;
    }

    .footer-logo {
        max-width: 180px;
        width: 100%;
    }

    .footer-contact-col .address {
        margin-bottom: 24px;
    }

    .footer-nav-col h4 {
        margin-bottom: 24px;
    }

    .program-hero .program-image {
        height: 400px;
        margin-bottom: 0;
    }

    .gallery-page-section {
        padding-top: 0px;
    }

}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .hamburger {
        display: none;
    }

    .navbar-container.scrolled {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        height: 80px;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .hamburger {
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown:hover .chevron {
        transform: rotate(180deg);
    }

    .alur-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .program-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .info-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .bottom-grid {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }

    .testi-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-map-wrapper {
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}