/* Reset dan Styles Asas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Warna & Gradient */
:root {
    --color-primary: #8e2de2;
    --color-secondary: #e94057;
    --color-dark: #222;
    --color-light: #fff;
    --color-gray: #f5f5f5;
    --color-text: #333;
    --color-text-light: #777;
    --gradient: linear-gradient(135deg, #8e2de2, #e94057);
    --gradient-light: linear-gradient(135deg, rgba(142, 45, 226, 0.8), rgba(233, 64, 87, 0.8));
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.gradient-bg {
    background: var(--gradient);
    color: var(--color-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-hubungi, .btn-pakej, .btn-cta, .btn-submit {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--color-light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-light);
}

.btn-hubungi {
    background: var(--color-light);
    color: var(--color-primary);
    font-size: 0.8rem;
    padding: 8px 15px;
}

.btn-hubungi:hover {
    background: var(--color-primary);
    color: var(--color-light);
}

.btn-pakej {
    background: var(--gradient);
    color: var(--color-light);
    width: 100%;
    margin-top: 20px;
}

.btn-pakej:hover {
    opacity: 0.9;
}

.btn-cta {
    background: var(--color-light);
    color: var(--color-primary);
    font-size: 1.1rem;
    padding: 15px 30px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-submit {
    background: var(--gradient);
    color: var(--color-light);
    width: 100%;
    padding: 15px;
    margin-top: 20px;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
    margin: 0;
}

.logo span {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
}

.hero .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 50%;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-text);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    width: 45%;
}

.hero-image img {
    width: 100%;

}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title.light h2::after {
    background: var(--color-light);
}

.section-title.left {
    text-align: left;
}

.section-title.left h2::after {
    left: 0;
    transform: translateX(0);
}

.section-title p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.section-title.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* Kelebihan Section */
.kelebihan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--color-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--color-light);
    border-radius: 50%;
    font-size: 1.5rem;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--color-text-light);
}

/* Kelas Section */
.tab-container {
    margin-top: 30px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    background: var(--color-light);
    border: none;
    border-radius: 30px;
    margin: 0 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text);
    box-shadow: var(--shadow);
}

.tab-button.active {
    background: var(--gradient);
    color: var(--color-light);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.silibus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.silibus-item {
    display: flex;
    align-items: flex-start;
    background: var(--color-light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.silibus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.silibus-item .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.silibus-item .detail h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.silibus-item .detail p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Pakej Section */
.pakej-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pakej-tab {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 30px;
    margin: 0 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-light);
}

.pakej-tab.active {
    background: var(--color-light);
    color: var(--color-primary);
}

.pakej-content {
    display: none;
}

.pakej-content.active {
    display: block;
}

.pakej-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.pakej-card {
    background: var(--color-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pakej-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.pakej-card.featured {
    border: 3px solid var(--color-secondary);
    transform: scale(1.05);
}

.pakej-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pakej-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-secondary);
    color: var(--color-light);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pakej-header {
    background: palevioletred;
    color: var(--color-light);
    padding: 30px 20px;
    text-align: center;
}

.pakej-header h3 {
    margin-bottom: 10px;
}

/* Styling untuk harga dengan diskaun */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.original-price {
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

.original-price span {
    font-size: 0.9rem;
    font-weight: 400;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-light);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.discount-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Styling untuk combo price dengan diskaun */
.combo-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.combo-original-price {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.combo-original-price div {
    margin: 2px 0;
}

.combo-original-price .strike {
    text-decoration: line-through;
    font-size: 0.9rem;
}

.combo-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1.2rem;
    text-align: center;
}

.combo-price div {
    margin: 3px 0;
}

.combo-price span {
    font-weight: 700;
    font-size: 1.4rem;
}

.combo-discount-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pakej-body {
    padding: 30px 20px;
    background-color: #fff;
}

.pakej-body ul {
    margin-bottom: 20px;
}

.pakej-body ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    color: #333; /* Warna teks yang lebih gelap untuk visibilitas */
}

.pakej-body ul li:last-child {
    border-bottom: none;
}

.pakej-body ul li i {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Tambahan styling untuk pakej combo */
.combo-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.combo-info h3 {
    margin-bottom: 10px;
}

.combo-info p {
    opacity: 0.9;
}

/* Kelebihan Tambahan */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.col-text, .col-image {
    padding: 0 15px;
    width: 50%;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-item .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-item .text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item .text p {
    color: var(--color-text-light);
    margin: 0;
}

.col-image img {
    width: 100%;

}

/* Testimonial Section */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card .quote {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--color-light);
}

.author .info h4 {
    margin-bottom: 5px;
}

.author .info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-light);
}

/* Proses Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.step {
    width: calc(25% - 30px);
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: var(--gradient);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    color: var(--color-primary);
    box-shadow: var(--shadow);
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--color-text-light);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-light);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-plus-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-item.active .faq-plus-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.countdown {
    margin: 30px 0;
}

.countdown p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
}

.countdown-item span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.countdown-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Registration Section */

#daftar .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-form {
    padding: 0 15px;
    width: 50%;

}

.registration-form {
    background: var(--color-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);

}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-info {
    background: var(--gradient);
    color: var(--color-light);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    margin-right: 15px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
}

.social-media {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

/* Footer */
footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 70px 0 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-logo {
    width: 30%;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--color-secondary);
}

.footer-links {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.footer-col {
    width: 33.33%;
}

.footer-col h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.7;
}

.contact-list li i {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    background: #25d366;
    color: var(--color-light);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-whatsapp a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal-content {
    position: relative;
    background-color: var(--color-light);
    margin: 10% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: slideIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.btn-modal-close {
    background: var(--gradient);
    color: var(--color-light);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content, .hero-image {
        width: 100%;
    }

    .hero-content {
        margin-bottom: 40px;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .col-text, .col-image, .col-form, .col-contact {
        width: 100%;
    }

    .col-text {
        margin-bottom: 40px;
    }

    .col-form {
        margin-bottom: 40px;
    }

    .step {
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }

    .footer-logo, .footer-links {
        width: 100%;
    }

    .footer-logo {
        margin-bottom: 30px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }

    section {
        padding: 60px 0;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background: var(--color-light);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-out;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .burger {
        display: block;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }

    .pakej-cards {
        grid-template-columns: 1fr;
    }

    .pakej-card.featured {
        transform: scale(1);
    }

    .pakej-card.featured:hover {
        transform: translateY(-10px);
    }

    .step {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }

    .countdown-item {
        width: calc(50% - 10px);
    }
}